/* =============================================================================
   MODERN REDESIGN — Premium Dark Gaming UI
   Culori: #060402 (warm bg) · #ff7a18 (accent) · #ffffff (text)
   ============================================================================= */

/* ─── VARIABILE ÎMBUNĂTĂȚITE ───────────────────────────────────────────────── */
:root {
    --mr-accent:        #ff7a18;
    --mr-accent-rgb:    255, 122, 24;
    --mr-accent-light:  #ffaa55;
    --mr-accent-deep:   #e05c00;
    --mr-bg:            #060402;
    --mr-panel:         rgba(10, 8, 5, 0.88);
    --mr-border:        rgba(255, 122, 24, 0.12);
    --mr-border-subtle: rgba(255, 255, 255, 0.055);
    --mr-radius-sm:     10px;
    --mr-radius-md:     16px;
    --mr-radius-lg:     22px;
    --mr-radius-xl:     28px;
    --mr-shadow-sm:     0 4px 16px rgba(0,0,0,0.50);
    --mr-shadow-md:     0 12px 40px rgba(0,0,0,0.60), 0 4px 12px rgba(0,0,0,0.40);
    --mr-shadow-lg:     0 24px 70px rgba(0,0,0,0.70), 0 8px 24px rgba(0,0,0,0.45);
    --mr-glow-accent:   0 0 30px rgba(255, 122, 24, 0.18);
    --mr-glow-strong:   0 0 60px rgba(255, 122, 24, 0.28);
    --mr-transition:    0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Background: theme.css + site-pages.css (same as index). Component polish only below. */
html {
    scroll-behavior: smooth;
}

/* ─── CULORI GLOBALE WARM-BROWN ──────────────────────────────────────────── */
/* Înlocuiește tonul rece/albastru cu warm-brown pe toate elementele */

.nav-dd-menu,
.dd-panel--server,
.dd-panel--header,
.mobile-menu-inner,
.news-modal__panel {
    background: rgba(8, 5, 3, 0.94) !important;
}

.ranking-table th {
    background: rgba(6, 4, 2, 0.96) !important;
}

/* ─── HEADER ─────────────────────────────────────────────────────────────────*/
#main-header,
#main-header .header-inner {
    overflow: visible !important;
}
.desktop-nav {
    position: relative !important;
    z-index: 10020 !important;
}

header {
    background: rgba(5, 3, 1, 0.74) !important;
    border-bottom: 1px solid rgba(255, 122, 24, 0.10) !important;
    backdrop-filter: blur(24px) saturate(180%) brightness(1.04) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.04) !important;
    box-shadow:
        0 1px 0 rgba(255, 122, 24, 0.08),
        0 16px 50px rgba(0, 0, 0, 0.38) !important;
    transition: all var(--mr-transition) !important;
}

header.scrolled {
    background: rgba(2, 2, 4, 0.86) !important;
    border-bottom-color: rgba(255, 122, 24, 0.14) !important;
    box-shadow:
        0 1px 0 rgba(255, 122, 24, 0.12),
        0 20px 60px rgba(0, 0, 0, 0.55) !important;
}

/* Logo — gradient text (accent = temă) */
.logo-text,
.header-logo.logo .logo-text,
a.header-logo .logo-text {
    background: linear-gradient(135deg, var(--text-primary) 15%, var(--accent) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 0 12px var(--accent-glow));
}

/* PNG brand set (logo-1..6): keep image visible, not text-clip */
#main-header a.header-logo.theme-brand-logo {
    -webkit-text-fill-color: unset !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
}

#main-header .nav-link,
#main-header .nav-dd-btn {
    font-size: clamp(0.88rem, 1.05vw, 1rem) !important;
}

@media (max-width: 1024px) {
    #main-header .nav-link,
    #main-header .nav-dd-btn {
        font-size: 0.86rem !important;
    }
}

/* Nav links — line glow on hover (top-level only; not dropdown links) */
.desktop-nav > ul > li > a::after,
.nav-dd-btn::after {
    height: 2px !important;
    border-radius: 2px !important;
    bottom: 2px !important;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 122, 24, 1) 40%,
        rgba(255, 170, 60, 0.9) 60%,
        transparent) !important;
    box-shadow: 0 0 8px rgba(255, 122, 24, 0.50) !important;
}

/* Server selector */
.dd-btn--server {
    border-radius: var(--mr-radius-sm) !important;
    border: 1px solid rgba(255, 122, 24, 0.32) !important;
    background: rgba(255, 122, 24, 0.06) !important;
    backdrop-filter: blur(10px) !important;
    transition: all var(--mr-transition) !important;
}
.dd-btn--server:hover {
    background: rgba(255, 122, 24, 0.12) !important;
    border-color: rgba(255, 122, 24, 0.52) !important;
    box-shadow: var(--mr-glow-accent) !important;
}

/* Language button */
.dd-btn--header {
    border-radius: var(--mr-radius-sm) !important;
    backdrop-filter: blur(10px) !important;
    transition: all var(--mr-transition) !important;
}

/* Header CTA */
#header-cta .btn.btn-gold {
    border-radius: var(--mr-radius-sm) !important;
    background: linear-gradient(135deg,
        #ff3d10 0%,
        #ff7a18 50%,
        #ffaa44 100%) !important;
    box-shadow:
        0 4px 20px rgba(255, 90, 18, 0.35),
        0 0 0 1px rgba(255, 122, 24, 0.18) !important;
    letter-spacing: 1.8px !important;
    font-size: clamp(0.74rem, 1vw, 0.82rem) !important;
    transition: all var(--mr-transition) !important;
}
#header-cta .btn.btn-gold:hover {
    box-shadow:
        0 8px 35px rgba(255, 90, 18, 0.50),
        0 0 0 1px rgba(255, 122, 24, 0.28) !important;
    transform: translateY(-2px) !important;
    filter: brightness(1.08) !important;
}

/* ─── DROPDOWN PANELS ─────────────────────────────────────────────────────── */
.nav-dd-menu {
    z-index: 10030 !important;
    border-radius: var(--mr-radius-lg) !important;
    border: 1px solid rgba(255, 122, 24, 0.12) !important;
    background: rgba(5, 5, 8, 0.93) !important;
    backdrop-filter: blur(22px) saturate(160%) !important;
    box-shadow:
        0 24px 65px rgba(0, 0, 0, 0.72),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    padding: 10px !important;
}
.nav-dd-menu a {
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.055) !important;
    background: rgba(255, 255, 255, 0.025) !important;
    transition: all 0.18s ease !important;
}
.nav-dd-menu a:hover {
    border-color: rgba(255, 122, 24, 0.32) !important;
    background: rgba(255, 122, 24, 0.08) !important;
    transform: translateX(4px) !important;
}

.dd-panel--server,
.dd-panel--header {
    border-radius: var(--mr-radius-md) !important;
    border: 1px solid rgba(255, 122, 24, 0.10) !important;
    background: rgba(4, 4, 7, 0.95) !important;
    backdrop-filter: blur(22px) !important;
    box-shadow: var(--mr-shadow-lg) !important;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
    border-radius: var(--mr-radius-sm) !important;
    transition: all var(--mr-transition) !important;
    position: relative;
    overflow: hidden;
    letter-spacing: 1.6px !important;
}

/* Gold button */
.btn-gold {
    background: linear-gradient(135deg,
        #ff3d10 0%,
        #ff7a18 48%,
        #ffaa44 100%) !important;
    box-shadow:
        0 6px 22px rgba(255, 90, 18, 0.30),
        0 2px 8px rgba(0, 0, 0, 0.45) !important;
    border: 0 !important;
    color: rgba(0, 0, 0, 0.92) !important;
}
.btn-gold:hover {
    box-shadow:
        0 12px 38px rgba(255, 90, 18, 0.45),
        0 4px 14px rgba(0, 0, 0, 0.55) !important;
    transform: translateY(-2px) !important;
    filter: brightness(1.09) !important;
}
.btn-gold:active { transform: translateY(0) !important; filter: brightness(1.02) !important; }

/* Outline button */
.btn-outline {
    border: 1px solid rgba(255, 122, 24, 0.38) !important;
    color: rgba(255, 140, 50, 0.96) !important;
    background: rgba(255, 122, 24, 0.05) !important;
    transition: all var(--mr-transition) !important;
}
.btn-outline:hover {
    background: rgba(255, 122, 24, 0.11) !important;
    border-color: rgba(255, 122, 24, 0.62) !important;
    box-shadow: 0 0 22px rgba(255, 122, 24, 0.18) !important;
    transform: translateY(-1px) !important;
}

/* Transparent button */
.btn-transparent {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(8px) !important;
}
.btn-transparent:hover {
    background: rgba(255, 122, 24, 0.09) !important;
    border-color: rgba(255, 122, 24, 0.40) !important;
}

/* ─── SECTION TITLES ─────────────────────────────────────────────────────── */
.title-glow {
    background: linear-gradient(135deg,
        #ffffff 25%,
        rgba(255, 190, 100, 0.96) 75%,
        rgba(255, 122, 24, 0.92) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
    filter: drop-shadow(0 2px 18px rgba(255, 122, 24, 0.16)) !important;
    letter-spacing: 4px !important;
}

.title-gold {
    background: linear-gradient(120deg,
        #ff7a18 0%,
        #ffa040 55%,
        #ffcc70 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 0 14px rgba(255, 122, 24, 0.32)) !important;
}

.subtitle-text {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 0.90rem !important;
    letter-spacing: 0.6px !important;
    margin-top: 10px !important;
}

/* Section header accent bar */
.section-header {
    position: relative;
}
.section-header::after {
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    margin: 18px auto 0;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 122, 24, 0.95) 40%,
        rgba(255, 160, 60, 0.80) 60%,
        transparent);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(255, 122, 24, 0.45);
}

/* ─── NEWS TITLE BAR ─────────────────────────────────────────────────────── */
.home-news__title {
    font-family: var(--font-head) !important;
    font-size: 0.70rem !important;
    letter-spacing: 4.5px !important;
    color: rgba(255, 140, 50, 0.90) !important;
    text-transform: uppercase !important;
    font-weight: 900 !important;
    padding-bottom: 14px !important;
    border-bottom: 1px solid rgba(255, 122, 24, 0.10) !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}
.home-news__title::before {
    content: '';
    display: inline-block;
    flex: 0 0 auto;
    width: 3px;
    height: 16px;
    background: linear-gradient(180deg, #ff7a18, #ffaa44);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(255, 122, 24, 0.50);
}

/* ─── UNIVERSAL CARD STYLE — toate cardurile pe toate paginile ────────────── */
.section-card,
.info-card,
.class-card,
.side-menu-card,
.dh-card,
.overview-card,
.server-card,
.playtime-card,
.feature-card,
.champion-card,
.download-card,
.dl-card,
.req-card,
.ranking-table-wrapper,
.ranking-tabs,
.status-card,
.card,
.si-hub-card,
.si-hub-rule,
.si-stat-card {
    background:
        radial-gradient(1200px 500px at 20% -10%, rgba(255, 122, 24, 0.10), transparent 45%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.34)) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.46) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

/* hover — accent border */
.section-card:hover,
.info-card:hover,
.class-card:hover,
.side-menu-card:hover,
.dh-card:hover,
.overview-card:hover,
.server-card:hover,
.playtime-card:hover,
.feature-card:hover,
.champion-card:hover,
.download-card:hover,
.dl-card:hover,
.req-card:hover,
.status-card:hover,
.card:hover,
.si-hub-card:hover,
.si-hub-rule:hover,
.si-stat-card:hover {
    border-color: rgba(255, 122, 24, 0.26) !important;
    box-shadow:
        0 24px 65px rgba(0, 0, 0, 0.60),
        0 0 28px rgba(255, 122, 24, 0.08) !important;
}

/* ─── SERVER CARDS ─────────────────────────────────────────────────────────── */
.server-card {
    border-radius: var(--mr-radius-lg) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.60),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    overflow: hidden;
    transition: all 0.30s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.server-card:hover {
    border-color: rgba(255, 122, 24, 0.26) !important;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.75),
        0 0 35px rgba(255, 122, 24, 0.09),
        inset 0 1px 0 rgba(255, 122, 24, 0.14) !important;
    transform: translateY(-10px) !important;
}

.server-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.97) 0%,
        rgba(0, 0, 0, 0.65) 45%,
        rgba(0, 0, 0, 0.10) 100%
    ) !important;
}

.server-status {
    border-radius: 999px !important;
    backdrop-filter: blur(10px) !important;
    background: rgba(0, 0, 0, 0.58) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
}

.server-name {
    font-size: 1.85rem !important;
    letter-spacing: 2.5px !important;
}

.server-type {
    letter-spacing: 3.5px !important;
    font-size: 0.70rem !important;
    color: rgba(255, 155, 55, 0.95) !important;
}

.server-tag {
    border-radius: 8px !important;
    font-size: 0.66rem !important;
    letter-spacing: 0.9px !important;
    padding: 5px 10px !important;
}

/* Server card CTA */
.server-card .btn-sm {
    border-radius: var(--mr-radius-sm) !important;
    font-size: 0.68rem !important;
    letter-spacing: 2px !important;
}

/* ─── CHAMPION CARDS ─────────────────────────────────────────────────────── */
.champions-grid {
    gap: 16px !important;
}
.champion-card {
    border-radius: var(--mr-radius-md) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.26s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.champion-card:hover {
    border-color: rgba(255, 122, 24, 0.28) !important;
    transform: translateY(-6px) !important;
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.68),
        0 0 22px rgba(255, 122, 24, 0.07) !important;
}

.champion-overlay {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.45) 65%,
        rgba(0, 0, 0, 0.08) 100%
    ) !important;
}

.card-icon {
    background: rgba(255, 122, 24, 0.08) !important;
    border: 1px solid rgba(255, 122, 24, 0.18) !important;
    box-shadow: 0 0 22px rgba(255, 122, 24, 0.10) !important;
    width: 52px !important;
    height: 52px !important;
}

/* ─── RANKING TABLE ─────────────────────────────────────────────────────── */
.ranking-section {
    background: transparent !important;
}

.ranking-tabs {
    border-radius: var(--mr-radius-md) !important;
    backdrop-filter: blur(14px) !important;
    padding: 7px !important;
}
.tab-btn {
    border-radius: 12px !important;
    font-size: 0.70rem !important;
    letter-spacing: 1.6px !important;
    transition: all 0.20s ease !important;
}
.tab-btn.active {
    background: linear-gradient(135deg,
        rgba(255, 60, 10, 0.92),
        rgba(255, 122, 24, 0.88)) !important;
    border-color: rgba(255, 122, 24, 0.45) !important;
    box-shadow:
        0 4px 18px rgba(255, 90, 18, 0.32),
        0 0 0 1px rgba(255, 150, 50, 0.15) inset !important;
    color: #fff !important;
}

.ranking-table-wrapper {
    border-radius: var(--mr-radius-lg) !important;
    backdrop-filter: blur(10px) !important;
    overflow: hidden !important;
    padding: 0 !important;
}
.ranking-table th {
    background: rgba(5, 5, 8, 0.95) !important;
    font-size: 0.66rem !important;
    letter-spacing: 2.8px !important;
    color: rgba(255, 140, 50, 0.80) !important;
    padding: 18px 16px !important;
    border-bottom: 1px solid rgba(255, 122, 24, 0.10) !important;
}
.ranking-table td {
    padding: 18px 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.038) !important;
}
.ranking-table tbody tr:hover {
    background: rgba(255, 122, 24, 0.055) !important;
}

/* ─── SECȚIUNI INTERMEDIARE — transparente ca să se vadă gridul ──────────── */
.home-story,
.home-news,
.features,
.ranking-section,
.playtime-section,
.home-hero__inner,
.home-hero {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* ─── PLAYTIME CARDS ─────────────────────────────────────────────────────── */
.playtime-section {
    background: transparent !important;
}
.playtime-card {
    border-radius: var(--mr-radius-lg) !important;
    transition: all 0.30s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.playtime-card:hover {
    border-color: rgba(255, 122, 24, 0.24) !important;
    box-shadow:
        0 30px 72px rgba(0, 0, 0, 0.68),
        0 0 28px rgba(255, 122, 24, 0.07) !important;
    transform: translateY(-7px) !important;
}

.playtime-icon {
    background: rgba(255, 122, 24, 0.08) !important;
    border: 1px solid rgba(255, 122, 24, 0.18) !important;
    box-shadow: 0 0 20px rgba(255, 122, 24, 0.12) !important;
}

/* ─── FEATURE CARDS ─────────────────────────────────────────────────────── */
.feature-card {
    border-radius: var(--mr-radius-lg) !important;
    backdrop-filter: blur(12px) !important;
    transition: all 0.26s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.feature-card:hover {
    border-color: rgba(255, 122, 24, 0.26) !important;
    transform: translateY(-7px) !important;
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.68),
        0 0 26px rgba(255, 122, 24, 0.07) !important;
}

/* ─── MODALS ─────────────────────────────────────────────────────────────── */
.news-modal__panel {
    border-radius: var(--mr-radius-xl) !important;
    border: 1px solid rgba(255, 122, 24, 0.10) !important;
    background: rgba(5, 5, 9, 0.93) !important;
    backdrop-filter: blur(24px) saturate(150%) !important;
    box-shadow:
        0 32px 100px rgba(0, 0, 0, 0.78),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

.promo-modal__panel {
    border-radius: var(--mr-radius-xl) !important;
    border: 1px solid var(--accent-border) !important;
    background: color-mix(in srgb, var(--bg-card) 88%, transparent) !important;
    backdrop-filter: blur(22px) !important;
    box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.82),
        0 0 0 1px color-mix(in srgb, var(--text-primary) 5%, transparent),
        var(--shadow-glow) !important;
}

.promo-modal__backdrop {
    background: color-mix(in srgb, var(--bg-void) 82%, black) !important;
    backdrop-filter: blur(10px) !important;
}

/* ─── INPUTS & FORMS ─────────────────────────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    background: rgba(6, 6, 10, 0.80) !important;
    backdrop-filter: blur(8px) !important;
    color: rgba(255, 255, 255, 0.94) !important;
    transition: border-color 0.20s ease, box-shadow 0.20s ease !important;
}
input:focus,
select:focus,
textarea:focus {
    border-color: rgba(255, 122, 24, 0.48) !important;
    box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.09) !important;
    outline: none !important;
}
input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.32) !important;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
    background: rgba(3, 3, 5, 0.88) !important;
    border-top: 1px solid rgba(255, 122, 24, 0.08) !important;
    backdrop-filter: blur(14px) !important;
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 122, 24, 0.35) 30%,
        rgba(255, 150, 50, 0.25) 70%,
        transparent);
}

/* ─── SOCIAL LINKS ─────────────────────────────────────────────────────────*/
.social-link {
    border-radius: 14px !important;
    width: 44px !important;
    height: 44px !important;
    border: 1px solid rgba(255, 122, 24, 0.16) !important;
    background: rgba(4, 4, 8, 0.72) !important;
    backdrop-filter: blur(12px) !important;
    transition: all var(--mr-transition) !important;
}
.social-link:hover {
    background: rgba(255, 122, 24, 0.11) !important;
    border-color: rgba(255, 122, 24, 0.44) !important;
    box-shadow: 0 0 22px rgba(255, 122, 24, 0.20) !important;
    transform: translateY(-3px) !important;
}

/* ─── MOBILE MENU ─────────────────────────────────────────────────────────── */
.mobile-menu-inner {
    border-radius: var(--mr-radius-lg) !important;
    border: 1px solid rgba(255, 122, 24, 0.10) !important;
    background: rgba(3, 3, 6, 0.93) !important;
    backdrop-filter: blur(24px) !important;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.72) !important;
}
.mm-link {
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.055) !important;
    background: rgba(255, 255, 255, 0.025) !important;
    transition: all 0.18s ease !important;
}
.mm-link:hover {
    border-color: rgba(255, 122, 24, 0.28) !important;
    background: rgba(255, 122, 24, 0.07) !important;
    transform: translateX(3px) !important;
}
.mm-link.active {
    background: rgba(255, 122, 24, 0.10) !important;
    border-color: rgba(255, 122, 24, 0.34) !important;
}

/* ─── SLIDER ─────────────────────────────────────────────────────────────── */
.slider-container {
    border-radius: var(--mr-radius-lg) !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.65) !important;
}
.slider-arrow {
    border-radius: 12px !important;
    backdrop-filter: blur(12px) !important;
    background: rgba(0, 0, 0, 0.52) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    transition: all 0.18s ease !important;
}
.slider-arrow:hover {
    background: rgba(255, 122, 24, 0.16) !important;
    border-color: rgba(255, 122, 24, 0.40) !important;
    box-shadow: 0 0 20px rgba(255, 122, 24, 0.18) !important;
}

/* ─── STATUS DOTS ─────────────────────────────────────────────────────────── */
.online .status-dot {
    background: #22dd55 !important;
    box-shadow: 0 0 8px #22dd55, 0 0 16px rgba(34, 221, 85, 0.40) !important;
}
.maintenance .status-dot {
    background: #ffaa00 !important;
    box-shadow: 0 0 8px rgba(255, 170, 0, 0.70) !important;
}

/* ─── RANK BADGES ─────────────────────────────────────────────────────────── */
.rank-badge.gold {
    background: linear-gradient(135deg, #ffe44d, #c8900a) !important;
    box-shadow: 0 2px 12px rgba(255, 200, 0, 0.40) !important;
}
.rank-badge.silver {
    background: linear-gradient(135deg, #e8e8e8, #a8a8a8) !important;
    box-shadow: 0 2px 10px rgba(200, 200, 200, 0.30) !important;
}
.rank-badge.bronze {
    background: linear-gradient(135deg, #e0943c, #8b5020) !important;
    box-shadow: 0 2px 10px rgba(200, 130, 50, 0.35) !important;
}

/* ─── SCROLL BAR ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}
::-webkit-scrollbar-track {
    background: rgba(4, 4, 6, 0.80);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 122, 24, 0.28);
    border-radius: 4px;
    border: 1px solid rgba(4, 4, 6, 0.80);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 122, 24, 0.50);
}

/* ─── TEXT SELECTION ─────────────────────────────────────────────────────── */
::selection {
    background: rgba(255, 122, 24, 0.28);
    color: #fff;
}

/* ─── TOAST NOTIFICATIONS ─────────────────────────────────────────────────── */
.toast,
.notification,
[class*="toast"],
[class*="notification"] {
    border-radius: var(--mr-radius-md) !important;
    border: 1px solid rgba(255, 122, 24, 0.14) !important;
    background: rgba(5, 5, 9, 0.92) !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: var(--mr-shadow-lg) !important;
}

/* ─── HOME HERO ─────────────────────────────────────────────────────────── */
.home-hero {
    position: relative;
    overflow: hidden;
}

/* Glow peste hero (sub .hero-bg); tema blue = accente reci */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(900px 520px at 50% 12%, rgba(0, 229, 160, 0.15), transparent 62%),
        radial-gradient(700px 420px at 10% 40%, rgba(0, 180, 120, 0.10), transparent 60%),
        radial-gradient(700px 420px at 90% 45%, rgba(60, 220, 160, 0.08), transparent 58%),
        radial-gradient(circle at 50% 70%, rgba(0,0,0,0.22), transparent 68%) !important;
}

html.theme-orange .hero::before {
    background:
        radial-gradient(900px 520px at 50% 12%, rgba(255, 122, 24, 0.18), transparent 62%),
        radial-gradient(700px 420px at 10% 40%, rgba(255, 80, 40, 0.10), transparent 60%),
        radial-gradient(700px 420px at 90% 45%, rgba(255, 160, 70, 0.08), transparent 58%),
        radial-gradient(circle at 50% 70%, rgba(0,0,0,0.20), transparent 68%) !important;
}

/* Hero overlay — face fundalul vizibil (nu mai blochează gridul) */
.hero-overlay {
    background: radial-gradient(
        circle at 50% 15%,
        rgba(5, 5, 5, 0.10) 0%,
        rgba(5, 5, 5, 0.45) 100%
    ) !important;
}

/* Extra glow burst behind hero */
.home-hero::after {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse at center,
        rgba(255, 90, 10, 0.12) 0%,
        transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* ─── AUTH PAGE ─────────────────────────────────────────────────────────── */
body.page-auth .auth-panel {
    border-radius: var(--mr-radius-xl) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    background:
        radial-gradient(1200px 500px at 20% -10%, rgba(255, 122, 24, 0.10), transparent 45%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.34)) !important;
    backdrop-filter: blur(22px) !important;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.46) !important;
}

/* ─── DOWNLOADS PAGE ─────────────────────────────────────────────────────── */
.download-card,
.dl-card {
    border-radius: var(--mr-radius-lg) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.26s ease !important;
}
.download-card:hover,
.dl-card:hover {
    border-color: rgba(255, 122, 24, 0.26) !important;
    transform: translateY(-5px) !important;
    box-shadow:
        0 26px 68px rgba(0, 0, 0, 0.65),
        0 0 24px rgba(255, 122, 24, 0.07) !important;
}

/* =============================================================================
   DOWNLOADS PAGE — Redesign Premium
   ============================================================================= */

/* Hero titlu Downloads */
body.page-downloads .page-hero {
    padding: 56px 0 32px !important;
    position: relative;
    text-align: center;
}
body.page-downloads .page-hero::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,122,24,0.85), transparent);
    border-radius: 2px;
}
body.page-downloads .page-hero__title {
    font-size: clamp(2.2rem, 5vw, 4rem) !important;
    letter-spacing: 8px !important;
    background: linear-gradient(135deg, #ffffff 20%, rgba(255, 180, 80, 0.95) 70%, rgba(255, 122, 24, 0.90) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
    filter: drop-shadow(0 2px 20px rgba(255, 122, 24, 0.20)) !important;
}
body.page-downloads .page-hero__title-accent {
    -webkit-text-fill-color: unset !important;
}

/* Grid layout mai larg */
body.page-downloads .downloads-section {
    padding: 24px 0 60px !important;
}
body.page-downloads .downloads-grid {
    grid-template-columns: 1.2fr 0.8fr !important;
    gap: 20px !important;
    align-items: start;
}
@media (max-width: 991px) {
    body.page-downloads .downloads-grid { grid-template-columns: 1fr !important; }
}

/* ── DOWNLOAD CARD ── */
body.page-downloads .download-card {
    border-radius: var(--mr-radius-xl) !important;
    padding: 36px 32px !important;
    background:
        radial-gradient(1200px 500px at 20% -10%, rgba(255, 122, 24, 0.10), transparent 45%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.34)) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    backdrop-filter: blur(18px) !important;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.46) !important;
    position: relative;
    overflow: hidden;
}
/* Glow decorativ în colțul din dreapta sus */
body.page-downloads .download-card::before {
    background:
        radial-gradient(420px 280px at 100% 0%, rgba(255,122,24,0.14), transparent 65%),
        radial-gradient(300px 200px at 0% 100%, rgba(255,80,10,0.08), transparent 65%) !important;
}

/* Tag RECOMMENDED */
body.page-downloads .download-card__tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    height: 28px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, rgba(255,60,10,0.22), rgba(255,122,24,0.18)) !important;
    border: 1px solid rgba(255,122,24,0.38) !important;
    color: rgba(255, 155, 55, 0.96) !important;
    font-size: 0.64rem !important;
    letter-spacing: 2.5px !important;
    box-shadow: 0 0 16px rgba(255,122,24,0.12) !important;
}
body.page-downloads .download-card__tag::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 140, 40, 0.95);
    box-shadow: 0 0 8px rgba(255, 122, 24, 0.65);
    animation: mr-glow-pulse 1.8s ease-in-out infinite;
}

/* Titlu card */
body.page-downloads .download-card__title {
    margin-top: 20px !important;
    font-size: clamp(1.2rem, 2vw, 1.6rem) !important;
    letter-spacing: 2.5px !important;
    color: #fff !important;
}

/* Buton download — redesign major */
body.page-downloads .download-btn {
    margin-top: 22px !important;
    height: 60px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg,
        rgba(255, 55, 10, 0.96) 0%,
        rgba(255, 122, 24, 0.94) 50%,
        rgba(255, 160, 50, 0.90) 100%) !important;
    border: 0 !important;
    box-shadow:
        0 8px 30px rgba(255, 90, 18, 0.40),
        0 2px 8px rgba(0, 0, 0, 0.50),
        inset 0 1px 0 rgba(255, 255, 255, 0.20) !important;
    font-size: 0.78rem !important;
    letter-spacing: 2.5px !important;
    transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1) !important;
    color: rgba(0,0,0,0.88) !important;
    font-weight: 900 !important;
}
body.page-downloads .download-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow:
        0 16px 45px rgba(255, 90, 18, 0.55),
        0 4px 14px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
    filter: brightness(1.06) !important;
}
body.page-downloads .download-btn:active {
    transform: translateY(0) !important;
}
/* Iconița din buton */
body.page-downloads .download-btn__icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    background: rgba(0,0,0,0.20) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    font-size: 1rem !important;
}

/* Meta (size/version/etc) */
body.page-downloads .download-meta {
    margin-top: 20px !important;
    border-top: 1px solid rgba(255,255,255,0.07) !important;
    padding-top: 16px !important;
    grid-template-columns: repeat(4, minmax(0,1fr)) !important;
}
body.page-downloads .download-meta__item {
    padding: 12px 14px !important;
    border-right: 1px solid rgba(255,255,255,0.07) !important;
    transition: background 0.18s ease !important;
}
body.page-downloads .download-meta__item:hover {
    background: rgba(255,122,24,0.05) !important;
    border-radius: 10px !important;
}
body.page-downloads .download-meta__label {
    font-size: 0.62rem !important;
    letter-spacing: 2.2px !important;
    color: rgba(255,140,50,0.75) !important;
}
body.page-downloads .download-meta__value {
    font-size: 0.92rem !important;
    margin-top: 5px !important;
    color: rgba(255,255,255,0.94) !important;
}

/* ── REQUIREMENTS CARD ── */
body.page-downloads .req-card {
    border-radius: var(--mr-radius-xl) !important;
    padding: 30px 28px !important;
    background:
        radial-gradient(1200px 500px at 20% -10%, rgba(255, 122, 24, 0.10), transparent 45%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.34)) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    backdrop-filter: blur(18px) !important;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.46) !important;
}
/* Linia portocalie stanga */
body.page-downloads .req-card::before {
    width: 3px !important;
    top: 20px !important;
    bottom: 20px !important;
    background: linear-gradient(180deg,
        rgba(255,122,24,0.95),
        rgba(255,80,10,0.50),
        transparent) !important;
    border-radius: 2px !important;
    box-shadow: 0 0 16px rgba(255,122,24,0.30) !important;
}

body.page-downloads .req-card__title {
    font-size: 0.72rem !important;
    letter-spacing: 4px !important;
    color: rgba(255,140,50,0.85) !important;
    margin-bottom: 18px !important;
}

/* Coloanele min/rec */
body.page-downloads .req-col {
    border-radius: 16px !important;
    padding: 16px 14px !important;
    background: rgba(5,5,10,0.55) !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    transition: border-color 0.20s ease !important;
}
body.page-downloads .req-col:hover {
    border-color: rgba(255,122,24,0.18) !important;
}
body.page-downloads .req-col__head {
    font-size: 0.64rem !important;
    letter-spacing: 2.5px !important;
    margin-bottom: 14px !important;
    color: rgba(255,150,55,0.90) !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(255,122,24,0.10) !important;
}

body.page-downloads .req-row {
    padding: 9px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    font-size: 0.84rem !important;
    display: flex !important;
    justify-content: space-between !important;
    gap: 8px !important;
}
body.page-downloads .req-row span:first-child {
    color: rgba(255,255,255,0.45) !important;
    font-size: 0.70rem !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    flex: 0 0 40px !important;
}
body.page-downloads .req-row span:last-child {
    color: rgba(255,255,255,0.88) !important;
    text-align: right !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
}

/* Nota dependency */
body.page-downloads .req-note {
    margin-top: 18px !important;
    border-radius: 14px !important;
    padding: 16px 16px !important;
    background: rgba(255,122,24,0.06) !important;
    border: 1px solid rgba(255,122,24,0.16) !important;
    box-shadow: 0 0 24px rgba(255,122,24,0.06) !important;
}
body.page-downloads .req-note::before {
    display: none !important;
}
body.page-downloads .req-note__title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 0.68rem !important;
    letter-spacing: 2px !important;
}
body.page-downloads .req-note__title::before {
    content: '⚠';
    font-style: normal;
    font-size: 1rem;
    color: rgba(255,170,50,0.90);
}
body.page-downloads .req-note__text {
    color: rgba(255,255,255,0.82) !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
}

/* Butonul back */
body.page-downloads .page-back {
    border-radius: 12px !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    background: rgba(255,255,255,0.04) !important;
    backdrop-filter: blur(8px) !important;
    transition: all 0.20s ease !important;
}
body.page-downloads .page-back:hover {
    border-color: rgba(255,122,24,0.38) !important;
    background: rgba(255,122,24,0.08) !important;
    box-shadow: 0 0 18px rgba(255,122,24,0.14) !important;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .title-glow {
        font-size: clamp(1.45rem, 5vw, 2.0rem) !important;
        letter-spacing: 2.5px !important;
    }
    .server-card,
    .playtime-card,
    .feature-card {
        border-radius: var(--mr-radius-md) !important;
    }
    .champion-card {
        border-radius: 14px !important;
    }
    .ranking-tabs {
        border-radius: var(--mr-radius-sm) !important;
    }
}

/* ─── PROMO MODAL CTA (theme.css accent) ─────────────────────────────────── */
.promo-modal__cta {
    border: 1px solid var(--accent-border) !important;
    border-radius: 999px !important;
    background: linear-gradient(
        90deg,
        color-mix(in srgb, var(--accent) 78%, black),
        var(--accent) 48%,
        color-mix(in srgb, var(--accent) 72%, white)
    ) !important;
    box-shadow: 0 4px 22px var(--accent-glow) !important;
    color: rgba(0, 0, 0, 0.9) !important;
    transition: all var(--mr-transition) !important;
}
.promo-modal__cta:hover {
    box-shadow: 0 8px 32px var(--accent-glow) !important;
    filter: brightness(1.07) !important;
    transform: translateY(-1px) !important;
}

/* ─── SUBTLE GLOW ANIMATIONS ─────────────────────────────────────────────── */
@keyframes mr-glow-pulse {
    0%, 100% { opacity: 0.65; }
    50%       { opacity: 1.00; }
}
@keyframes mr-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

.online .status-dot {
    animation: mr-glow-pulse 2.4s ease-in-out infinite;
}
