* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: #000; overflow: hidden; }

#game-container { width: 100vw; height: 100vh; position: relative; overflow: hidden; }
#scenes-wrapper { width: 100%; height: 100%; position: relative; }

.scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: bottom left;
    background-repeat: no-repeat;
    overflow: hidden;
}
.scene.active { opacity: 1; visibility: visible; }

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 1;
    pointer-events: none;
}

.wide-scene { background-size: 100% 100%; background-repeat: no-repeat; }
.obstacle, .door-trigger { z-index: 10; }

#scene-8 .bg-video {
    object-fit: fill;
    object-position: center center;
}

#transition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.portal-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.obstacle { position: absolute; z-index: 90; bottom: 85px; height: 1px; pointer-events: none; }
.door-trigger { position: absolute; height: 200px; z-index: 95; bottom: 85px; pointer-events: none; }

#character {
    position: absolute;
    bottom: 85px;
    left: 0;
    width: 196px;
    height: 196px;
    background-size: auto 100%;
    background-repeat: repeat-x;
    z-index: 100;
}

.sprite-idle { background-image: url('assets/sprite-idle.png'); animation: anim-idle 0.8s steps(4) infinite; }
.sprite-walk1 { background-image: url('assets/sprite-walk-right.png'); animation: anim-walk-2frames 0.6s steps(2) infinite; }
.sprite-walk2 { background-image: url('assets/sprite-walk-left.png'); animation: anim-walk-2frames 0.6s steps(2) infinite; }
.sprite-jump1 { background-image: url('assets/sprite-jump1.png'); animation: anim-jump 0.6s steps(4) forwards; }
.sprite-jump2 { background-image: url('assets/sprite-jump2.png'); animation: anim-jump 0.6s steps(4) forwards; }

@keyframes anim-idle { from { background-position: 0px; } to { background-position: -784px; } }
@keyframes anim-walk-2frames { from { background-position: 0px; } to { background-position: -392px; } }
@keyframes anim-jump { from { background-position: 0px; } to { background-position: -784px; } }


/* Loading awal: tampil 6 detik agar semua asset/rendering lebih siap */
#transition-overlay.initial-loading {
    opacity: 1;
    pointer-events: auto;
}

/* Bubble hint retro game saat karakter dekat portal / pintu kantor */
#portal-hint {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 250;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -18px) scale(0.92);
    transition: opacity 0.18s ease, transform 0.18s ease;
}
#portal-hint.show {
    opacity: 1;
    transform: translate(-50%, -34px) scale(1);
}
#portal-hint .hint-bubble {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    background: rgba(17, 22, 35, 0.94);
    border: 3px solid #fff;
    color: #fff;
    font-family: "Courier New", monospace;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .2px;
    white-space: nowrap;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.28);
    text-shadow: 0 2px 0 rgba(0,0,0,.45);
}
#portal-hint .hint-bubble::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -11px;
    width: 14px;
    height: 14px;
    background: rgba(17, 22, 35, 0.94);
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translateX(-50%) rotate(45deg);
}
#portal-hint .hint-key {
    display: inline-grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border: 2px solid #fff;
    background: rgba(255,255,255,.12);
    font-size: 18px;
    line-height: 1;
}

#detail-hint {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 245;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, 0) scale(0.92);
    transition: opacity 0.18s ease, transform 0.18s ease;
}
#detail-hint.show {
    opacity: 1;
    transform: translate(-50%, -10px) scale(1);
}
#detail-hint .hint-bubble {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    background: rgba(11, 24, 43, 0.96);
    border: 3px solid #d8faff;
    color: #f2fdff;
    font-family: "Courier New", monospace;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .2px;
    white-space: nowrap;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.28);
    text-shadow: 0 2px 0 rgba(0,0,0,.45);
}
#detail-hint .hint-bubble::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -11px;
    width: 14px;
    height: 14px;
    background: rgba(11, 24, 43, 0.96);
    border-right: 3px solid #d8faff;
    border-bottom: 3px solid #d8faff;
    transform: translateX(-50%) rotate(45deg);
}
#detail-hint .hint-key {
    display: inline-grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border: 2px solid #d8faff;
    background: rgba(105,235,255,.16);
    color: #8ff4ff;
    font-size: 18px;
    line-height: 1;
}


/* Detail HUD: tekan Arrow Down untuk membuka detail setiap background */
#detail-hud {
    position: absolute;
    inset: 0;
    z-index: 850;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4vh 5vw;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}
#detail-hud.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.hud-frame {
    --hud-left: 13%;
    --hud-right: 13%;
    --hud-top: 15%;
    --hud-bottom: 13%;
    position: relative;
    width: min(76vw, 1080px);
    max-height: 82vh;
    aspect-ratio: 16 / 9;
    background-image: url("assets/hud-landscape.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    filter: drop-shadow(0 20px 32px rgba(0,0,0,.52));
    transform: translateY(14px) scale(0.98);
    transition: transform 0.22s ease;
}
#detail-hud.show .hud-frame {
    transform: translateY(0) scale(1);
}
.hud-content {
    position: absolute;
    left: var(--hud-left);
    right: var(--hud-right);
    top: var(--hud-top);
    bottom: var(--hud-bottom);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    color: #eafaff;
    font-family: "Courier New", monospace;
    text-shadow: 0 2px 0 rgba(0,0,0,.45);
}
.hud-kicker {
    align-self: flex-start;
    padding: 6px 10px;
    border: 2px solid rgba(105, 235, 255, .92);
    background: rgba(4, 18, 34, .72);
    color: #69ebff;
    font-size: clamp(9px, 0.78vw, 11px);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: 0 0 18px rgba(105,235,255,.14);
}
.hud-content h2 {
    margin: 0;
    font-size: clamp(18px, 2.2vw, 32px);
    line-height: 1.02;
    color: #ffffff;
    letter-spacing: -0.06em;
}
.hud-content p {
    max-width: 760px;
    font-size: clamp(11px, 0.92vw, 14px);
    line-height: 1.5;
    color: rgba(234, 250, 255, .88);
}
.hud-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 4px 0 2px;
}
.hud-stats div {
    min-height: 64px;
    padding: 10px 12px;
    border: 2px solid rgba(105, 235, 255, .6);
    background: linear-gradient(180deg, rgba(0, 225, 255, .12), rgba(255, 72, 211, .06));
    box-shadow: inset 0 0 18px rgba(105,235,255,.08);
}
.hud-stats b {
    display: block;
    color: #69ebff;
    font-size: clamp(15px, 1.45vw, 22px);
    line-height: 1;
}
.hud-stats span {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,.74);
    font-size: clamp(9px, 0.74vw, 11px);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.hud-list {
    display: grid;
    gap: 6px;
    margin: 0;
    padding-left: 20px;
    font-size: clamp(10px, 0.84vw, 13px);
    line-height: 1.35;
    color: rgba(255,255,255,.86);
}
.hud-list li::marker {
    color: #ff58cb;
}
.hud-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hud-link {
    min-width: 138px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 2px solid rgba(255,255,255,.36);
    background: rgba(255,255,255,.05);
    color: #fff;
    text-decoration: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
    transition: transform .14s ease, background .14s ease;
}
.hud-link:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.10);
}
.hud-link-icon,
.hud-icon-pixel {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 2px solid currentColor;
    font-weight: 900;
    letter-spacing: -.03em;
    font-size: 16px;
    background: rgba(0,0,0,.18);
    text-transform: none;
}

.hud-link-img,
.hud-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
    display: block;
    padding: 2px;
}
.hud-icon-fallback {
    display: inline-grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-weight: 900;
    font-size: 12px;
    line-height: 1;
    text-align: center;
}
.hud-link-icon,
.hud-icon-pixel {
    overflow: hidden;
}
.hud-link-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
}
.hud-bars {
    display: grid;
    gap: 8px;
}
.hud-bar-row {
    display: grid;
    gap: 5px;
}
.hud-bar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: clamp(10px, 0.78vw, 12px);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.hud-bar-top span { color: rgba(255,255,255,.84); }
.hud-bar-top b { color: #fff; font-size: inherit; }
.hud-bar-track {
    position: relative;
    height: 14px;
    border: 2px solid rgba(255,255,255,.22);
    background:
      linear-gradient(90deg, rgba(255,255,255,.07) 0 25%, transparent 25% 50%, rgba(255,255,255,.07) 50% 75%, transparent 75% 100%),
      rgba(0,0,0,.26);
    overflow: hidden;
}
.hud-bar-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #69ebff, #ff58cb);
    box-shadow: 0 0 10px rgba(105,235,255,.28);
}
.hud-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}
.hud-icon-card {
    display: grid;
    justify-items: center;
    gap: 6px;
    padding: 12px 10px;
    border: 2px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.05);
    text-align: center;
}
.hud-icon-card small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgba(255,255,255,.86);
}
.hud-tone-cyan { color: #84efff; }
.hud-tone-pink { color: #ff9ae8; }
.hud-tone-gold { color: #ffd86b; }
.hud-tone-blue { color: #8db8ff; }
.hud-tone-green { color: #82f0b3; }
.hud-tone-red { color: #ff8b8b; }
.hud-tone-lilac { color: #d7bcff; }
.hud-tone-facebook { color: #93b7ff; }
.hud-tone-instagram { color: #ffb4da; }
.hud-tone-whatsapp { color: #98ffbe; }
.hud-tone-ps { color: #7fd1ff; }
.hud-tone-ai { color: #ffbf84; }
.hud-tone-canva { color: #8cf7ff; }
.hud-tone-capcut { color: #ffffff; }
.hud-tone-code { color: #a8ffa7; }
.hud-tone-facebook .hud-link-icon,
.hud-tone-instagram .hud-link-icon,
.hud-tone-whatsapp .hud-link-icon,
.hud-tone-ps .hud-icon-pixel,
.hud-tone-ai .hud-icon-pixel,
.hud-tone-canva .hud-icon-pixel,
.hud-tone-capcut .hud-icon-pixel,
.hud-tone-code .hud-icon-pixel,
.hud-tone-cyan .hud-icon-pixel,
.hud-tone-pink .hud-icon-pixel,
.hud-tone-gold .hud-icon-pixel,
.hud-tone-blue .hud-icon-pixel,
.hud-tone-green .hud-icon-pixel,
.hud-tone-red .hud-icon-pixel,
.hud-tone-lilac .hud-icon-pixel,
.hud-tone-cyan .hud-link-icon,
.hud-tone-pink .hud-link-icon,
.hud-tone-gold .hud-link-icon,
.hud-tone-blue .hud-link-icon,
.hud-tone-green .hud-link-icon,
.hud-tone-red .hud-link-icon,
.hud-tone-lilac .hud-link-icon { background: rgba(255,255,255,.08); }
.hud-tone-ps.hud-bar-fill { background: linear-gradient(90deg, #001e36, #31a8ff); }
.hud-tone-ai.hud-bar-fill { background: linear-gradient(90deg, #2c1200, #ff9a00); }
.hud-tone-canva.hud-bar-fill { background: linear-gradient(90deg, #00c4cc, #7dfff4); }
.hud-tone-capcut.hud-bar-fill { background: linear-gradient(90deg, #777, #fff); }
.hud-tone-code.hud-bar-fill { background: linear-gradient(90deg, #14532d, #86efac); }
.hud-tone-cyan.hud-bar-fill { background: linear-gradient(90deg, #25b9d7, #84efff); }
.hud-tone-pink.hud-bar-fill { background: linear-gradient(90deg, #b93594, #ff9ae8); }
.hud-tone-gold.hud-bar-fill { background: linear-gradient(90deg, #a46a00, #ffd86b); }
.hud-tone-blue.hud-bar-fill { background: linear-gradient(90deg, #2746bb, #8db8ff); }
.hud-tone-green.hud-bar-fill { background: linear-gradient(90deg, #0b7949, #82f0b3); }
.hud-tone-red.hud-bar-fill { background: linear-gradient(90deg, #a22323, #ff8b8b); }
.hud-tone-lilac.hud-bar-fill { background: linear-gradient(90deg, #7554b3, #d7bcff); }
.hud-footer {
    margin-top: auto;
    align-self: flex-end;
    padding: 6px 9px;
    border: 2px solid rgba(255, 88, 203, .70);
    color: #ffdff7;
    background: rgba(23, 5, 34, .68);
    font-size: clamp(9px, 0.76vw, 11px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* desktop: HUD jangan terlalu memenuhi layar */
@media (min-width: 1200px) {
    .hud-frame {
        width: min(72vw, 1020px);
        max-height: 78vh;
    }
}

/* tablet / square */
@media (min-aspect-ratio: 4/5) and (max-aspect-ratio: 5/4) {
    .hud-frame {
        width: min(84vw, 880px);
    }
    .hud-stats {
        grid-template-columns: 1fr;
    }
}

/* mobile */
@media (max-aspect-ratio: 4/5) {
    #detail-hud { padding: 3vh 4vw; }
    .hud-frame {
        width: min(92vw, 760px);
        max-height: 92vh;
    }
    .hud-content {
        gap: 8px;
    }
    .hud-stats { grid-template-columns: 1fr; gap: 8px; }
    .hud-stats div { min-height: 54px; }
    .hud-content h2 { font-size: clamp(20px, 5.2vw, 30px); }
    .hud-content p { font-size: clamp(11px, 2.4vw, 14px); }
    .hud-list { font-size: clamp(10px, 2.2vw, 13px); }
    .hud-links { gap: 8px; }
    .hud-link { min-width: 118px; padding: 8px 10px; }
    .hud-link-icon, .hud-icon-pixel { width: 46px; height: 46px; font-size: 13px; }
    .hud-icons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Frame image per area */
#detail-hud.hud-theme-landscape .hud-frame { background-image: url("assets/hud-landscape.png"); }
#detail-hud.hud-theme-amc .hud-frame { background-image: url("assets/hud-amc.png"); }
#detail-hud.hud-theme-cilpa .hud-frame { background-image: url("assets/hud-cilpa.png"); }
#detail-hud.hud-theme-kun .hud-frame { background-image: url("assets/hud-kun.png"); }
#detail-hud.hud-theme-sd .hud-frame { background-image: url("assets/hud-sd.png"); }
#detail-hud.hud-theme-smp .hud-frame { background-image: url("assets/hud-smp.png"); }
#detail-hud.hud-theme-sma .hud-frame { background-image: url("assets/hud-sma.png"); }
#detail-hud.hud-theme-universitas .hud-frame { background-image: url("assets/hud-universitas.png"); }

/* inset per HUD supaya isi tidak menabrak dekorasi frame */
#detail-hud.hud-theme-landscape .hud-frame,
#detail-hud.hud-theme-amc .hud-frame,
#detail-hud.hud-theme-cilpa .hud-frame {
    --hud-left: 13.5%;
    --hud-right: 13.5%;
    --hud-top: 16%;
    --hud-bottom: 13%;
}
#detail-hud.hud-theme-kun .hud-frame {
    --hud-left: 11.5%;
    --hud-right: 11.5%;
    --hud-top: 13%;
    --hud-bottom: 12%;
}
#detail-hud.hud-theme-sd .hud-frame {
    --hud-left: 12%;
    --hud-right: 12%;
    --hud-top: 18%;
    --hud-bottom: 16%;
}
#detail-hud.hud-theme-smp .hud-frame,
#detail-hud.hud-theme-sma .hud-frame {
    --hud-left: 12.5%;
    --hud-right: 12.5%;
    --hud-top: 13%;
    --hud-bottom: 14%;
}
#detail-hud.hud-theme-universitas .hud-frame {
    --hud-left: 12%;
    --hud-right: 12%;
    --hud-top: 14%;
    --hud-bottom: 13%;
}

/* tone per theme */
#detail-hud.hud-theme-landscape {
    background: rgba(0, 0, 0, 0.30);
}
#detail-hud.hud-theme-amc {
    background: rgba(3, 22, 43, 0.26);
}
#detail-hud.hud-theme-amc .hud-content {
    color: #eaf8ff;
    text-shadow: 0 2px 0 rgba(5, 25, 52, .42);
}
#detail-hud.hud-theme-amc .hud-kicker {
    border-color: rgba(255,255,255,.92);
    background: rgba(31, 147, 219, .76);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(116, 214, 255, .28);
}
#detail-hud.hud-theme-amc .hud-content h2,
#detail-hud.hud-theme-amc .hud-stats b { color: #ffffff; }
#detail-hud.hud-theme-amc .hud-content p,
#detail-hud.hud-theme-amc .hud-list { color: rgba(235, 249, 255, .92); }
#detail-hud.hud-theme-amc .hud-stats div {
    border-color: rgba(255,255,255,.72);
    background: linear-gradient(180deg, rgba(83, 184, 255, .18), rgba(255,255,255,.07));
    box-shadow: inset 0 0 22px rgba(107, 210, 255, .16);
}
#detail-hud.hud-theme-amc .hud-list li::marker { color: #8ee4ff; }
#detail-hud.hud-theme-amc .hud-footer {
    border-color: rgba(255,255,255,.76);
    background: rgba(54, 155, 221, .62);
    color: #ffffff;
}

#detail-hud.hud-theme-cilpa {
    background: rgba(25, 19, 45, 0.30);
}
#detail-hud.hud-theme-cilpa .hud-content {
    color: #fff8ff;
    text-shadow: 0 2px 0 rgba(35, 21, 56, .38);
}
#detail-hud.hud-theme-cilpa .hud-kicker {
    border-color: rgba(255,255,255,.95);
    background: rgba(179, 144, 230, .74);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(220, 193, 255, .22);
}
#detail-hud.hud-theme-cilpa .hud-content h2,
#detail-hud.hud-theme-cilpa .hud-stats b { color: #fffaff; }
#detail-hud.hud-theme-cilpa .hud-content p,
#detail-hud.hud-theme-cilpa .hud-list { color: rgba(255, 249, 255, .90); }
#detail-hud.hud-theme-cilpa .hud-stats div {
    border-color: rgba(234, 215, 255, .76);
    background: linear-gradient(180deg, rgba(214, 190, 255, .18), rgba(255,255,255,.06));
    box-shadow: inset 0 0 20px rgba(214, 190, 255, .14);
}
#detail-hud.hud-theme-cilpa .hud-list li::marker { color: #d3a8ff; }
#detail-hud.hud-theme-cilpa .hud-footer {
    border-color: rgba(234, 215, 255, .76);
    background: rgba(124, 92, 172, .62);
    color: #fffaff;
}

#detail-hud.hud-theme-kun {
    background: rgba(0, 0, 0, 0.38);
}
#detail-hud.hud-theme-kun .hud-content {
    color: #f7f0df;
    text-shadow: 0 2px 0 rgba(0,0,0,.55);
}
#detail-hud.hud-theme-kun .hud-kicker {
    border-color: #f4d14a;
    background: #cf2724;
    color: #fff7d8;
    box-shadow: 7px 7px 0 rgba(18, 67, 171, .55);
}
#detail-hud.hud-theme-kun .hud-content h2,
#detail-hud.hud-theme-kun .hud-stats b { color: #f4d14a; }
#detail-hud.hud-theme-kun .hud-content p,
#detail-hud.hud-theme-kun .hud-list { color: rgba(255, 248, 224, .88); }
#detail-hud.hud-theme-kun .hud-stats div {
    border-color: rgba(244, 209, 74, .78);
    background: linear-gradient(180deg, rgba(18, 67, 171, .22), rgba(207, 39, 36, .14));
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.08);
}
#detail-hud.hud-theme-kun .hud-list li::marker { color: #cf2724; }
#detail-hud.hud-theme-kun .hud-footer {
    border-color: #f4d14a;
    background: rgba(18, 67, 171, .72);
    color: #fff7d8;
}

#detail-hud.hud-theme-sd,
#detail-hud.hud-theme-smp,
#detail-hud.hud-theme-sma,
#detail-hud.hud-theme-universitas {
    background: rgba(11, 13, 18, 0.28);
}
#detail-hud.hud-theme-sd .hud-kicker,
#detail-hud.hud-theme-smp .hud-kicker,
#detail-hud.hud-theme-sma .hud-kicker,
#detail-hud.hud-theme-universitas .hud-kicker {
    border-color: rgba(255,255,255,.88);
    background: rgba(107, 76, 39, .70);
    color: #fff6da;
}
#detail-hud.hud-theme-sd .hud-stats b,
#detail-hud.hud-theme-smp .hud-stats b,
#detail-hud.hud-theme-sma .hud-stats b,
#detail-hud.hud-theme-universitas .hud-stats b {
    color: #ffd86b;
}
#detail-hud.hud-theme-sd .hud-list li::marker,
#detail-hud.hud-theme-smp .hud-list li::marker,
#detail-hud.hud-theme-sma .hud-list li::marker,
#detail-hud.hud-theme-universitas .hud-list li::marker {
    color: #ffd86b;
}
#detail-hud.hud-theme-sd .hud-footer,
#detail-hud.hud-theme-smp .hud-footer,
#detail-hud.hud-theme-sma .hud-footer,
#detail-hud.hud-theme-universitas .hud-footer {
    border-color: rgba(255,216,107,.72);
    background: rgba(82, 55, 25, .68);
    color: #fff6da;
}
