/* ===============================
   ROOT WARNA (THEME COKLAT)
================================ */
:root {
    --brown-main: #5a3e2b;
    --brown-light: #c2a878;
    --brown-dark: #3b2a1d;
    --light: #ffffff;
    --secondary: #c2a878;
    --accent: #b9d310;
}

/* ===============================
   GLOBAL
================================ */
body {
    background: linear-gradient(135deg, #1a1a1a, #2c1f14, #3b2a1d);
    color: #ffffff;
    font-family: 'Georgia', serif;
}

html {
    scroll-behavior: smooth;
}

/* Semua teks putih */
body, p, span, h1, h2, h3, h4, h5, h6, a {
    color: #ffffff !important;
}

/* Text variasi */
.text-muted { color: #cccccc !important; }
.text-secondary { color: #dddddd !important; }
.text-dark { color: #ffffff !important; }

/* ===============================
   NAVBAR
================================ */
.navbar {
    background: linear-gradient(135deg, #5a3e2b, #3b2a1d) !important;
    border-bottom: 1px solid rgba(194,168,120,0.3);
    transition: top 0.5s ease;
}

.navbar-hide {
    top: -100px;
}

.navbar .nav-link {
    color: #e8dcc0 !important;
}

.navbar .nav-link:hover {
    color: #c2a878 !important;
}

/* ===============================
   BUTTON
================================ */
.btn-neon {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 12px 28px;
    transition: 0.3s;
}

.btn-neon:hover {
    background: var(--accent);
    color: #fff;
}

/* ===============================
   CARD & BOX
================================ */
.card-custom {
    background: rgba(90, 62, 43, 0.25);
    border: 1px solid rgba(194,168,120,0.3);
    color: var(--light);
}

.card-custom:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
}

/* Hilangkan box putih */
.dropdown-menu,
.bg-white,
.card,
.box,
div[style*="background: #fff"],
div[style*="background:#fff"] {
    background: #2c1f14 !important;
    border: 1px solid rgba(194,168,120,0.3) !important;
    color: #fff !important;
    border-radius: 12px;
}

/* Dropdown */
.dropdown-item {
    color: #e8dcc0 !important;
}

.dropdown-item:hover {
    background: rgba(194,168,120,0.2) !important;
}

/* ===============================
   TABLE & MODAL
================================ */
.table,
.table td,
.table th {
    color: #ffffff !important;
}

.modal-content {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

.modal-content .text-muted {
    color: #aaaaaa !important;
}

/* ===============================
   ASSET CARD
================================ */
.asset-card p,
.asset-card span {
    color: #ffffff !important;
}

.asset-card-body .sub {
    color: #cccccc !important;
}

.object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* ===============================
   FOOTER
================================ */
.footer {
    background: #120d0a;
    border-top: 1px solid rgba(194,168,120,0.2);
}

.footer * {
    color: #ffffff !important;
}

/* ===============================
   SCROLL INDICATOR
================================ */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(185, 211, 16, 0.75);
}

.chev {
    width: 14px;
    height: 14px;
    border-right: 2px solid #b9d310;
    border-bottom: 2px solid #b9d310;
    transform: rotate(45deg);
    animation: chevFade 1.6s infinite;
}

@keyframes chevFade {
    0%,100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===============================
   STAR RATING
================================ */
.star-rating label {
    transition: 0.2s;
}

.star-rating label:hover {
    transform: scale(1.3) rotate(-5deg);
    color: #ffd54f;
}

.bi-star-fill { color: #f0ad00; }
.bi-star { color: rgba(255,255,255,0.3); }

/* ===============================
   POSTER HOVER
================================ */
.poster-frame img {
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.poster-frame img:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}
[title] {
    pointer-events: none;
}

/* ── SCROLL INDICATOR PREMIUM + PARTICLE ── */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    cursor: pointer;
    z-index: 10;
}

/* garis */
.scroll-line {
    width: 2px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* energy flow */
.scroll-line span {
    position: absolute;
    top: -40%;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(
        to bottom,
        transparent,
        #b9d310,
        #00d4ff,
        transparent
    );
    animation: scrollFlow 1.8s infinite;
}

@keyframes scrollFlow {
    0% { top: -40%; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* canvas particle */
#particleCanvas {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 100px;
    pointer-events: none;
}

/* text */
.scroll-indicator p {
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    transition: 0.3s;
}

.scroll-indicator:hover p {
    color: #b9d310;
    letter-spacing: 4px;
}