@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #f5f5f5;
    color: #2c3e50;
    min-height: 100vh;
}

/* Top Navigation */
.header-nav {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.site-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #27ae60;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: #27ae60;
    color: white;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-hamburger span {
    width: 26px;
    height: 3px;
    background: #27ae60;
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero-banner h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* Card Layout */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: #27ae60;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.card-text {
    line-height: 1.7;
    color: #555;
    font-size: 1rem;
}

/* Content Section */
.content-section {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

h3 {
    font-size: 1.4rem;
    color: #229954;
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
}

ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

li {
    margin: 0.8rem 0;
    color: #555;
    line-height: 1.7;
}

/* Alert Card */
.alert-card {
    background: linear-gradient(135deg, #fffaeb 0%, #fff3cd 100%);
    border: 2px solid #f39c12;
    border-left: 6px solid #e67e22;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.alert-card h3 {
    color: #d35400;
    margin-top: 0;
}

.alert-card li {
    color: #333;
}

/* Game Section */
.game-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
}

.game-section iframe {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
.page-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.footer-links-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.footer-links-container a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-links-container a:hover {
    color: #2ecc71;
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-modal.show {
    display: flex;
}

.age-modal-inner {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.age-modal-inner h2 {
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.age-modal-inner p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.age-buttons button:hover {
    transform: scale(1.05);
}

.btn-confirm {
    background: #27ae60;
    color: white;
}

.btn-decline {
    background: #95a5a6;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .main-container {
        padding: 0 1rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-links-container {
        flex-direction: column;
        gap: 1rem;
    }

    .age-modal-inner {
        margin: 1rem;
        padding: 2rem;
    }
}
