@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Open+Sans:wght@400;600;700&display=swap');

:root {
    --primary-color: #ff6b35; /* Vibrant Orange */
    --secondary-color: #00d4aa; /* Teal Green */
    --accent-color: #7c3aed; /* Purple */
    --background-color: #0f172a; /* Dark Blue */
    --text-color: #e2e8f0;
    --surface-color: #1e293b;
    --header-font: 'Orbitron', monospace;
    --body-font: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--body-font);
    background: linear-gradient(135deg, var(--background-color), #1e1b4b);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
    box-shadow: 0 2px 20px rgba(0, 212, 170, 0.3);
}

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

.logo {
    font-family: var(--header-font);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-family: var(--header-font);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-menu a.active, .nav-menu a:hover {
    color: var(--background-color);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hero-section {
    min-height: 85vh;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(124, 58, 237, 0.3)), 
                url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?q=80&w=2025&auto=format&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1), rgba(0, 212, 170, 0.1));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.play-now-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.2rem 3rem;
    font-family: var(--header-font);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.play-now-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(124, 58, 237, 0.1));
    text-align: center;
    padding: 3rem 5%;
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    margin: 3rem 5%;
    backdrop-filter: blur(10px);
}

.disclaimer-section h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.read-btn {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.8rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--header-font);
    font-weight: 700;
    border-radius: 25px;
    text-transform: uppercase;
}

.read-btn:hover {
    background: var(--secondary-color);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.4);
}

.game-section {
    padding: 5rem 5%;
    text-align: center;
}

.games-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.game-frame {
    width: 100%;
    max-width: 900px;
    height: 600px;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    aspect-ratio: 16/9;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3), 0 0 60px rgba(0, 212, 170, 0.1);
    transition: all 0.3s ease;
}

.game-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4), 0 0 80px rgba(0, 212, 170, 0.2);
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 5%;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    border: 2px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.review-section {
    padding: 5rem 5%;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 20px;
    margin: 3rem 5%;
}

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

.review-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 212, 170, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--accent-color);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.features-section {
    padding: 5rem 5%;
    text-align: center;
}

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

.feature-card {
    background: linear-gradient(135deg, var(--surface-color), rgba(124, 58, 237, 0.1));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    font-family: var(--header-font);
    font-weight: 700;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.footer {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    padding: 4rem 5% 2rem;
    border-top: 3px solid var(--secondary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

.footer-notice {
    text-align: center;
    padding: 2rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid var(--accent-color);
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);
    border-top: 1px solid var(--surface-color);
    padding-top: 1rem;
}

.disclaimer-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    backdrop-filter: blur(10px);
}

.disclaimer-popup.active {
    display: flex;
}

.disclaimer-box {
    background: linear-gradient(135deg, var(--surface-color), rgba(124, 58, 237, 0.2));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.5);
    position: relative;
}

.disclaimer-box h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.disclaimer-box p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.confirm-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--header-font);
    font-weight: 700;
    margin-left: 1rem;
    text-transform: uppercase;
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input, .contact-form textarea {
    padding: 1rem;
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid var(--surface-color);
    color: var(--text-color);
    border-radius: 10px;
    font-family: var(--body-font);
    transition: border-color 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
}

.contact-form button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--header-font);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.terms-section, .privacy-section, .disclaimer-section-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.terms-section h3, .privacy-section h3, .disclaimer-section-page h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-section ul, .privacy-section ul, .disclaimer-section-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-section li, .privacy-section li, .disclaimer-section-page li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--background-color), #1e1b4b);
        flex-direction: column;
        text-align: center;
        border-top: 2px solid var(--secondary-color);
        box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--surface-color);
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .game-frame {
        height: auto;
        aspect-ratio: 16/9;
    }

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

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