* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    line-height: 1.6;
}

.main-header {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-name {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-item.active {
    background: white;
    color: #FF6B35;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #FF6B35;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.content-wrapper {
    min-height: calc(100vh - 80px);
}

.hero-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="white" opacity="0.1"/><circle cx="40" cy="30" r="3" fill="white" opacity="0.1"/><circle cx="70" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="30" cy="60" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="70" r="3" fill="white" opacity="0.1"/></svg>');
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.hero-overlay {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Righteous', cursive;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: inline-block;
    background: white;
    color: #FF6B35;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-heading {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    color: #FF6B35;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.section-text.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-section {
    padding: 4rem 0;
    background: white;
}

.alerts-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.alert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.alert-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.alert-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.alert-orange {
    border-left-color: #FF6B35;
}

.alert-blue {
    border-left-color: #004E89;
}

.alert-red {
    border-left-color: #D62828;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.alert-emoji {
    font-size: 2.5rem;
}

.alert-header h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.5rem;
    color: #333;
}

.alert-box p {
    color: #555;
    line-height: 1.7;
}

.game-section {
    padding: 4rem 0;
    background: white;
}

.game-wrapper {
    margin-top: 2.5rem;
}

.game-display {
    background: #000;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.game-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #FFE66D;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-size: 1.1rem;
    color: #FF6B35;
    margin-bottom: 0.3rem;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
}

.benefits-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-purple { border-top-color: #9D4EDD; }
.card-green { border-top-color: #06D6A0; }
.card-orange { border-top-color: #FF6B35; }
.card-pink { border-top-color: #EF476F; }
.card-teal { border-top-color: #118AB2; }
.card-yellow { border-top-color: #FFD60A; }

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

.responsible-section {
    padding: 4rem 0;
    background: white;
}

.responsible-box {
    background: linear-gradient(135deg, #FFE66D 0%, #FFD60A 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.responsible-box h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
}

.responsible-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tips-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tip-number {
    background: #FF6B35;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.tip-card p {
    color: #555;
    line-height: 1.6;
}

.page-title-section {
    background: linear-gradient(135deg, #004E89 0%, #006BA6 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.page-title {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.play-info-section {
    padding: 3rem 0;
    background: white;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.info-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #FF6B35;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.info-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.3rem;
    color: #FF6B35;
    margin-bottom: 0.8rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

.main-game-section {
    padding: 3rem 0 4rem;
    background: #f8f9fa;
}

.game-container-full {
    background: #000;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.game-iframe-full {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.reminder-section {
    padding: 3rem 0;
    background: white;
}

.reminder-box {
    background: linear-gradient(135deg, #FFE66D 0%, #FFD60A 100%);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reminder-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.reminder-content h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.reminder-content p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.legal-section {
    padding: 3rem 0 4rem;
    background: white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Righteous', cursive;
    font-size: 1.9rem;
    color: #FF6B35;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.4rem;
    color: #004E89;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content li {
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.terms-accept-box,
.privacy-summary-box,
.final-acknowledgment-box {
    background: linear-gradient(135deg, #FFE66D 0%, #FFD60A 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.privacy-points p,
.acknowledgment-list p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #333;
}

.critical-notice {
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.1), rgba(239, 71, 111, 0.1));
    border: 3px solid #D62828;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.critical-notice h2 {
    color: #D62828 !important;
    margin-top: 0 !important;
}

.main-footer {
    background: linear-gradient(135deg, #004E89 0%, #003054 100%);
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-heading {
    font-family: 'Righteous', cursive;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #FFE66D;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FFE66D;
    padding-left: 5px;
}

.footer-copyright {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.7;
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-modal.hidden {
    display: none;
}

.age-modal-box {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border: 4px solid #FF6B35;
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-modal-box h2 {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    color: #FF6B35;
    margin-bottom: 1.5rem;
}

.age-message {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.age-disclaimer {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn-yes,
.age-btn-no {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.age-btn-yes {
    background: linear-gradient(135deg, #06D6A0 0%, #04A777 100%);
    color: white;
}

.age-btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(6, 214, 160, 0.4);
}

.age-btn-no {
    background: transparent;
    color: #666;
    border: 2px solid #ccc;
}

.age-btn-no:hover {
    background: #f8f9fa;
    border-color: #999;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-radius: 8px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .game-iframe {
        height: 400px;
    }

    .game-iframe-full {
        height: 500px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .age-modal-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
