@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Nunito:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --coral: #ff6b6b;
    --coral-dark: #ee5a6f;
    --turquoise: #4ecdc4;
    --turquoise-dark: #44a3a0;
    --cream: #fffbf0;
    --dark-text: #2d3436;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--dark-text);
    line-height: 1.7;
}

header {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 50%, var(--turquoise) 100%);
    padding: 1.2rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.brand-circle {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--coral);
    font-weight: 800;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    font-family: 'Poppins', sans-serif;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

.wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.splash {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    margin-bottom: 3rem;
    border: 3px solid var(--coral);
}

.splash h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--coral) 0%, var(--turquoise) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.splash p {
    font-size: 1.3rem;
    color: var(--dark-text);
    max-width: 750px;
    margin: 0 auto;
    font-weight: 600;
}

.alert-box {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 8px solid var(--coral);
}

.alert-box h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--coral);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.alert-items {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.alert-items li {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--turquoise);
    font-weight: 700;
    font-size: 1.05rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-top: 5px solid var(--coral);
}

.feature-card:nth-child(even) {
    border-top-color: var(--turquoise);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--coral);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card:nth-child(even) h3 {
    color: var(--turquoise);
}

.feature-card p {
    color: var(--dark-text);
    font-weight: 400;
}

.game-box {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--turquoise);
}

.game-box h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--turquoise-dark);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.3rem;
    font-weight: 800;
}

.game-embed {
    width: 100%;
    height: 680px;
    border: none;
    border-radius: 20px;
    background: #000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.text-block {
    background: white;
    border-radius: 25px;
    padding: 3.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.text-block h1 {
    font-family: 'Poppins', sans-serif;
    color: var(--coral);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.text-block h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--turquoise);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.text-block p {
    margin-bottom: 1.2rem;
    color: var(--dark-text);
}

.text-block ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.text-block li {
    margin-bottom: 0.8rem;
}

footer {
    background: linear-gradient(135deg, var(--coral) 0%, var(--turquoise) 100%);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-radius: 30px 30px 0 0;
}

.footer-wrap {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: 'Poppins', sans-serif;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.98) 0%, rgba(78, 205, 196, 0.98) 100%);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.active {
    display: flex;
}

.age-gate-card {
    background: white;
    padding: 3.5rem;
    border-radius: 35px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-gate-card h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--coral);
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.age-gate-card p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--dark-text);
    font-weight: 600;
}

.age-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-action {
    font-family: 'Poppins', sans-serif;
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

.age-action.accept {
    background: linear-gradient(135deg, var(--coral) 0%, var(--turquoise) 100%);
    color: white;
}

.age-action.accept:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.age-action.reject {
    background: #e0e0e0;
    color: #666;
}

.age-action.reject:hover {
    background: #d0d0d0;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, var(--coral) 0%, var(--turquoise) 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s;
    }

    nav ul.active {
        left: 0;
    }

    .splash h1 {
        font-size: 2.5rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 450px;
    }

    .text-block {
        padding: 2rem 1.5rem;
    }
}
