/* ================================================================================================
    RIOICHI GLOBAL DARK OVERRIDES
    Overrides semua komponen lama agar sesuai tema dark Rioichi
================================================================================================ */

/* === GLOBAL BODY & BASE === */
body {
    background: #0A0E1A !important;
    color: #ffffff !important;
    font-family: 'Inter', 'Noto Sans', sans-serif !important;
    padding-top: 68px !important;
}

/* OLD NAVBAR SUPPRESSED - Rioichi navbar takes over */
nav.navbar.navbar-expand-lg {
    display: none !important;
}

/* === CARDS & BOXES === */
.cards {
    background: #1A1F2E !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    color: #ffffff !important;
}
.cards-title, .title-card { color: #ffffff !important; }
.title-head { color: #ffffff !important; }

/* === INPUTS (global forms) === */
.form-control, .floating-input, select, textarea {
    background: #1A1F2E !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
}
.form-control:focus, .floating-input:focus {
    border-color: #FFD700 !important;
    box-shadow: 0 0 0 3px rgba(255,215,0,0.12) !important;
    outline: none !important;
    background: rgba(255,215,0,0.04) !important;
}
.form-control::placeholder, .floating-input::placeholder {
    color: rgba(255,255,255,0.3) !important;
}
select option { background: #1A1F2E; color: #fff; }

/* === LABELS === */
.label-content { color: rgba(255,255,255,0.7) !important; }
.floating-label { color: rgba(255,255,255,0.4) !important; }
.note { color: rgba(255,255,255,0.4) !important; }
small, .small { color: rgba(255,255,255,0.5) !important; }

/* === BUTTONS (keep primary = gold) === */
.btnYellowPrimary, .btnYellowPrimary:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #FFC857 100%) !important;
    color: #0A0E1A !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
    border: none !important;
}
.btnYellowPrimary:hover {
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5) !important;
    transform: translateY(-2px);
}
.btnYellowSecond {
    background: linear-gradient(135deg, #1A1F2E 0%, #2D2416 100%) !important;
    color: #FFD700 !important;
    border: 2px solid #FFD700 !important;
    border-radius: 10px !important;
}
.btnYellowSecond:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFC857 100%) !important;
    color: #0A0E1A !important;
    border-color: #FFED4E !important;
}
.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #FFC857 100%) !important;
    border-color: #FFD700 !important;
    color: #0A0E1A !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover { 
    background: linear-gradient(135deg, #FFED4E 0%, #FFD700 50%, #FFC857 100%) !important; 
    border-color: #FFED4E !important;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5) !important;
    transform: translateY(-2px);
}
.btn-secondary { background-color: #1A1F2E !important; border-color: rgba(255,255,255,0.1) !important; color: rgba(255,255,255,0.7) !important; }
.btn-success { background-color: #10B981 !important; border-color: #10B981 !important; color: #fff !important; }
.btn-danger { background-color: #EF4444 !important; border-color: #EF4444 !important; }
.btn-info { background-color: #3B82F6 !important; border-color: #3B82F6 !important; color: #fff !important; }
.btn-warning { background-color: #F59E0B !important; border-color: #F59E0B !important; color: #0A0E1A !important; }

/* === NAVBAR TABS (category) === */
.navTabs .btnNavTabs {
    background: linear-gradient(135deg, #1A1F2E 0%, #252B3D 100%) !important;
    border: 2px solid rgba(255,255,255,0.08) !important;
    color: rgba(255,255,255,0.6) !important;
    border-radius: 30px !important;
}
.navTabs .btnNavTabs .text { color: rgba(255,255,255,0.6) !important; }
.navTabs .btnNavTabs .icon { background: rgba(255,255,255,0.05) !important; color: rgba(255,255,255,0.4) !important; }
.navTabs .btnNavTabs.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #FFC857 100%) !important;
    border-color: #FFD700 !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
}
.navTabs .btnNavTabs.active .text { color: #0A0E1A !important; font-weight: 700 !important; }
.navTabs .btnNavTabs.active .icon { background: rgba(10,14,26,0.2) !important; color: #0A0E1A !important; }

/* === ACCORDION (FAQ, Payment methods) === */
.accordionHeadPay {
    background: linear-gradient(135deg, #1A1F2E 0%, #252B3D 100%) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 10px !important;
    color: #fff !important;
}
.accordionHeadPay .title { color: rgba(255,255,255,0.8) !important; }
.accordionBodyPay {
    background: #111827 !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
}
.accordionHead {
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #FFC857 100%) !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
}
.accordionHead .containers .title { color: #0A0E1A !important; font-weight: 700 !important; }
.accordionBody {
    background: #111827 !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
}
.accordionBody .accordionContent .text, .accordionBody .accordionContent .text2 {
    color: rgba(255,255,255,0.7) !important;
}

/* === PRODUCT CARDS (in game detail) === */
.productCard {
    background: #1A1F2E !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    border-radius: 12px !important;
    color: #fff !important;
}
.productCard:hover { border-color: #FFD700 !important; }
.productCard .pc-title { color: rgba(255,255,255,0.9) !important; }
.nom-radio:checked ~ .productCard {
    border-color: #FFD700 !important;
    background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(255,237,78,0.05) 100%) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2) !important;
}
.pc-check { background: linear-gradient(135deg, #FFD700 0%, #FFC857 100%) !important; color: #0A0E1A !important; }
.ribbon { background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%) !important; color: #0A0E1A !important; font-weight: 700 !important; }

/* === CHOICE (payment, category) === */
.containerChoice {
    background: #1A1F2E !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}
.containerChoice .text .desc, .containerChoice .text .count { color: rgba(255,255,255,0.7) !important; }
.nom-radio:checked ~ .containerChoice {
    background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(255,237,78,0.05) 100%) !important;
    border-color: #FFD700 !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}
.nom-radio:checked ~ .containerChoice .text .desc,
.nom-radio:checked ~ .containerChoice .text .count { 
    color: #FFD700 !important; 
    font-weight: 700 !important;
}
.nom-radio:checked ~ .containerChoice .containerIcon { 
    background: linear-gradient(135deg, #FFD700 0%, #FFC857 100%) !important;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3) !important;
}
.choicePay {
    background: #1A1F2E !important;
    border: 2px solid rgba(255,255,255,0.07) !important;
    border-radius: 12px !important;
}
.choicePay .containers .text .name { color: rgba(255,255,255,0.75) !important; }
.pay-radio:checked ~ .choicePay {
    background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(255,237,78,0.04) 100%) !important;
    border-color: #FFD700 !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}
.pay-radio:checked ~ .choicePay .containers .icon { 
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%) !important; 
    border-color: #FFD700 !important;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3) !important;
}
.pay-radio:checked ~ .choicePay .containers .icon i { 
    color: #0A0E1A !important; 
    font-weight: 700 !important;
}

/* === GAME DETAIL BANNER === */
.containerAlpha .containerML {
    background: #0F1419 !important;
    border: 1px solid rgba(255,215,0,0.2) !important;
}

/* === BADGE & STATUS === */
.badge-member, .badge-tamu { 
    background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(255,237,78,0.1) 100%) !important; 
    color: #FFD700 !important;
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
    font-weight: 700 !important;
}
.alert-info {
    background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(255,237,78,0.04) 100%) !important;
    border: 1px solid rgba(255,215,0,0.2) !important;
    color: rgba(255,255,255,0.75) !important;
    border-radius: 10px !important;
}
.alert-success { background: rgba(16,185,129,0.08) !important; border-color: rgba(16,185,129,0.2) !important; color: rgba(255,255,255,0.75) !important; border-radius: 10px !important; }
.alert-warning { background: rgba(245,158,11,0.08) !important; border-color: rgba(245,158,11,0.2) !important; color: rgba(255,255,255,0.75) !important; border-radius: 10px !important; }
.alert-danger { background: rgba(239,68,68,0.08) !important; border-color: rgba(239,68,68,0.2) !important; color: rgba(255,255,255,0.75) !important; border-radius: 10px !important; }
.text-dark { color: rgba(255,255,255,0.75) !important; }
.text-success { color: #10B981 !important; }
.text-danger { color: #EF4444 !important; }
.text-warning { color: #F59E0B !important; }
.text-info { color: #3B82F6 !important; }
.txt-primary { color: #FFD700 !important; }

/* === TABLE === */
.table { color: rgba(255,255,255,0.75) !important; }
.table th { color: #FFD700 !important; font-weight: 700 !important; border-color: rgba(255,255,255,0.07) !important; }
.table td { border-color: rgba(255,255,255,0.05) !important; }
.table tbody tr:hover td { background: rgba(255,215,0,0.03) !important; }

/* === MODAL === */
.modal-content { background: #111827 !important; border-color: rgba(255,255,255,0.1) !important; }
.modal-header .modal-title { color: #fff !important; }
.modal-header .modal-subtitle { color: rgba(255,255,255,0.5) !important; }
.modal-header { border-color: rgba(255,255,255,0.08) !important; }
.modal-footer { border-color: rgba(255,255,255,0.08) !important; }
.btn-close { filter: invert(1) !important; opacity: 0.6 !important; }
.btn-close:hover { opacity: 1 !important; }

/* === TICKET / RECEIPT === */
.receipt-left, .receipt-right {
    background: #111827 !important;
    color: #fff !important;
}
.ticketBarcode .gameNm { color: #fff !important; }
.ticketBarcode .diamond { color: rgba(255,255,255,0.7) !important; }
.ticketBarcode .price { color: #FFD700 !important; font-weight: 800 !important; }
.ticketDetail .head { color: #fff !important; font-weight: 700 !important; }
.ticketDetail .containers .title { color: rgba(255,255,255,0.5) !important; font-size: 0.8rem !important; }
.ticketDetail .containers .desc { color: rgba(255,255,255,0.85) !important; }

/* Tracking stepper */
.stepper li::before { border-color: rgba(255,255,255,0.15) !important; }
.stepper li.active::before { border-color: #FFD700 !important; background: rgba(255,215,0,0.1) !important; }

/* === NOTES BOX === */
.notes {
    background: rgba(245,158,11,0.06) !important;
    border: 1px solid rgba(245,158,11,0.2) !important;
    border-radius: 10px !important;
}
.notes .text { color: #F59E0B !important; font-weight: 700 !important; }
.notes .text2 { color: rgba(255,255,255,0.6) !important; }

/* === FOOTER (old system) - replaced by new === */
.footer { display: none !important; }
.subContent { background: #0A0E1A !important; margin-top: 2rem !important; }
.containerTestimoni { background: #0F1419 !important; padding: 3rem 1.5rem !important; }
.containerTestimoni .trusted-text { color: #FFD700 !important; }
.containerTestimoni .desc-text { color: #fff !important; }
.containerTestimoni .subdesc-text { color: rgba(255,255,255,0.5) !important; }
.containerTestimoni .containerUsers .containers .count { color: #fff !important; }
.containerTestimoni .containerUsers .containers .title { color: rgba(255,255,255,0.4) !important; }
.containerNews { background: #0A0E1A !important; }
.containerNews .title2 { color: #fff !important; }
.containerNews .title3 { color: rgba(255,255,255,0.6) !important; }
.testimoni .containers .gameNm { color: #fff !important; }
.testimoni .containers .desc { color: rgba(255,255,255,0.6) !important; }
.testimoni .containers .invoice { color: rgba(255,255,255,0.4) !important; }
.testimoni .containers .name { color: #FFD700 !important; }

/* === TRACKING PAGE === */
.containerTracking .head .title { color: #fff !important; font-weight: 800 !important; }
.cardTrack { background: #1A1F2E !important; border-radius: 14px !important; padding: 1.5rem !important; }

/* === BACK TO TOP BUTTON === */
.floating-btu {
    position: fixed; bottom: 5rem; left: 1.5rem; z-index: 900;
    width: 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(255,237,78,0.1) 100%) !important;
    border: 1px solid rgba(255,215,0,0.3) !important;
    color: #FFD700 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s !important;
}
.floating-btu:hover { 
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%) !important;
    color: #0A0E1A !important;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* === POPULER CARD (old system override) === */
.card-populer {
    background: #1A1F2E !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
}
.card-populer:hover { border-color: #FFD700 !important; }
.card-populer h1 { color: #fff !important; font-size: 1rem !important; }
.card-populer span { color: rgba(255,255,255,0.5) !important; font-size: 0.75rem !important; }
.card-populer::after { background: #1A1F2E !important; }
.card-populer:hover::before { background-color: #FFD700 !important; }

/* === CONTAINER PRODUCT (old) === */
.containerProduct .containers {
    border: 2px solid rgba(255,255,255,0.07) !important;
    background: #1A1F2E !important;
}
.containerProduct .containers:hover { border-color: #FFD700 !important; }
.containerProduct .containers .desc { background: #0A0E1A !important; }
.containerProduct .containers .desc .game { color: #fff !important; }
.containerProduct .containers .desc .vendor { color: rgba(255,255,255,0.4) !important; }

/* === PRICELIST TABLE (old) === */
.container-track { background: #0A0E1A !important; }

/* === SCROLLBAR global === */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0F1419; }
::-webkit-scrollbar-thumb { 
    background: rgba(255,255,255,0.3); 
    border-radius: 10px; 
}
::-webkit-scrollbar-thumb:hover { 
    background: rgba(255,255,255,0.5); 
}

/* === GAME DETAIL HEADER === */
.containerAlpha .banner { border-radius: 16px !important; }

/* Mobile nav bottom padding - REMOVED */

/* === DATA THEME DARK FORCED ON === */
html { background-color: #0f0f0f !important; }
html body { background-color: #0A0E1A !important; }


/* ================================================================================================
    STATS STRIP SECTION - MODERN DESIGN WITH GRADIENT GOLD
================================================================================================ */
.stats-strip {
    padding: 4rem 0; 
    background: linear-gradient(135deg, #0A0E1A 0%, #1A1F2E 100%);
    position: relative;
    overflow: hidden;
}
.stats-strip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.stats-strip-inner { 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.stat-item { 
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.6) 0%, rgba(20, 24, 35, 0.9) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 237, 78, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}
.stat-item:hover::before {
    opacity: 1;
}
.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.25);
}
.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #FFC857 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    position: relative;
}
.stat-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%);
    opacity: 0.2;
    filter: blur(15px);
    z-index: -1;
}
.stat-icon i {
    font-size: 2rem;
    color: #0A0E1A;
}
.stat-num { 
    font-size: 3rem; 
    font-weight: 900; 
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #FFC857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
}
.stat-label { 
    font-size: 0.9rem; 
    color: rgba(255,255,255,0.7); 
    text-transform: uppercase; 
    letter-spacing: 2px;
    font-weight: 600;
}

/* ================================================================================================
    TESTIMONIAL SECTION - MODERN CARD DESIGN WITH GRADIENT GOLD
================================================================================================ */
.testimonial-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0A0E1A 0%, rgba(26, 31, 46, 0.5) 50%, #0A0E1A 100%);
    position: relative;
}
.testimonial-header {
    text-align: center;
    margin-bottom: 4rem;
}
.testi-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 237, 78, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}
.testi-badge i {
    color: #FFD700;
    font-size: 1rem;
}
.testi-badge span {
    color: #FFD700;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.testi-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.testi-title span {
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #FFC857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.testi-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.testimonial-swiper {
    padding: 0.5rem 0 4rem 0;
    overflow: hidden;
    width: 100%;
}
.testimonial-swiper .swiper-wrapper {
    align-items: stretch;
}
.testimonial-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
}
.testi-card {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8) 0%, rgba(20, 24, 35, 0.9) 100%);
    border: 2px solid rgba(255, 215, 0, 0.1);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    min-height: 320px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}
.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}
.testi-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, rgba(26, 31, 46, 1) 0%, rgba(45, 36, 22, 0.4) 100%);
}
.testi-card:hover::before {
    opacity: 1;
}
.testi-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}
.testi-stars i {
    color: #FFB800;
    font-size: 1rem;
}
.testi-stars i.bi-star {
    color: rgba(255, 184, 0, 0.3);
}
.testi-game-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 237, 78, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    width: fit-content;
}
.testi-game-badge i {
    color: #FFD700;
    font-size: 1.1rem;
}
.testi-game-badge span {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.85rem;
}
.testi-product {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.testi-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}
.testi-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: auto;
}
.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #FFC857 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0A0E1A;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
.testi-user-info {
    flex: 1;
}
.testi-username {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}
.testi-id {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}
.testi-view-more {
    text-align: center;
    margin-top: 3rem;
}
.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #FFC857 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: #0A0E1A;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.btn-view-more::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FFED4E 0%, #FFD700 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-view-more:hover::before {
    opacity: 1;
}
.btn-view-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}
.btn-view-more span {
    position: relative;
    z-index: 1;
}
.btn-view-more i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    transition: transform 0.3s;
}
.btn-view-more:hover i {
    transform: translateX(5px);
}
.testimonial-swiper .swiper-pagination {
    bottom: 0;
}
.testimonial-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: all 0.3s;
}
.testimonial-swiper .swiper-pagination-bullet-active {
    background: #FFD700;
    width: 30px;
    border-radius: 5px;
}

/* ================================================================================================
    RESPONSIVE - STATS & TESTIMONIAL
================================================================================================ */
@media (max-width: 1024px) {
    .stats-strip-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .testi-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .stats-strip-inner {
        gap: 1rem;
    }
    .stat-item {
        padding: 2rem 1rem;
    }
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    .stat-icon i {
        font-size: 1.5rem;
    }
    .stat-num {
        font-size: 2.5rem;
    }
    .testi-title {
        font-size: 1.75rem;
    }
    .testi-subtitle {
        font-size: 1rem;
    }
    .testi-card {
        padding: 1.5rem;
    }
}

/* ================================================================================================
    FAQ SECTION - MODERN ACCORDION DESIGN
================================================================================================ */
.faq-section {
    padding: 5rem 0;
    position: relative;
}
.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}
.faq-title span {
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #FFC857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.6);
    margin-bottom: 3.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}
.faq-item {
    background: rgba(26, 31, 46, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}
.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #FFD700 0%, #FFED4E 100%);
    opacity: 0;
    transition: opacity 0.4s;
}
.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
    background: rgba(26, 31, 46, 0.55);
}
.faq-item:hover::before {
    opacity: 0.5;
}
.faq-item.open {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(26, 31, 46, 0.65);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
}
.faq-item.open::before {
    opacity: 1;
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    gap: 1.5rem;
}
.faq-q span {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}
.faq-q i {
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.05);
}
.faq-item:hover .faq-q i {
    background: rgba(255, 215, 0, 0.1);
    color: rgba(255,255,255,0.6);
}
.faq-item.open .faq-q i {
    transform: rotate(180deg);
    color: #FFD700;
    background: rgba(255, 215, 0, 0.15);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.75rem;
}
.faq-item.open .faq-a {
    max-height: 500px;
    padding: 0 1.75rem 1.5rem;
}
.faq-a-content {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .faq-title {
        font-size: 2rem;
    }
    .faq-subtitle {
        font-size: 0.9rem;
    }
    .faq-q {
        padding: 1.25rem 1.5rem;
    }
    .faq-q span {
        font-size: 0.95rem;
    }
}


/* ================================================================================================
    TRUSTED SECTION — layout 2 kolom: info kiri, swiper review kanan
================================================================================================ */
.trusted-section {
    padding: 4rem 0;
    background: transparent;
    overflow: hidden;
}
.trusted-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    align-items: center;
    gap: 3rem;
}
/* KIRI */
.trusted-left {
    flex-shrink: 0;
}
.trusted-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.trusted-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.trusted-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.trusted-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    row-gap: 0.75rem;
}
.trusted-stat {
    display: flex;
    flex-direction: column;
    padding: 0 1.25rem 0 0;
}
.trusted-stat:first-child {
    padding-left: 0;
}
.trusted-stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.2rem;
}
.trusted-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.trusted-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    margin-right: 1.25rem;
    flex-shrink: 0;
}
.trusted-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #FFC857 100%);
    color: #0A0E1A;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}
.trusted-btn:hover {
    background: linear-gradient(135deg, #FFED4E 0%, #FFD700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 215, 0, 0.5);
    color: #0A0E1A;
}
.trusted-btn i {
    transition: transform 0.3s;
}
.trusted-btn:hover i {
    transform: translateX(4px);
}

/* KANAN — Swiper */
.trusted-right {
    min-width: 0;
    overflow: hidden;
}
.trusted-swiper {
    overflow: visible;
    width: 100%;
}
.trusted-swiper .swiper-wrapper {
    align-items: stretch;
}
.trusted-swiper .swiper-slide {
    width: 220px !important;
    height: auto;
    flex-shrink: 0;
}

/* Review Card */
.rv-card {
    background: rgba(21, 25, 34, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: border-color 0.3s, transform 0.3s;
    box-sizing: border-box;
}
.rv-card:hover {
    border-color: rgba(255,215,0,0.3);
    transform: translateY(-4px);
}
.rv-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}
.rv-stars i {
    font-size: 0.85rem;
    color: #FFB800;
}
.rv-stars i.bi-star {
    color: rgba(255,184,0,0.25);
}
.rv-game {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.rv-product {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
}
.rv-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rv-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.rv-username {
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFD700;
}
.rv-orderid {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    margin-top: 0.1rem;
}
.rv-date {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .trusted-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .trusted-title {
        font-size: 1.8rem;
    }
    .trusted-swiper {
        overflow: hidden;
    }
    .trusted-swiper .swiper-slide {
        width: 200px !important;
    }
}
@media (max-width: 640px) {
    .trusted-title {
        font-size: 1.5rem;
    }
    .trusted-stat-num {
        font-size: 1.25rem;
    }
    .trusted-swiper .swiper-slide {
        width: 180px !important;
    }
}
