/* 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(192, 80, 80, 0.18);
    border: 1px solid #F3A827;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    overflow: hidden;
    color: #fff;
    text-align: center;
}
.rtp-server-section h2 {
    color: #F3A827;
    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: #e87878;
    color: #fff;
    border: 1px solid #ffd04f;
    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: #F3A827;
    color: #000;
    border-color: #F3A827;
}
.rtp-card {
    display: none;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 8px;
    border: 1px dashed #F3A827;
}
.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, #F3A827, #ffd04f);
    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); }
}
/* =======================================================
   DEWA33 INTERACTIVE WIDGETS - PREMIUM VVIP EDITION
======================================================= */
.dewa-top-widgets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
@media (min-width: 992px) {
    .dewa-top-widgets { grid-template-columns: 1fr 1fr; align-items: stretch; }
}

.dewa-widget-container {
    background: linear-gradient(145deg, #2b1212 0%, #170909 100%);
    border: 1px solid rgba(243, 168, 39, 0.4);
    border-top: 3px solid #c05050;
    border-radius: 16px;
    padding: 25px;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(243, 168, 39, 0.15) inset;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.dewa-widget-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.dewa-widget-header h2 {
    color: #F3A827;
    font-size: 20px;
    margin: 0 0 5px 0;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(243, 168, 39, 0.8);
}
.dewa-widget-header p { color: #cccccc; font-size: 13px; margin: 0; letter-spacing: 0.5px; }

.dewa-btn-action {
    background: linear-gradient(90deg, #c05050, #963d3d);
    color: #ffffff;
    border: 1px solid #F3A827;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 900;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(192, 80, 80, 0.4);
}
.dewa-btn-action:hover {
    background: linear-gradient(90deg, #F3A827, #d48b1c);
    color: #111111;
    border-color: #111111;
    box-shadow: 0 6px 20px rgba(243, 168, 39, 0.7);
    transform: translateY(-2px);
}
.dewa-btn-action:disabled {
    background: #4a2121; color: #777; border-color: #333; box-shadow: none; transform: none; cursor: not-allowed;
}

.dewa-server-list { list-style: none; padding: 0; margin: 0 0 20px 0; }
.dewa-server-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 10px;
    border-left: 4px solid #c05050;
    transition: all 0.3s ease;
}
.dewa-server-item:hover { background: rgba(255, 255, 255, 0.06); }
.dewa-server-item.active {
    border-left-color: #F3A827;
    background: linear-gradient(90deg, rgba(243, 168, 39, 0.2) 0%, transparent 100%);
    border-radius: 10px;
}
.sv-name { font-weight: 700; font-size: 14px; }
.sv-ping { font-family: 'Courier New', monospace; font-size: 15px; font-weight: bold; color: #777; }
.ping-good { color: #00ff88; text-shadow: 0 0 8px rgba(0, 255, 136, 0.5); }
.ping-warn { color: #F3A827; text-shadow: 0 0 8px rgba(243, 168, 39, 0.5); }

.banner-panel { border-top: 3px solid #0088cc; margin-top: 10px; }
.banner-panel .dewa-widget-header h2 { color: #00aaff; text-shadow: 0 0 10px rgba(0, 170, 255, 0.3); }
.dewa-portal-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
@media (min-width: 768px) { .dewa-portal-grid { grid-template-columns: 1fr 1fr; } }
.dewa-btn-portal {
    display: flex; align-items: center; gap: 15px; padding: 18px 20px;
    border-radius: 12px; text-decoration: none; color: #111;
    transition: all 0.3s ease; position: relative; overflow: hidden; font-weight: bold;
}
.dewa-btn-portal:hover { transform: translateY(-3px); }
.dewa-btn-portal::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: rgba(255,255,255,0.1); transform: rotate(30deg); transition: all 0.5s ease; opacity: 0;
}
.dewa-btn-portal:hover::after { opacity: 1; left: 100%; }

.btn-download { background: linear-gradient(135deg, #F3A827, #d48b1c); border: 1px solid #555; box-shadow: 0 5px 15px rgba(0,0,0,0.4); }
.btn-telegram { background: linear-gradient(135deg, #0088cc, #005580); box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3); color: #fff;}
.portal-icon { font-size: 32px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); }
.portal-text { text-align: left; font-size: 16px; font-weight: 900; line-height: 1.2; }
.portal-text small { font-size: 12px; font-weight: normal; opacity: 0.8; }

.recommender-desc { font-size: 13px; color: #bbb; margin-bottom: 20px; line-height: 1.6;}
.neon-screen {
    background: #0d0505; border: 2px solid #c05050; padding: 20px; border-radius: 10px;
    font-size: 22px; font-weight: 900; color: #ffffff; margin-bottom: 20px; letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); box-shadow: inset 0 0 20px rgba(0,0,0,1);
}
.neon-screen.spinning { animation: pulseGlow 0.1s infinite alternate; }
@keyframes pulseGlow { 0% { opacity: 1; border-color: #c05050;} 100% { opacity: 0.7; border-color: #F3A827;} }

.dewa-rec-details { margin-top: 20px; background: rgba(255,255,255,0.02); padding: 15px 20px; border-radius: 10px; border-left: 4px solid #F3A827; }
.rec-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; font-weight: 600; color: #ccc; }
.rec-row:last-child { margin-bottom: 0; }
.neon-text-orange { color: #F3A827; text-shadow: 0 0 8px rgba(243, 168, 39, 0.6); font-size: 16px;}
.neon-text-yellow { color: #ffffff; text-shadow: 0 0 5px rgba(255, 255, 255, 0.4); font-size: 15px;}

.dewa-alert-box { margin-top: 15px; padding: 12px; background: rgba(243, 168, 39, 0.2); border: 1px dashed #F3A827; border-radius: 8px; font-size: 13px; color: #ffffff; line-height: 1.5; }
.hidden { display: none !important; }

@media (max-width: 576px) {
    .dewa-widget-container { padding: 20px 15px; border-radius: 12px; }
    .dewa-widget-header h2 { font-size: 18px; }
    .dewa-btn-action { font-size: 14px; padding: 14px; }
    .neon-screen { font-size: 18px; padding: 15px; }
    .portal-icon { font-size: 26px; }
    .portal-text { font-size: 14px; }
    .dewa-btn-portal { padding: 15px; }
}