* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000000;
    color: #f5f5f5;
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Intro Animation */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeOut 0.8s ease 4.2s forwards;
}

.intro-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    color: #ffffff;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    animation: titleFadeIn 1.5s ease 0.5s forwards;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@keyframes titleFadeIn {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes prismaticShift {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.5))
                drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    }
    25% {
        background-position: 100% 25%;
        filter: drop-shadow(0 0 80px rgba(255, 255, 255, 0.6))
                drop-shadow(0 0 40px rgba(255, 255, 255, 0.4));
    }
    50% {
        background-position: 100% 75%;
        filter: drop-shadow(0 0 100px rgba(255, 255, 255, 0.7))
                drop-shadow(0 0 50px rgba(255, 255, 255, 0.5));
    }
    75% {
        background-position: 0% 75%;
        filter: drop-shadow(0 0 80px rgba(255, 255, 255, 0.6))
                drop-shadow(0 0 40px rgba(255, 255, 255, 0.4));
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Main Content */
.content {
    opacity: 0;
    animation: contentFadeIn 1s ease 5s forwards;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@keyframes contentFadeIn {
    to { opacity: 1; }
}

header {
    text-align: center;
    padding: 3rem 0 2rem;
}

.site-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Studio Section */
.studio-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.studio-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.studio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
}

.studio-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #c0c0c0 0%, #ffffff 50%, #c0c0c0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.roblox-icon {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.studio-card p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.studio-link {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.studio-link:hover {
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 3rem;
}

footer p {
    color: #999;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.contact {
    margin-bottom: 0.75rem;
}

.contact a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #e0e0e0;
}

.copyright {
    font-size: 0.875rem;
    color: #808080;
}

/* Responsive */
@media (max-width: 768px) {
    .studio-card {
        padding: 2rem 1.5rem;
    }

    .studio-card h2 {
        font-size: 1.75rem;
        gap: 0.75rem;
    }

    .roblox-icon {
        width: 2rem;
        height: 2rem;
    }

    .studio-card p {
        font-size: 1rem;
    }

    .studio-link {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        white-space: nowrap;
    }

    .site-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}
