/* =====================================================
   LITTLENOVA STUDIOS — PREMIUM KIDS STYLESHEET
   Font: Baloo 2 (display) + Nunito (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');

/* =====================================================
   CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
    --orange: #FF6B00;
    --orange-light: #FF8C3A;
    --orange-pale: #FFF3EB;
    --yellow: #FFD93D;
    --yellow-pale: #FFFBEC;
    --sky: #4FC3F7;
    --sky-pale: #EAF8FF;
    --purple: #8A5CFF;
    --purple-pale: #F1ECFF;
    --mint: #00C9A7;
    --mint-pale: #E6FAF7;
    --pink: #FF6B9D;

    --white: #FFFFFF;
    --cream: #FFFAF5;
    --section-bg: #FFFFFF;
    --section-bg-alt: #FFFAF5;
    --ink: #1A1A2E;
    --ink-soft: #3D3D5C;
    --text: #5A5A7A;
    --text-light: #9090A8;
    --border: rgba(0, 0, 0, 0.07);
    --border-light: rgba(0, 0, 0, 0.04);

    --gradient-primary: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    --gradient-hero: linear-gradient(155deg, #FFF8F2 0%, #FFEEDD 30%, #F5EEFF 65%, #E8F6FF 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.75) 100%);
    --gradient-text: linear-gradient(90deg, var(--orange), var(--yellow), var(--sky), var(--purple), var(--orange));
    --gradient-footer: linear-gradient(160deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);

    --font-display: 'Baloo 2', 'Fredoka', cursive;
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 24px 72px rgba(0, 0, 0, 0.14);
    --shadow-orange: 0 12px 40px rgba(255, 107, 0, 0.30);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);

    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --radius-2xl: 48px;
    --radius-full: 9999px;

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --z-negative: -1;
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-overlay: 900;
    --z-modal: 1000;
    --z-tooltip: 1100;

    --container-max: 1220px;
    --container-padding: 5%;
    --header-height: 80px;
}

/* Dark Mode */
[data-theme="dark"] {
    --cream: #10101E;
    --section-bg: #14142A;
    --section-bg-alt: #10101E;
    --ink: #F0F0FF;
    --ink-soft: #C0C0D8;
    --text: #8888A8;
    --text-light: #8a8ad0;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.04);
    --white: #1E1E38;
    --orange-pale: rgba(255, 107, 0, 0.10);
    --yellow-pale: rgba(255, 217, 61, 0.06);
    --sky-pale: rgba(79, 195, 247, 0.07);
    --purple-pale: rgba(138, 92, 255, 0.10);
    --mint-pale: rgba(0, 201, 167, 0.07);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 24px 72px rgba(0, 0, 0, 0.6);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.25);
    --gradient-hero: linear-gradient(155deg, #10101E 0%, #15102A 30%, #0A1525 65%, #0D1020 100%);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    transition: background-color var(--transition-base), color var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* =====================================================
   SCROLL PROGRESS
   ===================================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--yellow), var(--sky), var(--purple));
    background-size: 300% 100%;
    animation: progressShimmer 3s linear infinite;
    z-index: var(--z-tooltip);
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.5);
}

@keyframes progressShimmer {
    to {
        background-position: 300% 0;
    }
}

/* =====================================================
   SPARKLE CANVAS
   ===================================================== */
.sparkle-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: var(--z-negative);
    opacity: 0.5;
}

/* =====================================================
   CURSOR GLOW
   ===================================================== */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, rgba(255, 217, 61, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: var(--z-negative);
    opacity: 0;
    transition: opacity var(--transition-base);
}

body:hover .cursor-glow {
    opacity: 1;
}

@media (max-width: 768px) {
    .cursor-glow {
        display: none;
    }
}

/* =====================================================
   PARTICLES
   ===================================================== */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: var(--z-negative);
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    animation: floatParticle 18s infinite ease-in-out;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.2;
    }

    25% {
        transform: translateY(-120px) translateX(60px) scale(1.1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-240px) translateX(-40px) scale(0.9);
        opacity: 0.2;
    }

    75% {
        transform: translateY(-120px) translateX(-60px) scale(1.05);
        opacity: 0.4;
    }
}

/* =====================================================
   BUTTONS (Global)
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.95rem;
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
    border-radius: inherit;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 50px rgba(255, 107, 0, 0.45);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    border: 2px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Dark Mode Fix */
[data-theme="dark"] .btn-ghost {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
}

[data-theme="dark"] .btn-ghost:hover {
    background: linear-gradient(135deg, #FF6B00, #FF8C3A);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,0,0.35);
}

.btn-white {
    background: white;
    color: var(--orange);
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover svg {
    transform: translateX(4px);
}

.btn-sm {
    padding: 9px 20px;
    font-size: 0.85rem;
}

.btn-hero {
    padding: 15px 30px;
    font-size: 1rem;
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 250, 245, 0.88);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border-bottom: 1px solid rgba(255, 107, 0, 0.08);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.header.scrolled::before {
    opacity: 1;
}

[data-theme="dark"] .header::before {
    background: rgba(16, 16, 30, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.header-container {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    z-index: var(--z-modal);
}

.logo-bubble {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
    overflow: hidden;
    flex-shrink: 0;
    animation: logoBounce 3s ease-in-out infinite;
}

@keyframes logoBounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-3px) rotate(4deg);
    }
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
    background: var(--orange-pale);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--section-bg-alt);
    border: 2px solid var(--border);
    transition: all var(--transition-base);
}

.theme-toggle:hover {
    transform: rotate(20deg) scale(1.08);
    border-color: var(--yellow);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--text);
}

.theme-toggle .moon-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    z-index: var(--z-modal);
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--ink);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    z-index: var(--z-overlay);
}

/* .overlay.active {
    opacity: 1;
    pointer-events: all;
} */

@media (max-width: 960px) {

    .hamburger {
        display: flex;
    }

    .btn-sm.btn-primary {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--section-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 36px 36px;
        gap: 6px;
        transition: right var(--transition-base);
        z-index: var(--z-modal);
        box-shadow: -10px 0 48px rgba(0, 0, 0, 0.12);
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 18px;
        width: 100%;
    }

    [data-theme="dark"] .nav {
        background: var(--section-bg);
    }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: var(--z-negative);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

/* Glowing orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orbDrift 12s ease-in-out infinite;
}

.orb-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.45) 0%, transparent 70%);
    top: -120px;
    right: -60px;
    animation-delay: 0s;
}

.orb-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.35) 0%, transparent 70%);
    bottom: 60px;
    left: -80px;
    animation-delay: 3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.20) 0%, transparent 70%);
    top: 200px;
    left: 30%;
    animation-delay: 6s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(138, 92, 255, 0.18) 0%, transparent 70%);
    bottom: 200px;
    right: 25%;
    animation-delay: 9s;
}

@keyframes orbDrift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-30px, 20px) scale(1.06);
    }

    66% {
        transform: translate(20px, -30px) scale(0.95);
    }
}

.hero-stars {
    position: absolute;
    inset: 0;
}

.hero-star {
    position: absolute;
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
}

.hero-star.star-shape {
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    color: var(--orange);
    opacity: 0.4;
    animation: twinkleStar 3s infinite ease-in-out;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.15;
        transform: scale(0.8);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.3);
    }
}

@keyframes twinkleStar {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.8) rotate(0deg);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2) rotate(20deg);
    }
}

.hero-clouds {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 100px;
    animation: floatCloud linear infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.cloud-1 {
    width: 220px;
    height: 65px;
    top: 18%;
    left: -220px;
    animation-duration: 38s;
}

.cloud-1::before {
    width: 90px;
    height: 90px;
    top: -45px;
    left: 30px;
}

.cloud-1::after {
    width: 70px;
    height: 70px;
    top: -35px;
    right: 30px;
}

.cloud-2 {
    width: 160px;
    height: 52px;
    top: 48%;
    left: -160px;
    animation-duration: 50s;
    animation-delay: 12s;
}

.cloud-2::before {
    width: 65px;
    height: 65px;
    top: -32px;
    left: 28px;
}

.cloud-2::after {
    width: 52px;
    height: 52px;
    top: -26px;
    right: 28px;
}

.cloud-3 {
    width: 190px;
    height: 58px;
    top: 74%;
    left: -190px;
    animation-duration: 55s;
    animation-delay: 24s;
}

.cloud-3::before {
    width: 75px;
    height: 75px;
    top: -38px;
    left: 30px;
}

.cloud-3::after {
    width: 58px;
    height: 58px;
    top: -30px;
    right: 30px;
}

@keyframes floatCloud {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw + 400px));
    }
}

/* Dot grid */
.hero-dots-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 107, 0, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

[data-theme="dark"] .hero-dots-grid {
    opacity: 0.15;
}

.hero-container {
    position: relative;
    z-index: var(--z-base);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 80px var(--container-padding) 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Hero content */
.hero-content {
    z-index: var(--z-base);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 9px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    box-shadow: var(--shadow-md);
    margin-bottom: 28px;
    border: 1.5px solid rgba(255, 107, 0, 0.12);
}

.badge-dot {
    width: 9px;
    height: 9px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 6px rgba(255, 107, 0, 0);
    }
}

.badge-emoji {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.gradient-text {
    background: var(--gradient-text);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s linear infinite;
    display: inline-block;
}

@keyframes gradientFlow {
    to {
        background-position: 300% center;
    }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 18px 28px;
    width: fit-content;
    box-shadow: var(--shadow-card);
    border: 1.5px solid var(--border-light);
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 700;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1.5px;
    height: 36px;
    background: var(--border);
    border-radius: 2px;
}

/* Hero characters */
.hero-characters {
    position: relative;
    height: 520px;
}

.character-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.character-stage-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.25) 0%, rgba(255, 107, 0, 0.15) 40%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    animation: stageGlowPulse 4s ease-in-out infinite;
}

@keyframes stageGlowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.character {
    position: absolute;
    transition: transform var(--transition-slow);
}

.character-card-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 6px 16px rgba(0, 0, 0, 0.10);
    border: 4px solid rgba(255, 255, 255, 0.9);
    transition: all var(--transition-base);
    position: relative;
}

.character-card-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    border-radius: inherit;
    pointer-events: none;
}

.character-img {
    display: block;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.character:hover .character-img {
    transform: scale(1.06);
}

.character-glow {
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.35;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.55;
    }
}

/* Name tags */
.char-name-tag {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.78rem;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.nova-tag {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
}

.luna-tag {
    background: linear-gradient(135deg, var(--purple), #A855F7);
    color: white;
}

.bobo-tag {
    background: linear-gradient(135deg, var(--sky), #38BDF8);
    color: white;
}

/* Nova */
.nova-character {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: floatNova 4s ease-in-out infinite;
}

.nova-character .character-img {
    width: 270px;
    height: 340px;
}

.nova-frame {
    border-color: rgba(255, 200, 100, 0.8) !important;
}

.nova-glow {
    background: radial-gradient(circle, var(--orange) 0%, var(--yellow) 100%);
}

@keyframes floatNova {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-16px);
    }
}

/* Luna */
.luna-character {
    top: 0;
    right: 8%;
    z-index: 2;
    animation: floatLuna 5.5s ease-in-out infinite;
}

.luna-character .character-img {
    width: 175px;
    height: 215px;
}

.luna-glow {
    background: radial-gradient(circle, var(--purple) 0%, var(--pink) 100%);
}

@keyframes floatLuna {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-22px) rotate(2deg);
    }
}

/* Bobo */
.bobo-character {
    bottom: 8%;
    left: 3%;
    z-index: 2;
    animation: floatBobo 3.8s ease-in-out infinite;
}

.bobo-character .character-img {
    width: 148px;
    height: 178px;
}

.bobo-glow {
    background: radial-gradient(circle, var(--sky) 0%, var(--mint) 100%);
}

@keyframes floatBobo {

    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-11px) rotate(-2deg);
    }
}

/* Sparkles */
.sparkles {
    position: absolute;
    inset: -24px;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border-radius: 50%;
    animation: sparklePop 2.5s infinite ease-in-out;
    box-shadow: 0 0 8px rgba(255, 217, 61, 0.6);
}

.sparkle:nth-child(1) {
    top: 8%;
    left: 18%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 28%;
    right: 8%;
    animation-delay: 0.4s;
    background: var(--orange);
}

.sparkle:nth-child(3) {
    bottom: 18%;
    left: 8%;
    animation-delay: 0.8s;
    background: var(--sky);
}

.sparkle:nth-child(4) {
    top: 55%;
    right: 18%;
    animation-delay: 1.2s;
    background: var(--purple);
}

.sparkle:nth-child(5) {
    bottom: 8%;
    right: 28%;
    animation-delay: 1.6s;
}

@keyframes sparklePop {

    0%,
    100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Floating emojis */
.float-emoji {
    position: absolute;
    font-size: 2rem;
    animation: floatEmoji 4s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.fe-1 {
    top: 4%;
    left: 14%;
    animation-delay: 0s;
    font-size: 1.8rem;
}

.fe-2 {
    top: 12%;
    right: 3%;
    animation-delay: 0.8s;
    font-size: 1.4rem;
}

.fe-3 {
    bottom: 35%;
    right: 1%;
    animation-delay: 1.5s;
    font-size: 1.6rem;
}

.fe-4 {
    bottom: 20%;
    left: 40%;
    animation-delay: 2.2s;
    font-size: 1.3rem;
}

@keyframes floatEmoji {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-18px) rotate(12deg) scale(1.1);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 22px;
    height: 22px;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

/* Hero responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-content {
        order: 1;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        margin: 0 auto;
    }

    .hero-characters {
        order: 2;
        height: 420px;
    }

    .nova-character .character-img {
        width: 220px;
        height: 275px;
    }

    .luna-character .character-img {
        width: 140px;
        height: 170px;
    }

    .bobo-character .character-img {
        width: 120px;
        height: 145px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-characters {
        height: 320px;
    }

    .nova-character .character-img {
        width: 165px;
        height: 205px;
    }

    .luna-character {
        right: 2%;
    }

    .luna-character .character-img {
        width: 105px;
        height: 128px;
    }

    .bobo-character {
        left: 1%;
    }

    .bobo-character .character-img {
        width: 96px;
        height: 115px;
    }

    .hero-stats {
        padding: 14px 20px;
        gap: 16px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .scroll-indicator {
        display: none;
    }

    .float-emoji {
        display: none;
    }
}

/* =====================================================
   SECTION COMMONS
   ===================================================== */
section {
    padding: 100px 0;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.25);
}

.badge-white {
    background: rgba(255, 255, 255, 0.25) !important;
    box-shadow: none !important;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text);
    max-width: 580px;
    margin: 0 auto;
}

/* Reveal animations */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
    transform: translateY(64px);
}

.reveal-left {
    transform: translateX(-64px);
}

.reveal-right {
    transform: translateX(64px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

[data-delay="100"] {
    transition-delay: 0.12s !important;
}

[data-delay="200"] {
    transition-delay: 0.24s !important;
}

[data-delay="300"] {
    transition-delay: 0.36s !important;
}

/* =====================================================
   CHARACTERS SECTION
   ===================================================== */
.characters {
    background: var(--section-bg);
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.character-card {
    position: relative;
    background: var(--section-bg);
    border-radius: var(--radius-xl);
    padding: 36px 28px 32px;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    cursor: default;
}

.character-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: inherit;
}

.nova-card::before {
    background: linear-gradient(145deg, rgba(255, 107, 0, 0.04), rgba(255, 217, 61, 0.04));
}

.luna-card::before {
    background: linear-gradient(145deg, rgba(138, 92, 255, 0.05), rgba(255, 107, 157, 0.03));
}

.bobo-card::before {
    background: linear-gradient(145deg, rgba(79, 195, 247, 0.05), rgba(0, 201, 167, 0.04));
}

.character-card:hover::before {
    opacity: 1;
}

.character-card:hover {
    transform: translateY(-14px) scale(1.015);
    border-color: transparent;
}

.nova-card:hover {
    box-shadow: 0 28px 64px rgba(255, 107, 0, 0.16), var(--shadow-card);
}

.luna-card:hover {
    box-shadow: 0 28px 64px rgba(138, 92, 255, 0.16), var(--shadow-card);
}

.bobo-card:hover {
    box-shadow: 0 28px 64px rgba(79, 195, 247, 0.16), var(--shadow-card);
}

/* Card bg shape */
.card-bg-shape {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.07;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.nova-card .card-bg-shape {
    background: var(--orange);
}

.luna-card .card-bg-shape {
    background: var(--purple);
}

.bobo-card .card-bg-shape {
    background: var(--sky);
}

.character-card:hover .card-bg-shape {
    opacity: 0.14;
    transform: scale(1.2);
}

.card-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    top: -60px;
    right: -60px;
    transition: opacity 0.4s;
    pointer-events: none;
}

.character-card:hover .card-glow {
    opacity: 0.38;
}

.orange-glow {
    background: var(--orange);
}

.purple-glow {
    background: var(--purple);
}

.blue-glow {
    background: var(--sky);
}

.card-image {
    position: relative;
    width: 185px;
    height: 225px;
    margin: 0 auto 26px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.card-image-inner {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.character-card:hover .card-image img {
    transform: scale(1.1);
}

.card-image-ring {
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-lg);
    border: 3px solid transparent;
    pointer-events: none;
    transition: all var(--transition-base);
    opacity: 0;
}

.nova-card:hover .card-image-ring {
    border-color: rgba(255, 107, 0, 0.4);
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
}

.luna-card:hover .card-image-ring {
    border-color: rgba(138, 92, 255, 0.4);
    opacity: 1;
    box-shadow: 0 0 20px rgba(138, 92, 255, 0.2);
}

.bobo-card:hover .card-image-ring {
    border-color: rgba(79, 195, 247, 0.4);
    opacity: 1;
    box-shadow: 0 0 20px rgba(79, 195, 247, 0.2);
}

.card-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    overflow: hidden;
}

.card-particles span {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-base);
    animation: pFloat 2s infinite ease-in-out;
}

.card-particles span:nth-child(1) {
    top: 18%;
    left: 10%;
    background: var(--orange);
    animation-delay: 0s;
}

.card-particles span:nth-child(2) {
    top: 50%;
    right: 8%;
    background: var(--yellow);
    animation-delay: 0.3s;
}

.card-particles span:nth-child(3) {
    bottom: 18%;
    left: 28%;
    background: var(--sky);
    animation-delay: 0.6s;
}

.card-particles span:nth-child(4) {
    bottom: 40%;
    right: 20%;
    background: var(--purple);
    animation-delay: 0.9s;
}

.card-particles.magical span:nth-child(1) {
    background: var(--purple);
}

.card-particles.magical span:nth-child(2) {
    background: var(--pink);
}

.card-particles.techy span:nth-child(1) {
    background: var(--sky);
}

.card-particles.techy span:nth-child(2) {
    background: var(--mint);
}

.character-card:hover .card-particles span {
    opacity: 1;
}

@keyframes pFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.2);
    }
}

.card-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.card-name {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1;
}

.card-role {
    display: inline-block;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.nova-card .card-role {
    background: var(--orange-pale);
    color: var(--orange);
}

.luna-card .card-role {
    background: var(--purple-pale);
    color: var(--purple);
}

.bobo-card .card-role {
    background: var(--sky-pale);
    color: #0284C7;
}

.card-description {
    color: var(--text);
    font-size: 0.92rem;
    margin-bottom: 18px;
    line-height: 1.7;
}

.card-traits {
    display: flex;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
}

.trait {
    padding: 5px 13px;
    border-radius: var(--radius-sm);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.trait-orange {
    background: var(--orange-pale);
    color: var(--orange);
}

.trait-purple {
    background: var(--purple-pale);
    color: var(--purple);
}

.trait-blue {
    background: var(--sky-pale);
    color: #0284C7;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
    background: var(--section-bg-alt);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    color: var(--text);
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.78;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--section-bg);
    padding: 18px 22px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border-light);
    transition: all var(--transition-spring);
}

.feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 0, 0.15);
}

.feature-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform var(--transition-spring);
}

.feature:hover .feature-icon-wrap {
    transform: scale(1.12) rotate(6deg);
}

.feature-icon-orange {
    background: var(--orange-pale);
}

.feature-icon-purple {
    background: var(--purple-pale);
}

.feature-icon-blue {
    background: var(--sky-pale);
}

.feature-text h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ink);
    font-size: 1rem;
    margin-bottom: 3px;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.88rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.stat-card {
    background: var(--section-bg);
    border-radius: var(--radius-xl);
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 2px solid var(--border-light);
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.12;
    pointer-events: none;
    transition: all var(--transition-base);
}

.stat-orange::before {
    background: var(--orange);
}

.stat-purple::before {
    background: var(--purple);
}

.stat-sky::before {
    background: var(--sky);
}

.stat-green::before {
    background: var(--mint);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.stat-card:hover::before {
    transform: scale(2);
    opacity: 0.2;
}

.stat-icon {
    font-size: 2.6rem;
    display: block;
    margin-bottom: 10px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange);
    display: block;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-title {
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-features {
        align-items: stretch;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =====================================================
   SHOWS SECTION
   ===================================================== */
.shows {
    background: var(--section-bg);
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
}

.show-card {
    background: var(--section-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: all 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.show-card:hover {
    transform: translateY(-14px);
    border-color: transparent;
}

.show-nova:hover {
    box-shadow: 0 28px 64px rgba(255, 107, 0, 0.16);
}

.show-luna:hover {
    box-shadow: 0 28px 64px rgba(138, 92, 255, 0.16);
}

.show-bobo:hover {
    box-shadow: 0 28px 64px rgba(79, 195, 247, 0.16);
}

.show-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.show-gradient {
    position: absolute;
    inset: 0;
}

.show-gradient.orange {
    background: linear-gradient(145deg, #FFF4E8, #FFE6CC);
}

.show-gradient.purple {
    background: linear-gradient(145deg, #F3EEFF, #E6D8FF);
}

.show-gradient.blue {
    background: linear-gradient(145deg, #E8F7FF, #CCE9FF);
}

/* Bubbles inside thumbnail */
.show-bg-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.show-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: sbFloat 6s ease-in-out infinite;
}

.show-nova .show-bubble {
    background: var(--orange);
}

.show-luna .show-bubble {
    background: var(--purple);
}

.show-bobo .show-bubble {
    background: var(--sky);
}

.sb-1 {
    width: 80px;
    height: 80px;
    bottom: -20px;
    left: 10%;
    animation-delay: 0s;
}

.sb-2 {
    width: 50px;
    height: 50px;
    top: 10%;
    right: 12%;
    animation-delay: 1.5s;
}

@keyframes sbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

.show-character {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 195px;
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.18));
}

.show-card:hover .show-character {
    transform: translateX(-50%) scale(1.08) translateY(-8px);
}

.show-character img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.show-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--white);
    color: var(--orange);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(255, 107, 0, 0.15);
}

.show-float-emoji {
    position: absolute;
    pointer-events: none;
    animation: floatEmoji 4s ease-in-out infinite;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
}

.sfe-1 {
    top: 14px;
    left: 14px;
    font-size: 1.5rem;
    animation-delay: 0s;
}

.sfe-2 {
    bottom: 24px;
    right: 14px;
    font-size: 1.2rem;
    animation-delay: 1s;
}

.show-content {
    padding: 26px 24px 28px;
}

.show-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.2;
}

.show-description {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.7;
}

.show-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 700;
}

.meta-item svg {
    width: 14px;
    height: 14px;
}

.show-notify {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--section-bg-alt);
    color: var(--ink);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.88rem;
    border: 2px solid var(--border);
    transition: all var(--transition-spring);
}

.show-notify svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.show-notify:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: var(--shadow-orange);
}

/* =====================================================
   CAREERS SECTION
   ===================================================== */
.careers {
    background: linear-gradient(160deg, var(--section-bg-alt) 0%, var(--section-bg) 100%);
}

.careers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.careers-text {
    color: var(--text);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.78;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.position {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--section-bg);
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border-light);
    transition: all var(--transition-spring);
    cursor: default;
}

.position:hover {
    transform: translateX(12px);
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: var(--shadow-md);
}

.position-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform var(--transition-spring);
}

.position:hover .position-icon {
    transform: scale(1.2) rotate(8deg);
}

.position-title {
    font-weight: 800;
    color: var(--ink);
    font-size: 0.95rem;
    flex: 1;
}

.position-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-light);
    opacity: 0;
    transition: all var(--transition-base);
    transform: translateX(-8px);
}

.position:hover .position-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--orange);
}

.careers-email {
    margin-top: 18px;
    color: var(--text-light);
    font-size: 0.92rem;
}

.careers-email a {
    color: var(--orange);
    font-weight: 800;
    transition: all var(--transition-fast);
}

.careers-email a:hover {
    text-decoration: underline;
}

/* Careers visual */
.careers-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.careers-illustration {
    position: relative;
    width: 380px;
    height: 380px;
}

.careers-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(255, 107, 0, 0.18);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbitSpin linear infinite;
}

.ring-1 {
    width: 340px;
    height: 340px;
    animation-duration: 25s;
}

.ring-2 {
    width: 260px;
    height: 260px;
    animation-duration: 18s;
    animation-direction: reverse;
    border-color: rgba(138, 92, 255, 0.14);
}

@keyframes orbitSpin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.floating-element {
    position: absolute;
    font-size: 2.4rem;
    animation: floatElement 4s ease-in-out infinite;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
}

.el-1 {
    top: 8%;
    left: 8%;
    animation-delay: 0s;
}

.el-2 {
    top: 4%;
    right: 18%;
    animation-delay: 0.6s;
}

.el-3 {
    bottom: 18%;
    left: 4%;
    animation-delay: 1.2s;
}

.el-4 {
    bottom: 26%;
    right: 8%;
    animation-delay: 1.8s;
    font-size: 2rem;
}

.el-5 {
    top: 42%;
    right: 2%;
    animation-delay: 2.4s;
    font-size: 1.8rem;
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-18px) rotate(12deg) scale(1.08);
    }
}

.careers-character {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid rgba(255, 255, 255, 0.9);
    animation: careersPulse 4s ease-in-out infinite;
}

@keyframes careersPulse {

    0%,
    100% {
        box-shadow: var(--shadow-xl), 0 0 0 0 rgba(255, 107, 0, 0.2);
    }

    50% {
        box-shadow: var(--shadow-xl), 0 0 0 20px rgba(255, 107, 0, 0);
    }
}

.careers-character img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 960px) {
    .careers-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .careers-visual {
        order: -1;
    }
}

/* =====================================================
   NEWSLETTER SECTION
   ===================================================== */
.newsletter {
    background: var(--section-bg);
}

.newsletter-card {
    position: relative;
    border-radius: var(--radius-2xl);
    background: linear-gradient(145deg, var(--orange) 0%, #FF8C3A 50%, #FFB347 100%);
    padding: 72px 48px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(255, 107, 0, 0.35);
}

.newsletter-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='30' cy='30' r='3' fill='rgba(255,255,255,0.08)'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.newsletter-bg-art {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.nl-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    filter: blur(40px);
}

.nl-orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -80px;
}

.nl-orb-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    right: -40px;
}

.nl-orb-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
    line-height: 1.15;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

.newsletter-form {
    max-width: 520px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 10px;
}

.input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap svg {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    color: var(--text-light);
    pointer-events: none;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px 15px 46px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    outline: none;
    color: var(--ink);
    background: white;
    transition: box-shadow var(--transition-base);
}

.newsletter-form input:focus {
    box-shadow: var(--shadow-lg), 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
    font-weight: 500;
}

.form-message {
    margin-top: 14px;
    font-weight: 700;
    color: white;
    font-size: 0.92rem;
    min-height: 22px;
}

.newsletter-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-star {
    position: absolute;
    font-size: 2.2rem;
    opacity: 0;
    animation: starFadeFloat 6s ease-in-out infinite;
}

.star-1 {
    top: 16%;
    left: 8%;
    animation-delay: 0s;
}

.star-2 {
    top: 22%;
    right: 12%;
    animation-delay: 1s;
    font-size: 1.6rem;
}

.star-3 {
    bottom: 18%;
    left: 16%;
    animation-delay: 2s;
    font-size: 1.9rem;
}

.star-4 {
    bottom: 30%;
    right: 7%;
    animation-delay: 3s;
    font-size: 1.4rem;
}

@keyframes starFadeFloat {

    0%,
    100% {
        opacity: 0.15;
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        opacity: 0.45;
        transform: translateY(-22px) rotate(20deg) scale(1.1);
    }
}

@media (max-width: 640px) {
    .newsletter-card {
        padding: 48px 28px;
    }

    .form-group {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form .btn-white {
        width: 100%;
    }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--gradient-footer);
    color: white;
    padding: 0 0 32px;
    position: relative;
}

.footer-top-wave {
    line-height: 0;
}

.footer-top-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 56px var(--container-padding) 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 2fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    width: fit-content;
}

.footer-logo-bubble {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.4);
    overflow: hidden;
    flex-shrink: 0;
}

.footer-logo-bubble img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--orange);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 7px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    padding: 5px 0;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.footer-column a:hover {
    color: var(--orange);
    transform: translateX(6px);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 28px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-spring);
}

.social-link svg {
    width: 21px;
    height: 21px;
    fill: rgba(255, 255, 255, 0.65);
    transition: fill var(--transition-base);
}

.social-link:hover {
    transform: translateY(-6px) scale(1.08);
}

.social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.social-link.x:hover {
    background: rgba(255, 255, 255, 0.15);
}

.social-link.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
}

.social-link:hover svg {
    fill: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--orange);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 960px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition: all var(--transition-spring);
    z-index: var(--z-dropdown);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-6px) scale(1.08);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* =====================================================
   UTILITY
   ===================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media print {

    .header,
    .back-to-top,
    .cursor-glow,
    .particles,
    .scroll-progress,
    .sparkle-canvas {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
