/* ==========================================================
   TẠ MINH AN {X:)} - COLORFUL MANGA & KAITO KID STYLESHEET
   ========================================================== */

:root {
    --bg-main: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-alt: #fafafa;
    --border-color: #e2e8f0;
    
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    
    /* Vibrant Color Palette */
    --color-blue: #2563eb;
    --color-coral: #f97316;
    --color-pink: #ec4899;
    --color-purple: #8b5cf6;
    --color-teal: #0d9488;
    --color-amber: #f59e0b;
    
    --shadow-subtle: 0 10px 30px -5px rgba(0, 0, 0, 0.06), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 40px -10px rgba(37, 99, 235, 0.18), 0 10px 25px -4px rgba(0, 0, 0, 0.08);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition-fast: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(at 10% 10%, rgba(37, 99, 235, 0.12) 0px, transparent 50%),
        radial-gradient(at 90% 20%, rgba(249, 115, 22, 0.12) 0px, transparent 50%),
        radial-gradient(at 15% 70%, rgba(139, 92, 246, 0.12) 0px, transparent 50%),
        radial-gradient(at 85% 85%, rgba(13, 148, 136, 0.12) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Canvas Particles */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

/* Typography & Links */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
}

.smiley {
    font-family: monospace;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    padding: 2px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
    display: inline-block;
    vertical-align: middle;
}

/* ==========================================================
   NAVIGATION BAR
   ========================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--color-blue);
    filter: drop-shadow(0 2px 6px rgba(37, 99, 235, 0.4));
}

.nav-links {
    display: flex;
    gap: 0.75rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    padding: 0.55rem 1.1rem;
    border-radius: 12px;
}

.nav-links a:hover, .nav-links a.active {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero-section {
    min-height: 100vh;
    padding: 8.5rem 5% 4rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.25rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #fae8ff 100%);
    border: 1.5px solid #dbeafe;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-blue);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.highlight-text {
    background: linear-gradient(135deg, #2563eb 0%, #ec4899 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.85rem;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.45);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-primary);
    border: 2px solid #cbd5e1;
    box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: var(--color-coral);
    color: var(--color-coral);
    transform: translateY(-3px);
}

.w-100 { width: 100%; justify-content: center; }

/* Mascot Frame */
.hero-mascot {
    display: flex;
    justify-content: center;
    position: relative;
    animation: zoomIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mascot-frame {
    position: relative;
    width: 360px;
    height: 380px;
    border-radius: 30px;
    padding: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 3px solid #bfdbfe;
    box-shadow: var(--shadow-hover);
    transition: var(--transition-smooth);
}

.mascot-frame:hover {
    transform: scale(1.02) rotate(1deg);
    border-color: var(--color-coral);
}

.mascot-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.mascot-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: var(--color-blue);
    padding: 0.6rem 1.4rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    border: 2px solid #93c5fd;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

/* Floating Stickers */
.floating-sticker {
    position: absolute;
    z-index: 20;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
    transition: var(--transition-smooth);
}

.sticker-kid-hat {
    top: -25px;
    right: -25px;
    width: 110px;
    animation: floatAnim 3.5s ease-in-out infinite;
}

.sticker-kid-cat {
    bottom: 10px;
    left: -45px;
    width: 120px;
    animation: floatAnim 4s ease-in-out infinite 1s;
}

.sticker-kid-chibi {
    top: 50%;
    right: -35px;
    transform: translateY(-50%);
    width: 130px;
    animation: floatAnim 4.5s ease-in-out infinite 1.5s;
}

.floating-sticker:hover {
    transform: scale(1.18) rotate(6deg);
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(4deg); }
}

/* ==========================================================
   FAMILY SECTION & MEMBER CARDS
   ========================================================== */
.baby-announcement-banner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 50%, #fef3c7 100%);
    border: 2px dashed #f43f5e;
    padding: 1.25rem 2rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.12);
    animation: fadeInDown 0.8s ease;
}

.baby-icon {
    font-size: 2.5rem;
    color: #e11d48;
    background: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.2);
}

.baby-announcement-banner h4 {
    font-size: 1.2rem;
    color: #be123c;
    margin-bottom: 0.15rem;
}

.baby-announcement-banner p {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 600;
}

.family-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.member-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
}

.dad-card { border-top: 5px solid #1e40af; background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%); }
.dad-card .member-avatar { background: #dbeafe; color: #1e40af; }

.mom-card { border-top: 5px solid #e11d48; background: linear-gradient(180deg, #ffffff 0%, #fff1f2 100%); }
.mom-card .member-avatar { background: #ffe4e6; color: #e11d48; }

.su-card { border-top: 5px solid #7c3aed; background: linear-gradient(180deg, #ffffff 0%, #f3e8ff 100%); }
.su-card .member-avatar { background: #ede9fe; color: #7c3aed; }

.xiu-card { border-top: 5px solid #2563eb; background: linear-gradient(180deg, #ffffff 0%, #e0f2fe 100%); }
.xiu-card .member-avatar { background: #bae6fd; color: #0284c7; }

.ky-card { border-top: 5px solid #0d9488; background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%); }
.ky-card .member-avatar { background: #ccfbf1; color: #0d9488; }

.member-role {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.member-name {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.member-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.tag-blue { background: #dbeafe; color: #1e40af; }
.tag-pink { background: #ffe4e6; color: #be123c; }
.tag-purple { background: #f3e8ff; color: #6d28d9; }
.tag-coral { background: #ffedd5; color: #c2410c; }
.tag-amber { background: #fef3c7; color: #b45309; }
.tag-teal { background: #ccfbf1; color: #0f766e; }

.member-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.member-hobbies {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.member-hobbies li i {
    width: 18px;
    color: var(--color-blue);
}
.section {
    padding: 5.5rem 5%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Base Card with Colorful Accents */
.card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 26px;
    padding: 2rem;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* About Grid Color Blocks */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.5rem;
}

.about-card.main-info {
    border-top: 5px solid var(--color-blue);
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.about-card.family-card {
    border-top: 5px solid var(--color-pink);
    background: linear-gradient(180deg, #ffffff 0%, #fdf2f8 100%);
}

.about-card.quote-card {
    border-top: 5px solid var(--color-amber);
    background: linear-gradient(180deg, #ffffff 0%, #fffbeb 100%);
}

.about-card .card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.main-info .card-icon { color: var(--color-blue); }
.family-card .card-icon { color: var(--color-pink); }
.quote-card .card-icon { color: var(--color-amber); }

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-card .tagline {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.info-list li i {
    color: var(--color-blue);
    width: 20px;
}

.family-stat {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin: 1rem 0;
}

.stat-number {
    font-size: 3.6rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--color-pink);
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.quote-card blockquote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    border-left: 4px solid var(--color-amber);
    padding-left: 1rem;
    margin-top: 1rem;
    background: #fff8f1;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 0 12px 12px 0;
}

/* Hobbies Grid Color Cards */
.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hobby-card {
    text-align: left;
    border-top: 5px solid #2563eb;
}

.hobby-card:nth-child(1) { border-top-color: #2563eb; background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%); }
.hobby-card:nth-child(2) { border-top-color: #0d9488; background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%); }
.hobby-card:nth-child(3) { border-top-color: #ec4899; background: linear-gradient(180deg, #ffffff 0%, #fdf2f8 100%); }
.hobby-card:nth-child(4) { border-top-color: #ef4444; background: linear-gradient(180deg, #ffffff 0%, #fef2f2 100%); }
.hobby-card:nth-child(5) { border-top-color: #8b5cf6; background: linear-gradient(180deg, #ffffff 0%, #f3e8ff 100%); }
.hobby-card:nth-child(6) { border-top-color: #f59e0b; background: linear-gradient(180deg, #ffffff 0%, #fffbeb 100%); }

.hobby-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.hobby-card:nth-child(1) .hobby-icon { color: #2563eb; }
.hobby-card:nth-child(2) .hobby-icon { color: #0d9488; }
.hobby-card:nth-child(3) .hobby-icon { color: #ec4899; }
.hobby-card:nth-child(4) .hobby-icon { color: #ef4444; }
.hobby-card:nth-child(5) .hobby-icon { color: #8b5cf6; }
.hobby-card:nth-child(6) .hobby-icon { color: #f59e0b; }

.hobby-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.hobby-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Kaito Kid Spotlight Grid */
.kid-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.kid-card {
    padding: 0;
    height: 340px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    border: 3px solid #cbd5e1;
}

.kid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.kid-card:hover img {
    transform: scale(1.04);
}

.kid-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    color: var(--text-primary);
    padding: 0.9rem 1.35rem;
    border-radius: 18px;
    border: 2px solid #bfdbfe;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.kid-badge h4 {
    font-size: 1.1rem;
    color: var(--color-blue);
    margin-bottom: 0.2rem;
}

.kid-badge p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.showcase-banner {
    padding: 0;
    height: 280px;
    display: flex;
    align-items: flex-end;
}

.showcase-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.showcase-banner:hover img {
    transform: scale(1.02);
}

.showcase-overlay {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%);
    width: 100%;
    color: #fff;
}

.showcase-overlay h3 { font-size: 1.75rem; color: #fff; }
.showcase-overlay p { color: #cbd5e1; }

/* ==========================================================
   GAME ARCADE ZONE
   ========================================================== */
.game-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    border-top: 5px solid var(--color-purple);
    background: linear-gradient(180deg, #ffffff 0%, #f5f3ff 100%);
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.game-title {
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-purple);
}

.game-score {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    background: #ffffff;
    color: var(--color-purple);
    padding: 0.4rem 1.1rem;
    border-radius: 14px;
    border: 2px solid #ddd6fe;
    font-weight: 800;
}

.game-stage {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 350px;
    margin: 0 auto 1.5rem;
    background: #0f172a;
    border-radius: 22px;
    overflow: hidden;
    border: 3px solid #cbd5e1;
    box-shadow: var(--shadow-subtle);
}

#race-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    z-index: 10;
    color: #fff;
}

.game-overlay h3 { font-size: 1.8rem; color: #fff; }
.game-overlay p { color: #cbd5e1; max-width: 400px; font-size: 0.95rem; }

.game-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.ctrl-btn {
    background: #ffffff;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 0.85rem 1.65rem;
    border-radius: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-subtle);
}

.ctrl-btn:active, .ctrl-btn:hover {
    background: var(--color-purple);
    color: #fff;
    border-color: var(--color-purple);
}

/* Quiz Container */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    border-top: 5px solid var(--color-teal);
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.quiz-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.quiz-question-title {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quiz-opt-btn {
    background: #ffffff;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 1.1rem;
    border-radius: 16px;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.quiz-opt-btn:hover {
    background: #eff6ff;
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.quiz-opt-btn.correct {
    background: #dcfce7 !important;
    border-color: #22c55e !important;
    color: #15803d !important;
}

.quiz-opt-btn.wrong {
    background: #fee2e2 !important;
    border-color: #ef4444 !important;
    color: #b91c1c !important;
}

.quiz-results {
    text-align: center;
    padding: 1rem 0;
}

.quiz-results h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-teal);
}

/* ==========================================================
   MESSAGE WALL
   ========================================================== */
.message-layout {
    display: flex;
    justify-content: center;
    position: relative;
}

.message-form-card {
    width: 100%;
    max-width: 650px;
    position: relative;
    border-top: 5px solid var(--color-coral);
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    text-align: left;
}

.input-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 700;
}

.input-group input, .input-group textarea {
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--color-coral);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
    padding: 3rem 5%;
    border-top: 2px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
    background: #ffffff;
}

.sub-footer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.text-white { color: var(--color-pink); }

/* Keyframe Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 7rem;
        text-align: center;
    }
    .hero-btns { justify-content: center; }
    .mascot-frame { margin: 0 auto; width: 300px; height: 320px; }
    .about-grid { grid-template-columns: 1fr; }
    .kid-spotlight-grid { grid-template-columns: 1fr; }
    .quiz-options { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .sticker-kid-chibi { display: none; }
}
