@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap");

.perspective-1000 {
    perspective: 1000px;
}

.pulse-ring {
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.33); }
    80%, 100% { opacity: 0; }
}

/* --- CSS Custom Properties --- */
:root {
    /* === Primary Brand Colors === */
    --brand-blue: #2962ff;
    --brand-pink: #fc00f8;
    --brand-dark: #262B32;
    --brand-blue-light: #15a9fd;

    /* === Supporting / Accent Colors === */
    --brand-indigo: #6366f1;
    --brand-indigo-600: #4F46E5;
    --brand-purple: #9333ea;
    --brand-orange: #f97316;

    /* === Neutrals === */
    --color-white: #ffffff;
    --color-off-white: #F8FAFC;

    /* === Derived Design Tokens === */
    --color-heading: var(--brand-dark);         /* #262B32 — headings */
    --color-body: #4b5563;                      /* gray-600 — body text */
    --color-muted: #9ca3af;                     /* gray-400 — secondary text */
    --color-accent: var(--brand-blue);          /* #2962FF — primary CTA/accent */
    --color-accent-secondary: var(--brand-pink); /* #FC00F8 — secondary accent */
    --color-surface: var(--color-white);
    --color-surface-alt: var(--color-off-white);
    --color-surface-tinted: #f0f4ff;            /* very light blue tint */
    --color-border: #e5e7eb;                    /* gray-200 */
    --color-border-strong: #d1d5db;             /* gray-300 */

    /* === Fonts === */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* === Legacy tokens (mapped for backward compat) === */
    --surface-primary: var(--color-white);
    --surface-secondary: var(--color-off-white);
    --surface-inset: #f0f4ff;
    --text-body: #4b5563;
    --text-muted: #9ca3af;
    --border-default: #e5e7eb;
    --border-strong: #d1d5db;
    --transition-fast: 180ms ease;
    --transition-smooth: 280ms ease;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
}

/* --- Base Typography --- */
body {
    font-family: var(--font-body);
    color: var(--color-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background-color: white;
}

.font-display {
    font-family: var(--font-heading);
}

/* --- Shadow System --- */
.shadow-soft {
    box-shadow:
        0 10px 30px -5px rgba(0, 0, 0, 0.05),
        0 5px 15px -3px rgba(0, 0, 0, 0.02);
}

.shadow-glow-blue {
    box-shadow:
        0 0 20px rgba(41, 98, 255, 0.1),
        0 0 40px rgba(41, 98, 255, 0.05);
}

.shadow-glow-pink {
    box-shadow:
        0 0 20px rgba(252, 0, 248, 0.1),
        0 0 40px rgba(252, 0, 248, 0.05);
}

.shadow-glow-indigo {
    box-shadow:
        0 0 20px rgba(99, 102, 241, 0.12),
        0 0 40px rgba(99, 102, 241, 0.06);
}

/* --- Button System (Legacy — kept for authenticated views) --- */
.btn-primary {
    background: var(--brand-blue);
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    box-shadow: 0 2px 12px rgba(41, 98, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(41, 98, 255, 0.35);
}

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

.btn-secondary {
    background: white;
    color: var(--brand-blue);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-strong);
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    border-color: var(--brand-blue);
    background: rgba(41, 98, 255, 0.04);
    transform: translateY(-1px);
}

/* Gradient buttons (use sparingly — for highest-impact CTAs only) */
.btn-gradient-pink-blue {
    background: linear-gradient(135deg, #fc00f8 0%, #6366f1 50%, #2962ff 100%);
    color: white;
    font-weight: 700;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-gradient-pink-blue:hover {
    transform: translateY(-1px);
    box-shadow:
        0 4px 24px rgba(252, 0, 248, 0.25),
        0 2px 12px rgba(41, 98, 255, 0.2);
}

.btn-gradient-blue-pink {
    background: linear-gradient(135deg, #2962ff 0%, #6366f1 50%, #fc00f8 100%);
    color: white;
    font-weight: 700;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-gradient-blue-pink:hover {
    transform: translateY(-1px);
    box-shadow:
        0 4px 24px rgba(41, 98, 255, 0.25),
        0 2px 12px rgba(252, 0, 248, 0.2);
}

/* Animated gradient shimmer (for hero CTA only) */
.btn-gradient-animated {
    background: linear-gradient(
        135deg,
        #fc00f8 0%,
        #6366f1 25%,
        #2962ff 50%,
        #6366f1 75%,
        #fc00f8 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Outline button with gradient border */
.btn-outline-gradient {
    position: relative;
    background: white;
    color: var(--brand-indigo);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.btn-outline-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, #fc00f8 0%, #6366f1 50%, #2962ff 100%);
}

.btn-outline-gradient:hover {
    background: linear-gradient(135deg, #fc00f8 0%, #6366f1 50%, #2962ff 100%);
    color: white;
}

/* ─── Premium Button System (Ownr-layout, Brand-colored) ─── */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--brand-blue);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 2px 12px rgba(41, 98, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(41, 98, 255, 0.3);
    background: #1e54e6;
}

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

.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    color: var(--brand-blue);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1.5px solid var(--color-border-strong);
    cursor: pointer;
}

.btn-premium-outline:hover {
    border-color: var(--brand-blue);
    background: rgba(41, 98, 255, 0.04);
    transform: translateY(-1px);
}

.btn-premium-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 14px;
}

/* --- Surface System --- */
.bg-surface {
    background-color: var(--surface-secondary);
}

.bg-surface-elevated {
    background-color: var(--surface-primary);
}

.bg-surface-inset {
    background-color: var(--surface-inset);
}

/* ─── Section Gradient Transitions ─── */
.section-gradient-down {
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-off-white) 100%);
}

.section-gradient-up {
    background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-surface) 100%);
}

.section-tinted {
    background-color: var(--color-off-white);
}

.section-tinted-blue {
    background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-surface-tinted) 50%, var(--color-off-white) 100%);
}

/* ─── Pill Badge ─── */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    background: var(--color-surface-tinted);
    color: var(--brand-blue);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    border-radius: 100px;
    text-transform: uppercase;
}

.pill-badge-pink {
    background: rgba(252, 0, 248, 0.08);
    color: var(--brand-pink);
}

.pill-badge-indigo {
    background: rgba(99, 102, 241, 0.08);
    color: var(--brand-indigo);
}

.pill-badge-sm {
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
}

/* ─── Premium Card ─── */
.card-premium {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-premium:hover {
    border-color: var(--color-border-strong);
    box-shadow:
        0 8px 30px -8px rgba(0, 0, 0, 0.06),
        0 2px 8px -2px rgba(0, 0, 0, 0.03);
    transform: translateY(-4px);
}

.card-premium-static {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.75rem;
}

/* ─── Color-Coded Gradient Text ─── */
.text-gradient-brand {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-indigo) 50%, var(--brand-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-pink {
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-indigo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-indigo {
    background: linear-gradient(135deg, var(--brand-indigo) 0%, var(--brand-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Image Placeholder (Premium) ─── */
.image-placeholder-premium {
    background: linear-gradient(135deg, var(--color-surface-tinted) 0%, #e8eeff 50%, var(--color-off-white) 100%);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder-premium::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(41, 98, 255, 0.04) 100%);
    pointer-events: none;
}

/* Inner skeleton lines for mock UI */
.skeleton-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(41, 98, 255, 0.08);
}

.skeleton-line-short { width: 40%; }
.skeleton-line-medium { width: 65%; }
.skeleton-line-long { width: 85%; }

/* --- Form Inputs --- */
.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius-md);
    outline: none;
    transition: all var(--transition-fast);
    background: white;
    color: var(--color-heading);
    font-family: var(--font-body);
}

.input-field:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(41, 98, 255, 0.12);
}

.input-field::placeholder {
    color: var(--text-muted);
}

/* --- Motion Utilities --- */
.transition-smooth {
    transition: all var(--transition-smooth);
}

.hover-lift {
    transition: all var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-1px);
}

/* ─── Staggered Reveal Animation ─── */
.stagger-reveal > * {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.stagger-reveal.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.stagger-reveal.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 100ms; }
.stagger-reveal.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 200ms; }
.stagger-reveal.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 300ms; }
.stagger-reveal.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 400ms; }
.stagger-reveal.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }

/* ─── Counter Animation ─── */
@keyframes countUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.counter-animate {
    animation: countUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* ─── Frosted Glass Header ─── */
.header-frosted {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background: var(--surface-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-indigo);
    border-radius: 4px;
    opacity: 0.6;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-blue);
}

/* --- Selection --- */
::selection {
    background: rgba(41, 98, 255, 0.15);
    color: var(--color-heading);
}

/* --- Advanced Aesthetic Pack --- */

/* Mesh Gradient Backgrounds */
.bg-mesh-gradient {
    background-color: #ffffff;
    background-image: 
        radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%);
}

.bg-mesh-light {
    background-color: #f8fafc;
    background-image: 
        radial-gradient(at 10% 20%, hsla(225,100%,94%,1) 0px, transparent 50%),
        radial-gradient(at 90% 80%, hsla(253,100%,96%,1) 0px, transparent 50%),
        radial-gradient(at 50% 50%, hsla(339,100%,98%,1) 0px, transparent 50%);
}

/* Floating Blobs */
.glass-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(41, 98, 255, 0.1) 0%, rgba(41, 98, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: floatBlob 20s infinite alternate ease-in-out;
}

.glass-blob-pink {
    background: radial-gradient(circle, rgba(252, 0, 248, 0.06) 0%, rgba(252, 0, 248, 0) 70%);
    animation-duration: 25s;
    animation-delay: -5s;
}

.glass-blob-indigo {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0) 70%);
    animation-duration: 22s;
    animation-delay: -3s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}

/* Grain Overlay for Texture */
.grain-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background: transparent url('http://assets.iceable.com/img/noise-transparent.png') repeat 0 0;
    background-repeat: repeat;
    opacity: .04;
    visibility: visible;
    z-index: 9999;
    pointer-events: none;
    animation: noise 1s steps(10) infinite;
}

@keyframes noise {
    0%, 100% { transform:translate(0, 0) }
    10% { transform:translate(-5%, -10%) }
    20% { transform:translate(-15%, 5%) }
    30% { transform:translate(7%, -25%) }
    40% { transform:translate(-5%, 25%) }
    50% { transform:translate(-15%, 10%) }
    60% { transform:translate(15%, 0) }
    70% { transform:translate(0, 15%) }
    80% { transform:translate(3%, 35%) }
    90% { transform:translate(-10%, 10%) }
}

/* Advanced Glassmorphism */
.glass-premium {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.glass-premium-dark {
    background: rgba(26, 29, 35, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* Modern Text Truncation and Clamp */
.text-balance {
    text-wrap: balance;
}

/* Interactive Card Effects */
.card-hover-effect {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-hover-effect:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

.card-hover-effect:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--brand-blue);
    color: white;
}

.icon-box {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Scroll Animation Utilities */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation for Elements */
.animate-float {
    animation: subtleFloat 6s ease-in-out infinite;
}

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

/* Shimmer sweep animation for readiness progress bar */
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-shimmer {
    animation: shimmer 2s linear infinite;
}

/* Glow Borders */
.glow-border {
    position: relative;
    border-radius: inherit;
}

.glow-border::after {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.5), rgba(252, 0, 248, 0.5));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-border:hover::after {
    opacity: 1;
}

/* ─── Star Rating ─── */
.star-rating {
    display: inline-flex;
    gap: 2px;
    color: #f59e0b;
}

/* ═══════════════════════════════════════════════════════
   LOGIN LOADER — Full-screen auth loading overlay
   ═══════════════════════════════════════════════════════ */

@keyframes lidiaLogoSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes lidiaPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.06); }
}

@keyframes lidiaBarSlide {
    0%   { left: -45%; width: 45%; }
    50%  { left: 30%;  width: 60%; }
    100% { left: 110%; width: 45%; }
}

@keyframes lidiaBlobDrift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(30px, -20px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

.lidia-loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0e17 0%, #11152a 60%, #160e2e 100%);
    overflow: hidden;
}

/* Ambient blobs */
.lidia-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: lidiaBlobDrift 12s ease-in-out infinite;
}

.lidia-blob-blue {
    width: 520px;
    height: 520px;
    top: -80px;
    left: -120px;
    background: radial-gradient(circle, rgba(41, 98, 255, 0.22) 0%, transparent 70%);
    animation-duration: 14s;
}

.lidia-blob-pink {
    width: 420px;
    height: 420px;
    bottom: -60px;
    right: -80px;
    background: radial-gradient(circle, rgba(252, 0, 248, 0.16) 0%, transparent 70%);
    animation-duration: 10s;
    animation-delay: -4s;
}

/* Card */
.lidia-loader-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 3rem 3.5rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    min-width: 320px;
}

/* Spinning ring around logo */
.lidia-logo-ring {
    position: relative;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lidia-logo-ring-inner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    background:
        linear-gradient(#11152a, #11152a) padding-box,
        linear-gradient(135deg, #2962ff 0%, #fc00f8 100%) border-box;
    animation: lidiaLogoSpin 1.8s linear infinite;
}

.lidia-logo-img {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    animation: lidiaPulse 2.4s ease-in-out infinite;
    box-shadow: 0 0 0 3px rgba(41, 98, 255, 0.2);
}

/* Title */
.lidia-loader-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin: 0;
}

/* Rotating stat line */
.lidia-loader-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-height: 1.4rem;
    margin: 0;
}

.lidia-loader-emoji {
    font-size: 1rem;
    line-height: 1;
}

/* Indeterminate progress bar */
.lidia-loader-bar-track {
    position: relative;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.lidia-loader-bar-fill {
    position: absolute;
    top: 0;
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #2962ff, #fc00f8);
    animation: lidiaBarSlide 1.6s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}

