* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #1a1a2e;
    line-height: 1.6;
    min-height: 100vh;
}

.wide-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
}

.top-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 900;
}

.top-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 1rem 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-name {
    font-family: 'Righteous', cursive;
    font-size: 2.2rem;
    color: #ff6b35;
    letter-spacing: 1px;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: #ff6b35;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.top-nav {
    display: flex;
    gap: 28px;
}

.top-nav a {
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.top-nav a:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.hero-zone {
    padding: 110px 30px 90px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    text-align: center;
}

.hero-txt h1 {
    font-family: 'Righteous', cursive;
    font-size: 3.6rem;
    color: white;
    margin-bottom: 25px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-txt p {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.about-section {
    padding: 85px 30px;
    background: rgba(255, 255, 255, 0.9);
}

.about-section h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.6rem;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 35px;
}

.about-content p {
    font-size: 1.15rem;
    color: #333;
    max-width: 950px;
    margin: 0 auto 22px;
    text-align: center;
    line-height: 1.8;
}

.perks-section {
    padding: 85px 30px;
    background: rgba(255, 255, 255, 0.7);
}

.perks-section h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.6rem;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 50px;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.perk-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.perk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.perk-emoji {
    font-size: 3.8rem;
    margin-bottom: 18px;
}

.perk-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.4rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.perk-card p {
    color: #555;
    font-size: 1rem;
}

.alert-section {
    padding: 85px 30px;
    background: rgba(255, 255, 255, 0.85);
}

.alert-section h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.6rem;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 50px;
}

.alert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.alert-box {
    padding: 35px;
    border-radius: 15px;
    border-left: 6px solid;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.alert-red {
    border-left-color: #ef4444;
}

.alert-blue {
    border-left-color: #3b82f6;
}

.alert-orange {
    border-left-color: #ff6b35;
}

.alert-box h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.alert-box p {
    color: #555;
    line-height: 1.8;
}

.game-section {
    padding: 85px 30px;
    background: rgba(255, 255, 255, 0.9);
}

.game-section h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.6rem;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 25px;
}

.game-intro {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.game-box {
    max-width: 1150px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: 4px solid #ff6b35;
}

.game-box iframe {
    width: 100%;
    height: 700px;
    display: block;
}

.game-footer {
    text-align: center;
}

.game-link {
    display: inline-block;
    color: #ff6b35;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.game-link:hover {
    transform: translateX(10px);
}

.bottom-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    padding: 70px 30px 35px;
    margin-top: 0;
}

.footer-grid {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Righteous', cursive;
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resource-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-links a:hover {
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    color: white;
    font-weight: 600;
}

.footer-msg {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.1rem;
}

.age-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.98) 0%, rgba(118, 75, 162, 0.98) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9000;
}

.age-screen.hidden {
    display: none;
}

.age-box {
    background: white;
    padding: 50px 45px;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.age-box h2 {
    font-family: 'Righteous', cursive;
    color: #1a1a2e;
    font-size: 2rem;
    margin-bottom: 20px;
}

.age-box p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.age-choices {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.age-choices button {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.confirm-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.confirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.reject-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.reject-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

.play-page {
    padding: 45px 30px 85px;
}

.play-content {
    max-width: 1450px;
    margin: 0 auto;
}

.play-content h1 {
    font-family: 'Righteous', cursive;
    font-size: 2.8rem;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.full-game {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid #ff6b35;
    margin-bottom: 30px;
}

.full-game iframe {
    width: 100%;
    height: 800px;
    display: block;
}

.play-note {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    border-left: 6px solid #ff6b35;
}

.play-note p {
    color: #1a1a2e;
    font-size: 1.15rem;
    font-weight: 600;
}

.legal-page {
    padding: 45px 30px 85px;
}

.legal-box {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.legal-box h1 {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.date-stamp {
    color: #777;
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block h2 {
    font-family: 'Righteous', cursive;
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.legal-block p,
.legal-block li {
    color: #555;
    line-height: 1.9;
    margin-bottom: 12px;
}

.legal-block ul {
    margin-left: 25px;
    margin-top: 15px;
}

.legal-block li {
    margin-bottom: 8px;
}

.legal-block.highlight-red {
    background: rgba(239, 68, 68, 0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 6px solid #ef4444;
    margin-bottom: 50px;
}

.legal-block.highlight-blue {
    background: rgba(59, 130, 246, 0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 6px solid #3b82f6;
    margin-bottom: 50px;
}

.legal-block a {
    color: #ff6b35;
    text-decoration: none;
}

.legal-block a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .top-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    }

    .top-nav.active {
        right: 0;
    }

    .top-nav a {
        padding: 20px 15px;
        font-size: 1.15rem;
        border-bottom: 1px solid #e5e7eb;
        border-radius: 0;
    }

    .hero-txt h1 {
        font-size: 2.4rem;
    }

    .hero-txt p {
        font-size: 1.1rem;
    }

    .about-section h2,
    .perks-section h2,
    .alert-section h2,
    .game-section h2 {
        font-size: 2rem;
    }

    .perks-grid,
    .alert-grid {
        grid-template-columns: 1fr;
    }

    .game-box iframe,
    .full-game iframe {
        height: 500px;
    }

    .play-content h1 {
        font-size: 2.2rem;
    }

    .legal-box {
        padding: 35px 28px;
    }

    .legal-box h1 {
        font-size: 2.4rem;
    }

    .age-box {
        margin: 20px;
        padding: 40px 30px;
    }

    .age-choices {
        flex-direction: column;
    }
}
