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

:root {
    --aurora-blue: #00D4FF;
    --deep-blue: #0066CC;
    --dark-blue: #003366;
    --aurora-green: #00FF88;
    --emerald-green: #00CC66;
    --dark-green: #003D1F;
    --cyan: #00FFFF;
    --teal: #008080;
    --accent-cyan: #00E5FF;
    --light-cyan: #B3F0FF;
    --black: #000000;
    --dark-gray: #0a0f1a;
    --medium-gray: #1a2332;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --curtain-blue: #001F3F;
    --stage-dark: #0a1520;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
    background: var(--black);
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 212, 255, 0.3);
    border-bottom: 2px solid var(--aurora-blue);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--aurora-blue);
    font-family: 'Cinzel', serif;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--aurora-blue), var(--aurora-green));
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-cyan);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--aurora-blue);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 50%, var(--dark-green) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.theater-curtains {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.curtain {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, var(--curtain-blue) 0%, var(--deep-blue) 30%, var(--dark-green) 60%, var(--curtain-blue) 100%);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
}

.curtain.left {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.curtain.right {
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.curtain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(0, 0, 0, 0.1) 20px,
        rgba(0, 0, 0, 0.1) 40px
    );
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-content {
    position: relative;
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid var(--aurora-blue);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.3), 0 0 100px rgba(0, 255, 136, 0.2);
}

.spotlight {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, rgba(0, 255, 136, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    animation: spotlight-pulse 3s ease-in-out infinite;
}

@keyframes spotlight-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

.stage-decoration {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.ornament {
    width: 60px;
    height: 60px;
    border: 3px solid var(--aurora-blue);
    border-radius: 50%;
    position: relative;
}

.ornament::before,
.ornament::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--aurora-green);
    border-radius: 50%;
}

.ornament::before {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.ornament::after {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--aurora-blue);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 212, 255, 0.5);
}

.title-line {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--light-cyan);
    margin-bottom: 0.5rem;
}

.title-main {
    display: block;
    font-size: 5rem;
    background: linear-gradient(135deg, var(--aurora-blue) 0%, var(--aurora-green) 50%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-cyan);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Playfair Display', serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--aurora-blue) 0%, var(--aurora-green) 100%);
    color: var(--black);
    border: 2px solid var(--aurora-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--aurora-blue);
    border: 2px solid var(--aurora-blue);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--aurora-blue) 0%, var(--aurora-green) 100%);
    color: var(--black);
    transform: translateY(-3px);
}

.stage-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--stage-dark) 0%, transparent 100%);
    z-index: 1;
}

/* Hero Image Section */
.hero-image {
    position: relative;
    z-index: 3;
}

.hero-screenshots {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.hero-screenshot {
    width: 210px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.hero-screenshot:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 255, 136, 0.5);
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-blue) 100%);
    position: relative;
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-cyan);
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.screenshot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4), 0 0 30px rgba(0, 255, 136, 0.3);
    border-color: var(--aurora-blue);
}

.screenshot-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-width: 100%;
    border-radius: 18px;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay span {
    color: var(--aurora-green);
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-blue) 100%);
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--aurora-blue), var(--aurora-green), transparent);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--aurora-blue);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 212, 255, 0.4);
}

.title-decoration {
    margin: 0 15px;
    color: var(--aurora-green);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: rgba(0, 51, 102, 0.3);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--aurora-blue);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4), 0 0 30px rgba(0, 255, 136, 0.3);
    border-color: var(--aurora-green);
}

.why-icon {
    font-size: 3rem;
    color: var(--aurora-blue);
    margin-bottom: 1rem;
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--aurora-green);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--white);
    line-height: 1.6;
}

/* World Section */
.world-section {
    padding: 100px 0;
    background: var(--black);
    text-align: center;
}

.world-content {
    max-width: 900px;
    margin: 0 auto;
}

.world-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.world-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--aurora-green);
    font-family: 'Playfair Display', serif;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-green) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(0, 61, 31, 0.3);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--aurora-green);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4), 0 0 30px rgba(0, 212, 255, 0.3);
    border-color: var(--aurora-blue);
}

.feature-icon {
    font-size: 3rem;
    color: var(--aurora-green);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--aurora-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--white);
    line-height: 1.6;
}

/* Genres Section */
.genres {
    padding: 100px 0;
    background: var(--black);
}

.genres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.genre-card {
    background: rgba(0, 51, 102, 0.3);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--aurora-blue);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.genre-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4), 0 0 30px rgba(0, 255, 136, 0.3);
    border-color: var(--aurora-green);
}

.genre-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.genre-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--aurora-blue);
    margin-bottom: 0.5rem;
}

.genre-card p {
    color: var(--white);
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-green) 50%, var(--black) 100%);
    text-align: center;
}

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

.download-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--aurora-blue);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 212, 255, 0.4);
}

.download-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 2rem;
}

.download-buttons {
    margin-bottom: 2rem;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.3rem;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.download-info p {
    color: var(--light-cyan);
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-info i {
    color: var(--aurora-green);
}

.download-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--aurora-blue), var(--aurora-green));
    color: var(--black);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5);
    transition: bottom 0.3s ease;
    z-index: 2000;
}

.download-toast.show {
    bottom: 30px;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 60px 0 30px;
    border-top: 2px solid var(--aurora-blue);
    text-align: center;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--aurora-blue);
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--light-cyan);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-content p {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--aurora-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 2px solid var(--aurora-blue);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-main {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .why-grid,
    .features-grid,
    .genres-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 40px 20px;
    }

    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .screenshot-img {
        height: auto;
    }

    .download-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-screenshot {
        width: 120px;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .screenshot-img {
        height: auto;
    }
}

