:root {
    --bg-deep: #1a0b2e;
    --bg-mid: #431259;
    --bg-light: #76169d;
    --accent-yellow: #ffd700;
    --accent-cyan: #00f3ff;
    --accent-pink: #ff00cc;
    --text-primary: #ffffff;
    --text-secondary: #f0f0f0;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--bg-deep), var(--bg-mid), var(--bg-light));
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Background Image Overlay */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    z-index: 10;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 3px solid var(--glass-border);
    border-radius: 40px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: float 5s ease-in-out infinite;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 15px var(--accent-pink));
}

.bounce-animation {
    animation: bounce 2s infinite;
}

/* Typography */
h1.kids-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-yellow);
    text-shadow: 4px 4px 0px var(--accent-pink);
    letter-spacing: 0.05em;
}

h2.subtitle {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

.description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

/* CTA Button */
.cta-container {
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-cyan));
    border: 3px solid #fff;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 0 rgba(0,0,0,0.2);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 0 rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0,0,0,0.2);
}

.cta-button .icon {
    font-size: 1.5rem;
}

/* Floating Shapes Animation */
.area{
    width: 100%;
}

.floating-shapes .shape {
    position: absolute;
    opacity: 0.5;
    z-index: -1;
    animation: floatShape 20s infinite linear;
}

.shape.circle {
    width: 50px;
    height: 50px;
    background: var(--accent-yellow);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-duration: 25s;
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid var(--accent-cyan);
    top: 70%;
    right: 15%;
    animation-duration: 18s;
}

.shape.square {
    width: 40px;
    height: 40px;
    background: var(--accent-pink);
    top: 30%;
    right: 30%;
    transform: rotate(45deg);
    animation-duration: 30s;
}


/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatShape {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 50px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Responsive */
@media (max-width: 600px) {
    h1.kids-title {
        font-size: 2.8rem;
    }
    
    h2.subtitle {
        font-size: 1.5rem;
    }
    
    .glass-card {
        padding: 2.5rem 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}
