/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --dark-grey: #1a1a1a;
    --mid-grey: #2a2a2a;
    --light-grey: #666666;
    --lighter-grey: #999999;
    --white: #ffffff;
    --off-white: #f5f5f5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-grey) 100%);
    text-align: center;
    padding: 40px 20px;
}

.logo-container {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.studio-name {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--lighter-grey) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.tagline {
    font-size: 1.2rem;
    color: var(--lighter-grey);
    max-width: 600px;
    margin: 0 auto 30px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.location {
    font-size: 1rem;
    color: var(--light-grey);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.location-pin {
    margin-right: 5px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--light-grey);
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--light-grey);
    border-radius: 50%;
    animation: scrollDot 2s infinite;
}

/* About Section */
.about {
    padding: 100px 20px;
    background: var(--dark-grey);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-grey), transparent);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--lighter-grey);
    text-align: center;
}

/* Games Section */
.games {
    padding: 100px 20px;
    background: var(--black);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.game-card {
    background: var(--mid-grey);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--light-grey);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.game-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--dark-grey), var(--mid-grey));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.coming-soon {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--lighter-grey);
    z-index: 1;
}

.game-title {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 20px 20px 10px;
    color: var(--white);
}

.game-description {
    padding: 0 20px 20px;
    color: var(--lighter-grey);
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: var(--dark-grey);
    text-align: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-grey), transparent);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1.2rem;
    color: var(--lighter-grey);
    margin-bottom: 30px;
}

.contact-email {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    padding: 20px 40px;
    border: 2px solid var(--light-grey);
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-email::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 50px;
    transition: transform 0.3s ease;
    z-index: -1;
}

.contact-email:hover {
    color: var(--black);
    border-color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.contact-email:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Footer */
.footer {
    padding: 40px 20px;
    background: var(--black);
    border-top: 1px solid var(--mid-grey);
    text-align: center;
}

.footer-content p {
    color: var(--light-grey);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .studio-name {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .about-text {
        font-size: 1.1rem;
    }

    .logo {
        max-width: 250px;
    }

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

@media (max-width: 480px) {
    .studio-name {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .logo {
        max-width: 200px;
    }
}
