.studio-page {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    max-width: 1000px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.justify-center {
    justify-content: center;
}

.display-icon {
    width: 32px;
    height: 32px;
}

/* Developer Grid - Player Profiles */
.dev-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.dev-card {
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    padding: 1.5rem;
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.next-milestone-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0.5;
    border-style: dashed !important;
    min-height: 200px;
}

.next-milestone-card .badge {
    margin-bottom: 1rem;
}

.next-milestone-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.next-milestone-card p {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin: 0;
}

.dev-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--glow-md);
    border-color: rgba(255, 255, 255, 0.1);
}

.dev-header {
    position: absolute;
    top: 0.75rem;
    left: 1.25rem;
}

.dev-traits {
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Vision Minigame */
.vision-lock-container {
    max-width: 600px;
    margin: 0 auto;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision-minigame {
    user-select: none;
    cursor: pointer;
    text-align: center;
}

.vision-minigame:active {
    transform: scale(0.98);
}

.card-glow {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.progress-bar-container {
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--accent-64);
    transition: width 0.2s ease-out;
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.5);
}

.progress-text {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.85rem;
    color: var(--accent-64);
}

.pulse-animation {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

/* Revealed Vision content */
.vision-revealed {
    animation: explode-in 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes explode-in {
    0% {
        transform: scale(0.5);
        opacity: 0;
        filter: blur(10px);
    }

    70% {
        transform: scale(1.05);
        opacity: 1;
        filter: blur(0);
    }

    100% {
        transform: scale(1);
    }
}

.vision-manifesto {
    padding: 4rem 3rem;
    border-width: 2px;
    background: linear-gradient(180deg, rgba(26, 26, 36, 0.9), rgba(15, 15, 19, 0.95));
    border-color: var(--accent-64);
    position: relative;
    overflow: hidden;
}

.vision-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(234, 179, 8, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
    position: relative;
    z-index: 10;
}

.vision-pillar h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.vision-pillar p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.vision-conclusion {
    position: relative;
    z-index: 10;
    padding-top: 2rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    color: var(--accent-64);
}

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-up 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.2s;
}

.delay-5 {
    animation-delay: 1.8s;
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mt-24 {
    margin-top: 6rem;
}

.mt-12 {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .studio-page {
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 4rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        justify-content: center;
        text-align: center;
    }

    .dev-grid {
        grid-template-columns: 1fr;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .vision-manifesto {
        padding: 2rem 1.5rem;
    }

    .vision-manifesto h2 {
        font-size: 1.75rem;
    }

    .mt-24 {
        margin-top: 4rem;
    }
}