/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* ==================== DYNAMIC RTP & SERVER SECTION ==================== */
.rtp-server-section {
    position: relative;
    background: rgba(108, 34, 10, 0.18);
    border: 1px solid #fdd6a4;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    overflow: hidden;
    color: #fff;
    text-align: center;
}
.rtp-server-section h2 {
    color: #fdd6a4;
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'gilroybold', sans-serif;
}
.rtp-server-section p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.rtp-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.rtp-tabs button {
    background: #944a32;
    color: #fff;
    border: 1px solid #fffecc;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}
.rtp-tabs button.active, .rtp-tabs button:hover {
    background: #fdd6a4;
    color: #000;
    border-color: #fdd6a4;
}
.rtp-card {
    display: none;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 8px;
    border: 1px dashed #fdd6a4;
}
.rtp-card.active {
    display: block;
    animation: rtpFadeIn 0.5s;
}
.rtp-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}
.rtp-live-stats {
    font-size: 32px;
    font-family: 'Open24DisplaySt', sans-serif;
    color: #00ff00;
    margin: 10px 0;
    text-shadow: 0px 0px 10px rgba(0, 255, 0, 0.5);
}
.rtp-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: linear-gradient(180deg, #fdd6a4, #fffecc);
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}
.rtp-btn:hover {
    filter: brightness(1.2);
}
@keyframes rtpFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}



.vip-top-widgets { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
@media (min-width: 992px) { .vip-top-widgets { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.vip-widget-box {
    background: linear-gradient(145deg, #161616 0%, #050505 100%);
    border: 1px solid rgba(108, 34, 10, 0.18); 
    border-top: 3px solid #6c220a; 
    border-radius: 16px; padding: 25px; color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), inset 0 0 15px rgba(108, 34, 10, 0.18); 
    text-align: center; font-family: 'Arial', sans-serif;
    position: relative; overflow: hidden;
}
.vip-widget-box h2 {
    color: #fdd6a4;  font-size: 20px; font-weight: 900; 
    margin: 0 0 5px; text-transform: uppercase; text-shadow: 0 0 10px rgba(253, 214, 164, 0.18); 
}
.vip-widget-box p { color: #ccc; font-size: 13px; margin: 0 0 15px; }
.vip-btn {
    background: linear-gradient(90deg, #6c220a;, #222);
    color: #fdd6a4;  border: 1px solid #fdd6a4; 
    padding: 15px; border-radius: 8px; font-size: 15px; font-weight: 900; width: 100%;
    cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; margin-top: 15px;
}
.vip-btn:hover { background: #fdd6a4;  color: #111; box-shadow: 0 5px 15px rgba(253, 214, 164, 0.18);  transform: translateY(-2px); }
.vip-btn:disabled { background: #333; color: #777; border-color: #555; cursor: not-allowed; transform: none; box-shadow: none; }
.vip-server-list { list-style: none; padding: 0; margin: 0; }
.vip-server-item {
    display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.05);
    padding: 12px 15px; margin-bottom: 8px; border-radius: 8px; border-left: 4px solid #6c220a;  transition: 0.3s;
}
.vip-server-item.active { border-left-color: #fdd6a4;  background: linear-gradient(90deg, rgba(253, 214, 164, 0.18);, transparent); }
.vip-server-item span:first-child { font-weight: bold; font-size: 14px; }
.vip-ping-val { font-family: monospace; font-size: 15px; color: #aaa; font-weight: bold; }
.ping-good { color: #00ff88; text-shadow: 0 0 8px rgba(0,255,136,0.5); }
.ping-warn { color: #fdd6a4;  text-shadow: 0 0 8px rgba(253, 214, 164, 0.18);  }
.vip-result-alert { margin-top: 15px; padding: 12px; border: 1px dashed #fdd6a4;  background: rgba(253, 214, 164, 0.18);  color: #fff; border-radius: 8px; font-size: 13px; display: none; }
.vip-result-alert.show { display: block; }
.vip-neon-screen {
    background: #050505; border: 2px solid #6c220a;  padding: 20px; border-radius: 8px;
    font-size: 20px; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); margin-bottom: 15px; box-shadow: inset 0 0 20px #000;
}
.vip-neon-screen.spinning { animation: vipPulse 0.1s infinite alternate; }
@keyframes vipPulse { from { border-color: #6c220a;  opacity: 1; } to { border-color: #fdd6a4;  opacity: 0.7; } }
.vip-rec-details { margin-top: 15px; background: rgba(255,255,255,0.05); padding: 15px; border-radius: 8px; border-left: 4px solid #fdd6a4;  display: none; text-align: left; }
.vip-rec-details.show { display: block; }
.vip-rec-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; font-weight: bold; color: #ddd; }
.vip-portal-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 15px; }
@media (min-width: 768px) { .vip-portal-grid { grid-template-columns: 1fr 1fr; } }
.vip-portal-link {
    display: flex; align-items: center; gap: 15px; padding: 15px 20px; border-radius: 10px; text-decoration: none;
    color: #fff; font-weight: bold; transition: 0.3s; background: linear-gradient(135deg, #6c220a;, #222); border: 1px solid #6c220a; 
}
.vip-portal-link:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(108, 34, 10, 0.18);  color: #fff; }
.vip-portal-icon { font-size: 28px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); }
.vip-portal-text { line-height: 1.2; text-align: left; font-size: 15px;}
.vip-portal-text small { font-weight: normal; font-size: 11px; opacity: 0.8; }



/* =======================================================
   APP DOWNLOAD BANNER 
   ======================================================= */
.app-download-wrapper {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #111111 0%, #6c220a 100%);
    border: 1px solid #fdd6a4;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    /* Uses your engine's RGBA variable for the dynamic outer glow */
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 20px rgba(253, 214, 164, 0.18);
    overflow: hidden;
}

.app-left-col {
    flex: 0 0 40%;
    position: relative;
}

/* Enlarges the phone to slightly overflow its column */
.phone-mockup {
    max-width: 120%;
    margin-left: -10%;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.7));
}

.app-right-col {
    flex: 0 0 60%;
    padding-left: 20px;
    color: #ffffff;
}

.app-headings .subtitle {
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 5px 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-headings .title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #ffffff;
    text-transform: uppercase;
}

.app-headings .desc {
    font-size: 18px;
    color: #dddddd;
    margin-bottom: 25px;
}

.app-actions-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.app-qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 1:1 Image Container */
.square-img-container {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #fdd6a4;
    /* Dynamic glow behind the 1:1 image */
    box-shadow: 0 5px 15px rgba(253, 214, 164, 0.18);
    margin-bottom: 15px;
}

.square-img-container .square-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Text Overlay */
.square-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    padding: 6px 4px;
}

.square-overlay span {
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
}

.qr-instruction {
    font-size: 14px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}

.qr-instruction .highlight-text {
    /* Uses the dynamic secondary color */
    color: #fdd6a4; 
    font-weight: bold;
    text-shadow: 0 0 5px rgba(253, 214, 164, 0.18);
}

.app-btn-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 15px;
}

.app-name {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #ffffff;
}

/* Gradient Installation Button */
.btn-panduan {
    background: linear-gradient(90deg, #fdd6a4 0%, #fffecc 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: none;
    font-size: 15px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    /* Dynamic button glow */
    box-shadow: 0 4px 15px rgba(253, 214, 164, 0.18);
}

.btn-panduan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 214, 164, 0.18);
    color: #ffffff;
    text-decoration: none;
}

/* Responsive adjustments for Tablets/Mobiles */
@media (max-width: 768px) {
    .app-download-wrapper {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .app-left-col {
        flex: 100%;
        margin-bottom: 20px;
    }
    
    .phone-mockup {
        max-width: 100%;
        margin-left: 0;
    }
    
    .app-right-col {
        flex: 100%;
        padding-left: 0;
    }
    
    .app-headings .title {
        font-size: 24px;
    }
    
    .app-headings .subtitle {
        font-size: 18px;
    }
    
    .app-actions-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .app-btn-section {
        padding-top: 0;
        align-items: center;
    }
}

:root {
    --mole-primary: #6c220a;
    --mole-secondary: #fdd6a4;
    --mole-dark: #1f110b;
    --mole-card: #2e1810;
    --mole-success: #4CAF50;
}

/* WIDGET 1: TRUST & ENTITY SIGNAL */
.mole-trust-widget, .mole-step-widget {
    max-width: 1000px; margin: 30px auto; border-radius: 16px;
    font-family: 'Segoe UI', Tahoma, sans-serif; color: #fff;
    opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.mole-trust-widget.visible, .mole-step-widget.visible {
    opacity: 1; transform: translateY(0);
}

.mole-trust-widget {
    background: linear-gradient(145deg, var(--mole-dark), #110804);
    border: 2px solid var(--mole-primary); padding: 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6); overflow: hidden;
    display: flex; flex-wrap: wrap;
}

.mole-trust-left {
    flex: 1; min-width: 300px; background: var(--mole-primary);
    padding: 30px; display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
}

.mole-trust-left::after {
    content: '★'; position: absolute; right: -20px; top: -30px;
    font-size: 150px; color: rgba(253, 214, 164, 0.1); transform: rotate(15deg); pointer-events: none;
}

.mole-trust-left h3 { color: var(--mole-secondary); font-size: 26px; font-weight: 900; margin: 0 0 10px 0; line-height: 1.2; text-transform: uppercase; }
.mole-trust-left p { color: #fbebd8; font-size: 15px; margin: 0 0 20px 0; line-height: 1.6; }

.mole-btn-check {
    background: var(--mole-secondary); color: var(--mole-primary); border: none;
    padding: 10px 20px; font-weight: bold; border-radius: 8px; cursor: pointer;
    width: fit-content; transition: 0.3s; box-shadow: 0 4px 10px rgba(253, 214, 164, 0.3); z-index: 2;
}
.mole-btn-check:hover { background: #fff; transform: translateY(-2px); }

.mole-trust-right {
    flex: 2; min-width: 300px; padding: 30px; display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; align-items: center;
}
.mole-trust-item { display: flex; align-items: flex-start; gap: 15px; }
.mole-trust-icon {
    width: 45px; height: 45px; flex-shrink: 0; background: rgba(253, 214, 164, 0.1);
    border: 1px solid var(--mole-secondary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--mole-secondary);
}
.mole-trust-text h4 { color: #fff; font-size: 16px; font-weight: bold; margin: 0 0 5px 0; }
.mole-trust-text p { color: #bbaea6; font-size: 13px; margin: 0; line-height: 1.5; }

/* WIDGET 2: HOW TO (STEP-BY-STEP DEPOSIT) */
.mole-step-widget {
    background: var(--mole-card); border: 1px solid rgba(253, 214, 164, 0.2);
    padding: 35px; box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.mole-step-header { text-align: center; margin-bottom: 35px; }
.mole-step-header h3 { color: var(--mole-secondary); font-size: 24px; font-weight: 900; margin: 0 0 10px 0; text-transform: uppercase; }
.mole-step-header p { color: #dfcdc3; font-size: 15px; margin: 0; }

.mole-stepper { display: flex; justify-content: space-between; position: relative; flex-wrap: wrap; gap: 20px;}
.mole-stepper::before {
    content: ''; position: absolute; top: 30px; left: 0; right: 0; height: 3px;
    background: rgba(253, 214, 164, 0.1); z-index: 1;
}
.mole-step-box {
    flex: 1; min-width: 200px; text-align: center; position: relative; z-index: 2; padding: 0 10px;
}
.mole-step-number {
    width: 60px; height: 60px; margin: 0 auto 15px; border-radius: 50%;
    background: var(--mole-primary); border: 3px solid var(--mole-secondary);
    color: var(--mole-secondary); font-size: 24px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 15px rgba(253, 214, 164, 0.3); transition: 0.3s;
}
.mole-step-box:hover .mole-step-number { transform: scale(1.1); background: var(--mole-secondary); color: var(--mole-primary); }
.mole-step-box h4 { color: #fff; font-size: 17px; font-weight: bold; margin: 0 0 10px 0; }
.mole-step-box p { color: #bbaea6; font-size: 13px; line-height: 1.6; margin: 0 0 10px 0; }

/* Copy Button Styling */
.mole-copy-wrap {
    display: inline-flex; align-items: center; background: rgba(0,0,0,0.3);
    border: 1px dashed var(--mole-secondary); border-radius: 6px; padding: 5px 10px;
    margin-top: 5px;
}
.mole-copy-wrap span { font-family: monospace; color: var(--mole-secondary); font-size: 14px; margin-right: 10px; letter-spacing: 1px;}
.mole-btn-copy {
    background: var(--mole-primary); color: #fff; border: none; border-radius: 4px;
    padding: 4px 8px; font-size: 11px; cursor: pointer; transition: 0.2s;
}
.mole-btn-copy:hover { background: var(--mole-secondary); color: var(--mole-primary); }

/* MOBILE RESPONSIVE OPTIMIZATION */
@media (max-width: 768px) {
    .mole-trust-widget, .mole-step-widget { margin: 20px 10px; }
    .mole-trust-left { padding: 25px 20px; text-align: center; align-items: center; }
    .mole-trust-left h3 { font-size: 22px; }
    .mole-trust-right { padding: 25px 20px; grid-template-columns: 1fr; }
    
    .mole-step-widget { padding: 25px 15px; }
    .mole-step-header h3 { font-size: 20px; }
    .mole-stepper { flex-direction: column; gap: 30px; }
    .mole-stepper::before { display: none; /* Hilangkan garis horizontal di HP */ }
    
    .mole-step-box { display: flex; flex-direction: column; align-items: center; padding: 0; }
    .mole-step-box::after {
        /* Tambahkan panah vertikal untuk HP */
        content: '↓'; display: block; font-size: 24px; color: rgba(253, 214, 164, 0.3);
        margin-top: 15px;
    }
    .mole-step-box:last-child::after { display: none; }
}