/* ==============================================
   ANYMATOY — Design System
   Premium, playful, and magical design for kids
   ============================================== */

/* ---------- CSS Variables ---------- */
:root {
    --color-primary: #7c3aed;
    --color-primary-light: #a78bfa;
    --color-primary-dark: #5b21b6;
    --color-secondary: #ec4899;
    --color-secondary-light: #f472b6;
    --color-accent: #f59e0b;
    --color-accent-light: #fbbf24;
    
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
    --gradient-hero: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #4c1d95 60%, #581c87 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #faf5ff 100%);
    --gradient-cta: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #ec4899 100%);
    --gradient-waiting: linear-gradient(135deg, #0f0a2e 0%, #1a1145 50%, #2d1b69 100%);
    --gradient-result: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    
    --shadow-soft: 0 4px 24px rgba(124, 58, 237, 0.12);
    --shadow-card: 0 8px 32px rgba(124, 58, 237, 0.15);
    --shadow-hover: 0 12px 40px rgba(124, 58, 237, 0.25);
    --shadow-button: 0 4px 16px rgba(124, 58, 237, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    --font-primary: 'Nunito', sans-serif;
    --font-display: 'Baloo 2', cursive;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: #1e1b4b;
    background: #faf5ff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
}

/* ---------- Navbar ---------- */
.storinha-nav {
    background: transparent;
    padding: 1rem 0;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.8rem !important;
    color: #fff !important;
    letter-spacing: -0.5px;
}

.brand-icon {
    font-size: 1.5rem;
}

/* ---------- Hero Section ---------- */
.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    display: flex;
    align-items: center;
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
}

.shape-1 { width: 400px; height: 400px; background: var(--color-secondary); top: -100px; right: -100px; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; background: var(--color-accent); bottom: -50px; left: -50px; animation-delay: 2s; }
.shape-3 { width: 200px; height: 200px; background: var(--color-primary-light); top: 40%; left: 10%; animation-delay: 4s; }
.shape-4 { width: 150px; height: 150px; background: var(--color-secondary-light); top: 20%; right: 30%; animation-delay: 1s; }
.shape-5 { width: 100px; height: 100px; background: var(--color-accent-light); bottom: 20%; right: 10%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 540px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.stat-icon {
    font-size: 1.2rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-phone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 380px;
    background: #1a1a2e;
    border-radius: 30px;
    border: 3px solid rgba(255,255,255,0.15);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2d1b69, #1a1145);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.phone-play {
    width: 60px;
    height: 60px;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5);
}

.phone-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 600;
}

.floating-card {
    position: absolute;
    font-size: 2.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 { top: 15%; left: 5%; animation-delay: 0s; }
.card-2 { top: 10%; right: 10%; animation-delay: 2s; }
.card-3 { bottom: 15%; left: 15%; animation-delay: 4s; }

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

/* ---------- Button Styles ---------- */
.btn-storinha {
    background: var(--gradient-cta);
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: var(--shadow-button);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-storinha:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-storinha:active {
    transform: translateY(0);
}

.btn-storinha:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ---------- How Section ---------- */
.how-section {
    padding: 6rem 0;
    background: #fff;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.step-card {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.08);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

.step-number {
    position: absolute;
    top: 12px;
    left: 16px;
    width: 32px;
    height: 32px;
    background: var(--gradient-cta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-hero);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.15rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* ---------- Footer ---------- */
.storinha-footer {
    background: #0f0a2e;
    color: rgba(255,255,255,0.6);
    padding: 2.5rem 0;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-copy {
    font-size: 0.85rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* ==============================================
   WIZARD STYLES
   ============================================== */
.wizard-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 3rem;
}

/* Progress */
.wizard-progress {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.progress-track {
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-cta);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
}

.progress-step.active .step-dot {
    background: var(--gradient-cta);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.5);
}

.progress-step.done .step-dot {
    background: #10b981;
    border-color: transparent;
    color: white;
}

.step-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}

.progress-step.active .step-label,
.progress-step.done .step-label {
    color: rgba(255,255,255,0.8);
}

/* Wizard Card */
.wizard-card {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    overflow: hidden;
}

.wizard-card-header {
    text-align: center;
    padding: 2.5rem 2rem 1.5rem;
}

.wizard-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.wizard-card-header h2 {
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.3rem;
}

.wizard-card-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.wizard-card-body {
    padding: 1rem 2.5rem 2rem;
}

.wizard-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
    background: #faf5ff;
    border-top: 1px solid rgba(124, 58, 237, 0.08);
}

/* Storinha Input */
.storinha-input {
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 1.05rem;
    transition: var(--transition);
}

.storinha-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

/* Age Options */
.age-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.age-option {
    cursor: pointer;
}

.age-card {
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.age-option.selected .age-card {
    border-color: var(--color-primary);
    background: #faf5ff;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.age-emoji { font-size: 2rem; }
.age-label { font-weight: 800; font-size: 1.1rem; color: var(--color-primary-dark); }
.age-desc { font-size: 0.8rem; color: #94a3b8; }

/* Photo Upload */
.photo-upload-area {
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.photo-upload-area.drag-over {
    border-color: var(--color-primary);
    background: #faf5ff;
}

.upload-placeholder i {
    font-size: 3rem;
    color: var(--color-primary-light);
    margin-bottom: 1rem;
    display: block;
}

.upload-placeholder p {
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.3rem;
}

.upload-hint {
    font-size: 0.8rem;
    color: #94a3b8;
}

.upload-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.photo-previews {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.photo-preview {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(239,68,68,0.9);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
}

.photo-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.photo-add {
    width: 120px;
    height: 120px;
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: var(--transition);
    color: #94a3b8;
    font-size: 0.8rem;
}

.photo-add:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.photo-add i {
    font-size: 1.5rem;
}

/* Theme Grid */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.theme-card {
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.theme-card:hover {
    border-color: var(--color-primary-light);
    background: #faf5ff;
}

.theme-card.selected {
    border-color: var(--color-primary);
    background: #faf5ff;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.theme-emoji { font-size: 1.8rem; }
.theme-name { font-weight: 700; font-size: 0.9rem; color: var(--color-primary-dark); }
.theme-desc { font-size: 0.75rem; color: #94a3b8; line-height: 1.4; }

/* Voice Options */
.voice-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.voice-card {
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.voice-card:hover {
    border-color: var(--color-primary-light);
    background: #faf5ff;
}

.voice-card.selected {
    border-color: var(--color-primary);
    background: #faf5ff;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.voice-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.voice-emoji { font-size: 2rem; }
.voice-name { font-weight: 700; color: var(--color-primary-dark); display: block; }
.voice-desc { font-size: 0.85rem; color: #94a3b8; }

/* Review */
.review-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: var(--radius-md);
}

.review-label { font-weight: 600; color: #475569; }
.review-value { font-weight: 700; color: var(--color-primary-dark); }

.review-photos {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.review-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid #e2e8f0;
}

/* ==============================================
   WAITING PAGE STYLES
   ============================================== */
.waiting-section {
    background: var(--gradient-waiting);
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.waiting-bg .star {
    position: absolute;
    font-size: 1.5rem;
    animation: twinkle 3s ease-in-out infinite;
    opacity: 0.5;
}

.star-1 { top: 10%; left: 15%; animation-delay: 0s; }
.star-2 { top: 20%; right: 20%; animation-delay: 0.5s; }
.star-3 { top: 40%; left: 5%; animation-delay: 1s; }
.star-4 { bottom: 30%; right: 10%; animation-delay: 1.5s; }
.star-5 { bottom: 15%; left: 25%; animation-delay: 2s; }
.star-6 { top: 60%; right: 30%; animation-delay: 2.5s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.waiting-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.waiting-icon {
    margin-bottom: 2rem;
}

.magic-book {
    font-size: 4rem;
    display: inline-block;
    animation: bookFloat 3s ease-in-out infinite;
}

@keyframes bookFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.waiting-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.waiting-subtitle {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 2.5rem;
}

/* Waiting Progress */
.waiting-progress {
    margin-bottom: 2.5rem;
}

.storinha-progress {
    height: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.storinha-progress .progress-bar {
    background: var(--gradient-cta);
    transition: width 0.8s ease;
    border-radius: var(--radius-full);
}

.progress-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.8;
}

/* Waiting Steps */
.waiting-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.waiting-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04);
    transition: var(--transition);
    opacity: 0.4;
    font-size: 0.95rem;
}

.waiting-step.active {
    background: rgba(255,255,255,0.1);
    opacity: 1;
}

.waiting-step.done {
    opacity: 0.7;
}

.waiting-step .step-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.current-step {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.5;
    font-style: italic;
}

.waiting-error {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(239,68,68,0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(239,68,68,0.2);
}

/* ==============================================
   RESULT PAGE STYLES
   ============================================== */
.result-section {
    background: var(--gradient-result);
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 3rem;
}

.result-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.result-header {
    margin-bottom: 2rem;
}

.result-title {
    font-size: 2.5rem;
}

.result-sparkle {
    animation: twinkle 2s ease-in-out infinite;
    display: inline-block;
}

/* Video Player */
.video-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    background: #000;
}

.video-player {
    width: 100%;
    display: block;
    max-height: 400px;
}

/* Action Buttons */
.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-share {
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    border: none;
    color: white;
    transition: var(--transition);
}

.btn-share:hover {
    transform: translateY(-2px);
    color: white;
}

.btn-whatsapp { background: #25D366; }
.btn-whatsapp:hover { background: #1fb955; box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }

.btn-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.btn-instagram:hover { box-shadow: 0 4px 16px rgba(220, 39, 67, 0.4); }

.result-footer {
    margin-top: 1rem;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: var(--radius-full);
    padding: 12px 28px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: white;
}

/* ==============================================
   ANIMATIONS
   ============================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { flex-direction: column; gap: 0.8rem; }
    
    .wizard-card-body { padding: 1rem 1.5rem 1.5rem; }
    .wizard-card-footer { padding: 1rem 1.5rem; }
    
    .age-options { grid-template-columns: 1fr; }
    .theme-grid { grid-template-columns: 1fr; }
    
    .result-title { font-size: 1.8rem; }
    .result-actions { flex-direction: column; align-items: center; }
    
    .step-label { display: none; }
}
