* { box-sizing: border-box; font-family: "Mulish", sans-serif !important; text-decoration: none !important; }
body { background-color: #000000 !important; color: #ffffff; margin: 0; padding: 0 0 80px 0; overflow-x: hidden; }

/* SPARKLE */
#sparkle-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 999; }
.gold-sparkle { position: absolute; background: radial-gradient(circle, #fffdf0 10%, #ffdf6d 60%, rgba(255,215,0,0) 100%); border-radius: 50%; filter: drop-shadow(0 0 6px #ffdf6d) drop-shadow(0 0 12px #ffa500); animation: floatAndBlink 3s infinite linear; opacity: 0; }
@keyframes floatAndBlink {
    0%   { transform: translateY(20px) scale(0.3) rotate(0deg); opacity: 0; }
    30%  { opacity: 1; transform: translateY(-10px) scale(1.2) rotate(45deg); }
    70%  { opacity: 0.9; transform: translateY(-40px) scale(1) rotate(90deg); }
    100% { transform: translateY(-70px) scale(0.2) rotate(180deg); opacity: 0; }
}

/* LAYOUT */
.main-wrapper { position: relative; z-index: 10; }
.content-container { max-width: 1000px; margin: 0 auto; padding: 15px; }

/* HEADER */
.gnav-header { background-color: #0b0b0e; padding: 10px 20px; border-bottom: 1px solid #1a1a24; }
.flex-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.logo-area img { max-height: 35px; display: block; }
.search-display { width: 100%; max-width: 450px; padding: 8px 15px; border-radius: 20px; border: 1px solid #333; background: #fff; color: #999; font-size: 14px; pointer-events: none; }
.icon-area { color: #fff; font-size: 16px; display: flex; gap: 12px; white-space: nowrap; }

/* TOMBOL DAFTAR / LOGIN */
.action-buttons { display: flex; gap: 12px; margin: 15px 0; }
.btn-action { flex: 1; text-align: center; padding: 13px; border-radius: 6px; font-weight: 900; font-size: 16px; color: white !important; background: linear-gradient(to bottom, #7676e2, #393994); box-shadow: 0 4px 10px rgba(118,118,226,0.3); transition: opacity 0.2s; }
.btn-action:hover { opacity: 0.85; }

/* SUB LINKS */
.sub-links { text-align: center; font-size: 13px; color: #bbb; margin-top: 5px; }
.breadcrumbs { text-align: center; font-size: 11px; color: #555; margin: 4px 0 18px 0; }

/* GRID UTAMA */
.grid-section { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start; }
.col-image { flex: 0 0 52%; min-width: 260px; }
.col-details { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: 8px; }

/* Banner kiri */
.banner-img { width: 100%; border-radius: 8px; box-shadow: 0 0 15px rgba(118,118,226,0.2); display: block; object-fit: cover; }

/* Kolom kanan - teks */
.alert-text { color: #ff6b6b; font-weight: bold; margin: 0; font-size: 13px; }
.price-text { font-size: 26px; font-weight: 900; margin: 0; color: #ffeb3b; }
.caption-text { color: #aaa; font-size: 12px; margin: 0; }
.main-title { font-size: 15px; font-weight: bold; line-height: 1.4; margin: 0; }

/* RTP BOX */
.rtp-box { background: #0f0f14; border: 1px solid #222; border-radius: 8px; padding: 12px; }
.rtp-header { text-align: center; font-size: 11px; letter-spacing: 2px; color: #7676e2; font-weight: bold; margin: 0 0 8px 0; }
.rtp-bars { display: flex; gap: 6px; margin-bottom: 10px; }
.rtp-bar-wrap { flex: 1; }
.bar {
    height: 44px;
    background: linear-gradient(to bottom, #25254d, #0b0b14);
    border-radius: 4px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #ffeb3b;
    transition: all 0.3s;
}
.bar.spinning { animation: spinPulse 0.15s infinite alternate; }
@keyframes spinPulse {
    from { background: linear-gradient(to bottom, #393994, #1a1a4a); }
    to   { background: linear-gradient(to bottom, #7676e2, #393994); }
}
.btn-spin {
    width: 100%; padding: 9px;
    background: #393994; color: white;
    border: none; border-radius: 4px;
    font-weight: bold; cursor: pointer;
    transition: background 0.2s;
    display: block; text-align: center;
    font-size: 15px;
}
.btn-spin:hover { background: #4a4ab0; }
.btn-spin:disabled { opacity: 0.6; cursor: not-allowed; }

/* DESKRIPSI */
.description-card { background: #0b0b0f; border: 1px solid #1a1a24; border-radius: 10px; padding: 20px; margin: 20px 0; text-align: justify; line-height: 1.7; font-size: 14px; }

/* FAQ & TESTIMONI */
.section-block { margin-top: 30px; }
.title-glow { text-align: center; color: #7676e2; font-weight: 900; font-size: 20px; margin-bottom: 20px; text-shadow: 0 0 10px rgba(118,118,226,0.5); }
.gradient-box { background: linear-gradient(to bottom, #98b4db 0%, #2f4f75 40%, #080f1a 100%); border: 1px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 16px 25px; margin-bottom: 15px; font-weight: 700; color: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.6); cursor: pointer; }
.faq-answer { display: none; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.2); margin-top: 10px; font-weight: 400; color: #d0d0d0; }
.comment-box { padding: 20px 25px; font-weight: normal; cursor: default; }
.comment-text { font-style: italic; margin: 0 0 8px 0; font-size: 14px; color: #eef3fa; line-height: 1.5; }
.comment-author { text-align: right; font-weight: bold; color: #ffeb3b; margin: 0; font-size: 13px; }

/* BOTTOM NAV */
.mobile-nav-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #000; border-top: 2px solid #1a1a24; padding: 10px 0; z-index: 1000; display: flex; justify-content: space-around; text-align: center; font-size: 11px; }
.nav-item { color: #888; text-decoration: none !important; transition: all 0.3s ease; display: block; }
.nav-item:active { transform: scale(0.85); color: #fff; }
.nav-item:hover { color: #7676e2; }
.nav-item-active { background: linear-gradient(to bottom, #7676e2, #25255c); padding: 5px 18px; border-radius: 20px; color: #fff !important; font-weight: bold; margin-top: -5px; text-decoration: none !important; transition: all 0.3s ease; display: block; }
.nav-item-active:active { transform: scale(0.9); }

/* RESPONSIF MOBILE */
@media (max-width: 600px) {
    .col-image { flex: 0 0 100%; }
    .col-details { flex: 0 0 100%; }
}
