/* ============================
   BLACK TRANSPARENT NAVBAR
   ============================ */

.navbar.navbar-default.navbar-fixed-top {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.65)
    );
    border: none;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 25px rgba(0,0,0,.8);
}

/* BRAND */
.navbar-default .navbar-brand {
    color: #ffffff !important;
    font-size: 20px;
}

/* MENU TEXT */
.navbar-default .navbar-nav > li > a {
    color: #e5e5e5 !important;
    font-weight: 500;
    padding: 15px 18px;
    position: relative;
    transition: all .25s ease;
}

/* UNDERLINE ANIMATION */
.navbar-default .navbar-nav > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    transform: translateX(-50%);
    transition: width .3s ease;
}

.navbar-default .navbar-nav > li > a:hover::after,
.navbar-default .navbar-nav > .open > a::after {
    width: 70%;
}

/* HOVER */
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > .open > a {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
}

/* DROPDOWN */
.navbar-default .dropdown-menu {
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0,0,0,.8);
}

.navbar-default .dropdown-menu > li > a {
    color: #dddddd;
    padding: 10px 20px;
    transition: all .2s ease;
}

.navbar-default .dropdown-menu > li > a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* RIGHT MENU */
.navbar-default .navbar-nav.pull-right > li > a {
    color: #f0f0f0 !important;
}

/* MOBILE */
.navbar-default .navbar-toggle {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-default .navbar-toggle .icon-bar {
    background: #ffffff;
}




/* ==============================
   GLOBAL PANEL & CARD STYLE
   ============================== */

.panel,
.rf-panel,
.box,
.widget,
.card,
.server-status,
.chip-war,
.latest-news {
    background: linear-gradient(
        180deg,
        rgba(15,15,15,0.85),
        rgba(5,5,5,0.85)
    ) !important;

    border: 1px solid rgba(255,140,42,0.25) !important;
    border-radius: 12px !important;

    box-shadow:
        0 0 0 1px rgba(255,140,42,0.05),
        0 8px 30px rgba(0,0,0,0.8) !important;

    backdrop-filter: blur(6px);
}

/* ==============================
   PANEL HEADER
   ============================== */

.panel-heading,
.rf-panel-header,
.widget-title,
.box-title {
    background: linear-gradient(
        90deg,
        rgba(255,140,42,0.25),
        rgba(0,0,0,0)
    ) !important;

    color: #ff9a3c !important;
    font-weight: 600;
    letter-spacing: .5px;

    border-bottom: 1px solid rgba(255,140,42,0.25) !important;
}

/* ==============================
   TEXT & LABEL
   ============================== */

.panel,
.box,
.widget,
.card {
    color: #dcdcdc;
    font-size: 13px;
}

.panel small,
.status-label {
    color: #9f9f9f;
}

/* ==============================
   LIST / ROW INSIDE PANEL
   ============================== */

.panel ul li,
.list-group-item,
.status-row {
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.panel ul li:hover,
.list-group-item:hover {
    background: rgba(255,140,42,0.08);
}

/* ==============================
   PROGRESS BAR (SERVER / CHIP WAR)
   ============================== */

.progress {
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
    height: 8px;
}

.progress-bar {
    background: linear-gradient(
        90deg,
        #ff8c2a,
        #ffb347
    );
    box-shadow: 0 0 10px rgba(255,140,42,0.6);
}

/* ==============================
   BUTTON (PLAY / ACTION)
   ============================== */

.btn,
button {
    background: rgba(255,140,42,0.15);
    border: 1px solid rgba(255,140,42,0.35);
    color: #ffb26b;
    border-radius: 20px;
    transition: all .25s ease;
}

.btn:hover,
button:hover {
    background: rgba(255,140,42,0.3);
    color: #fff;
    box-shadow: 0 0 15px rgba(255,140,42,0.5);
}

/* ==============================
   NEWS ITEM
   ============================== */

.news-item,
.latest-news-item {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 10px;
}

/* ==============================
   SCROLLBAR (OPTIONAL)
   ============================== */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255,140,42,0.5);
    border-radius: 10px;
}



/* ===============================
   GLOBAL BACKGROUND EFFECT
================================ */
body {
    background-color: #000;
    color: #ddd;
}

/* ===============================
   PANEL (GLASS FIRE STYLE)
================================ */
.rf-panel {
    background: linear-gradient(
        160deg,
        rgba(20,20,20,0.88),
        rgba(5,5,5,0.92)
    ) !important;

    border-radius: 16px;
    border: 1px solid rgba(255,140,40,0.28);
    box-shadow:
        0 0 0 1px rgba(255,140,40,0.05),
        0 15px 45px rgba(0,0,0,0.85);

    backdrop-filter: blur(8px);
    overflow: hidden;
    margin-bottom: 18px;
}

/* ===============================
   PANEL HEADER
================================ */
.rf-panel-header {
    background: linear-gradient(
        90deg,
        rgba(255,140,40,0.35),
        rgba(0,0,0,0)
    ) !important;

    padding: 14px 16px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #ffb266;

    border-bottom: 1px solid rgba(255,140,40,0.3);
}

/* ===============================
   PANEL BODY
================================ */
.rf-panel-body {
    padding: 16px;
    background: transparent;
}

/* ===============================
   SLIDER
================================ */
.main-slider-img {
    border-radius: 16px;
    box-shadow: 0 0 35px rgba(255,100,20,0.15);
}

/* ===============================
   NEWS STYLE
================================ */
.news-item {
    background: rgba(0,0,0,0.45);
    border-radius: 14px;
    padding: 12px;
    transition: all .3s ease;
}

.news-item:hover {
    background: rgba(255,140,40,0.08);
    transform: translateY(-2px);
}

.news-thumb {
    border-radius: 10px;
    overflow: hidden;
}

.news-badge {
    background: linear-gradient(90deg,#ff8c2a,#ffb347);
    color: #000 !important;
    border-radius: 6px;
}

/* ===============================
   BUTTON (PLAY / ACTION)
================================ */
.btn {
    background: linear-gradient(90deg,#ff8c2a,#ffb347);
    color: #000 !important;
    border-radius: 22px;
    border: none;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(255,140,40,0.45);
}

.btn:hover {
    box-shadow: 0 0 35px rgba(255,160,80,0.8);
}

/* ===============================
   SIDEBAR STAT ROW
================================ */
.rf-panel-body table tr,
.rf-panel-body div {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ===============================
   PROGRESS BAR (CHIP WAR)
================================ */
.progress {
    height: 8px;
    background: rgba(0,0,0,0.7);
    border-radius: 10px;
}

.progress-bar {
    background: linear-gradient(90deg,#ff8c2a,#ffb347);
    box-shadow: 0 0 12px rgba(255,140,40,0.8);
}

/* ===============================
   DISCORD IFRAME FIX
================================ */
iframe {
    border-radius: 14px;
    filter: brightness(0.95);
}

/* ===============================
   SCROLLBAR
================================ */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background: rgba(255,140,40,0.6);
    border-radius: 10px;
}

/* === DASHBOARD WRAPPER === */
.rf-dashboard {
    padding: 30px 40px;
}

/* === GRID OVERRIDE BOOTSTRAP === */
.rf-dashboard .row {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 25px;
}

/* === PANEL STYLE (GLASS) === */
.rf-panel {
    background: linear-gradient(
        145deg,
        rgba(0,0,0,0.65),
        rgba(20,20,20,0.75)
    );
    border-radius: 14px;
    border: 1px solid rgba(255,140,0,0.25);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 25px rgba(255,140,0,0.08);
    overflow: hidden;
}

/* HEADER */
.rf-panel-header {
    background: linear-gradient(90deg, #ff8c00, transparent);
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    font-size: 13px;
    letter-spacing: 1px;
}

/* BODY */
.rf-panel-body {
    background: transparent;
    color: #ddd;
}

/* === SIDEBAR === */
.col-md-3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* === SLIDER FIX === */
.main-slider-img {
    width: 100%;
    border-radius: 12px;
}

/* === DISCORD FIX === */
iframe {
    border-radius: 12px;
}

/* === ANIMATION === */
.rf-panel {
    animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .rf-dashboard .row {
        grid-template-columns: 1fr;
    }
}
/* === LAYOUT DASHBOARD AMAN BOOTSTRAP === */
.rf-dashboard-layout {
    display: flex;
    gap: 25px;
}

.rf-main {
    flex: 3;
}

.rf-side {
    flex: 1.2;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .rf-dashboard-layout {
        flex-direction: column;
    }
}
/* Styling Tombol Play Now & Trailer */
.btn-play-now {
    background: #ff8c2a !important;
    color: #000 !important;
    font-weight: 800;
    border-radius: 5px;
    padding: 12px 35px;
    box-shadow: 0 4px 15px rgba(255,140,40,0.4);
}
.btn-trailer {
    background: rgba(0,0,0,0.6) !important;
    color: #ff8c2a !important;
    border: 1px solid #ff8c2a !important;
    font-weight: 800;
    border-radius: 5px;
    padding: 12px 30px;
}

/* Statistik Hero */
.rf-mini-stats {
    display: flex;
    gap: 40px;
}
.stat-box strong {
    font-size: 22px;
    color: #ffb26b;
    font-family: 'Segoe UI', sans-serif;
}
.stat-box small {
    color: #888;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
}

/* News Modern Style */
.news-item-modern {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}
.news-img-box {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 15px;
}
.news-img-box img { width: 100%; height: 100%; object-fit: cover; }
.news-text-box { flex-grow: 1; }
.news-tag {
    font-size: 9px;
    background: #ff8c2a;
    color: #000;
    padding: 1px 5px;
    border-radius: 3px;
    font-weight: bold;
}
.news-link {
    display: block;
    color: #eee;
    font-weight: bold;
    font-size: 14px;
    margin-top: 3px;
}
.news-date { font-size: 10px; color: #666; }
.news-btn {
    font-size: 11px;
    color: #ff8c2a;
    border: 1px solid #ff8c2a;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none !important;
}
.news-btn:hover { background: #ff8c2a; color: #000; }



/* WARNA TEMA: AMBER / GOLD DARK */
:root {
    --main-gold: #e2a049;
    --dark-bg: rgba(15, 15, 15, 0.85);
    --border-gold: rgba(226, 160, 73, 0.3);
}

/* Panel Custom - Tidak Berwarna Merah Lagi */
.rf-panel {
    background: var(--dark-bg) !important;
    border: 1px solid var(--border-gold) !important;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 20px;
}

.rf-panel:hover {
    border-color: var(--main-gold);
    box-shadow: 0 0 20px rgba(226, 160, 73, 0.15);
    transform: translateY(-5px); /* Animasi melayang saat hover */
}

.rf-panel-header {
    background: linear-gradient(90deg, rgba(226, 160, 73, 0.2), transparent) !important;
    color: var(--main-gold) !important;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--border-gold);
}

/* Tombol Premium */
.btn-rf-main {
    background: var(--main-gold);
    color: #000 !important;
    padding: 14px 35px;
    font-weight: 800;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-rf-main:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 25px rgba(226, 160, 73, 0.5);
}

.btn-rf-outline {
    border: 1px solid var(--main-gold);
    color: var(--main-gold) !important;
    padding: 14px 35px;
    border-radius: 4px;
    margin-left: 10px;
    transition: all 0.3s;
}

/* Layouting */
.rf-action-buttons { margin: 25px 0; }
.status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* News Card Modern */
.news-card-modern {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s;
}
.news-card-modern:hover { background: rgba(226, 160, 73, 0.05); }
.n-thumb { width: 60px; height: 60px; border-radius: 6px; overflow: hidden; margin-right: 15px; }
.n-thumb img { width: 100%; height: 100%; object-fit: cover; }
.n-cat { color: var(--main-gold); font-size: 10px; font-weight: bold; }
.n-info h5 { margin: 5px 0; font-size: 14px; color: #eee; }
.n-btn { margin-left: auto; font-size: 11px; color: #888; border: 1px solid #444; padding: 5px 12px; border-radius: 4px; }

/* Stats Item */
.rf-stats-row { display: flex; gap: 30px; margin-top: 20px; }
.stat-item span { display: block; font-size: 22px; color: var(--main-gold); font-weight: bold; }
.stat-item small { color: #666; font-size: 10px; letter-spacing: 1px; }

/* WARNA TEMA AMBER (EMAS) - PENGGANTI MERAH */
:root {
    --gold: #e2a049;
    --gold-low: rgba(226, 160, 73, 0.2);
    --dark-panel: rgba(10, 10, 10, 0.8);
}

.rf-panel {
    background: var(--dark-panel) !important;
    border: 1px solid rgba(226, 160, 73, 0.2) !important;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.rf-panel:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(226, 160, 73, 0.15);
}

.rf-panel-header {
    background: linear-gradient(90deg, var(--gold-low), transparent) !important;
    color: var(--gold) !important;
    padding: 12px 15px;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(226, 160, 73, 0.1);
}

/* Tombol Premium */
.btn-rf-main {
    background: var(--gold);
    color: #000 !important;
    padding: 12px 30px;
    font-weight: 800;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-rf-main:hover {
    box-shadow: 0 0 20px rgba(226, 160, 73, 0.6);
    transform: scale(1.05);
}

.btn-rf-outline {
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
}

/* Kartu Berita */
.news-card-modern {
    display: flex; align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.n-thumb { width: 70px; height: 50px; border-radius: 4px; overflow: hidden; margin-right: 15px; }
.n-thumb img { width: 100%; height: 100%; object-fit: cover; }
.n-info h5 { margin: 2px 0; color: #fff; font-size: 14px; }
.n-cat { color: var(--gold); font-size: 10px; font-weight: bold; text-transform: uppercase; }
.n-btn { margin-left: auto; color: #888; border: 1px solid #444; padding: 4px 10px; border-radius: 4px; font-size: 11px; }

/* Stats */
.stat-item span { display: block; font-size: 24px; color: var(--gold); font-weight: bold; }
.stat-item small { color: #666; font-size: 10px; }