@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #1a1a2e;
    color: #eee;
    min-height: 100vh;
}

/* Top Header with Hamburger */
.top-bar {
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    margin: 6px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffc845 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid #ff6b35;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.info-card h2 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.info-card h3 {
    color: #f7931e;
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 700;
}

.info-card p {
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 1rem;
}

.info-card ul {
    margin-left: 1.5rem;
    color: #ddd;
}

.info-card li {
    margin: 0.8rem 0;
    line-height: 1.6;
}

/* Full Width Card */
.full-card {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid #ff6b35;
    margin: 2rem 0;
}

.full-card h2 {
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.full-card h3 {
    color: #f7931e;
    font-size: 1.6rem;
    margin: 1.5rem 0 1rem;
    font-weight: 700;
}

.full-card p {
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Warning Box */
.warning-card {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 3px solid #ff1744;
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.5);
}

.warning-card h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.warning-card p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Game Section */
.game-section {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    border: 3px solid #ff6b35;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-section h2 {
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
}

.game-section iframe {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    max-width: 100%;
}

/* Feature Boxes */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-box {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: scale(1.05);
}

.feature-box h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-box p {
    color: #fff;
    font-weight: 500;
}

/* Footer */
footer {
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
    padding: 2.5rem;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 -4px 20px rgba(255, 107, 53, 0.3);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

footer p {
    color: #fff;
    font-weight: 600;
}

/* Age Modal */
.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.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 4px solid #ff6b35;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.age-modal-content h2 {
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.age-modal-content p {
    color: #eee;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.age-btn.yes {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
}

.age-btn.yes:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
}

.age-btn.no {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
}

.age-btn.no:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #16213e;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .container {
        padding: 1rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2rem;
    }
}
