/* ==========================================================================
   PLAYFUL KIDS DESIGN SYSTEM
   ========================================================================== */
:root {
    --brand-cyan: #46b3ca;
    --brand-pink: #ff6b8b;
    --brand-orange: #ff9f43;
    --brand-yellow: #feca57;
    --brand-lime: #1dd1a1;
    --brand-purple: #a55eea;
    --bg-gradient: linear-gradient(135deg, #e0f7fc 0%, #fffbf0 50%, #fce4ec 100%);
    --text-dark: #2d3436;
    --font-heading: 'Fredoka', cursive, sans-serif;
    --font-body: 'Nunito', sans-serif;
}

body {
    background: var(--bg-gradient);
    color: var(--text-dark);
    font-family: var(--font-body);
    margin: 0;
    overflow-x: hidden;
}

/* Floating animation for illustrations and badges */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 139, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 107, 139, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 139, 0); }
}

/* ==========================================================================
   3D PLAYFUL CARDS
   ========================================================================== */
.play-card {
    background: #ffffff;
    border-radius: 35px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Card Themes */
.card-yellow {
    border: 5px solid var(--brand-yellow);
    box-shadow: 0 12px 0px #eccc68, 0 15px 25px rgba(0,0,0,0.08);
}

.card-pink {
    border: 5px solid var(--brand-pink);
    box-shadow: 0 12px 0px #ee5253, 0 15px 25px rgba(0,0,0,0.08);
}

.card-cyan {
    border: 5px solid var(--brand-cyan);
    box-shadow: 0 12px 0px #0abde3, 0 15px 25px rgba(0,0,0,0.08);
}

.card-lime {
    border: 5px solid var(--brand-lime);
    box-shadow: 0 12px 0px #10ac84, 0 15px 25px rgba(0,0,0,0.08);
}

.play-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* ==========================================================================
   BOUNCY BUTTONS
   ========================================================================== */
.btn-kid {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.15s ease;
}

.btn-kid-pink {
    background: var(--brand-pink);
    color: white;
    box-shadow: 0 8px 0px #d63031, 0 10px 20px rgba(0,0,0,0.15);
    animation: pulseGlow 2s infinite;
}

.btn-kid-pink:active {
    transform: translateY(6px);
    box-shadow: 0 2px 0px #d63031;
}

.btn-kid-cyan {
    background: var(--brand-cyan);
    color: white;
    box-shadow: 0 8px 0px #0097e6, 0 10px 20px rgba(0,0,0,0.15);
}

.btn-kid-cyan:active {
    transform: translateY(6px);
    box-shadow: 0 2px 0px #0097e6;
}

/* Floating badges on Hero */
.floating-element {
    animation: float 4s ease-in-out infinite;
}