* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --purple: #A777E3;
    --blue: #6C5CE7;
    --green: #00D2A0;
    --dark: #2D3436;
    --gray: #636E72;
    --light-gray: #B2BEC3;
    --bg: #F8F9FA;
    --white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

.brand-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0;
    color: var(--white);
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.intro-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Highlights */
.highlights {
    padding: 4rem 0;
    background: var(--white);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-item {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-green {
    background: linear-gradient(135deg, rgba(0, 210, 160, 0.1), rgba(0, 210, 160, 0.2));
}

.highlight-blue {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(108, 92, 231, 0.2));
}

.highlight-purple {
    background: linear-gradient(135deg, rgba(167, 119, 227, 0.1), rgba(167, 119, 227, 0.2));
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.highlight-item p {
    color: var(--gray);
}

/* Game Showcase */
.game-showcase {
    padding: 5rem 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.showcase-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.game-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border-radius: 12px;
}

/* Benefits */
.benefits {
    padding: 5rem 0;
    background: var(--white);
}

.benefits-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-3px);
}

.benefit-num {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
}

.benefit-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--gray);
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.visual-box {
    aspect-ratio: 1;
    border-radius: 15px;
}

.visual-1 {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.visual-2 {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.visual-3 {
    background: linear-gradient(135deg, var(--accent), var(--purple));
}

.visual-4 {
    background: linear-gradient(135deg, var(--purple), var(--blue));
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column p {
    color: var(--light-gray);
    line-height: 1.7;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.active {
    display: flex;
}

.gate-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gate-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.gate-content h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.gate-content p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.gate-question {
    font-weight: 600;
    color: var(--dark);
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.gate-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gate-btn-yes {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.gate-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.gate-btn-no {
    background: var(--bg);
    color: var(--gray);
}

.gate-btn-no:hover {
    background: var(--light-gray);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 5rem 0 4rem;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    font-weight: 300;
}

/* Legal Section */
.legal-section {
    padding: 4rem 0;
}

.legal-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.legal-box h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.legal-box h2:first-child {
    margin-top: 0;
}

.legal-box h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.legal-box p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.legal-box ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-box li {
    color: var(--gray);
    margin-bottom: 0.8rem;
}

/* Play Info */
.play-info {
    padding: 4rem 0;
}

.info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-card h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.info-card h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.info-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.platform-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.platform-item {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: 12px;
}

.platform-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.platform-item p {
    margin: 0;
    font-size: 0.9rem;
}

.play-list {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.play-list li {
    color: var(--gray);
    margin-bottom: 0.8rem;
}

.tech-alert {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(108, 92, 231, 0.2));
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

/* Tips Section */
.tips-section {
    padding: 4rem 0;
    background: var(--white);
}

.tips-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tip-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.tip-card p {
    color: var(--gray);
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid var(--bg);
    }

    .nav-link::after {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 400px;
    }

    .gate-content {
        margin: 1rem;
        padding: 2rem;
    }

    .gate-buttons {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .platform-list {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}
