:root {
    --gold-primary: #ffc107;
    --gold-glow: rgba(255, 193, 7, 0.2);
    --text-main: #212529;
    --text-muted: #6c757d;
    --glass-bg: #ffffff;
    --glass-border: #dee2e6;
}

.landing-page-wrapper {
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: transparent; /* Biarkan mengikuti body */
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    padding: 150px 5% 100px 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    z-index: 2;
}

.hero-section h1 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #343f52;
    letter-spacing: -0.5px;
}

/* Typing Animation Style */
.typing-text {
    font-family: 'Nunito Sans', sans-serif;
    color: #0088ff;
    border-right: 3px solid #0088ff;
    padding-right: 5px;
    display: inline-block;
    font-weight: 800;
    font-size: 0.85em;
    text-shadow: 0 0 15px rgba(0, 136, 255, 0.15);
    animation: blink 1s step-end infinite;
    white-space: nowrap;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.badge-trusted {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 136, 255, 0.08);
    color: #0088ff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 136, 255, 0.15);
}

@keyframes blink {
    from, to { border-color: #0088ff }
    50% { border-color: transparent; }
}

.subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: #696363 !important;
    margin-bottom: 40px;
    max-width: 750px;
    margin-inline: auto;
    line-height: 1.8;
    font-weight: 500;
}

.hero-text-side {
    flex: 1;
    text-align: left;
}

/* Animated Card Styles */
.hero-card-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    position: relative;
}

.floating-card {
    background: radial-gradient(circle at 30% 30%, #1a2a44 0%, #050914 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 40px 30px;
    min-height: 480px;
    border-radius: 40px;
    color: #ffffff;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 380px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: rotateY(-18deg) rotateX(8deg);
    transform-style: preserve-3d;
}

/* --- Neural Feed / Results Stack Styling --- */
.results-stack-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 5px;
}

.stack-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 18px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: none;
}

.stack-row:hover {
    background: #f8fafc;
    border-color: #0088ff;
    transform: scale(1.02) translateX(8px);
    box-shadow: none;
}

.stack-market-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.stack-market-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.3px;
}

.stack-market-sync {
    font-size: 0.62rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.stack-market-result {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 800;
    color: #10b981;
    letter-spacing: 2px;
    text-shadow: none;
}

.mini-card {
    position: absolute;
    color: #0f172a;
    padding: 10px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: rotateY(-18deg) rotateX(8deg);
    transform-style: preserve-3d;
}

.mini-card-1 {
    top: -15px;
    left: -20px;
    padding: 14px 22px;
    z-index: 15;
    box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.15); /* Bayangan jatuh ke arah dalam (bawah-kanan) */
    animation: floatCard1 6s ease-in-out infinite;
}

.mini-card-2 {
    bottom: -45px;
    left: 60px;
    padding: 14px 22px;
    z-index: 12;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15); /* Bayangan jatuh lurus ke bawah */
    animation: floatCard2 5s ease-in-out infinite;
}

.mini-card-3 {
    bottom: 100px;
    right: -15px;
    box-shadow: -15px 15px 35px rgba(0, 0, 0, 0.15); /* Bayangan jatuh ke arah dalam (bawah-kiri) */
    animation: floatCard3 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotateY(-18deg) rotateX(8deg) translateY(0); }
    50% { transform: rotateY(-18deg) rotateX(8deg) translateY(-20px); }
}

@keyframes floatReverse {
    0%, 100% { transform: rotateY(-18deg) rotateX(8deg) translateY(0); }
    50% { transform: rotateY(-18deg) rotateX(8deg) translateY(15px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: rotateY(-18deg) rotateX(8deg) translateY(0) scale(1.1); }
    50% { transform: rotateY(-18deg) rotateX(8deg) translateY(-20px) scale(1.1); }
}

@keyframes floatCard1 {
    0%, 100% { transform: rotateY(-18deg) rotateX(8deg) translateY(0) scale(1.1); }
    50% { transform: rotateY(-18deg) rotateX(8deg) translateY(15px) scale(1.1); }
}

@keyframes floatCard3 {
    0%, 100% { transform: rotateY(-18deg) rotateX(8deg) translateY(0); }
    50% { transform: rotateY(-18deg) rotateX(8deg) translateY(12px); }
}

.card-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-stat { margin-bottom: 25px; }
.stat-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.stat-bar { height: 10px; background: rgba(0, 0, 0, 0.3); border-radius: 20px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.05); position: relative; }
.stat-progress { 
    height: 100%; 
    background: linear-gradient(90deg, #0088ff, #60efff); 
    border-radius: 20px; 
    position: relative;
    overflow: hidden;
}

.stat-progress::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.shimmer-row {
    height: 68px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.btn-blue {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #0088ff 0%, #0061ff 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
}

.btn-blue:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 136, 255, 0.4);
    filter: brightness(1.1);
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 10px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-left: 10px;
}

.benefit-item {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item::before {
    content: '✓';
    color: #2ed573;
    font-weight: 900;
    font-size: 0.9rem;
}

/* Dark mode override untuk teks manfaat */
body:not(.light-theme) .benefit-item { color: rgba(255, 255, 255, 0.45); }

.features-section { padding: 120px 0; background: #ffffff; text-align: center; }
.features-header { max-width: 800px; margin: 0 auto; padding: 0 20px 60px; }
.features-header h2 { font-size: clamp(2rem, 5vw, 2.8rem); color: #0f172a; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
.features-header p { color: #64748b; font-size: 1.1rem; line-height: 1.6; }

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track { display: flex; gap: 30px; width: max-content; animation: scroll 35s linear infinite; padding: 20px 0; }
.marquee-track:hover { animation-play-state: paused; }

.feature-item { width: 320px; background: #ffffff; border: 1.5px solid #f1f5f9; padding: 40px 30px; border-radius: 32px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); text-align: left; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); position: relative; }
.feature-item:hover { border-color: #0088ff; box-shadow: 0 20px 40px rgba(0, 136, 255, 0.1); transform: translateY(-5px); }
.feature-icon { font-size: 2.2rem; margin-bottom: 25px; display: flex; background: rgba(0, 136, 255, 0.05); width: 60px; height: 60px; align-items: center; justify-content: center; border-radius: 16px; }
.feature-item h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--text-main); }
.feature-item p { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }

.feature-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0, 136, 255, 0.08);
    color: #0088ff;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 15px)); } }

.how-it-works-section { padding: 100px 20px; background: #f8f9fa; }
.steps-container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 50px; }
.step-item { flex: 1; min-width: 250px; max-width: 300px; text-align: center; }

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), #ffa500);
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px var(--gold-glow);
}

/* --- Media Queries --- */
@media (max-width: 992px) {
    .hero-section { padding-top: 120px; padding-bottom: 60px; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text-side { 
        text-align: center; 
        display: flex; /* Jadikan flex container */
        flex-direction: column; /* Susun anak-anak secara vertikal */
        align-items: center; /* Pusatkan anak-anak secara horizontal */
    }
    .hero-text-side .subtitle { margin-inline: auto; }
    /* Aturan .hero-text-side div { justify-content: center; } yang terlalu umum dihapus atau diabaikan */
    /* Karena ini bisa menyebabkan konflik dengan tata letak flexbox yang lebih spesifik */

    .hero-card-side { display: none; }

    /* Pastikan cta-wrapper dan cta-benefits ditampilkan dengan benar */
    .cta-wrapper {
        align-items: center; /* Pusatkan tombol dan daftar manfaat */
    }
    .cta-benefits {
        align-items: flex-start; /* Jaga agar item manfaat tetap rata kiri di dalam daftar */
        padding-left: 0; /* Hapus padding-left agar tidak mengganggu pemusatan */
    }
}

@keyframes pulse-ring {
    0% { transform: scale(.7); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* --- Productivity Section Styling --- */
.productivity-section {
    padding: 140px 20px;
    background: #ffffff;
    text-align: center;
}

.productivity-container {
    max-width: 960px;
    margin: 0 auto;
    background: #050914;
    background: radial-gradient(circle at 50% 0%, #0a1128 0%, #050914 100%);
    padding: 40px 40px 120px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.section-title-large {
    font-family: 'Nunito Sans', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -1.5px;
    margin-bottom: 40px;
}

body:not(.light-theme) .section-title-large {
    color: #ffffff;
}

.productivity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.prod-card {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    border-radius: 32px;
    text-align: left;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.prod-card-top {
    background: linear-gradient(165deg, #0088ff 0%, #0051ff 100%);
    padding: 40px 30px 20px;
    display: flex;
    justify-content: center;
}

.prod-card-bottom {
    background: #ffffff;
    padding: 30px;
    flex-grow: 1;
}

.visual-demo {
    height: 140px;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    border-radius: 20px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

/* --- Card 1: AI Scanner Animation --- */
.ai-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    width: 120px;
    justify-content: center;
    opacity: 0.3;
}
.ai-cell {
    width: 18px; height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.ai-cell.h-1 { animation: cellGlow 1.8s infinite; }
.ai-cell.h-2 { animation: cellGlow 2.5s infinite 0.4s; }
.ai-cell.h-3 { animation: cellGlow 1.2s infinite 0.8s; }

@keyframes cellGlow {
    0%, 100% { background: rgba(255, 255, 255, 0.05); box-shadow: none; }
    50% { background: #0088ff; box-shadow: 0 0 12px rgba(0, 136, 255, 0.6); }
}
.scan-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, #60efff, #0088ff, #60efff, transparent);
    box-shadow: 0 0 20px #0088ff;
    z-index: 5;
    animation: aiScan 2.5s ease-in-out infinite;
}
@keyframes aiScan {
    0% { top: -10%; } 50% { top: 110%; } 100% { top: -10%; }
}
.ai-result-tag {
    position: absolute;
    bottom: 15px; right: 15px;
    font-size: 0.65rem;
    background: #10b981;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    overflow: hidden;
    animation: tagPulse 2s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-result-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    animation: tagShimmer 3s infinite;
}

@keyframes tagPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.05); filter: brightness(1.2); box-shadow: 0 0 30px rgba(16, 185, 129, 0.6); }
}

@keyframes tagShimmer {
    0% { left: -100%; }
    20%, 100% { left: 100%; }
}

/* --- Card 2: Generator Animation --- */
.gen-numbers {
    display: flex; gap: 6px;
    overflow: hidden;
    height: 50px;
}
.num-slot {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    width: 40px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: linear-gradient(to bottom, #1e293b, #0f172a);
    border: 1px solid rgba(0, 136, 255, 0.3);
    animation: numRoll 0.5s linear infinite;
    text-shadow: 0 0 10px rgba(0, 136, 255, 0.5);
}

.num-slot:nth-child(1) { animation-duration: 0.4s; animation-delay: 0.1s; }
.num-slot:nth-child(2) { animation-duration: 0.3s; animation-delay: 0.3s; color: #60efff; }
.num-slot:nth-child(3) { animation-duration: 0.5s; animation-delay: 0.0s; }
.num-slot:nth-child(4) { animation-duration: 0.25s; animation-delay: 0.2s; color: #60efff; }
.num-slot:nth-child(5) { animation-duration: 0.45s; animation-delay: 0.4s; }
.num-slot:nth-child(6) { animation-duration: 0.35s; animation-delay: 0.15s; color: #60efff; }

@keyframes numRoll {
    0% { transform: translateY(100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100%); opacity: 0; }
}

.gen-status {
    position: absolute;
    bottom: 12px;
    font-size: 0.6rem;
    color: #0088ff;
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: uppercase;
}

/* --- Card 3: Global Sync Animation --- */
.sync-globe {
    width: 60px; height: 60px;
    border: 2px dashed #0088ff;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.2) 0%, transparent 70%);
    animation: rotateGlobe 10s linear infinite;
}

@keyframes rotateGlobe { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.sync-pulse-waves {
    position: absolute; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}
.sync-pulse-waves span {
    position: absolute;
    width: 60px; height: 60px;
    border: 1.5px solid rgba(0, 136, 255, 0.5);
    border-radius: 50%;
    animation: wavePulse 4s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.sync-pulse-waves span:nth-child(2) { animation-delay: 1.3s; }
.sync-pulse-waves span:nth-child(3) { animation-delay: 2.6s; }

@keyframes wavePulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.8); opacity: 0; }
}

.prod-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0f172a;
}

.prod-card p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.85rem;
}

.btn-learn-more {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0088ff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-learn-more span {
    transition: transform 0.3s ease;
}

.btn-learn-more:hover {
    color: #0051ff;
}

.btn-learn-more:hover span {
    transform: translateX(5px);
}

.prod-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 136, 255, 0.5);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 136, 255, 0.1);
}

@media (max-width: 992px) {
    .productivity-grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* --- Base Transition for Theme Switching --- */
.landing-header, 
.feature-item, 
footer, 
h1, h2, h3, p, span, a,
.btn-login, .btn-get-started {
    /* Hapus transisi warna agar instan, biarkan transform tetap smooth untuk efek hover */
    transition: transform 0.3s ease;
}

/* Pastikan background body mengikuti tema gelap di landing page */
body.home-page:not(.light-theme) {
    background-color: #0a0a0c !important;
}

/* Pastikan area main tidak memaksa warna putih di mode gelap */
body.home-page:not(.light-theme) main {
    background-color: #0a0a0c !important;
}

/* --- DARK MODE OVERRIDES (Saat body TIDAK memiliki .light-theme) --- */
body:not(.light-theme) .landing-page-wrapper {
    background-color: #0a0a0c !important;
    color: #f0f2f5 !important;
}

body:not(.light-theme) .hero-section h1 {
    color: #ffffff;
}

body:not(.light-theme) .subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

body:not(.light-theme) .features-section {
    background: #0f172a;
}

body:not(.light-theme) .productivity-section {
    background: #0a0a0c !important;
}

body:not(.light-theme) .features-header h2 {
    color: #ffffff;
}

body:not(.light-theme) .features-header p {
    color: #94a3b8;
}

body:not(.light-theme) .feature-item {
    background: rgba(30, 41, 59, 0.4);
    border-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

body:not(.light-theme) .feature-item h3 {
    color: #ffffff;
}

body:not(.light-theme) .feature-item p {
    color: #94a3b8;
}

body:not(.light-theme) .how-it-works-section {
    background: #0a0a0c;
}

body:not(.light-theme) .how-it-works-section h2,
body:not(.light-theme) .step-item h3 {
    color: #ffffff !important;
}

body:not(.light-theme) .landing-header .logo-brand span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

body:not(.light-theme) .landing-header {
    background: #0a0a0c !important;
    box-shadow: none !important;
}

body:not(.light-theme) .landing-header.scrolled {
    background: rgba(10, 10, 12, 0.98) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: none !important;
    border: none !important;
}

body:not(.light-theme) .landing-links a,
body:not(.light-theme) .btn-login {
    color: rgba(255, 255, 255, 0.7) !important;
}

body:not(.light-theme) .landing-links a:hover,
body:not(.light-theme) .btn-login:hover {
    color: #0088ff !important;
    background: rgba(0, 136, 255, 0.05);
}

body:not(.light-theme) footer {
    background: #0a0a0c !important;
    border-top: none !important;
}

/* Perbaikan untuk Mini Cards dan Stack Rows di Mode Gelap */
body:not(.light-theme) .mini-card {
    background: rgba(30, 41, 59, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

body:not(.light-theme) .mini-card div > div {
    color: #ffffff !important;
}

body:not(.light-theme) .stack-row {
    background: rgba(15, 23, 42, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

body:not(.light-theme) .stack-market-name {
    color: #ffffff !important;
}