@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Poppins:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bright-orange: #ff6b35;
    --golden: #f7b731;
    --deep-blue: #1e3a8a;
    --sky-blue: #3b82f6;
    --cream: #fef3c7;
    --dark-text: #1f2937;
    --light-bg: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #fef3c7, #ffffff);
    color: var(--dark-text);
    line-height: 1.7;
    min-height: 100vh;
}

header {
    background: linear-gradient(135deg, var(--deep-blue), var(--sky-blue));
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--golden);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-icon {
    width: 45px;
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--golden);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--golden);
    border-radius: 3px;
}

.hero-section {
    background: linear-gradient(135deg, var(--bright-orange), var(--golden));
    padding: 4rem 0;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-section p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
}

.info-banner {
    background: white;
    border-left: 5px solid var(--bright-orange);
    border-radius: 0 15px 15px 0;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 900px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.info-banner h2 {
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
}

.info-banner ul {
    list-style: none;
}

.info-banner li {
    padding: 0.7rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-banner li::before {
    content: '✓';
    background: var(--golden);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.text-section {
    padding: 2rem 0;
    max-width: 1100px;
    margin: 0 auto;
}

.text-section h2 {
    color: var(--deep-blue);
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.text-section p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 1.9;
}

.game-embed {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 1200px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.game-embed h2 {
    text-align: center;
    color: var(--bright-orange);
    margin-bottom: 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
}

.game-iframe {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 15px;
    background: #000;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem auto;
    max-width: 1200px;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--bright-orange);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.info-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
}

.info-card p {
    font-size: 1.05rem;
    line-height: 1.8;
}

footer {
    background: linear-gradient(135deg, var(--deep-blue), var(--sky-blue));
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-column h3 {
    color: var(--golden);
    margin-bottom: 1.2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
}

.footer-column a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 0.7rem 0;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--golden);
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    max-width: 1200px;
    margin: 2rem auto 0;
}

.age-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.93);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-popup.active {
    display: flex;
}

.age-popup-box {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    margin: 1rem;
    border-top: 6px solid var(--bright-orange);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.age-popup-box h2 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    font-size: 2.3rem;
}

.age-popup-box p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    color: var(--dark-text);
}

.button-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.action-btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--bright-orange), var(--golden));
    color: white;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-decline {
    background: white;
    color: var(--deep-blue);
    border: 2px solid var(--deep-blue);
}

.btn-decline:hover {
    background: var(--deep-blue);
    color: white;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: var(--deep-blue);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        padding: 1rem 0;
    }

    .hero-section h1 {
        font-size: 2.3rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 500px;
    }

    .button-group {
        flex-direction: column;
    }
}
