﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0f0a15;
    --secondary-dark: #1a1220;
    --accent-orange: #ff8c42;
    --accent-peach: #ffb88c;
    --accent-cyan: #078fa7;
    --accent-purple: #ff4d7d;
    --warm-glow: #ff6b35;
    --text-primary: #f5f1ff;
    --text-secondary: #c8b8d8;
    --border-glow: rgba(255, 140, 66, 0.3);
}

html, body {
    width: 100%;
    font-family: 'Space Mono', monospace;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a0f2e 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--primary-dark) 0%, rgba(15, 10, 21, 0.95) 100%);
    border-bottom: 1px solid var(--border-glow);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, var(--accent-peach), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(255, 140, 66, 0.4);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    nav a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-orange), var(--accent-cyan));
        transition: width 0.3s ease;
    }

    nav a:hover {
        color: var(--accent-cyan);
    }

        nav a:hover::after {
            width: 100%;
        }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.1) 0%, rgba(15, 10, 21, 0.8) 50%, rgba(15, 10, 21, 1) 100%);
}

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
        pointer-events: none;
        animation: float 8s ease-in-out infinite;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 77, 125, 0.1) 0%, transparent 70%);
        pointer-events: none;
        animation: float 10s ease-in-out infinite reverse;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: -1px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.1s both;
    color: var(--accent-cyan);
}

.hero .tagline {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero .description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--warm-glow) 100%);
    color: var(--primary-dark);
    box-shadow: 0 0 25px rgba(255, 140, 66, 0.4);
    border: 1px solid var(--accent-orange);
}

    .btn-primary:hover {
        box-shadow: 0 0 50px rgba(255, 140, 66, 0.8);
        transform: translateY(-3px);
        background: linear-gradient(135deg, var(--warm-glow) 0%, var(--accent-orange) 100%);
    }

.btn-secondary {
    background: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    box-shadow: inset 0 0 15px rgba(0, 217, 255, 0.1);
}

    .btn-secondary:hover {
        background: rgba(0, 217, 255, 0.1);
        box-shadow: 0 0 25px rgba(0, 217, 255, 0.4);
        transform: translateY(-3px);
    }

/* Featured Game Section */
.featured-game {
    padding: 6rem 2rem;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

    .featured-game::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    }

    .featured-game::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    }

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
    position: relative;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange));
        box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
    }

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
}

.game-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.game-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 140, 66, 0.2);
    border: 2px solid var(--border-glow);
    animation: fadeInUp 1s ease-out 0.5s both;
}

    .game-image img {
        width: 100%;
        height: auto;
        display: block;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .game-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 30%, rgba(255, 140, 66, 0.1) 0%, transparent 60%);
        pointer-events: none;
    }

.game-details {
    animation: fadeInUp 1s ease-out 0.6s both;
}

    .game-details h3 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: var(--accent-cyan);
        font-family: 'Orbitron', sans-serif;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .game-details p {
        color: var(--text-secondary);
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

.game-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.6rem 1.2rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--accent-cyan);
    border-radius: 4px;
    color: var(--accent-cyan);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Orbitron', sans-serif;
}

/* Highlights Section */
.highlights {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a0f2e 100%);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.highlight-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(255, 77, 125, 0.05) 100%);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out both;
    position: relative;
    overflow: hidden;
}

    .highlight-card:nth-child(1) {
        animation-delay: 0.6s;
    }

    .highlight-card:nth-child(2) {
        animation-delay: 0.7s;
    }

    .highlight-card:nth-child(3) {
        animation-delay: 0.8s;
    }

    .highlight-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 140, 66, 0.15), transparent);
        transition: left 0.5s ease;
    }

    .highlight-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent-cyan);
        box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
    }

        .highlight-card:hover::before {
            left: 100%;
        }

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    height: 70px;
    display: flex;
    align-items: center;
}

.highlight-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.12) 0%, rgba(255, 77, 125, 0.08) 100%);
    text-align: center;
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
}

    .cta-section h2 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        color: var(--accent-cyan);
        font-family: 'Orbitron', sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .cta-section p {
        color: var(--text-secondary);
        font-size: 1.15rem;
        margin-bottom: 2rem;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

/* Footer */
footer {
    background: var(--secondary-dark);
    border-top: 1px solid var(--border-glow);
    padding: 4rem 2rem;
    text-align: center;
}

    footer p {
        color: var(--text-secondary);
        margin-bottom: 1rem;
        font-family: 'Space Mono', monospace;
    }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

    .footer-links a {
        color: var(--accent-cyan);
        text-decoration: none;
        transition: all 0.3s ease;
        font-family: 'Orbitron', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
    }

        .footer-links a:hover {
            color: var(--accent-orange);
            text-shadow: 0 0 10px rgba(255, 140, 66, 0.3);
        }

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

    .social-links a {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--accent-cyan);
        border-radius: 4px;
        color: var(--accent-cyan);
        transition: all 0.3s ease;
        font-size: 1.2rem;
    }

        .social-links a:hover {
            background: rgba(0, 217, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
            transform: translateY(-3px);
        }

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
}

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--accent-cyan);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--secondary-dark);
        border-bottom: 1px solid var(--border-glow);
        padding: 1rem;
        gap: 0;
        z-index: 999;
    }

        nav ul.active {
            display: flex;
        }

        nav ul li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
        }

            nav ul li:last-child {
                border-bottom: none;
            }

    nav a {
        display: block;
        padding: 0.5rem;
    }

        nav a::after {
            display: none;
        }

        nav a:hover {
            background: rgba(0, 217, 255, 0.1);
            padding-left: 1rem;
        }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero .tagline {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .game-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1.1rem;
    }

        .logo img {
            width: 35px;
            height: 35px;
        }
}

/* Generic Styles for Page-Specific Files */

/* Generic Page Hero Sections */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.1) 0%, rgba(15, 10, 21, 0.8) 50%, rgba(15, 10, 21, 1) 100%);
}

    .page-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(255, 140, 66, 0.2) 0%, transparent 70%);
        pointer-events: none;
        animation: float 8s ease-in-out infinite;
    }

    .page-hero .hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 800px;
        animation: fadeInUp 1s ease-out;
    }

    .page-hero h1 {
        font-size: 4rem;
        font-weight: 900;
        margin-bottom: 0.5rem;
        font-family: 'Orbitron', sans-serif;
        letter-spacing: 2px;
        line-height: 1.1;
        animation: fadeInUp 1s ease-out 0.1s both;
        color: var(--accent-cyan);
        text-transform: uppercase;
    }

    .page-hero .tagline {
        font-size: 1.5rem;
        color: var(--accent-orange);
        margin-bottom: 1rem;
        font-weight: 400;
        animation: fadeInUp 1s ease-out 0.2s both;
        font-family: 'Orbitron', sans-serif;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .page-hero .description {
        font-size: 1.1rem;
        color: var(--text-secondary);
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.8;
        animation: fadeInUp 1s ease-out 0.3s both;
    }

/* Generic Card Styles */
.card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out both;
}

    .card:hover {
        transform: translateY(-8px);
        border-color: var(--accent-cyan);
        box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
    }

/* Generic Grid for Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Highlighted/Boxed Content */
.highlight-box,
.intro-paragraph,
.note-box,
.story-box,
.description-box,
.privacy-intro-box {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(0, 217, 255, 0.05) 100%);
    border-left: 4px solid var(--accent-orange);
    border-radius: 4px;
    animation: fadeInUp 1s ease-out both;
}

/* Generic Custom Lists */
.custom-list,
.intro-list,
.rules-sublist,
.privacy-list,
.requirement-column ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

    .custom-list li,
    .intro-list li,
    .rules-sublist li,
    .privacy-list li,
    .requirement-column li {
        color: var(--text-secondary);
        margin-bottom: 0.8rem;
        padding-left: 1.5rem;
        position: relative;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .custom-list li::before,
    .intro-list li::before,
    .rules-sublist li::before,
    .privacy-list li::before,
    .requirement-column li::before {
        content: '▸';
        position: absolute;
        left: 0;
        color: var(--accent-orange);
        font-weight: bold;
    }

/* Back to Top Button */
.back-to-top,
.back-to-top-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--warm-glow));
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 140, 66, 0.3);
}

    .back-to-top:hover,
    .back-to-top-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 30px rgba(255, 140, 66, 0.5);
    }

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--accent-orange);
    }
