﻿:root {
    /* PALET HYPERCAR LUXURY (ONYX & METALLIC GOLD) */
    --bg-deep: #070709;
    --cyber-cyan: #e5b842; /* Emas Utama Metalik */
    --race-orange: #c89326; /* Emas Tua / Amber Gold */
    --neon-purple: #9a782b; /* Bronze Champagne */
    --neon-green: #22c55e; /* Indikator Online Hijau Fresh */
    --glass-card: rgba(15, 15, 20, 0.90);
    --glass-border: rgba(229, 184, 66, 0.28);
    --border-color: #24221c;
    --text-gray: #a3a3a8;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--cyber-cyan);
    border-radius: 3px;
}

body {
    background-color: var(--bg-deep);
    color: #ffffff;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding-bottom: 35px;
    overflow-x: hidden;
    background-image: linear-gradient(rgba(229, 184, 66, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(229, 184, 66, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
}

#landing-page-view {
    min-height: 100vh;
    background: radial-gradient(circle at 50% 15%, rgba(229, 184, 66, 0.12) 0%, transparent 60%), linear-gradient(180deg, rgba(7, 7, 9, 0.88) 0%, rgba(7, 7, 9, 0.98) 100%), url('/images/bg-cpm.jpg') no-repeat center top;
    background-size: cover;
    padding: 50px 16px 90px;
}

.landing-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.telemetry-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 184, 66, 0.08);
    border: 1px solid rgba(229, 184, 66, 0.45);
    border-radius: 30px;
    padding: 4px 16px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--cyber-cyan);
    margin-bottom: 18px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(229, 184, 66, 0.15);
}

.ping-dot {
    width: 7px;
    height: 7px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.brand-logo-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid var(--cyber-cyan);
    box-shadow: 0 0 25px rgba(229, 184, 66, 0.35);
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}

    .brand-logo-img:hover {
        transform: scale(1.05);
    }

.main-title {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff 30%, #f7d57f 70%, #c89326 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    text-shadow: 0 0 30px rgba(229, 184, 66, 0.25);
}

.btn-launch {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #0b0b0e;
    border: none;
    padding: 14px 45px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.35);
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

    .btn-launch:hover {
        color: #000;
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 35px rgba(212, 175, 55, 0.65);
        filter: brightness(1.15);
    }

.cockpit-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 36px 0;
}

.stat-card {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 16px 10px;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--cyber-cyan);
    box-shadow: inset 0 0 15px rgba(229, 184, 66, 0.03);
}

    .stat-card h3 {
        margin: 0;
        font-size: 1.45rem;
        font-weight: 800;
        color: #ffffff;
        text-shadow: 0 0 10px rgba(255,255,255,0.25);
    }

    .stat-card small {
        font-size: 0.68rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--text-gray);
    }

.club-banner {
    background: linear-gradient(90deg, rgba(229, 184, 66, 0.08) 0%, rgba(15, 15, 20, 0.9) 100%);
    border: 1px solid rgba(229, 184, 66, 0.25);
    border-left: 4px solid var(--cyber-cyan);
    border-radius: 8px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    text-align: left;
}

.spec-card {
    background: var(--glass-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 22px 18px;
    text-align: left;
    height: 100%;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

    .spec-card:hover {
        border-color: var(--cyber-cyan);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(229, 184, 66, 0.15);
    }

.spec-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: inline-block;
    color: var(--cyber-cyan);
}

/* DASHBOARD & SIDEBAR */
.dash-wrapper {
    display: flex;
    height: 100vh;
    max-height: 100vh;
    background-color: var(--bg-deep);
    overflow: hidden;
}

.dash-sidebar {
    width: 235px;
    height: 100%;
    background: #0b0b0f;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 14px 25px;
    flex-shrink: 0;
    overflow-y: auto;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.7);
    z-index: 100;
}

.dash-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(229, 184, 66, 0.2);
}

.sidebar-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.nav-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid transparent;
    color: #92929c;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 5px;
    transition: 0.25s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .nav-menu-btn:hover, .nav-menu-btn.active {
        background: linear-gradient(90deg, rgba(229, 184, 66, 0.14) 0%, transparent 100%);
        border-color: rgba(229, 184, 66, 0.4);
        color: var(--cyber-cyan);
        box-shadow: 0 0 15px rgba(229, 184, 66, 0.1);
        border-left: 3px solid var(--cyber-cyan);
    }

/* AREA DASHBOARD SETELAH LOGIN */
.dash-content {
    flex-grow: 1;
    padding: 25px 30px 70px;
    overflow-y: auto;
    position: relative;
    background-color: var(--bg-deep);
}

    .dash-content::before {
        content: '';
        position: fixed;
        top: 0;
        left: 235px;
        right: 0;
        bottom: 0;
        width: calc(100% - 235px);
        height: 100vh;
        background-image: url('/images/bg-cpm.jpg');
        background-size: cover;
        background-position: center 20%;
        background-repeat: no-repeat;
        opacity: 0.14;
        filter: brightness(0.8) contrast(1.2);
        z-index: 0;
        pointer-events: none;
    }

    .dash-content::after {
        content: '';
        position: fixed;
        top: 0;
        left: 235px;
        width: calc(100% - 235px);
        height: 100%;
        background: radial-gradient(circle at 85% 15%, rgba(229, 184, 66, 0.06) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(154, 120, 43, 0.04) 0%, transparent 40%);
        z-index: 0;
        pointer-events: none;
    }

.dash-header-bar,
#section-store,
#section-bulk,
#section-payment,
#section-reviews,
#section-legacy,
#section-chat,
#section-profile {
    position: relative;
    z-index: 1;
}

.dash-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.btn-cart-shopee {
    background: #111116;
    border: 1px solid rgba(229, 184, 66, 0.35);
    color: #ffffff;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    transition: 0.25s;
}

    .btn-cart-shopee:hover {
        border-color: var(--cyber-cyan);
        color: var(--cyber-cyan);
        box-shadow: 0 0 15px rgba(229, 184, 66, 0.25);
    }

.cart-badge-count {
    background-color: var(--race-orange);
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--race-orange);
}

.filter-pill-box {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-pill {
    background-color: #101015;
    border: 1px solid var(--border-color);
    color: #92929c;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .filter-pill:hover, .filter-pill.active {
        background-color: rgba(229, 184, 66, 0.15);
        color: var(--cyber-cyan);
        border-color: var(--cyber-cyan);
        box-shadow: 0 0 15px rgba(229, 184, 66, 0.25);
    }

.search-bar-wrap {
    background-color: #101015;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 4px 16px;
    width: 100%;
    max-width: 320px;
    transition: 0.25s;
}

    .search-bar-wrap:focus-within {
        border-color: var(--cyber-cyan);
        box-shadow: 0 0 15px rgba(229, 184, 66, 0.25);
    }

    .search-bar-wrap input {
        background: transparent;
        border: none;
        color: #fff;
        padding: 4px 8px;
        font-size: 0.8rem;
        width: 100%;
        outline: none;
    }

    .search-bar-wrap i {
        color: var(--cyber-cyan);
        font-size: 0.85rem;
    }

/* KARTU PRODUK SULTAN */
.item-card {
    background: var(--glass-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

    .item-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: transparent;
        transition: 0.3s;
    }

    .item-card:hover {
        border-color: var(--cyber-cyan);
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(229, 184, 66, 0.2);
    }

        .item-card:hover::before {
            background: var(--cyber-cyan);
            box-shadow: 0 0 10px var(--cyber-cyan);
        }

.item-thumb {
    width: 72px;
    height: 72px;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(229, 184, 66, 0.3);
    background: #14141a;
}

.item-info {
    flex-grow: 1;
    min-width: 0;
}

.item-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.item-desc {
    font-size: 0.7rem;
    color: var(--text-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.item-tag {
    font-size: 0.62rem;
    color: var(--cyber-cyan);
    font-weight: 800;
    background: rgba(229, 184, 66, 0.12);
    border: 1px solid rgba(229, 184, 66, 0.35);
    padding: 1px 6px;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.item-action-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.item-price {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--cyber-cyan);
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(229, 184, 66, 0.35);
}

.btn-add-cart {
    background-color: rgba(229, 184, 66, 0.15);
    border: 1px solid rgba(229, 184, 66, 0.45);
    color: var(--cyber-cyan);
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 6px;
    padding: 6px 12px;
    transition: 0.2s;
    cursor: pointer;
    text-transform: uppercase;
}

    .btn-add-cart:hover {
        background-color: var(--cyber-cyan);
        color: #000;
        box-shadow: 0 0 15px rgba(229, 184, 66, 0.45);
        transform: scale(1.05);
    }

/* ================= SOCIAL PROOF & STATUS SOLD OUT ================= */
.sold-stat-badge {
    font-size: 0.65rem;
    color: #a1a1aa;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    letter-spacing: 0.3px;
}

.item-card-sold-out {
    opacity: 0.55;
    filter: grayscale(0.65);
    border-color: rgba(255, 255, 255, 0.08) !important;
    cursor: not-allowed !important;
}

    .item-card-sold-out:hover {
        transform: none !important;
        border-color: rgba(255, 255, 255, 0.08) !important;
        box-shadow: none !important;
    }

.badge-sold-out {
    font-size: 0.62rem;
    color: #ef4444;
    font-weight: 800;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    padding: 1px 6px;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.thumb-sold-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #ef4444;
    font-size: 0.65rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    letter-spacing: 1.2px;
    backdrop-filter: blur(1px);
}

/* MODAL LUXURY */
.modal-espo {
    background-color: #0d0d12 !important;
    border: 1px solid var(--cyber-cyan);
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 25px rgba(229, 184, 66, 0.2);
    color: #ffffff;
    position: relative;
}

.btn-close-circle {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: #181820 !important;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: #a3a3a8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: 0.2s;
    z-index: 10;
    cursor: pointer;
}

    .btn-close-circle:hover {
        color: #fff;
        background-color: #ef4444 !important;
        border-color: #ef4444;
    }

.auth-switch-box {
    background-color: #101015 !important;
    border-radius: 30px;
    padding: 5px;
    display: flex;
    gap: 6px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6);
}

.auth-switch-btn {
    flex: 1;
    padding: 9px 0;
    border-radius: 25px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid transparent;
    background: transparent;
    color: #71717a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

    .auth-switch-btn:hover {
        color: var(--cyber-cyan);
    }

    .auth-switch-btn.active {
        background: linear-gradient(135deg, rgba(229, 184, 66, 0.25) 0%, rgba(154, 120, 43, 0.35) 100%) !important;
        color: #ffffff !important;
        border-color: var(--cyber-cyan) !important;
        box-shadow: 0 0 15px rgba(229, 184, 66, 0.35), inset 0 0 10px rgba(229, 184, 66, 0.2);
        text-shadow: 0 0 8px var(--cyber-cyan);
    }

.btn-google {
    background-color: #121218 !important;
    color: #ffffff !important;
    font-weight: 600;
    border: 1px solid var(--border-color);
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.2s;
    cursor: pointer;
}

    .btn-google:hover {
        border-color: var(--cyber-cyan);
        background-color: #1a1a24 !important;
    }

.input-group-custom {
    background-color: #121218 !important;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    transition: 0.2s;
}

    .input-group-custom:focus-within {
        border-color: var(--cyber-cyan);
        box-shadow: 0 0 12px rgba(229, 184, 66, 0.25);
    }

    .input-group-custom input {
        background: transparent !important;
        border: none;
        color: #fff !important;
        padding: 12px 8px;
        font-size: 0.85rem;
        width: 100%;
        outline: none;
    }

.btn-submit-purple {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%) !important;
    color: #0b0b0e !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 900;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
    clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
    transition: all 0.25s ease;
    cursor: pointer;
    margin-top: 5px;
}

    .btn-submit-purple:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 28px rgba(212, 175, 55, 0.6);
        filter: brightness(1.15);
    }

.product-modal-single-img-wrap {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--cyber-cyan);
    box-shadow: 0 0 20px rgba(229, 184, 66, 0.25);
    aspect-ratio: 1 / 1;
    background: #121218;
}

.product-modal-single-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-desc-box {
    background: #121218;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px;
    font-size: 0.8rem;
    color: #d4d4d8;
    line-height: 1.6;
}

.step-bubble {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.78rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(229, 184, 66, 0.3);
    background: var(--cyber-cyan);
    color: #000;
}

.review-card {
    background: #111116;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
    transition: 0.2s;
}

    .review-card:hover {
        border-color: var(--cyber-cyan);
        box-shadow: 0 0 15px rgba(229, 184, 66, 0.12);
    }

.review-star {
    color: #e5b842;
    font-size: 0.85rem;
}

.review-verified-badge {
    font-size: 0.65rem;
    background: rgba(229, 184, 66, 0.12);
    color: var(--cyber-cyan);
    border: 1px solid rgba(229, 184, 66, 0.35);
    border-radius: 4px;
    padding: 1px 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.user-panel-bottom {
    margin-top: auto;
    background: #111116;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-box {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #aa7c11, #e5b842);
    color: #000;
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(229, 184, 66, 0.35);
}

.payment-methods-bar {
    margin-top: 35px;
    text-align: center;
}

.payment-methods-title {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--cyber-cyan);
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(229, 184, 66, 0.3);
}

.payment-badges-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-pill {
    background: #111116;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

#toast-container {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cyber-toast {
    background: rgba(13, 13, 18, 0.95);
    border: 1px solid var(--cyber-cyan);
    border-left: 4px solid var(--cyber-cyan);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.9), 0 0 15px rgba(229, 184, 66, 0.25);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .cyber-toast.show {
        transform: translateX(0);
    }

.announcement-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 34px;
    background: #15151c;
    color: var(--cyber-cyan);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    z-index: 1050;
    border-top: 1px solid var(--cyber-cyan);
    overflow: hidden;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.6);
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

.ticker-move {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 50s linear infinite;
}

.ticker-wrap:hover .ticker-move {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translateX(30%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ================= LEGACY VAULT ================= */
.legacy-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
    padding-bottom: 20px;
}

.legacy-item {
    background: #111116;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    position: relative;
    transition: 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

    .legacy-item:hover {
        border-color: var(--cyber-cyan);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 6px 20px rgba(229, 184, 66, 0.28);
    }

.legacy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#modalLegacyImg {
    max-height: 80vh;
    max-width: 90vw;
    object-fit: contain;
    border-radius: 8px;
}

/* ================= ANIMASI BUKA / TUTUP BULK VAULT ================= */
.bulk-card-box {
    background: #0d0d12;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

    .bulk-card-box:hover {
        border-color: var(--cyber-cyan);
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(229, 184, 66, 0.15);
    }

    .bulk-card-box.card-expanded {
        border-color: var(--cyber-cyan);
        background: #101017;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(229, 184, 66, 0.15);
    }

.bulk-detail-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: max-height 0.45s cubic-bezier(0, 1, 0, 1), opacity 0.35s ease, transform 0.35s ease;
}

    .bulk-detail-content.open {
        max-height: 800px;
        opacity: 1;
        transform: translateY(0);
        transition: max-height 0.5s ease-in-out, opacity 0.4s ease;
    }

.bulk-toggle-btn {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--cyber-cyan);
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(229, 184, 66, 0.08);
    border: 1px solid rgba(229, 184, 66, 0.25);
    transition: 0.2s ease;
}

    .bulk-toggle-btn:hover {
        background: rgba(229, 184, 66, 0.18);
        border-color: var(--cyber-cyan);
    }
/* Membuat area filter store menempel di atas saat digulir */
.store-sticky-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background-color: #0b0e14; /* Menyesuaikan warna latar belakang dashboard */
    padding-top: 15px;
    padding-bottom: 15px;
    backdrop-filter: blur(10px);
}