/* ============ Browse View ============ */
#browse-container {
    display: none;
    width: 100vw;
    height: 100vh;
    position: relative;
    cursor: crosshair;
}

#browse-container.active {
    display: block;
}

.browse-level-indicator {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 100;
}

.level-marker {
    width: 60px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    opacity: 0.4;
    transition: all 0.2s;
}

.level-marker.active {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.browse-cards-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 15px;
    transition: all 0.15s ease-out;
}

.browse-card {
    width: 280px;
    min-height: 100px;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid;
    transition: all 0.15s ease-out;
    opacity: 0.6;
    transform: scale(0.9);
}

.browse-card.center {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.browse-card-header {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.browse-card-content {
    font-size: 12px;
    line-height: 1.5;
}

.browse-progress {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.browse-progress-bar {
    height: 100%;
    background: #4299e1;
    transition: width 0.1s;
}

.browse-progress-text {
    position: fixed;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #a0aec0;
}
