@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Nunito:wght@400;600;700;800&display=swap');

:root {
    --orange: #ff6b35;
    --yellow: #ffd23f;
    --green: #06d6a0;
    --blue: #118ab2;
    --purple: #8338ec;
    --bg: #fff5e6;
    --card-bg: #ffffff;
    --text: #2b2d42;
    --text-light: #8d99ae;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 214, 160, 0.1) 0%, transparent 50%);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.header-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    font-family: 'Poppins', sans-serif;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
}

nav a:hover {
    background: white;
    color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: white;
    margin: 2rem 0;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
    font-weight: 600;
}

/* Fun Cards */
.fun-card {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fun-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fun-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.fun-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green);
    margin: 2rem 0 1rem;
}

.fun-card p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.fun-card ul {
    list-style: none;
    padding-left: 0;
}

.fun-card li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-weight: 600;
}

.fun-card li::before {
    content: "🎮";
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

/* Warning Badges */
.warning-badges {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: 20px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(131, 56, 236, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(131, 56, 236, 0.4);
}

.badge h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
}

/* Game Zone */
.game-zone {
    margin: 4rem 0;
    text-align: center;
}

.game-box {
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    border-radius: 30px;
    padding: 3rem;
    display: inline-block;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.game-box iframe {
    border: 5px solid white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
    border-radius: 30px 30px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.modal-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 600;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    font-family: 'Poppins', sans-serif;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yes {
    background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(6, 214, 160, 0.4);
}

.btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 214, 160, 0.5);
}

.btn-no {
    background: var(--bg);
    color: var(--orange);
    border: 3px solid var(--orange);
}

.btn-no:hover {
    background: var(--orange);
    color: white;
}

.highlight {
    color: var(--orange);
    font-weight: 800;
}

/* Mobile */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 350px;
        background: linear-gradient(135deg, var(--orange) 0%, var(--purple) 100%);
        transition: right 0.3s ease;
        padding-top: 5rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        display: block;
        margin: 0.5rem 1.5rem;
        border-radius: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .warning-badges {
        flex-direction: column;
    }

    .fun-card {
        padding: 2rem 1.5rem;
    }

    .fun-card h2 {
        font-size: 2rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .game-box iframe {
        width: 100%;
        height: auto;
    }
}
