:root {
    --hr-bg: #070b10;
    --hr-bg-2: #0a1118;
    --hr-panel: rgba(10, 18, 26, .94);
    --hr-panel-2: rgba(14, 24, 34, .94);
    --hr-line: #263746;
    --hr-line-soft: rgba(85, 113, 138, .22);
    --hr-text: #edf4fb;
    --hr-muted: #8196aa;
    --hr-red: #e32934;
    --hr-red-2: #ff3c48;
    --hr-blue: #42a4ff;
    --hr-gold: #d8a638;
    --hr-gold-2: #ffd66a;
    --hr-green: #42d98b;
    --hr-shadow: 0 16px 45px rgba(0, 0, 0, .34);
    --hr-radius: 4px;
    --hr-max: 1320px;
}


/* =========================================================
   GLOBAL
========================================================= */

html {
    background: var(--hr-bg);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0 !important;
    background:
        linear-gradient(rgba(5, 9, 14, .90), rgba(5, 9, 14, .96)),
        url('/images/theme/classic-campus-bg.svg') center top / cover fixed !important;
    color: var(--hr-text) !important;
    font-family:
        "Segoe UI",
        Arial,
        sans-serif !important;
    font-size: 14px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(41, 134, 255, .035), transparent 28%),
        linear-gradient(270deg, rgba(255, 46, 59, .035), transparent 28%);
}

::selection {
    background: rgba(227, 41, 52, .85);
    color: #fff;
}

a {
    transition:
        color .18s ease,
        border-color .18s ease,
        background-color .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}

.container {
    width: min(var(--hr-max), calc(100% - 42px)) !important;
    max-width: var(--hr-max) !important;
}

main {
    min-height: 68vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #f7f9fb;
    letter-spacing: -.02em;
}

button,
input,
select,
textarea {
    font: inherit;
}

input,
select,
textarea {
    border-radius: 2px !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(66, 164, 255, .75) !important;
    box-shadow: 0 0 0 3px rgba(66, 164, 255, .08) !important;
}

table {
    color: var(--hr-text) !important;
}

.classic-pressed {
    transform: translateY(1px) scale(.995) !important;
}


/* =========================================================
   PUBLIC NAVIGATION
========================================================= */

.classic-main-header {
    height: 76px !important;
    position: sticky !important;
    top: 0;
    z-index: 1000 !important;
    background:
        linear-gradient(
            180deg,
            rgba(7, 12, 18, .985),
            rgba(5, 9, 14, .96)
        ) !important;
    border-bottom: 1px solid rgba(78, 101, 122, .28) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
    backdrop-filter: blur(12px);
}

.classic-main-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(48, 139, 255, .45),
            rgba(227, 41, 52, .55),
            transparent
        );
}

.nav-container {
    height: 76px !important;
}

.classic-brand {
    position: relative;
    display: inline-flex !important;
    align-items: baseline;
    gap: 0 !important;
    min-width: 172px;
    padding-right: 24px;
    color: #fff !important;
    text-decoration: none !important;
    line-height: 1 !important;
    letter-spacing: -1.7px !important;
    transform: rotate(-2deg);
}

.classic-brand::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 5px;
    bottom: 3px;
    width: 1px;
    background: rgba(96, 117, 136, .28);
}

.classic-brand-happy {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 700;
    color: #f7f7f7 !important;
}

.classic-brand-ran {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 800;
    color: var(--hr-red-2) !important;
    text-shadow: 0 0 18px rgba(227, 41, 52, .28);
}

.classic-brand small {
    margin-left: 4px;
    color: var(--hr-gold-2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .5px;
}

.classic-main-nav {
    gap: 5px !important;
}

.classic-main-nav > a {
    position: relative;
    min-height: 76px;
    padding: 0 14px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #c1ccd7 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .25px;
    text-decoration: none !important;
}

.classic-main-nav > a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 2px;
    background: var(--hr-red);
    transform: scaleX(0);
    transform-origin: center;
    box-shadow: 0 0 12px rgba(227, 41, 52, .45);
    transition: transform .18s ease;
}

.classic-main-nav > a:hover,
.classic-main-nav > a.active {
    color: #fff !important;
    background: rgba(255, 255, 255, .018);
}

.classic-main-nav > a:hover::after,
.classic-main-nav > a.active::after {
    transform: scaleX(1);
}

.classic-main-nav .login-btn {
    min-height: 40px !important;
    height: 40px !important;
    margin-left: 8px;
    padding: 0 17px !important;
    border: 1px solid #a61f28 !important;
    background:
        linear-gradient(
            180deg,
            #b41f28,
            #82141b
        ) !important;
    color: #fff !important;
    box-shadow:
        inset 0 1px rgba(255, 255, 255, .08),
        0 5px 16px rgba(150, 20, 28, .18);
}

.classic-main-nav .login-btn::after {
    display: none;
}

.classic-main-nav .login-btn:hover {
    border-color: var(--hr-red-2) !important;
    background:
        linear-gradient(
            180deg,
            #d32a35,
            #951821
        ) !important;
}

.classic-nav-toggle {
    display: none;
    width: 42px;
    height: 38px;
    padding: 8px;
    border: 1px solid var(--hr-line);
    background: #0b131b;
    cursor: pointer;
}

.classic-nav-toggle span {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: #d9e1e8;
}

.notification-nav-link {
    position: relative;
    width: 42px;
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    border: 1px solid transparent;
}

.notification-nav-link::after {
    display: none !important;
}

.notification-bell-icon {
    width: 20px;
    height: 20px;
}

.notification-bell-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #dbe5ed;
    stroke-width: 1.6;
}

.notification-nav-badge {
    position: absolute;
    right: 1px;
    top: 0;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    align-items: center;
    justify-content: center;
    border: 2px solid #081019;
    border-radius: 20px;
    background: var(--hr-red);
    color: #fff;
    font-size: 8px;
    font-weight: 900;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 610px !important;
    position: relative !important;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(5, 9, 13, .68),
            rgba(5, 9, 13, .20) 48%,
            rgba(5, 9, 13, .72)
        ),
        linear-gradient(
            180deg,
            rgba(3, 7, 11, .12),
            rgba(3, 7, 11, .10) 65%,
            #070b10 100%
        ),
        url('/images/theme/classic-hero-bg.svg') center / cover no-repeat !important;
    border-bottom: 1px solid rgba(66, 164, 255, .22);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero::before {
    left: -10%;
    bottom: 0;
    width: 45%;
    height: 65%;
    background:
        radial-gradient(
            ellipse at bottom,
            rgba(25, 106, 219, .18),
            transparent 65%
        );
}

.hero::after {
    right: -10%;
    bottom: 0;
    width: 45%;
    height: 65%;
    background:
        radial-gradient(
            ellipse at bottom,
            rgba(195, 34, 46, .15),
            transparent 65%
        );
}

.hero-overlay {
    min-height: 610px !important;
    position: relative;
    z-index: 2;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .04),
            rgba(0, 0, 0, .05) 55%,
            rgba(7, 11, 16, .92)
        ) !important;
}

.hero-content {
    max-width: 880px !important;
    padding: 90px 20px 70px !important;
    text-align: center !important;
}

.hero-small {
    margin-bottom: 12px !important;
    color: var(--hr-red-2) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 5px !important;
}

.hero h1 {
    margin: 0 !important;
    color: #f5f2ea !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(46px, 6vw, 78px) !important;
    font-weight: 700 !important;
    line-height: .98 !important;
    letter-spacing: -1px !important;
    text-shadow:
        0 3px 0 rgba(0, 0, 0, .75),
        0 0 35px rgba(255, 255, 255, .08) !important;
}

.hero h1 span {
    color: #fff !important;
}

.hero h2 {
    margin: 10px 0 10px !important;
    padding: 0 !important;
    color: var(--hr-gold-2) !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    letter-spacing: 10px !important;
}

.hero p {
    margin-top: 10px !important;
    color: #c6d0d9 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
}

.hero-buttons {
    margin-top: 30px !important;
    gap: 12px !important;
}

.btn-download,
.btn-register {
    min-width: 190px;
    min-height: 46px;
    padding: 0 22px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 2px !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: .7px !important;
}

.btn-download {
    border: 1px solid #cf2c36 !important;
    background:
        linear-gradient(
            180deg,
            #d62732,
            #941921
        ) !important;
    box-shadow:
        inset 0 1px rgba(255, 255, 255, .12),
        0 8px 24px rgba(139, 22, 30, .24);
}

.btn-register {
    border: 1px solid #78632d !important;
    background: rgba(17, 20, 20, .82) !important;
    color: #eadcae !important;
}

.btn-download:hover,
.btn-register:hover {
    transform: translateY(-2px);
}


/* =========================================================
   HOME STATUS + COMMON CARDS
========================================================= */

.server-status {
    position: relative;
    z-index: 4;
    margin-top: -58px;
    border: 0 !important;
    background: transparent !important;
}

.status-grid {
    overflow: hidden;
    border: 1px solid #295e89;
    border-radius: var(--hr-radius);
    background:
        linear-gradient(
            180deg,
            rgba(12, 22, 31, .97),
            rgba(8, 15, 22, .98)
        ) !important;
    box-shadow:
        0 0 0 1px rgba(29, 112, 188, .12),
        0 16px 38px rgba(0, 0, 0, .34),
        0 0 28px rgba(24, 103, 182, .12);
}

.status-box {
    min-height: 94px;
    padding: 20px 26px !important;
    justify-content: flex-start !important;
    border-right: 1px solid rgba(81, 110, 136, .25) !important;
}

.status-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(54, 137, 219, .32);
    border-radius: 50%;
    background: rgba(20, 73, 127, .20);
    color: #5db0ff !important;
    font-size: 18px !important;
}

.status-box span {
    color: #7990a6 !important;
    font-size: 8px !important;
    font-weight: 800;
    letter-spacing: 1px !important;
}

.status-box strong {
    margin-top: 4px !important;
    font-size: 21px !important;
}

.status-box strong.online,
.online-player-count {
    color: var(--hr-green) !important;
}


/* Generic page surfaces */
[class$="-page"],
[class*="-page "] {
    background:
        linear-gradient(
            180deg,
            rgba(6, 11, 17, .70),
            rgba(6, 11, 17, .92)
        ) !important;
}

[class$="-header"] > span,
[class$="-title"] > span,
[class*="-header"] > span,
[class*="-title"] > span,
.section-title > span {
    color: var(--hr-red-2) !important;
}

.section-title h2,
[class$="-header"] h1,
[class*="-header"] h1 {
    color: #f4f6f8 !important;
    font-family: Georgia, "Times New Roman", serif;
}

.rankings-section,
.news-section {
    padding: 64px 0 !important;
}

.ranking-grid,
.news-grid {
    gap: 12px !important;
}

.ranking-card,
.news-card,
.account-card,
.account-action-card,
.mall-card,
.roulette-stat-card,
.event-card,
.pp-badge,
.admin-tool-card,
.admin-stat-card {
    border: 1px solid var(--hr-line) !important;
    border-radius: var(--hr-radius) !important;
    background:
        linear-gradient(
            180deg,
            rgba(13, 23, 32, .96),
            rgba(8, 15, 22, .97)
        ) !important;
    box-shadow:
        inset 0 1px rgba(255, 255, 255, .018),
        0 8px 24px rgba(0, 0, 0, .16) !important;
}

.ranking-card:hover,
.news-card:hover,
.account-action-card:hover,
.mall-card:hover,
.event-card:hover,
.admin-tool-card:hover {
    border-color: #38546b !important;
    transform: translateY(-2px);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, .25),
        0 0 0 1px rgba(66, 164, 255, .05) !important;
}

.ranking-header,
.news-content,
.mall-card-body {
    border-color: var(--hr-line-soft) !important;
}

.ranking-player {
    border-color: rgba(80, 108, 132, .18) !important;
}

.ranking-player .number {
    color: var(--hr-gold-2) !important;
}

.ranking-player strong {
    color: #f2c858 !important;
}

.home-ranking-button a,
[class*="-action-button"],
[class*="-primary"],
button[type="submit"],
input[type="submit"] {
    border-radius: 2px !important;
}


/* =========================================================
   FORMS / TABLES / ALERTS
========================================================= */

form input:not([type="checkbox"]):not([type="radio"]),
form select,
form textarea,
[class*="-search"] input,
[class*="-search"] select {
    border: 1px solid #2c3e4d !important;
    background: #081119 !important;
    color: #ecf2f7 !important;
}

form input::placeholder,
form textarea::placeholder {
    color: #566b7e !important;
}

button,
.btn,
a[class*="-btn"],
a[class*="-button"],
button[class*="-button"] {
    border-radius: 2px !important;
}

button[type="submit"],
.btn-danger,
.btn-primary,
[class*="-save"],
[class*="-create"],
[class*="-claim"],
[class*="-buy"] {
    border-color: #b7242e !important;
    background:
        linear-gradient(
            180deg,
            #d82934,
            #961a22
        ) !important;
    color: #fff !important;
    box-shadow:
        inset 0 1px rgba(255, 255, 255, .10);
}

table,
[class*="-table"] {
    border-color: #293a49 !important;
    background: rgba(8, 16, 23, .93) !important;
}

table thead th,
[class*="-table"] th {
    border-color: #263746 !important;
    background: #09121a !important;
    color: #7893aa !important;
}

table tbody td,
[class*="-table"] td {
    border-color: rgba(65, 91, 113, .20) !important;
}

.alert,
[class*="-alert"] {
    border-radius: 2px !important;
    background: rgba(14, 24, 33, .96) !important;
}

[class*="-alert"].success,
.alert-success {
    border-color: #27714b !important;
    color: #66e6a1 !important;
}

[class*="-alert"].error,
.alert-danger {
    border-color: #7c3039 !important;
    color: #ff7a84 !important;
}


/* =========================================================
   MALL
========================================================= */

.mall-page,
.mall-detail-page {
    position: relative;
    min-height: 780px;
}

.mall-page::before,
.mall-detail-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 330px;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(4, 8, 12, .15),
            rgba(7, 11, 16, .96)
        ),
        url('/images/theme/classic-hero-bg.svg') center 44% / cover no-repeat;
    opacity: .72;
}

.mall-page > *,
.mall-detail-page > * {
    position: relative;
    z-index: 2;
}

.mall-header,
.mall-detail-header {
    padding-top: 38px !important;
}

.mall-grid {
    gap: 12px !important;
}

.mall-card {
    overflow: visible !important;
}

.mall-card h3,
.mall-item-name {
    font-family: Georgia, "Times New Roman", serif !important;
}

.mall-card img,
.mall-item-image img {
    filter:
        drop-shadow(0 10px 18px rgba(0, 0, 0, .38));
}

.mall-category-button.active,
.mall-filter a.active,
.category-filter a.active {
    border-color: var(--hr-red-2) !important;
    background: #3a1419 !important;
    color: #fff !important;
}

.mall-price,
.item-price,
[class*="price"] strong {
    color: var(--hr-gold-2) !important;
}


/* =========================================================
   RANKING / TOP SPENDER
========================================================= */

.ranking-page {
    position: relative;
}

.ranking-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 280px;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(5, 9, 14, .20),
            rgba(7, 11, 16, .94)
        ),
        url('/images/theme/classic-hero-bg.svg') center 28% / cover no-repeat;
    opacity: .72;
}

.ranking-page > * {
    position: relative;
    z-index: 2;
}

.spender-section,
.top-spender-section,
[class*="spender-card"] {
    border-color: rgba(181, 133, 35, .55) !important;
}

.spender-filter a.active {
    border-color: var(--hr-red-2) !important;
    background: #7b171e !important;
}

.spender-amount,
.spender-value,
[class*="spender"] strong {
    color: var(--hr-gold-2);
}

.player-profile-link {
    color: #e7edf2 !important;
}

.player-profile-link:hover {
    color: #ff5a64 !important;
}


/* =========================================================
   DAILY LOGIN
========================================================= */

.daily-login-page,
.daily-page {
    position: relative;
}

.daily-login-page [class*="reward"],
.daily-page [class*="reward"] {
    border-radius: var(--hr-radius) !important;
}

.daily-login-page img,
.daily-page img {
    image-rendering: auto;
}

.daily-login-page [class*="ready"],
.daily-page [class*="ready"] {
    border-color: var(--hr-red-2) !important;
}

.daily-login-page [class*="locked"],
.daily-page [class*="locked"] {
    opacity: .68;
}

.daily-login-page [class*="calendar"],
.daily-page [class*="calendar"] {
    gap: 9px !important;
}


/* =========================================================
   PLAYER PROFILE / BADGES
========================================================= */

.pp-page,
.pps-page {
    background:
        linear-gradient(
            180deg,
            rgba(6, 11, 17, .78),
            rgba(6, 11, 17, .95)
        ) !important;
}

.pp-hero {
    border-color: #314557 !important;
    background:
        linear-gradient(
            120deg,
            rgba(16, 28, 39, .98),
            rgba(8, 15, 22, .98)
        ) !important;
}

.pp-avatar {
    border-color: #8d2730 !important;
    background:
        radial-gradient(
            circle at 40% 30%,
            #3c171d,
            #1b0b0f
        ) !important;
    box-shadow: 0 0 25px rgba(227, 41, 52, .10);
}

.pp-badge.badge-gold {
    background:
        linear-gradient(
            135deg,
            rgba(73, 53, 10, .20),
            rgba(10, 18, 26, .97)
        ) !important;
}

.pp-featured-badges span {
    background: rgba(15, 22, 29, .94) !important;
}


/* =========================================================
   EVENT / NEWS / DOWNLOAD / TOPUP / ACCOUNT / TRANSACTIONS
========================================================= */

.event-filter a,
.spender-filter a,
[class*="-filter"] a {
    border-radius: 2px !important;
}

.event-card.featured {
    border-color: rgba(194, 145, 44, .68) !important;
    box-shadow:
        inset 0 2px 0 var(--hr-gold),
        var(--hr-shadow) !important;
}

.news-card {
    overflow: hidden;
}

.news-image,
.event-card-image {
    background:
        linear-gradient(
            135deg,
            #0b1a26,
            #171016
        ) !important;
}

.account-page,
.transaction-page,
.topup-page,
.download-page,
.webpoint-page,
.notification-page,
.rc-page {
    min-height: 700px;
}

.account-action-card {
    position: relative;
    overflow: hidden;
}

.account-action-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background:
        linear-gradient(
            var(--hr-red),
            transparent
        );
    opacity: .75;
}


/* =========================================================
   ROULETTE
========================================================= */

.roulette-page {
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(36, 52, 69, .17),
            transparent 42%
        ),
        rgba(6, 11, 17, .90) !important;
}

.roulette-wheel-wrapper,
.roulette-wheel,
[class*="roulette"][class*="card"] {
    border-color: #334657 !important;
}

.roulette-pointer {
    color: var(--hr-red-2) !important;
}

.jackpot,
[class*="jackpot"] {
    color: var(--hr-gold-2) !important;
}


/* =========================================================
   ADMIN SHELL
========================================================= */

.classic-admin-body {
    overflow-x: hidden;
    background:
        linear-gradient(
            rgba(5, 9, 14, .90),
            rgba(5, 9, 14, .97)
        ),
        url('/images/theme/classic-admin-bg.svg') center / cover fixed !important;
}

.classic-admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
}

.classic-admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    border-right: 1px solid #203141;
    background:
        linear-gradient(
            180deg,
            rgba(8, 16, 24, .99),
            rgba(5, 11, 17, .99)
        );
    box-shadow: 8px 0 34px rgba(0, 0, 0, .28);
    z-index: 1000;
}

.classic-admin-logo {
    height: 76px;
    padding: 0 19px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #1f3040;
}

.classic-admin-logo a {
    color: #fff;
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-style: italic;
}

.classic-admin-logo a > span {
    color: #f2f2f2;
}

.classic-admin-logo a > b {
    color: var(--hr-red-2);
}

.classic-admin-logo small {
    display: block;
    margin-top: 3px;
    color: var(--hr-gold-2);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 7px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 2px;
}

.classic-admin-nav {
    padding: 14px 9px 110px;
}

.classic-admin-nav-label {
    margin: 18px 10px 7px;
    color: #527793;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.classic-admin-nav a {
    min-height: 39px;
    margin-bottom: 3px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid transparent;
    color: #aebcca;
    font-size: 8px;
    font-weight: 700;
    text-decoration: none;
}

.classic-admin-nav a > span {
    width: 20px;
    color: #7894aa;
    text-align: center;
    font-size: 13px;
}

.classic-admin-nav a:hover,
.classic-admin-nav a.active {
    border-color: #693039;
    background:
        linear-gradient(
            90deg,
            rgba(139, 26, 35, .35),
            rgba(139, 26, 35, .08)
        );
    color: #fff;
}

.classic-admin-nav a.active {
    box-shadow: inset 2px 0 var(--hr-red-2);
}

.classic-admin-nav a.active > span {
    color: #ff616b;
}

.classic-admin-sidebar-footer {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 14px;
    padding: 11px;
    display: flex;
    gap: 9px;
    align-items: center;
    border: 1px solid #263b4d;
    background: #0a141d;
}

.classic-server-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hr-green);
    box-shadow: 0 0 10px rgba(66, 217, 139, .55);
}

.classic-admin-sidebar-footer b,
.classic-admin-sidebar-footer small {
    display: block;
}

.classic-admin-sidebar-footer b {
    color: #d9e4ed;
    font-size: 7px;
}

.classic-admin-sidebar-footer small {
    margin-top: 2px;
    color: #617b91;
    font-size: 6px;
}

.classic-admin-main {
    min-width: 0;
}

.classic-admin-topbar {
    height: 76px;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 800;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #203141;
    background: rgba(6, 12, 18, .95);
    backdrop-filter: blur(12px);
}

.classic-admin-toggle {
    display: none;
    width: 40px;
    height: 38px;
    border: 1px solid #2f4354;
    background: #0b151e;
    color: #e0e8ef;
}

.classic-admin-topbar-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.classic-admin-topbar-title span {
    color: #6f89a0;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.classic-admin-topbar-title b {
    color: #e8bf5b;
    font-size: 8px;
    letter-spacing: 1.7px;
}

.classic-admin-user {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.classic-admin-user-avatar {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #6c4b31;
    border-radius: 50%;
    background: #241711;
    color: #efc272;
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 800;
}

.classic-admin-user b,
.classic-admin-user small {
    display: block;
}

.classic-admin-user b {
    color: #e9eef3;
    font-size: 8px;
}

.classic-admin-user small {
    margin-top: 2px;
    color: #657e94;
    font-size: 6px;
}

.classic-admin-user > a {
    min-height: 34px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #8d2028;
    background: #3e1116;
    color: #ff8c94;
    font-size: 7px;
    font-weight: 900;
    text-decoration: none;
}

.classic-admin-content {
    padding: 0 !important;
}

/* Remove duplicate full viewport styling from old admin pages */
.classic-admin-content > section[class*="admin"],
.classic-admin-content > .admin-page {
    min-height: 0 !important;
    padding-top: 38px !important;
    background: transparent !important;
}

.classic-admin-content .container {
    width: min(1180px, calc(100% - 42px)) !important;
}

.admin-header,
[class^="a"][class*="-header"] {
    padding: 0 !important;
}

.admin-stat-card,
.admin-tool-card,
[class*="admin"][class*="-card"] {
    border-color: #2a3c4c !important;
    background:
        linear-gradient(
            180deg,
            rgba(13, 23, 32, .97),
            rgba(8, 15, 22, .97)
        ) !important;
}

.admin-tool-card {
    position: relative;
    overflow: hidden;
}

.admin-tool-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            var(--hr-red),
            transparent
        );
    opacity: .55;
}

.admin-tool-icon {
    border-color: #51431f !important;
    background: #17150e !important;
    color: var(--hr-gold-2) !important;
}

.classic-admin-content button[type="submit"] {
    border-color: #ac242d !important;
}


/* =========================================================
   FOOTER
========================================================= */

.classic-footer {
    padding: 42px 0 36px !important;
    border-top: 1px solid #203242 !important;
    background:
        linear-gradient(
            180deg,
            rgba(6, 12, 18, .98),
            rgba(4, 8, 12, 1)
        ) !important;
}

.classic-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 35px;
    text-align: left !important;
}

.classic-footer .classic-brand {
    min-width: auto;
    width: fit-content;
}

.classic-footer .classic-brand::after {
    display: none;
}

.classic-footer-brand p {
    max-width: 280px;
    margin: 16px 0 18px;
    color: #72879a;
    font-size: 9px;
    line-height: 1.7;
}

.classic-footer-brand > small {
    color: #536a7c;
    font-size: 7px;
}

.classic-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.classic-footer-column b {
    margin-bottom: 5px;
    color: #dce5ec;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 10px;
}

.classic-footer-column a {
    color: #7c90a2;
    font-size: 8px;
    text-decoration: none;
}

.classic-footer-column a:hover {
    color: #fff;
}


/* =========================================================
   SCROLLBAR
========================================================= */

* {
    scrollbar-width: thin;
    scrollbar-color: #31495d #081018;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #081018;
}

::-webkit-scrollbar-thumb {
    border: 2px solid #081018;
    background: #31495d;
}

::-webkit-scrollbar-thumb:hover {
    background: #486882;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .classic-main-nav > a {
        padding: 0 9px !important;
        font-size: 10px !important;
    }

    .classic-brand {
        min-width: 150px;
    }

    .classic-admin-shell {
        grid-template-columns: 220px minmax(0, 1fr);
    }

}


@media (max-width: 920px) {

    .classic-main-header {
        height: 68px !important;
    }

    .nav-container {
        height: 68px !important;
    }

    .classic-nav-toggle {
        display: block;
    }

    .classic-main-nav {
        position: fixed !important;
        left: 18px;
        right: 18px;
        top: 78px;
        max-height: calc(100vh - 96px);
        padding: 8px;
        display: none !important;
        flex-direction: column;
        align-items: stretch !important;
        gap: 2px !important;
        overflow-y: auto;
        border: 1px solid #2b4052;
        background: rgba(6, 13, 20, .99);
        box-shadow: var(--hr-shadow);
    }

    .classic-main-nav.open {
        display: flex !important;
    }

    .classic-main-nav > a {
        min-height: 42px;
        height: 42px;
        justify-content: flex-start;
        padding: 0 12px !important;
    }

    .classic-main-nav > a::after {
        left: 0;
        right: auto;
        top: 8px;
        bottom: 8px;
        width: 2px;
        height: auto;
        transform: scaleY(0);
    }

    .classic-main-nav > a:hover::after,
    .classic-main-nav > a.active::after {
        transform: scaleY(1);
    }

    .classic-main-nav .login-btn {
        margin: 4px 0 0;
    }

    .notification-nav-link {
        width: auto;
    }

    .hero,
    .hero-overlay {
        min-height: 560px !important;
    }

    .server-status {
        margin-top: -42px;
    }

    .classic-admin-shell {
        display: block;
    }

    .classic-admin-sidebar {
        position: fixed;
        left: -260px;
        top: 0;
        width: 250px;
        transition: left .2s ease;
    }

    .classic-admin-shell.sidebar-open .classic-admin-sidebar {
        left: 0;
    }

    .classic-admin-shell.sidebar-open::after {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 900;
        background: rgba(0, 0, 0, .58);
    }

    .classic-admin-shell.sidebar-open .classic-admin-sidebar {
        z-index: 1100;
    }

    .classic-admin-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .classic-admin-topbar {
        height: 66px;
        padding: 0 16px;
    }

}


@media (max-width: 760px) {

    .container {
        width: min(100% - 26px, var(--hr-max)) !important;
    }

    .hero-content {
        padding-top: 70px !important;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 62px) !important;
    }

    .hero h2 {
        font-size: 14px !important;
        letter-spacing: 7px !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-download,
    .btn-register {
        width: min(100%, 310px);
    }

    .status-grid {
        grid-template-columns: 1fr !important;
    }

    .status-box {
        min-height: 78px;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(81, 110, 136, .25);
    }

    .status-box:last-child {
        border-bottom: 0;
    }

    .classic-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .classic-admin-user > div {
        display: none;
    }

}


@media (max-width: 520px) {

    .classic-brand {
        min-width: auto;
        padding-right: 0;
    }

    .classic-brand::after {
        display: none;
    }

    .classic-brand-happy,
    .classic-brand-ran {
        font-size: 24px;
    }

    .classic-brand small {
        font-size: 10px;
    }

    .classic-footer-grid {
        grid-template-columns: 1fr;
    }

    .classic-admin-topbar-title span {
        display: none;
    }

    .classic-admin-user > a {
        padding: 0 8px;
    }

}
