@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700&display=swap');

/* === SETTINGAN LAYAR & FONT === */
body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #000; /* Warna cadangan */
    color: #f3f3f3;
    min-height: 100vh;
    overflow-x: hidden;
}

/* === SETTINGAN VIDEO BACKGROUND (Supaya Full Layar) === */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10; /* Taruh di paling belakang */
    overflow: hidden;
}

#bgVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Agar video tidak gepeng */
}

/* Lapisan Hitam di atas Video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Ubah 0.7 jadi 0.4 kalau mau lebih terang */
    z-index: -5;
}
/* ================================= */

#t-mili { width: 3ch; }

.stock-track {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.stock-fill {
    background: #ffffff;
    height: 100%;
    transition: width 0.3s ease;
}

.sold-out-overlay {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
}

.sold-stamp {
    border: 6px solid #ef4444;
    color: #ef4444;
    transform: rotate(-15deg);
    font-weight: bold;
    text-align: center;
    padding: 1rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .sold-stamp { font-size: 1.5rem; border-width: 4px; }
}

@media (min-width: 769px) {
    .sold-stamp { font-size: 3rem; border-width: 8px; }
}

.btn-war {
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.btn-war:active { transform: scale(0.95); }
