@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Righteous&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #ff6b35;
    --yellow: #ffc107;
    --teal: #00bfa5;
    --navy: #0d1b2a;
    --slate: #1b263b;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.7;
}

header {
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--orange);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand svg {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-family: 'Righteous', cursive;
    font-size: 1.7rem;
    color: var(--orange);
    letter-spacing: 2px;
}

.menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.menu a:hover::after {
    transform: scaleX(1);
}

.menu a:hover {
    color: var(--yellow);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

main {
    margin-top: 85px;
}

.splash {
    background: linear-gradient(135deg, var(--slate) 0%, var(--navy) 100%);
    padding: 5rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.splash::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.splash::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.splash-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.splash h1 {
    font-family: 'Righteous', cursive;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.splash p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin: 0 auto 3rem;
}

.tags {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 193, 7, 0.1));
    border: 2px solid var(--orange);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tag span {
    font-size: 1.5rem;
}

.tag strong {
    color: var(--yellow);
    font-weight: 600;
}

.game-zone {
    background: var(--slate);
    padding: 5rem 2rem;
}

.game-zone h2 {
    font-family: 'Righteous', cursive;
    text-align: center;
    font-size: 2.5rem;
    color: var(--teal);
    margin-bottom: 2rem;
}

.game-frame {
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--teal);
    box-shadow: 0 0 50px rgba(0, 191, 165, 0.3);
}

.game-frame iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.perks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.perk {
    background: var(--slate);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border-left: 5px solid var(--orange);
    transition: transform 0.3s, box-shadow 0.3s;
}

.perk:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.perk .emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.perk h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.4rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.perk p {
    color: rgba(255, 255, 255, 0.8);
}

.info-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-section h1 {
    font-family: 'Righteous', cursive;
    font-size: 2.8rem;
    color: var(--orange);
    margin-bottom: 2rem;
    text-align: center;
}

.info-section h2 {
    font-family: 'Righteous', cursive;
    font-size: 1.6rem;
    color: var(--teal);
    margin: 2rem 0 1rem;
}

.info-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.info-section ul {
    margin: 1rem 0 1.5rem 2rem;
}

.info-section li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.7rem;
}

.about-area {
    background: linear-gradient(180deg, var(--slate) 0%, var(--navy) 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.about-area h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.2rem;
    color: var(--yellow);
    margin-bottom: 2rem;
}

.about-area p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

footer {
    background: var(--navy);
    border-top: 4px solid var(--orange);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--yellow);
}

footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-dialog {
    background: var(--slate);
    border: 3px solid var(--orange);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 1rem;
}

.age-dialog h2 {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.age-dialog p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.age-choices {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.choice-btn {
    padding: 1rem 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.choice-btn.accept {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: var(--navy);
}

.choice-btn.accept:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.choice-btn.decline {
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
}

.choice-btn.decline:hover {
    background: var(--teal);
    color: var(--navy);
}

.play-area {
    padding: 3rem 2rem;
}

.play-area h1 {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    text-align: center;
    color: var(--orange);
    margin-bottom: 1rem;
}

.play-info {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .menu {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 3px solid var(--orange);
        transform: translateY(-150%);
        transition: transform 0.4s;
    }
    
    .menu.open {
        transform: translateY(0);
    }
    
    .splash h1 {
        font-size: 2.2rem;
    }
    
    .splash p {
        font-size: 1.05rem;
    }
    
    .tags {
        flex-direction: column;
        align-items: center;
    }
    
    .game-frame iframe {
        height: 400px;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .age-choices {
        flex-direction: column;
    }
}
