@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Fredoka:wght@500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ee5a6f, #c44569);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #2d3436;
    min-height: 100vh;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #2d3436;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

nav a:hover {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: #fff;
    transform: translateY(-2px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 5px;
}

.content-area {
    padding: 3rem 0;
}

.banner-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

h1 {
    font-family: 'Fredoka', cursive;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ee5a6f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tagline {
    font-size: 1.5rem;
    color: #636e72;
    font-weight: 400;
}

h2 {
    font-family: 'Fredoka', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ee5a6f, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.alert-banner {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    border-radius: 25px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 8px 30px rgba(253, 203, 110, 0.4);
}

.alert-banner h3 {
    font-family: 'Fredoka', cursive;
    font-size: 2rem;
    color: #d63031;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.alert-banner ul {
    list-style: none;
}

.alert-banner li {
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem 1.5rem;
    margin: 0.75rem 0;
    border-radius: 15px;
    font-weight: 600;
    color: #2d3436;
    font-size: 1.1rem;
}

.alert-banner li::before {
    content: '🎯 ';
    margin-right: 0.5rem;
}

.text-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 3rem;
    margin: 2.5rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.text-container p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #2d3436;
    margin-bottom: 1.5rem;
}

.game-display {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.game-display iframe {
    border: 5px solid;
    border-image: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ee5a6f) 1;
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    height: 700px;
    margin-top: 2rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.color-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.color-card:nth-child(1) { border-color: #ff6b6b; }
.color-card:nth-child(2) { border-color: #feca57; }
.color-card:nth-child(3) { border-color: #48dbfb; }
.color-card:nth-child(4) { border-color: #ee5a6f; }
.color-card:nth-child(5) { border-color: #c44569; }
.color-card:nth-child(6) { border-color: #0abde3; }

.color-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.color-card h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.7rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.color-card:nth-child(1) h3 { color: #ff6b6b; }
.color-card:nth-child(2) h3 { color: #f39c12; }
.color-card:nth-child(3) h3 { color: #48dbfb; }
.color-card:nth-child(4) h3 { color: #ee5a6f; }
.color-card:nth-child(5) h3 { color: #c44569; }
.color-card:nth-child(6) h3 { color: #0abde3; }

.color-card p {
    color: #636e72;
    font-size: 1.05rem;
    line-height: 1.7;
}

footer {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 0;
    margin-top: 4rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-wrapper {
    text-align: center;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #ee5a6f;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #c44569;
    transform: scale(1.1);
}

.footer-wrapper p {
    color: #636e72;
    font-weight: 500;
}

.age-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(254, 202, 87, 0.95), rgba(72, 219, 251, 0.95));
    z-index: 100000;
    justify-content: center;
    align-items: center;
}

.age-check.visible {
    display: flex;
}

.check-box {
    background: #fff;
    border-radius: 30px;
    padding: 3.5rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid;
    border-image: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb) 1;
}

.check-box h2 {
    margin-bottom: 1.5rem;
}

.check-box p {
    font-size: 1.2rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.check-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.check-actions button {
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Fredoka', cursive;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yes-button {
    background: linear-gradient(135deg, #00b894, #55efc4);
    color: #fff;
}

.yes-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.4);
}

.no-button {
    background: linear-gradient(135deg, #d63031, #ff7675);
    color: #fff;
}

.no-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(214, 48, 49, 0.4);
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
    }
    
    nav ul.open {
        left: 0;
    }
    
    nav li {
        padding: 1rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .banner-section {
        padding: 2.5rem 1.5rem;
    }
    
    .wrapper {
        padding: 0 1rem;
    }
    
    .content-area {
        padding: 2rem 0;
    }
    
    .game-display iframe {
        height: 500px;
    }
    
    .check-box {
        margin: 1rem;
        padding: 2.5rem;
    }
    
    .check-actions {
        flex-direction: column;
    }
}
