/* Global Reset & Mobile Overflow Safeguards */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Premium Background with Orange Gradients & Grid Pattern */
.premium-bg {
    background-color: #020100;
    background-image: 
        radial-gradient(circle at 50% 0px, rgba(249, 115, 22, 0.18) 0%, transparent 900px),
        radial-gradient(circle at 90% 1200px, rgba(249, 115, 22, 0.10) 0%, transparent 700px),
        radial-gradient(circle at 10% 2400px, rgba(249, 115, 22, 0.08) 0%, transparent 800px),
        radial-gradient(circle at 85% 3600px, rgba(249, 115, 22, 0.09) 0%, transparent 750px),
        radial-gradient(circle at 50% 4800px, rgba(249, 115, 22, 0.10) 0%, transparent 900px),
        linear-gradient(to right, rgba(249, 115, 22, 0.012) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(249, 115, 22, 0.012) 1px, transparent 1px);
    background-size: auto, auto, auto, auto, auto, 40px 40px, 40px 40px;
}

/* Premium Gradient Card Style */
.premium-card {
    background: linear-gradient(145deg, rgba(24, 16, 12, 0.6) 0%, rgba(12, 8, 6, 0.6) 100%) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    border: 1px solid rgba(249, 115, 22, 0.15) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.premium-card:hover {
    background: linear-gradient(145deg, rgba(38, 25, 18, 0.75) 0%, rgba(18, 12, 9, 0.75) 100%) !important;
    border-color: rgba(249, 115, 22, 0.45) !important;
    box-shadow: 0 12px 40px 0 rgba(249, 115, 22, 0.18) !important;
    transform: translateY(-4px);
}

/* Premium Card Highlighted Style (Best Deal) */
.premium-card-highlighted {
    background: linear-gradient(145deg, rgba(35, 18, 10, 0.75) 0%, rgba(18, 9, 5, 0.75) 100%) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border: 1.5px solid rgba(249, 115, 22, 0.45) !important;
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.15), inset 0 0 12px rgba(249, 115, 22, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.premium-card-highlighted:hover {
    background: linear-gradient(145deg, rgba(48, 24, 13, 0.85) 0%, rgba(24, 12, 6, 0.85) 100%) !important;
    border-color: rgba(249, 115, 22, 0.7) !important;
    box-shadow: 0 0 60px rgba(249, 115, 22, 0.25), inset 0 0 16px rgba(249, 115, 22, 0.1) !important;
    transform: translateY(-6px) scale(1.06);
}

/* Testimonial Infinite Marquee Scroll (creativeai.id style) */
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 12px 0;
    display: flex;
    justify-content: center;
}
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 300px;
    z-index: 10;
    pointer-events: none;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #050201 0%, rgba(5, 2, 1, 0.5) 50%, transparent 100%);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #050201 0%, rgba(5, 2, 1, 0.5) 50%, transparent 100%);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(0);
    }
}

.scroll-left-anim {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scroll-left 28s linear infinite;
}

.scroll-right-anim {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scroll-right 28s linear infinite;
}

.scroll-left-anim:hover,
.scroll-right-anim:hover,
.partner-scroll-anim:hover {
    animation-play-state: paused;
}

/* Partner Logo Marquee */
.partner-marquee-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.partner-marquee-container::before,
.partner-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 10;
    pointer-events: none;
}
.partner-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #050201 0%, rgba(5, 2, 1, 0.9) 40%, transparent 100%);
}
.partner-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #050201 0%, rgba(5, 2, 1, 0.9) 40%, transparent 100%);
}
.partner-scroll-anim {
    display: flex;
    width: max-content;
    gap: 48px;
    animation: scroll-partner 35s linear infinite;
}

@keyframes scroll-partner {
    0% {
        transform: translateX(-33.33%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Premium Glass Panel Styling */
.glass-panel {
    background: rgba(18, 11, 8, 0.45) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    border: 1px solid rgba(249, 115, 22, 0.12) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.glass-panel:hover {
    border-color: rgba(249, 115, 22, 0.25) !important;
    box-shadow: 0 12px 40px 0 rgba(249, 115, 22, 0.08) !important;
}

.glass-panel-deep {
    background: rgba(18, 11, 8, 0.75) !important;
    backdrop-filter: blur(32px) !important;
    border: 1px solid rgba(249, 115, 22, 0.2) !important;
}

/* Gradients & Glow Effects (creativeai.id Style) */
.amber-gradient {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%) !important;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.25);
}
.btn-gradient-border {
    background: linear-gradient(#050201, #050201) padding-box,
                linear-gradient(135deg, #f97316 0%, #ef4444 100%) border-box !important;
    border: 1.5px solid transparent !important;
    box-shadow: 0 4px 25px rgba(249, 115, 22, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.btn-gradient-border:hover {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5) !important;
}
.text-glow {
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}
.inner-rim {
    box-shadow: inset 0 1px 0 rgba(249, 115, 22, 0.1);
}

.gradient-text-orange-red {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Step Connectors */
.step-connector {
    position: relative;
}
.step-connector::after {
    content: '';
    position: absolute;
    left: 16px; /* Centered for w-8 on mobile */
    top: 32px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, #f97316, transparent);
    z-index: 0;
}
@media (min-width: 640px) {
    .step-connector::after {
        left: 20px; /* Centered for w-10 on desktop */
        top: 40px;
    }
}
.step-connector:last-child::after {
    display: none;
}

/* Background Gradients & Patterns */
.bg-glow-orange {
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
}
.bg-glow-orange-edge {
    background: radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
}

/* Ambient Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
    animation: pulse-glow 8s infinite alternate ease-in-out;
}

.glow-orb-orange {
    background: radial-gradient(circle, #f97316 0%, #ef4444 100%);
}

.glow-orb-purple {
    background: radial-gradient(circle, #a855f7 0%, #6366f1 100%);
}

@keyframes pulse-glow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.08;
    }
    100% {
        transform: scale(1.15) translate(15px, -15px);
        opacity: 0.16;
    }
}

/* Solid Stars for Material Symbols */
.fill-1 {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Floating WhatsApp Button Pulse Animation */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
.whatsapp-pulse {
    animation: pulse-whatsapp 2s infinite;
}

/* Live Registration Toast Notification */
.live-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 100;
    max-width: 340px;
    background: rgba(18, 11, 8, 0.9) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(249, 115, 22, 0.25) !important;
    box-shadow: 0 10px 30px -5px rgba(249, 115, 22, 0.15), 0 0 15px rgba(249, 115, 22, 0.05) !important;
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.live-toast.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 640px) {
    .live-toast {
        left: 16px;
        bottom: 80px; /* Raised to prevent overlapping with floating WhatsApp button */
        right: 16px;
        max-width: calc(100% - 32px);
    }
}

/* Testimonial Cards Desktop Size Reduction (30% smaller than 288x176) */
.testimonial-section .marquee-container .premium-card {
    width: 200px !important;       /* ~30% smaller than 288px */
    min-height: 123px !important;  /* ~30% smaller than 176px */
    padding: 14px !important;       /* ~30% smaller than 20px (p-5) */
}

/* Reduce spacing/fonts inside cards by 30% for desktop */
.testimonial-section .marquee-container .premium-card p {
    font-size: 9px !important;
    line-height: 13px !important;
    margin-bottom: 8px !important;
}

/* Star rating icons */
.testimonial-section .marquee-container .premium-card .material-symbols-outlined {
    font-size: 9px !important;
}

/* Avatar and text */
.testimonial-section .marquee-container .premium-card .w-8.h-8 {
    width: 24px !important;        /* ~30% smaller than 32px */
    height: 24px !important;
    font-size: 8px !important;
}

.testimonial-section .marquee-container .premium-card h4 {
    font-size: 9px !important;
}

.testimonial-section .marquee-container .premium-card p.text-on-surface-variant {
    font-size: 8px !important;
}

/* Adjust scrolling animations gap for desktop */
.scroll-left-anim,
.scroll-right-anim {
    gap: 14px !important;          /* ~30% smaller than 20px */
}

/* Mobile Optimizations for Testimonial Section (30% smaller cards/grid, 10% smaller spacing) */
@media (max-width: 640px) {
    /* Section padding reduced by 10% (80px -> 72px) */
    .testimonial-section {
        padding-top: 72px !important;
        padding-bottom: 72px !important;
    }
    
    /* Margin top of title wrapper reduced by 10% (80px -> 72px) */
    .testimonial-section .mt-20 {
        margin-top: 72px !important;
    }
    
    /* Margin top of marquee cards reduced by 10% (32px -> 28px) */
    .testimonial-section .mt-8 {
        margin-top: 28px !important;
    }

    /* Gap between marquee rows reduced to bring them closer */
    .testimonial-section .marquee-container {
        margin-bottom: 12px !important;
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }
    
    /* Reduce fade gradient width on mobile so cards are visible */
    .testimonial-section .marquee-container::before,
    .testimonial-section .marquee-container::after {
        width: 80px !important;
    }

    /* Testimonial cards size reduced by another 30% for mobile */
    .testimonial-section .marquee-container .premium-card {
        width: 140px !important;       /* ~30% smaller than 200px */
        min-height: 86px !important;   /* ~30% smaller than 123px */
        padding: 10px !important;       /* ~30% smaller than 14px */
    }

    /* Reduce spacing/fonts inside cards by another 30% on mobile */
    .testimonial-section .marquee-container .premium-card p {
        font-size: 7.5px !important;
        line-height: 11px !important;
        margin-bottom: 6px !important;
    }
    
    /* Star rating icons */
    .testimonial-section .marquee-container .premium-card .material-symbols-outlined {
        font-size: 7.5px !important;
    }

    /* Avatar and text */
    .testimonial-section .marquee-container .premium-card .w-8.h-8 {
        width: 18px !important;        /* ~30% smaller than 24px */
        height: 18px !important;
        font-size: 6.5px !important;
    }
    
    .testimonial-section .marquee-container .premium-card h4 {
        font-size: 7.5px !important;
    }
    
    .testimonial-section .marquee-container .premium-card p.text-on-surface-variant {
        font-size: 6.5px !important;
    }

    /* Adjust scrolling animations gap for mobile */
    .scroll-left-anim,
    .scroll-right-anim {
        gap: 10px !important;          /* ~30% smaller than 14px */
    }

    /* Testimonial Stats Grid Cards size reduced by 30% */
    .testimonial-section .grid .premium-card {
        padding: 16px !important;
    }
    .testimonial-section .grid .premium-card p.text-primary {
        font-size: 13px !important;
    }
    .testimonial-section .grid .premium-card p.text-on-surface-variant {
        font-size: 10px !important;
    }
    .testimonial-section .grid {
        gap: 10px !important;          /* ~30% smaller than 16px gap */
    }
}

/* Showcase Marquee Section Styles */
.showcase-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
    display: flex;
    justify-content: center;
}

.showcase-marquee-container::before,
.showcase-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 10;
    pointer-events: none;
}
.showcase-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #020100 0%, rgba(2, 1, 0, 0.5) 50%, transparent 100%);
}
.showcase-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #020100 0%, rgba(2, 1, 0, 0.5) 50%, transparent 100%);
}

@keyframes showcase-scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

@keyframes showcase-scroll-right {
    0% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(0);
    }
}


.showcase-scroll-left-anim {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: showcase-scroll-left 45s linear infinite;
}

.showcase-scroll-right-anim {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: showcase-scroll-right 45s linear infinite;
}

.showcase-scroll-left-anim:hover,
.showcase-scroll-right-anim:hover {
    animation-play-state: paused;
}

.showcase-img-card {
    width: 250px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

@media (max-width: 640px) {
    .showcase-marquee-container::before,
    .showcase-marquee-container::after {
        width: 80px;
    }
    .showcase-scroll-left-anim,
    .showcase-scroll-right-anim {
        gap: 16px;
    }
    .showcase-img-card {
        width: 180px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   THEME TOGGLE BUTTON
   Pill-shaped with moon/sun icon matching uploaded design
═══════════════════════════════════════════════════════════════ */

.theme-toggle-btn {
    width: 56px;
    height: 28px;
    border-radius: 14px;
    border: 1.5px solid rgba(255,255,255,0.15);
    cursor: pointer;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    background: #1a1008;
    transition: background 0.35s ease, border-color 0.35s ease;
    outline: none;
    display: flex;
    align-items: center;
}

.theme-toggle-btn::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    transition: right 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 1px 4px rgba(0,0,0,0.35);
    z-index: 2;
}

.theme-toggle-icon {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    pointer-events: none;
    z-index: 1;
    line-height: 1;
}

.theme-toggle-icon .toggle-moon { display: block; font-size: 13px; }
.theme-toggle-icon .toggle-sun  { display: none;  font-size: 13px; }

/* Light mode state */
[data-theme="light"] .theme-toggle-btn {
    background: #f97316;
    border-color: rgba(249, 115, 22, 0.4);
}

[data-theme="light"] .theme-toggle-icon .toggle-moon { display: none; }
[data-theme="light"] .theme-toggle-icon .toggle-sun  { display: block; }

/* ═══════════════════════════════════════════════════════════════
   LIGHT MODE THEME OVERRIDES
   Applied when <html data-theme="light">
═══════════════════════════════════════════════════════════════ */

[data-theme="light"] { color-scheme: light; }

[data-theme="light"] html,
[data-theme="light"] body {
    background-color: #faf8f5 !important;
    color: #1a0808 !important;
}

[data-theme="light"] .premium-bg {
    background-color: #faf8f5 !important;
    background-image:
        radial-gradient(circle at 50% 0px, rgba(249,115,22,0.07) 0%, transparent 700px),
        radial-gradient(circle at 90% 1200px, rgba(249,115,22,0.04) 0%, transparent 500px),
        linear-gradient(to right, rgba(249,115,22,0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(249,115,22,0.025) 1px, transparent 1px) !important;
    background-size: auto, auto, 40px 40px, 40px 40px !important;
}

/* Header / Nav */
[data-theme="light"] header,
[data-theme="light"] nav {
    background: rgba(250,248,245,0.92) !important;
    border-color: rgba(200,150,100,0.18) !important;
}

/* Glass Panels */
[data-theme="light"] .glass-panel {
    background: rgba(255,252,248,0.92) !important;
    backdrop-filter: blur(16px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(120%) !important;
    border: 1px solid rgba(200,150,100,0.2) !important;
    box-shadow: 0 4px 20px 0 rgba(0,0,0,0.06), 0 1px 3px 0 rgba(249,115,22,0.05) !important;
}
[data-theme="light"] .glass-panel:hover {
    border-color: rgba(249,115,22,0.3) !important;
    box-shadow: 0 8px 30px 0 rgba(249,115,22,0.1) !important;
}
[data-theme="light"] .glass-panel-deep {
    background: rgba(255,250,244,0.98) !important;
    border: 1px solid rgba(200,150,100,0.25) !important;
}

/* Cards */
[data-theme="light"] .premium-card {
    background: linear-gradient(145deg, rgba(255,252,248,0.97) 0%, rgba(255,248,240,0.97) 100%) !important;
    border: 1px solid rgba(200,150,100,0.2) !important;
    box-shadow: 0 4px 20px 0 rgba(0,0,0,0.07) !important;
}
[data-theme="light"] .premium-card:hover {
    background: linear-gradient(145deg, rgba(255,250,244,0.99) 0%, rgba(255,244,232,0.99) 100%) !important;
    border-color: rgba(249,115,22,0.4) !important;
    box-shadow: 0 10px 36px 0 rgba(249,115,22,0.14) !important;
    transform: translateY(-4px);
}
[data-theme="light"] .premium-card-highlighted {
    background: linear-gradient(145deg, rgba(255,245,235,0.98) 0%, rgba(255,240,225,0.98) 100%) !important;
    border: 1.5px solid rgba(249,115,22,0.38) !important;
    box-shadow: 0 0 40px rgba(249,115,22,0.1) !important;
}
[data-theme="light"] .premium-card-highlighted:hover {
    border-color: rgba(249,115,22,0.65) !important;
    box-shadow: 0 0 55px rgba(249,115,22,0.22) !important;
}

/* ── Specific Tailwind Color and Background Class Overrides ── */

/* Solid backgrounds */
[data-theme="light"] .bg-\[\#020100\] { background-color: #faf8f5 !important; }
[data-theme="light"] .bg-\[\#050201\] { background-color: #faf8f5 !important; }
[data-theme="light"] .bg-\[\#080c10\] { background-color: #faf8f5 !important; }
[data-theme="light"] .bg-\[\#0a0604\] { background-color: #fcfaf7 !important; }
[data-theme="light"] .bg-\[\#0c0806\] { background-color: #fdfbf8 !important; }
[data-theme="light"] .bg-\[\#0f0a08\] { background-color: #f4efe6 !important; }
[data-theme="light"] .bg-\[\#14181f\] { background-color: #f0ebe0 !important; }
[data-theme="light"] .bg-\[\#18100c\] { background-color: #eae2d5 !important; }
[data-theme="light"] .bg-\[\#181311\] { background-color: #f4efe6 !important; }
[data-theme="light"] .bg-\[\#1f1715\] { background-color: #eae2d5 !important; }
[data-theme="light"] .bg-black { background-color: #faf8f5 !important; }

/* Dynamic Tailwind surface configuration aliases */
[data-theme="light"] .bg-background { background-color: #faf8f5 !important; }
[data-theme="light"] .bg-surface-container { background-color: #f4efe6 !important; }
[data-theme="light"] .bg-surface-container-low { background-color: #f9f6f0 !important; }
[data-theme="light"] .bg-surface-container-lowest { background-color: #ffffff !important; }
[data-theme="light"] .bg-surface-container-high { background-color: #eae2d5 !important; }
[data-theme="light"] .bg-surface-container-highest { background-color: #dfd6c7 !important; }
[data-theme="light"] .bg-surface-bright { background-color: #ffffff !important; }
[data-theme="light"] .bg-surface-dim { background-color: #ede6da !important; }
[data-theme="light"] .bg-surface-variant { background-color: #fdfaf6 !important; }

/* Semi-transparent backgrounds */
[data-theme="light"] .bg-\[\#020100\]\/80 { background-color: rgba(250, 248, 245, 0.8) !important; }
[data-theme="light"] .bg-\[\#050201\]\/40 { background-color: rgba(250, 248, 245, 0.4) !important; }
[data-theme="light"] .bg-\[\#150d0a\]\/80 { background-color: rgba(244, 239, 230, 0.8) !important; }
[data-theme="light"] .bg-\[\#18100c\]\/60 { background-color: rgba(234, 226, 213, 0.6) !important; }
[data-theme="light"] .bg-black\/20 { background-color: rgba(26, 8, 8, 0.05) !important; }
[data-theme="light"] .bg-black\/40 { background-color: rgba(26, 8, 8, 0.08) !important; }
[data-theme="light"] .bg-black\/80 { background-color: rgba(250, 248, 245, 0.92) !important; }
[data-theme="light"] .bg-white\/5 { background-color: rgba(26, 8, 8, 0.04) !important; }
[data-theme="light"] .bg-white\/\[0\.04\] { background-color: rgba(26, 8, 8, 0.03) !important; }

/* Gradients */
[data-theme="light"] .from-\[\#020100\] { --tw-gradient-from: #faf8f5 !important; --tw-gradient-to: rgba(250, 248, 245, 0) !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important; }
[data-theme="light"] .from-\[\#240d02\]\/30 { --tw-gradient-from: rgba(249, 115, 22, 0.05) !important; --tw-gradient-to: rgba(249, 115, 22, 0) !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important; }
[data-theme="light"] .to-\[\#020100\] { --tw-gradient-to: #faf8f5 !important; }
[data-theme="light"] .via-\[\#020100\]\/60 { --tw-gradient-to: rgba(250, 248, 245, 0) !important; --tw-gradient-stops: var(--tw-gradient-from), rgba(250, 248, 245, 0.6) var(--tw-gradient-to) !important; }
[data-theme="light"] .via-\[\#050201\]\/50 { --tw-gradient-to: rgba(250, 248, 245, 0) !important; --tw-gradient-stops: var(--tw-gradient-from), rgba(250, 248, 245, 0.5) var(--tw-gradient-to) !important; }
[data-theme="light"] .via-white\/15 { --tw-gradient-to: rgba(26, 8, 8, 0) !important; --tw-gradient-stops: var(--tw-gradient-from), rgba(26, 8, 8, 0.05) var(--tw-gradient-to) !important; }

/* Text */
[data-theme="light"] .text-white { color: #1a0808 !important; }
[data-theme="light"] .text-white\/20 { color: rgba(26, 8, 8, 0.2) !important; }
[data-theme="light"] .text-white\/50 { color: rgba(26, 8, 8, 0.5) !important; }
[data-theme="light"] .text-white\/70 { color: rgba(26, 8, 8, 0.7) !important; }
[data-theme="light"] .text-white\/80 { color: rgba(26, 8, 8, 0.8) !important; }
[data-theme="light"] .text-white\/90 { color: rgba(26, 8, 8, 0.9) !important; }
[data-theme="light"] .text-on-surface { color: #1a0808 !important; }
[data-theme="light"] .text-on-surface-variant { color: #5c4537 !important; }
[data-theme="light"] .text-on-surface-variant\/15 { color: rgba(92, 69, 55, 0.15) !important; }
[data-theme="light"] .text-on-surface-variant\/20 { color: rgba(92, 69, 55, 0.2) !important; }
[data-theme="light"] .text-on-surface-variant\/30 { color: rgba(92, 69, 55, 0.3) !important; }
[data-theme="light"] .text-on-surface-variant\/40 { color: rgba(92, 69, 55, 0.4) !important; }
[data-theme="light"] .text-on-surface-variant\/50 { color: rgba(92, 69, 55, 0.5) !important; }
[data-theme="light"] .text-on-surface-variant\/60 { color: rgba(92, 69, 55, 0.6) !important; }
[data-theme="light"] .text-on-surface-variant\/70 { color: rgba(92, 69, 55, 0.7) !important; }
[data-theme="light"] .text-on-surface-variant\/80 { color: rgba(92, 69, 55, 0.8) !important; }
[data-theme="light"] .text-on-surface-variant\/85 { color: rgba(92, 69, 55, 0.85) !important; }
[data-theme="light"] .text-primary\/70 { color: rgba(234, 88, 12, 0.75) !important; }
[data-theme="light"] .text-primary\/75 { color: rgba(234, 88, 12, 0.8) !important; }

[data-theme="light"] h1, [data-theme="light"] h2,
[data-theme="light"] h3, [data-theme="light"] h4 { color: #1a0808 !important; }

/* Borders */
[data-theme="light"] .border-white { border-color: #dfd6c7 !important; }
[data-theme="light"] .border-white\/5  { border-color: rgba(26, 8, 8, 0.05) !important; }
[data-theme="light"] .border-white\/10 { border-color: rgba(26, 8, 8, 0.1) !important; }
[data-theme="light"] hr               { border-color: rgba(26, 8, 8, 0.07) !important; }

[data-theme="light"] .border-primary\/10 { border-color: rgba(249, 115, 22, 0.15) !important; }
[data-theme="light"] .border-primary\/20 { border-color: rgba(249, 115, 22, 0.25) !important; }
[data-theme="light"] .border-primary\/25 { border-color: rgba(249, 115, 22, 0.3) !important; }
[data-theme="light"] .border-primary\/30 { border-color: rgba(249, 115, 22, 0.35) !important; }
[data-theme="light"] .border-primary\/40 { border-color: rgba(249, 115, 22, 0.45) !important; }

/* Form Inputs */
[data-theme="light"] input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
[data-theme="light"] textarea,
[data-theme="light"] select {
    background: rgba(255,249,242,0.85) !important;
    color: #1a0808 !important;
    border-color: rgba(26, 8, 8, 0.12) !important;
}
[data-theme="light"] input::placeholder,
[data-theme="light"] textarea::placeholder { color: rgba(26,8,8,0.35) !important; }

/* Tables */
[data-theme="light"] table  { color: #1a0808; }
[data-theme="light"] thead  { color: #5c4537; }
[data-theme="light"] tr.border-b { border-color: rgba(26, 8, 8, 0.05) !important; }

/* Footer */
[data-theme="light"] footer {
    border-color: rgba(26, 8, 8, 0.07) !important;
    color: rgba(26,8,8,0.4);
}

/* Marquee fades */
[data-theme="light"] .marquee-container::before { background: linear-gradient(to right, #faf8f5 0%, rgba(250,248,245,0.5) 50%, transparent 100%) !important; }
[data-theme="light"] .marquee-container::after  { background: linear-gradient(to left,  #faf8f5 0%, rgba(250,248,245,0.5) 50%, transparent 100%) !important; }
[data-theme="light"] .partner-marquee-container::before { background: linear-gradient(to right, #faf8f5 0%, rgba(250,248,245,0.9) 40%, transparent 100%) !important; }
[data-theme="light"] .partner-marquee-container::after  { background: linear-gradient(to left,  #faf8f5 0%, rgba(250,248,245,0.9) 40%, transparent 100%) !important; }
[data-theme="light"] .showcase-marquee-container::before { background: linear-gradient(to right, #faf8f5 0%, rgba(250,248,245,0.5) 50%, transparent 100%) !important; }
[data-theme="light"] .showcase-marquee-container::after  { background: linear-gradient(to left,  #faf8f5 0%, rgba(250,248,245,0.5) 50%, transparent 100%) !important; }

/* btn-gradient-border light mode bg */
[data-theme="light"] .btn-gradient-border {
    background: linear-gradient(#faf8f5, #faf8f5) padding-box,
                linear-gradient(135deg, #f97316 0%, #ef4444 100%) border-box !important;
}

/* Live Toast */
[data-theme="light"] .live-toast {
    background: rgba(255,252,248,0.97) !important;
    border-color: rgba(249,115,22,0.2) !important;
}

/* Video player placeholder */
[data-theme="light"] .player-bg-dark {
    background-color: #eae2d5 !important;
}

/* Disable transitions helper */
.no-transition,
.no-transition * {
    transition: none !important;
    animation: none !important;
}

