* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    min-height: 100vh;
}

.main-nav {
    background: linear-gradient(90deg, #27ae60 0%, #2ecc71 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-menu a.active {
    background: #f1c40f;
    color: #27ae60;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-section {
    background: linear-gradient(135deg, #27ae60 0%, #f1c40f 100%);
    padding: 5rem 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    box-shadow: 0 15px 50px rgba(39, 174, 96, 0.3);
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-description {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.9);
    color: #27ae60;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature-box {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid #27ae60;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.3);
}

.feature-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-box h2 {
    color: #f1c40f;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-box p {
    line-height: 1.8;
    color: #c0c0c0;
    font-size: 1.05rem;
}

.game-section {
    margin-bottom: 4rem;
}

.game-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 3rem;
    font-weight: 800;
}

.game-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 4px solid #27ae60;
}

.game-wrapper iframe {
    width: 100%;
    height: 650px;
    display: block;
}

.game-disclaimer, .play-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #f1c40f;
    font-weight: 600;
}

.info-section {
    margin-bottom: 4rem;
}

.info-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 3rem;
    font-weight: 800;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.info-card {
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 6px solid;
}

.info-card.red {
    background: rgba(231, 76, 60, 0.15);
    border-color: #e74c3c;
}

.info-card.blue {
    background: rgba(52, 152, 219, 0.15);
    border-color: #3498db;
}

.info-card.green {
    background: rgba(46, 204, 113, 0.15);
    border-color: #2ecc71;
}

.info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    line-height: 1.8;
    color: #c0c0c0;
}

.benefits-section {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    padding: 4rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.benefits-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #f1c40f;
    margin-bottom: 3rem;
    font-weight: 800;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    background: rgba(39, 174, 96, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
    font-size: 1.1rem;
    font-weight: 600;
}

.page-hero {
    text-align: center;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.3rem;
    color: white;
}

.legal-section {
    max-width: 1000px;
    margin: 0 auto;
    background: #1a1f3a;
    padding: 4rem;
    border-radius: 20px;
    line-height: 1.9;
}

.legal-section h2 {
    color: #27ae60;
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-section p {
    margin-bottom: 1.5rem;
    color: #c0c0c0;
    font-size: 1.05rem;
}

.disclaimer-box {
    background: rgba(241, 196, 15, 0.15);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #f1c40f;
    margin-bottom: 3rem;
}

.play-info {
    margin-bottom: 4rem;
}

.play-info h2 {
    text-align: center;
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 3rem;
    font-weight: 800;
}

.play-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.play-tip {
    background: #1a1f3a;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #27ae60;
}

.tip-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
}

.play-tip h3 {
    color: #f1c40f;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.play-tip p {
    line-height: 1.8;
    color: #c0c0c0;
}

.site-footer {
    background: #0d1117;
    padding: 4rem 2rem;
    margin-top: 5rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-column h3 {
    color: #27ae60;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #27ae60;
}

.footer-column p {
    line-height: 1.7;
    color: #c0c0c0;
    margin-bottom: 1rem;
}

.age-modal {
    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-modal.show {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    padding: 3.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    border: 4px solid #27ae60;
    box-shadow: 0 25px 70px rgba(39, 174, 96, 0.4);
}

.age-modal-content h2 {
    color: #27ae60;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.age-modal-content p {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

.age-modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-yes, .btn-no {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.btn-yes {
    background: #27ae60;
    color: white;
}

.btn-yes:hover {
    background: #2ecc71;
    transform: scale(1.05);
}

.btn-no {
    background: #7f8c8d;
    color: white;
}

.btn-no:hover {
    background: #95a5a6;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: #27ae60;
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin-bottom: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .features-grid, .info-grid, .benefits-grid, .play-tips-grid {
        grid-template-columns: 1fr;
    }

    .game-wrapper iframe {
        height: 450px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .main-container {
        padding: 2rem 1rem;
    }
}
