/* =========================================================
   GLOBAL STYLES & RESET
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #030816;
    color: #fff;
    min-height: 100vh;
    padding-bottom: 70px;
}

.main-wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px;
}

/* =========================================================
   HEADER, LOGO & MARQUEE
   ========================================================= */
.logo-container {
    text-align: center;
    padding: 10px 0;
}

.site-logo {
    max-height: 60px;
    width: auto;
}

.header-info {
    display: flex;
    align-items: center;
    background: #170029;
    border: 1px solid #6b00ff;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
}

.info-title {
    background: linear-gradient(180deg, #9100ff 0%, #470073 100%);
    color: #fff;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    text-transform: uppercase;
}

.info-marquee {
    flex: 1;
    color: #ffffff;
    font-size: 13px;
    padding: 4px 10px;
}

/* =========================================================
   BANNER SLIDER (SWIPER.JS INTEGRATION)
   ========================================================= */
.banner-slider {
    width: 100%;
    max-height: 380px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 2px solid #0056b3;
    position: relative;
}

.banner-slider .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    display: block;
}

.swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #00a8ff !important;
    opacity: 1;
    width: 18px !important;
    border-radius: 6px !important;
}

/* =========================================================
   JACKPOT MARQUEE
   ========================================================= */
.jackpot-bar {
    display: flex;
    align-items: center;
    background: #170029;
    border: 1px solid #6b00ff;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}

.jackpot-title {
    background: linear-gradient(180deg, #9100ff 0%, #470073 100%);
    color: #fff;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

.jackpot-marquee {
    color: #2ed573;
    font-size: 13px;
    font-weight: bold;
    padding: 4px 10px;
}

/* =========================================================
   ACTION BUTTONS (LOGIN & DAFTAR)
   ========================================================= */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.btn-action {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    background: linear-gradient(180deg, #ff0000 0%, #730000 100%);
    box-shadow: 0 4px 10px rgb(0 0 0);
    transition: 0.3s;
    border: 2px solid #ff0000;
}

.btn-action:hover {
    filter: brightness(1.2);
}

/* =========================================================
   PROVIDER TABS
   ========================================================= */
.provider-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.provider-tabs::-webkit-scrollbar {
    height: 4px;
}

.provider-tabs::-webkit-scrollbar-thumb {
    background: #0088cc;
    border-radius: 4px;
}

.tab-item {
    background: #0d0021;
    border: 1px solid #4500b9;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
    min-height: 48px;
}

.tab-item img {
    max-height: 26px;
    width: auto;
    object-fit: contain;
}

.tab-item .tab-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tab-item.active, .tab-item:hover {
    border-color: #8a00ff;
    background: #1b0044;
    box-shadow: inset 0 0 8px rgb(23 0 255 / 50%);
}

/* =========================================================
   GAME INFO BAR & SEARCH
   ========================================================= */
.game-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background: #0a0018;
    padding: 12px 15px;
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid #1c2d5a;
}

.update-date {
    font-size: 12px;
    color: #8a99ad;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-top: 4px;
}

.rating-badge {
    color: #f1c40f;
    font-size: 13px;
    margin-top: 4px;
}

.search-box input {
    background: #030816;
    border: 1px solid #1c2d5a;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    outline: none;
    width: 220px;
}

.search-box input:focus {
    border-color: #00a8ff;
}

/* =========================================================
   GRID & CARD GAME
   ========================================================= */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 15px;
    background: #0a0018;
    padding: 15px;
    border-radius: 0 0 6px 6px;
    min-height: 200px;
}

.empty-games {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    color: #5a6e85;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game-card {
    background: linear-gradient(180deg, #9100eb 0%, #2c0073 100%);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    gap: 10px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border: 1px solid #a600ff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    content-visibility: auto;
    contain-intrinsic-size: 150px;
}

.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(119, 0, 255, 0.4);
}

.game-card-lazy-hidden {
    display: none !important;
}

.lazy-loading-indicator {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px 0;
    color: #00a8ff;
    font-size: 13px;
    font-weight: 600;
    display: none;
}

/* =========================================================
   RIBBON BADGE (STYLE PITA CHEVRON & SHINE SWIPE EFFECT)
   ========================================================= */
.badge-ribbon {
    position: absolute;
    top: 0;
    left: 12px;
    padding: 6px 8px 12px 8px;
    font-size: 11px;
    font-weight: 900;
    color: #ffffff;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    overflow: hidden; /* Mengunci kilapan agar tetap di dalam badge */
}

.badge-ribbon.top {
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
    border-top: 2px solid #81c784;
}

.badge-ribbon.low {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    border-top: 2px solid #ef5350;
}

/* Lapisan Cahaya Kilap Putih (Flash Light Swipe) */
.badge-ribbon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg, 
        rgba(255, 255, 255, 0) 20%, 
        rgba(255, 255, 255, 0.85) 50%, 
        rgba(255, 255, 255, 0) 80%
    );
    transform: rotate(25deg);
    animation: shineSwipe 2s infinite ease-in-out;
}

@keyframes shineSwipe {
    0% {
        left: -150%;
    }
    40%, 100% {
        left: 150%;
    }
}

/* SISI KIRI CARD */
.card-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.game-img {
    width: 100%;
    height: 105px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.game-title {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    margin: 6px 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
}

.btn-simulasi {
    background: #fff;
    color: #007bc8;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 11px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: 0.2s;
    display: inline-block;
}

.btn-simulasi:hover {
    background: #f0f0f0;
}

/* SISI KANAN CARD */
.card-right {
    flex: 1.3;
    background: #000000;
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pola-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
    padding-bottom: 4px;
    font-size: 11px;
    color: #00bfff;
}

.pola-body {
    text-align: center;
    font-size: 10px;
    margin: 6px 0;
    line-height: 1.3;
    min-height: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pola-body .warning {
    color: #ff5252;
    font-weight: bold;
    font-size: 11px;
    margin-top: 2px;
}

.pola-body .no-rec {
    font-size: 9px;
    color: #aaa;
    margin-top: 2px;
}

.pola-item {
    font-size: 10px;
    color: #ddd;
    text-align: center;
    margin-bottom: 1px;
}

.turbo-on { color: #00e676; font-weight: bold; }
.turbo-off { color: #ff5252; font-weight: bold; }

.jam-gacor {
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 4px;
}

/* =========================================================
   RTP PROGRESS BAR DINAMIS
   ========================================================= */
.rtp-container {
    width: 100%;
    padding: 0;
}

.rtp-bar-bg {
    background: #fff8e1 !important;
    border-radius: 6px;
    height: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #ffffff;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.rtp-bar-fill {
    height: 100%;
    transition: width 0.5s ease-in-out;
    background-size: 30px 30px !important;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0.35) 10px,
        transparent 10px,
        transparent 20px
    ) !important;
    animation: moveStripes 1.2s linear infinite !important;
}

.rtp-bar-fill.bg-red {
    background-color: #ff3333 !important;
}

.rtp-bar-fill.bg-yellow {
    background-color: #ffc107 !important;
}

.rtp-bar-fill.bg-green {
    background-color: #2ecc71 !important;
}

@keyframes moveStripes {
    0% { background-position: 0 0; }
    100% { background-position: 30px 0; }
}

.rtp-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #000;
    text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.8);
    z-index: 2;
}

/* =========================================================
   HOVER OVERLAY ON GAME IMAGE
   ========================================================= */
.img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.img-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.img-wrapper:hover .img-overlay {
    opacity: 1;
}

.btn-mari-bermain {
    background: #37008d;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* =========================================================
   MODAL POP-UP DETAIL RTP (Mari Bermain)
   ========================================================= */
.modal-rtp {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; top: 0; 
    width: 100%; height: 100%; 
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content-rtp {
    background: #00050d;
    border: 1px solid #7700ff;
    border-radius: 12px;
    width: 90%;
    max-width: 440px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 25px rgb(70 0 255 / 40%);
    font-family: Arial, sans-serif;
}

.modal-header-rtp {
    background: linear-gradient(180deg, #8500ff 0%, #001973 100%);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.modal-header-rtp img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.8);
}

.modal-close {
    position: absolute;
    top: 10px; right: 12px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    background: #1500b3;
    border-radius: 50%;
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
}

.modal-body-rtp {
    padding: 15px;
}

/* CIRCLE PROGRESS GLOW */
.circle-progress-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 10px auto 20px auto;
}

.circle-progress-wrapper svg {
    width: 180px;
    height: 180px;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: #101926;
    stroke-width: 10;
}

.circle-fill {
    fill: none;
    stroke: #ff4d4d;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 471;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1s ease-in-out, stroke 0.3s;
    filter: drop-shadow(0px 0px 8px #ff4d4d);
}

.circle-content {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.circle-rtp-text {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.circle-status-pill {
    margin-top: 6px;
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* GRID INFO WITH ICONS */
.modal-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.info-box-rtp {
    background: #040b17;
    border: 1px solid #0a1f3d;
    border-radius: 8px;
    padding: 8px 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-icon {
    background: #02172d;
    color: #00ff45;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text-group {
    display: flex;
    flex-direction: column;
}

.info-text-group span {
    font-size: 8px;
    color: #ffe200;
    font-weight: bold;
}

.info-text-group strong {
    font-size: 10px;
    color: #fff;
}

/* CHART BOX */
.chart-box {
    background: #040b17;
    border: 1px solid #0a1f3d;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
}

.chart-title {
    font-size: 10px;
    font-weight: bold;
    color: #ffe200;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* POLA SLOT LIST SECTION */
.pola-section-title {
    font-size: 10px;
    font-weight: bold;
    color: #ffe200;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pola-grid-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 15px;
}

.pola-card-item {
    background: #040b17;
    border: 1px solid #0a1f3d;
    border-radius: 8px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pola-tag {
    font-size: 9px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
}

.pola-tag.auto { background: #003311; color: #00ff66; }
.pola-tag.manual { background: #330000; color: #ff4d4d; }

.pola-count {
    font-size: 11px;
    font-weight: bold;
    color: #fff;
}

.pola-icons-status {
    display: flex;
    gap: 3px;
}

.icon-status-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: bold;
}

.icon-status-circle.check { border: 1px solid #00ff66; color: #00ff66; }
.icon-status-circle.cross { border: 1px solid #ff4d4d; color: #ff4d4d; }

/* BUTTON MAIN */
.btn-main-sekarang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(180deg, #ff0000 0%, #730000 100%);
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgb(255 0 0 / 38%);
}

/* =========================================================
   MODAL SIMULASI KEMENANGAN (INTERAKTIF)
   ========================================================= */
.sim-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    overflow-y: auto;
}

.sim-modal-content {
    background-color: #130033;
    color: #ffffff;
    margin: 4% auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
    border: 1px solid #1a2a3a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    font-family: Arial, sans-serif;
}

.sim-close {
    position: absolute;
    right: 15px; top: 12px;
    color: #8899a6;
    font-size: 22px;
    cursor: pointer;
    font-weight: bold;
}
.sim-close:hover { color: #fff; }

.sim-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.sim-icon { background: #0c1f33; padding: 10px; border-radius: 8px; font-size: 20px; border: 1px solid #1d354d; }
.sim-header h3 { margin: 0; font-size: 16px; font-weight: bold; color: #fff; }
.sim-subtitle { margin: 2px 0 0 0; font-size: 12px; color: #8899a6; }
.rtp-tag { color: #ff4d4d; font-weight: bold; }

.sim-form-group { margin-bottom: 12px; text-align: left; }
.sim-form-group label { display: block; font-size: 10px; color: #8899a6; margin-bottom: 4px; font-weight: bold; letter-spacing: 0.5px; }
.input-prefix { display: flex; background: #02060a; border: 1px solid #162536; border-radius: 6px; overflow: hidden; }
.input-prefix span { padding: 8px 12px; background: #0a1724; color: #ffffff; font-weight: bold; font-size: 12px; border-right: 1px solid #162536; display: flex; align-items: center; }
.input-prefix input { background: transparent; border: none; color: #fff; padding: 8px 10px; width: 100%; font-weight: bold; outline: none; font-size: 13px; }

.sim-error-box { background: #2a080c; border: 1px solid #5a111a; color: #ff6b6b; padding: 10px; border-radius: 6px; font-size: 11px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.btn-run-sim { width: 100%; background: linear-gradient(180deg, #ff0000 0%, #730000 100%)!important; color: #fff; border: none; padding: 12px; border-radius: 8px; font-weight: bold; cursor: pointer; font-size: 14px; transition: 0.2s; }
.btn-run-sim:hover { background: #0066cc; }

.chart-box-sim { text-align: center; margin: 20px 0; }
.donut-chart {
    width: 140px; height: 140px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.5s ease;
}
.chart-center {
    width: 104px; height: 104px;
    background: #080d14;
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.chart-center span { font-size: 22px; font-weight: bold; color: #ff4d4d; }
.chart-center small { font-size: 8px; color: #8899a6; font-weight: bold; letter-spacing: 0.5px; }

.chart-legend { display: flex; justify-content: center; gap: 15px; font-size: 11px; margin-top: 12px; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 4px; }
.win-dot { background: #ff4d4d; }
.lose-dot { background: #4a151b; }

.sim-grid-info { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.info-card-sim { background: #03080e; border: 1px solid #101c28; padding: 8px 10px; border-radius: 6px; text-align: left; }
.info-card-sim small { display: block; font-size: 9px; color: #607385; font-weight: bold; }
.info-card-sim strong { font-size: 12px; color: #fff; }

.potensi-box { background: #021c0f; border: 1px solid #09522b; padding: 12px; border-radius: 8px; text-align: center; color: #00ff66; margin-bottom: 12px; }
.potensi-box span { font-size: 10px; font-weight: bold; letter-spacing: 0.5px; }
.potensi-box h2 { margin: 4px 0 0 0; font-size: 20px; font-weight: bold; text-shadow: 0 0 8px rgba(0,255,102,0.3); }

.sim-warning-box { background: #2a080c; border: 1px solid #5a111a; color: #ff8888; padding: 8px; border-radius: 6px; font-size: 11px; margin-bottom: 10px; text-align: center; }
.sim-footer-note { font-size: 9px; color: #556677; text-align: center; margin-top: 8px; font-style: italic; }

/* =========================================================
   BOTTOM NAVIGATION
   ========================================================= */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #6e00ff 0%, #1e0059 100%);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 999;
    border-top: 1px solid #7c00ff;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.nav-item:hover {
    color: #00bfff;
}

/* =========================================================
   RESPONSIVE LAYOUT (MOBILE / HP)
   ========================================================= */
@media (max-width: 600px) {
    .games-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    .game-info-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box {
        width: 100%;
    }

    .search-box input {
        width: 100%;
    }
}

/* Mengatur posisi Widget LiveChat */
#chat-widget-container {
    bottom: 70px !important; /* Jarak dari bawah layar (sesuaikan nilainya) */
    right: 15px !important;  /* Jarak dari kanan layar */
    z-index: 99999 !important; /* Agar melayang di atas bottom-nav */
}
