@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --text-main: #e0e0e0;
    --text-gold: #e8c881;
    --text-gold-hover: #fff3c9;
    --text-aol: #6abdf4;
    --text-uof: #f46a6a;

    --bg-dark: #070709;
    --bg-panel: rgba(18, 18, 22, 0.6);
    --bg-panel-hover: rgba(25, 25, 30, 0.7);

    --border-gold: rgba(232, 200, 129, 0.3);
    --border-gold-glow: #e8c881;
    --border-light: rgba(255, 255, 255, 0.05);

    --primary-font: 'Inter', sans-serif;
    --heading-font: 'Cinzel', serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    background-color: var(--bg-dark);
    /* Large Shaiya Artwork Background */
    background: url('../assets/background.png') no-repeat top center fixed;
    background-size: cover;
    color: var(--text-main);
    line-height: 1.6;
    font-size: 14.5px;
    overflow-x: hidden;
    cursor: url('../assets/01.png'), auto;
}

a,
button,
.cursor-pointer,
.drop-card-header,
.filter-btn {
    cursor: url('../assets/03.png'), pointer !important;
}

/* Base dark overlay for readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(3, 3, 5, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: -1;
    pointer-events: none;
}

a {
    color: var(--text-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--text-gold-hover);
    text-shadow: 0 0 10px rgba(232, 200, 129, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(232, 200, 129, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-gold);
}

/* Top Bar */
.top-bar {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    height: 45px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

.top-bar-inner {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.top-links a {
    margin-right: 25px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.top-links i,
.top-social i {
    margin-right: 6px;
    color: var(--text-gold);
}

.top-social a {
    margin-left: 18px;
    font-size: 16px;
}

/* Wrapper */
.main-wrapper {
    width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

/* Header */
.header {
    height: 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-area {
    text-align: left;
}

.logo {
    font-family: var(--heading-font);
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(232, 200, 129, 0.3), 0 5px 15px rgba(0, 0, 0, 0.9);
    line-height: 1;
    letter-spacing: 2px;
}

.logo span {
    color: var(--text-gold);
}

.slogan {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    margin-left: 4px;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 42px;
    background: rgba(232, 200, 129, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--text-gold);
    color: #fff;
    font-family: var(--heading-font);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.btn-action:hover::before {
    left: 150%;
}

.btn-action i {
    margin-right: 15px;
    font-size: 18px;
    color: var(--text-gold);
    transition: transform 0.3s;
}

.btn-action:hover {
    background: rgba(232, 200, 129, 0.2);
    box-shadow: 0 5px 20px rgba(232, 200, 129, 0.2);
    transform: translateY(-2px);
}

.btn-action:hover i {
    transform: scale(1.2);
}

/* Nav */
.main-nav {
    position: sticky;
    top: 5px;
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    height: 60px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}


.main-nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.main-nav a {
    color: #dfdfdf;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    padding: 0 25px;
    height: 60px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    border-radius: var(--radius-md);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--text-gold);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text-gold);
    background: rgba(255, 255, 255, 0.03);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: calc(100% - 30px);
}

/* Dropdown Menu CSS */
.has-dropdown {
    position: relative;
    z-index: 1001;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: max-content;
    z-index: 9999;
    flex-direction: column;
    padding: 5px 0;
}

.has-dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    height: 40px;
    padding: 0 20px;
    justify-content: center;
    border-radius: 0;
    font-size: 13px;
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none;
}

.site-footer {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(232, 200, 129, 0.1);
}

/* Content Layout (3 Columns) */
.content-container {
    display: flex;
    gap: 25px;
}

.sidebar {
    width: 364px;
    flex-shrink: 0;
}

.content-main {
    flex-grow: 1;
    min-width: 0;
}

/* Panels (Glassmorphism Modern Classic) */
.side-box,
.content-area-box,
.news-article {
    background: var(--bg-panel);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.news-article:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 200, 129, 0.6);
}

.box-header,
.content-header,
.news-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px 20px;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-header i,
.content-header i {
    margin-right: 12px;
    font-size: 16px;
    opacity: 0.9;
}

.box-content,
.content-body,
.news-body {
    padding: 20px;
}

/* User Panel inputs */
.login-box input,
.generic-form input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 15px;
    margin-bottom: 12px;
    font-family: var(--primary-font);
    font-size: 14px;
    border-radius: var(--radius-sm);
    outline: none;
    transition: all 0.3s;
}

.login-box input:focus,
.generic-form input:focus {
    border-color: var(--text-gold);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(232, 200, 129, 0.1);
}

.btn-login,
.btn-submit {
    width: 100%;
    background: var(--text-gold);
    color: #111;
    border: none;
    padding: 10px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 15px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.btn-small {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gold);
    border: 1px solid var(--border-gold);
    padding: 8px 16px;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-login:hover,
.btn-submit:hover {
    background: var(--text-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 200, 129, 0.3);
}

.btn-small:hover {
    background: var(--text-gold);
    color: #000;
}

.login-links {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

/* Server Info Table */
.server-info-box {
    padding: 0 !important;
}

.server-info-table {
    width: 100%;
    border-collapse: collapse;
}

.server-info-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.server-info-table tr:last-child {
    border-bottom: none;
}

.server-info-table td {
    padding: 10px 15px;
    font-size: 13px;
    vertical-align: top;
}

.server-info-table .info-label {
    color: var(--text-gold);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 45%;
    white-space: nowrap;
}

.server-info-table .info-value {
    color: #e0e0e0;
    font-weight: 500;
    text-align: right;
    font-size: 13px;
    line-height: 1.5;
}

/* Status Box */
.status-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    font-weight: 500;
}

.status-online {
    color: #6ee7b7;
    text-shadow: 0 0 10px rgba(110, 231, 183, 0.4);
}

.status-bars {
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.faction-bar {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.faction-bar:last-child {
    margin-bottom: 0;
}

.faction-name {
    width: 40px;
    font-weight: 700;
    font-size: 13px;
}

.faction-name.aol {
    color: var(--text-aol);
}

.faction-name.uof {
    color: var(--text-uof);
}

.bar-bg {
    flex-grow: 1;
    height: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    margin: 0 12px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    transition: width 1s ease-in-out;
}

.aol-fill {
    background: linear-gradient(90deg, #1d4ed8, var(--text-aol));
    box-shadow: 0 0 8px var(--text-aol);
}

.uof-fill {
    background: linear-gradient(90deg, #b91c1c, var(--text-uof));
    box-shadow: 0 0 8px var(--text-uof);
}

.faction-pct {
    width: 35px;
    text-align: right;
    font-size: 13px;
    font-weight: 500;
}

.total-online {
    text-align: center;
    margin-top: 15px;
    color: #a3a3a3;
    font-size: 14px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#online-count {
    color: var(--text-gold);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 22px;
    display: block;
    margin-top: 5px;
    text-shadow: 0 0 15px rgba(232, 200, 129, 0.4);
}

/* Header Statistics */
.header-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(10, 10, 12, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 18px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0 20px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.4);
    flex: 1;
    max-width: fit-content;
}

.h-stats-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
}

.h-stats-item img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.h-stats-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.15);
}


.h-stats-online {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--heading-font);
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
    white-space: nowrap;
    margin-left: 5px;
}

.h-stats-online span {
    color: var(--text-gold);
    font-size: 15px;
    text-shadow: 0 0 10px rgba(232, 200, 129, 0.3);
}

.aol span { color: #60a5fa; }
.uof span { color: #f87171; }

/* Banner-Style Online Statistics (Final Reference Match) */
.banner-stats-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0 10px;
}

.banner-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    width: 100%;
}

.banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 75px;
}

.banner-img-wrapper {
    position: relative;
    width: 100%;
    height: 90px;
    margin-bottom: 10px;
}

.banner-img-wrapper img {
    width: 60%;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    /* Reflection Effect */
    -webkit-box-reflect: below 1px linear-gradient(transparent, transparent 70%, rgba(0, 0, 0, 0.4));
}



.banner-pct {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
    /* Account for reflection space */
    color: #fff;
}

.banner-item.aol .banner-pct {
    color: #60a5fa;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
}

.banner-item.uof .banner-pct {
    color: #f87171;
    text-shadow: 0 0 10px rgba(248, 113, 113, 0.3);
}

.online-total-row {
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 700;
    color: #94a3b8;
    /* Blue-ish steel tint from reference */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;
    text-align: center;
    width: 100%;
}

.online-total-row span {
    color: #fff;
    margin-left: 5px;
}

/* News Specific */
.news-header h2 {
    font-size: 20px;
    text-shadow: none;
    color: #fff;
}

.news-date {
    color: var(--text-gold);
    font-size: 12px;
    font-weight: 500;
    background: rgba(232, 200, 129, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.news-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.news-body p {
    margin-bottom: 15px;
    color: #d1d5db;
}

.read-more {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 22px;
    color: var(--text-gold);
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-top: 10px;
    transition: all 0.3s;
}

.read-more:hover {
    background: var(--text-gold);
    color: #000;
    box-shadow: 0 5px 15px rgba(232, 200, 129, 0.3);
}

/* Boss Timers */
.boss-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.boss-item:last-child {
    border-bottom: none;
}

.boss-name {
    color: #f3f4f6;
    font-weight: 600;
    font-size: 13px;
}

.boss-time {
    font-family: 'Inter', monospace;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.4);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.time-alive {
    color: #6ee7b7;
    box-shadow: inset 0 0 0 1px rgba(110, 231, 183, 0.2);
}

.time-dead {
    color: #fca5a5;
    box-shadow: inset 0 0 0 1px rgba(252, 165, 165, 0.2);
}

/* Ranking Table & Others */
.ranking-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.ranking-table th {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 1px solid var(--border-gold);
    color: var(--text-gold);
    font-family: var(--heading-font);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}

.ranking-table td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.ranking-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.ranking-table tr:last-child td {
    border-bottom: none;
}

.rank-1,
.rank-2,
.rank-3 {
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    width: 35px;
}

.rank-1 {
    color: #fbbf24;
}

.rank-2 {
    color: #9ca3af;
}

.rank-3 {
    color: #b45309;
}

.aol-text {
    color: var(--text-aol);
    font-weight: 600;
}

.uof-text {
    color: var(--text-uof);
    font-weight: 600;
}

/* Support Packages Item Mall */
.mall-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mall-item {
    background: rgba(10, 10, 12, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mall-item:hover {
    border-color: var(--text-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(232, 200, 129, 0.15);
}

.mall-item h4 {
    color: #dfdfdf;
    font-family: var(--heading-font);
    font-size: 15px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.mall-item .sp-amount {
    color: #fff;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.mall-item .price {
    color: #dfdfdf;
    font-size: 14px;
    margin-bottom: 20px;
}

.mall-item p {
    color: #a3a3a3;
    font-size: 12px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.btn-donate {
    background: rgba(232, 200, 129, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--text-gold);
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-donate:hover {
    background: var(--text-gold);
    color: #111;
    box-shadow: 0 0 15px rgba(232, 200, 129, 0.4);
}

.ribbon {
    position: absolute;
    top: 25px;
    right: -30px;
    background: #34bc5a;
    color: #fff;
    padding: 5px 30px;
    font-size: 11px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Download Page */
.download-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dl-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.dl-btn:hover {
    border-color: var(--text-gold);
    background: rgba(232, 200, 129, 0.05);
    transform: translateX(5px);
}

.dl-icon {
    font-size: 35px;
    color: var(--text-gold);
    margin-right: 20px;
}

.dl-text h3 {
    color: #fff;
    font-family: var(--heading-font);
    font-size: 18px;
}

.dl-text p {
    color: #9ca3af;
    font-size: 13px;
    margin-top: 4px;
}

.dl-action {
    background: var(--text-gold);
    color: #000;
    padding: 10px 25px;
    border-radius: 20px;
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

/* Footer */
.site-footer {
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    margin-top: 60px;
    text-align: center;
    color: #6b7280;
}

.footer-inner {
    width: 1200px;
    margin: 0 auto;
}

.footer-inner p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    margin: 0 15px;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--text-gold);
}

/* Form Styles */
.form-group label {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 6px;
    display: block;
}

/* Generic List/Text Content */
.info-block {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 25px;
}

.info-block h3 {
    color: var(--text-gold);
    font-family: var(--heading-font);
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.info-block h3 i {
    margin-right: 10px;
}

.info-list li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    display: flex;
    margin-left: 0;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li span.val {
    font-weight: 600;
    color: #fff;
    margin-left: auto;
}

/* Responsive adjustments */
@media screen and (max-width: 1240px) {

    .main-wrapper,
    .top-bar-inner,
    .footer-inner {
        width: 100%;
        padding: 0 20px;
    }

    .content-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
    }

    .side-box {
        flex: 1;
        min-width: 320px;
        margin-bottom: 0;
    }

    .mall-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 40px 0;
        text-align: center;
        gap: 30px;
    }

    .logo-area {
        text-align: center;
    }

    .main-nav {
        height: auto;
        padding: 10px 0;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .main-nav a {
        height: 40px;
    }

    .mall-grid {
        grid-template-columns: 1fr;
    }
}

/* Modernized Drop List Styles */
.drop-page-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.drop-sidebar {
    width: 260px;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    flex-shrink: 0;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.drop-sidebar-header {
    font-family: var(--heading-font);
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
}

.drop-zone-list {
    list-style: none;
    padding: 0;
}

.drop-zone-item a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    color: #9ca3af;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    margin-bottom: 4px;
}

.drop-zone-item a i {
    width: 20px;
    margin-right: 12px;
    color: var(--text-gold);
    text-align: center;
}

.drop-zone-item a:hover,
.drop-zone-item.active a {
    background: rgba(232, 200, 129, 0.1);
    color: #fff;
    transform: translateX(5px);
}

.drop-main {
    flex-grow: 1;
}

.drop-header-box {
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 20px 25px;
    margin-bottom: 25px;
}

.drop-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 20px;
}

.drop-filters {
    display: flex;
    gap: 8px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(232, 200, 129, 0.1);
    color: #eee;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--text-gold);
    color: #000;
}

.drop-search {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.drop-search-form {
    display: flex;
    width: 100%;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    padding: 2px 2px 2px 15px;
    border: 1px solid rgba(232, 200, 129, 0.2);
}

.drop-search-form input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 5px 0;
    width: 100%;
    outline: none;
    font-size: 13px;
}

.search-btn {
    background: rgba(232, 200, 129, 0.1) !important;
    border: none !important;
    color: var(--text-gold) !important;
    padding: 5px 12px !important;
    border-radius: 2px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    margin-left: 5px;
}

.search-btn:hover {
    background: var(--text-gold) !important;
    color: #000 !important;
    transform: translateY(-1px);
}

.drop-legend {
    display: flex;
    gap: 30px;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #9ca3af;
}

.legend-item span {
    min-width: 45px;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.tag-boss {
    background: linear-gradient(135deg, #991b1b, #ef4444);
    box-shadow: 0 0 8px rgba(153, 27, 27, 0.4);
}

.tag-miniboss {
    background: linear-gradient(135deg, #9a3412, #f97316);
}

.tag-mobs {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    box-shadow: 0 0 8px rgba(30, 64, 175, 0.4);
}

.tag-chance {
    background: linear-gradient(135deg, #b45309, #f59e0b);
    border-radius: 6px;
    width: auto;
    min-width: 60px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.drop-card {
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    overflow: hidden;
}

.drop-card-header {
    background: rgba(232, 200, 129, 0.05);
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drop-card-title h3 {
    margin: 0;
    font-size: 18px;
}

.drop-card-header .fa-chevron-down {
    transition: transform 0.3s ease;
}

.drop-card.collapsed .fa-chevron-down {
    transform: rotate(-90deg);
}

.drop-card.collapsed .drop-sections-container,
.drop-card.collapsed .drop-sections-container-dynamic {
    display: none;
}

.drop-card-subtitle {
    font-size: 12px;
    color: #6b7280;
}

.drop-sections-container,
.drop-sections-container-dynamic {
    padding: 25px 30px;
}

.drop-group-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    margin-top: 25px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--text-gold);
    border-radius: 0 4px 4px 0;
}

.drop-group-header:first-child {
    margin-top: 0;
}

.drop-group-header h4 {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #fff;
    font-family: var(--heading-font);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drop-item-row {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    transition: all 0.3s;
}

.drop-item-row:hover {
    border-color: rgba(232, 200, 129, 0.3);
    background: rgba(232, 200, 129, 0.03);
}

.drop-item-name {
    font-size: 14px;
    color: #d1d5db;
}

.drop-item-pct {
    background: rgba(217, 119, 6, 0.2);
    color: #fbbf24;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
    border: 1px solid rgba(217, 119, 6, 0.3);
}

@media screen and (max-width: 1024px) {
    .drop-page-container {
        flex-direction: column;
    }

    .drop-sidebar {
        width: 100%;
    }
}

/* Game Info Modernized Styles */
.info-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.summary-box {
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 15px;
    text-align: center;
}

.summary-box .label {
    display: block;
    color: var(--text-gold);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: var(--heading-font);
}

.summary-box .value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.summary-box .sub-value {
    display: block;
    font-size: 11px;
    color: #9ca3af;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-card {
    background: rgba(15, 15, 20, 0.4);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
}

.feature-card h3 {
    color: var(--text-gold);
    font-family: var(--heading-font);
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(232, 200, 129, 0.1);
    padding-bottom: 12px;
}

.feature-card h3 i {
    margin-right: 12px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #d1d5db;
    font-size: 13.5px;
}

.feature-list li::before {
    content: "•";
    color: var(--text-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media screen and (max-width: 800px) {
    .info-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Global Back Button */
.admin-back-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Custom Modal Styles */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.custom-modal-content {
    background: #111;
    border: 1px solid var(--text-gold);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(232, 200, 129, 0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.custom-modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-modal-header h2 {
    font-family: var(--heading-font);
    color: var(--text-gold);
    margin: 0;
    font-size: 20px;
    text-shadow: none;
}

.custom-modal-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.custom-modal-close:hover {
    opacity: 1;
    color: var(--text-gold);
}

.custom-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.custom-modal-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Donation Page Redesign */
.donation-methods-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.donation-methods-title {
    text-align: center;
    color: var(--text-gold);
    font-family: var(--heading-font);
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.method-card {
    background: rgba(10, 10, 12, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.method-card.active {
    border-color: var(--text-gold);
    box-shadow: 0 0 15px rgba(232, 200, 129, 0.1);
}

.method-card h3 {
    color: #fff;
    font-family: var(--heading-font);
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.method-card p {
    font-size: 13px;
    color: #a3a3a3;
    line-height: 1.5;
}

.method-card p strong {
    color: #fff;
}

.method-card .highlight {
    color: var(--text-gold);
    font-weight: 600;
}

.manual-info-banner {
    background: rgba(30, 41, 59, 0.3);
    border-left: 4px solid #3b82f6;
    padding: 20px;
    /* border-radius: var(--radius-sm); */
    margin-bottom: 40px;
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

.manual-info-banner a {
    color: #60a5fa;
    text-decoration: underline;
}

.manual-info-banner strong {
    color: #f8fafc;
}

.packages-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.packages-table th {
    text-align: left;
    padding: 15px;
    color: var(--text-gold);
    font-family: var(--heading-font);
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(232, 200, 129, 0.2);
}

.package-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.package-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.package-row td {
    padding: 20px 15px;
    vertical-align: middle;
}

.package-selection {
    width: 40px;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.custom-checkbox:checked {
    background: var(--text-gold);
}

.custom-checkbox:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: #111;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.points-val {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
}

.bonus-items-cell {
    display: flex;
    gap: 8px;
}

.item-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 20px;
}

.item-count {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: rgba(232, 200, 129, 0.9);
    color: #111;
    font-size: 10px;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

.amount-val {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
}

.bonus-pct {
    font-weight: 700;
    color: var(--text-gold);
    font-size: 16px;
}

.btn-donate-paypal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    margin: 0 auto;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-donate-paypal:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-donate-paypal i {
    font-size: 24px;
}

.package-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 10px;
    vertical-align: middle;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.badge-popular {
    background: linear-gradient(135deg, #b45309, #f59e0b);
    color: #000;
    box-shadow: 0 0 8px rgba(180, 83, 9, 0.4);
}

.badge-value {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: #fff;
    box-shadow: 0 0 8px rgba(30, 64, 175, 0.4);
}

.item-icon {
    position: relative;
}

.item-icon:hover {
    border-color: #fff;
    cursor: help;
}

/* Tooltip Style */
.item-tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    background: #0a0a0c;
    border: 2px solid #e8c881;
    border-radius: 4px;
    padding: 15px;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.item-icon:hover .item-tooltip {
    visibility: visible;
    opacity: 1;
    bottom: 140%;
}

.tooltip-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: rgba(232, 200, 129, 0.1);
    border: 1px solid #e8c881;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.tooltip-title {
    color: #e8c881;
    font-family: var(--heading-font);
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 1px;
}

.tooltip-desc {
    color: #fff;
    font-size: 10px;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.tooltip-qty {
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .methods-grid {
        grid-template-columns: 1fr;
    }

    .packages-table {
        font-size: 12px;
    }
}

/* --- Admin Panel Styles --- */
.admin-page {
    font-family: 'Futura PT', sans-serif !important;
}


        /* --- Item Stats Tooltip --- */
        .item-name-wrapper {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }

        .item-stats-tooltip {
            visibility: hidden;
            width: 250px;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(15px);
            color: #eee;
            text-align: left;
            border-radius: 8px;
            border: 1px solid rgba(241, 169, 78, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(241, 169, 78, 0.1);
            padding: 15px;
            position: absolute;
            z-index: 1000;
            bottom: 125%;
            left: 0;
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            transform: translateY(10px);
            pointer-events: none;
            font-family: 'Futura PT', sans-serif;
            line-height: 1.4;
        }

        .item-name-wrapper:hover .item-stats-tooltip {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }

        .tooltip-header {
            color: #f1a94e;
            font-weight: 500;
            font-size: 14px;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
        }

        .stat-line {
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 2px;
            text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
            letter-spacing: 0.3px;
        }

        .stat-label-hp {
            color: #f282bc;
        }

        .stat-label-sp {
            color: #eeee74;
        }

        .stat-label-mp {
            color: #74fefe;
        }

        .stat-label-str {
            color: #de7272;
        }

        .stat-label-dex {
            color: #fefe74;
        }

        .stat-label-rec {
            color: #b188f5;
        }

        .stat-label-int {
            color: #7272fe;
        }

        .stat-label-wis {
            color: #74fe74;
        }

        .stat-label-luc {
            color: #74fefe;
        }

        .stat-v-base {
            color: #eeee74;
            margin-left: 5px;
        }

        .stat-v-bonus {
            color: #f1a94e;
            margin-left: 5px;
        }

        /* --- Status Badges --- */
        .status-badge {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 0;
            line-height: 1.4;
        }

        .status-player {
            background: rgba(255, 255, 255, 0.05);
            color: #555;
            border-color: rgba(255, 255, 255, 0.05);
        }

        .status-adm {
            background: rgba(46, 204, 113, 0.1);
            color: #2ecc71;
            border-color: rgba(46, 204, 113, 0.2);
        }

        .status-gm {
            background: rgba(52, 152, 219, 0.1);
            color: #3498db;
            border-color: rgba(52, 152, 219, 0.2);
        }

        .status-gma {
            background: rgba(232, 200, 129, 0.1);
            color: #e8c881;
            border-color: rgba(232, 200, 129, 0.2);
        }

        /* --- Standardized Admin Buttons --- */
        .btn-action, .btn-search, .btn-char-save, .btn-submit, .btn-login, .admin-page .btn-small {
            display: inline-block !important;
            background: #111 !important;
            border: 1px solid #333 !important;
            color: #888 !important;
            padding: 12px 30px !important;
            font-size: 12px !important;
            font-family: inherit !important;
            font-weight: 600 !important;
            text-transform: uppercase !important;
            letter-spacing: 2px !important;
            text-decoration: none !important;
            cursor: pointer !important;
            transition: all 0.3s !important;
            text-align: center !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            width: auto !important;
            height: auto !important;
            box-sizing: border-box !important;
            line-height: normal !important;
        }

        .btn-action::before, .btn-search::before, .btn-submit::before, .btn-login::before {
            display: none !important;
        }

        .btn-action:hover, .btn-search:hover, .btn-char-save:hover, .btn-submit:hover, .btn-login:hover, .btn-small:hover {
            background: #1a1a1a !important;
            color: #fff !important;
            border-color: #444 !important;
            transform: none !important;
            box-shadow: none !important;
            opacity: 1 !important;
        }

        .admin-page .btn-action i, .btn-search i, .btn-char-save i, .admin-page .btn-submit i, .admin-page .btn-login i, .admin-page .btn-small i {
            margin-right: 8px;
            color: inherit !important;
            font-size: 16px;
        }
        /* Modifier for compact admin contexts (tables/small forms) */
        .btn-action.btn-sm {
            width: auto;
            min-width: 100px;
            height: 34px;
            padding: 0 15px;
            font-size: 11px;
            border-radius: var(--radius-sm);
        }


        /* --- Inventory Specific Icons (Minimalist) --- */
        .inventory-icon-btn {
            background: none !important;
            border: none !important;
            padding: 5px !important;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0.7;
        }

        .inventory-icon-btn.btn-edit {
            color: #2ecc71 !important;
        }

        .inventory-icon-btn.btn-delete {
            color: #ff4d4d !important;
        }

        .inventory-icon-btn:hover {
            opacity: 1;
            filter: brightness(1.3);
            transform: none !important;
        }

        .item-row-deleted {
            opacity: 0.4 !important;
            filter: grayscale(1) blur(0.4px) !important;
            background: rgba(220, 53, 69, 0.02) !important;
            pointer-events: auto;
            /* Allow tooltip viewing but no actions */
            transition: all 0.3s ease;
        }

        .item-row-deleted:hover {
            opacity: 0.6 !important;
            filter: grayscale(0.5) blur(0px) !important;
        }

        /* --- Pagination Controls --- */
        .pagination-wrapper {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
            padding: 10px;
        }

        .pagination-link {
            min-width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(232, 200, 129, 0.03);
            border: 1px solid rgba(232, 200, 129, 0.1);
            color: #888;
            text-decoration: none;
            border-radius: 4px;
            font-family: var(--heading-font);
            font-size: 13px;
            font-weight: 700;
            transition: all 0.2s ease;
        }

        .pagination-link:hover:not(.active) {
            background: rgba(232, 200, 129, 0.1);
            border-color: rgba(232, 200, 129, 0.3);
            color: var(--text-gold);
            transform: translateY(-2px);
        }

        .pagination-link.admin-page .active {
            background: var(--text-gold);
            border-color: var(--text-gold);
            color: #000;
            box-shadow: 0 0 15px rgba(232, 200, 129, 0.2);
        }

        .pagination-info {
            color: #555;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 15px;
            font-weight: 600;
        }

        /* --- Item Attribute Editor --- */
        .item-editor-card {
            background: rgba(10, 10, 10, 0.6);
            border: 1px solid rgba(232, 200, 129, 0.1);
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 40px;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        }

        .item-editor-title {
            font-family: var(--heading-font);
            color: #fff;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
            border-left: 3px solid var(--text-gold);
            padding-left: 15px;
        }

        .editor-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .editor-field {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .editor-label {
            font-family: var(--heading-font);
            font-size: 11px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .editor-input,
        .editor-select {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 4px;
            color: #ccc;
            height: 40px;
            padding: 0 12px;
            font-size: 13px;
            transition: all 0.2s;
        }

        .editor-input:focus,
        .editor-select:focus {
            border-color: var(--border-gold);
            outline: none;
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
        }

        .stat-input-group {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
            background: rgba(0, 0, 0, 0.2);
            padding: 20px;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.03);
        }

        .editor-select {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #e8c881;
            padding: 8px 12px;
            border-radius: 4px;
            font-family: 'Futura PT', sans-serif;
            font-size: 13px;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23e8c881'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .editor-select:hover,
        .editor-select:focus {
            border-color: #e8c881;
            outline: none;
            box-shadow: 0 0 10px rgba(232, 200, 129, 0.1);
        }

        .editor-select option {
            background-color: #1a1a1a;
            color: #e8c881;
            padding: 10px;
        }

        .tooltip-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.05);
            margin: 8px 0;
        }

        .req-level {
            font-size: 11px;
            color: #666;
            margin-top: 10px;
            text-align: right;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 5px;
        }

        @font-face {
            font-family: 'Futura PT';
            src: url('../assets/fonts/FuturaPT-Book.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
        }

        @font-face {
            font-family: 'Futura PT';
            src: url('../assets/fonts/FuturaPT-Demi.woff2') format('woff2');
            font-weight: 600;
            font-style: normal;
        }

        .admin-top-stats {
            background: #111;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Futura PT', sans-serif;
            font-size: 11px;
            font-weight: 600;
            border-bottom: 1px solid #222;
        }

        .stats-left {
            display: flex;
            gap: 10px;
        }

        .stat-badge {
            padding: 4px 10px;
            border-radius: 4px;
            color: #fff;
            text-transform: uppercase;
        }

        .bg-green {
            background: #2d5a27;
        }

        .bg-blue {
            background: #274d5a;
        }

        .bg-orange {
            background: #a55a27;
        }

        .stats-right {
            display: flex;
            gap: 20px;
            color: #ccc;
            text-transform: uppercase;
        }

        .stats-right span b {
            color: #fff;
            margin-left: 5px;
        }

        .admin-horizontal-nav {
            background: #000;
            border-bottom: 1px solid #333;
            padding: 0 20px;
        }

        .admin-horizontal-nav ul {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
        }

        .admin-horizontal-nav li {
            position: relative;
        }

        .admin-horizontal-nav a {
            display: block;
            padding: 15px 15px;
            color: #999;
            text-transform: uppercase;
            font-family: 'Futura PT', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .admin-horizontal-nav a:hover,
        .admin-horizontal-nav a.admin-page .active {
            color: #fff;
        }

        /* Dropdown Styles */
        .admin-horizontal-nav .admin-has-dropdown:hover .admin-dropdown-menu {
            display: block;
        }

        .admin-dropdown-menu {
            display: none !important;
            position: absolute;
            top: 100%;
            left: 0;
            background: #050505;
            border: 1px solid #222;
            min-width: 220px;
            z-index: 1000;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .admin-horizontal-nav .admin-has-dropdown:hover .admin-dropdown-menu {
            display: block !important;
        }

        .admin-dropdown-menu li {
            width: 100%;
        }

        .admin-dropdown-menu a {
            padding: 12px 20px;
            font-size: 11px;
            border-bottom: 1px solid #111;
            color: #888;
            text-align: left;
        }

        .admin-dropdown-menu a:hover {
            background: #111;
            color: #fff;
        }

        .admin-content-area {
            background: #111;
            min-height: calc(100vh - 200px);
            padding: 40px 60px;
        }

        .admin-view-title {
            font-family: 'Futura PT', sans-serif;
            font-size: 28px;
            font-weight: 600;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #222;
        }

        .dashboard-table {
            width: 100%;
            border-collapse: collapse;
            background: #0a0a0a;
            border: 1px solid #222;
        }

        .dashboard-table th {
            background: #e8c881;
            color: #000;
            padding: 15px;
            text-align: center;
            font-family: 'Futura PT', sans-serif;
            text-transform: capitalize;
            font-weight: 600;
        }

        .dashboard-table td {
            padding: 18px 15px;
            border-bottom: 1px solid #1a1a1a;
            text-align: center;
            color: #fff;
            font-family: 'Futura PT', sans-serif;
            font-size: 14px;
        }

        .dashboard-table tr:nth-child(even) {
            background: #0d0d0d;
        }

        .trend-up {
            color: #5cb85c;
            font-size: 11px;
            margin-left: 5px;
        }

        .trend-down {
            color: #d9534f;
            font-size: 11px;
            margin-left: 5px;
        }

        /* Users View Specific */
        .users-search-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 50px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .search-group {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .search-group label {
            width: 120px;
            color: #888;
            font-size: 13px;
            text-align: right;
        }

        .search-group input {
            flex: 1;
            background: #111;
            border: 1px solid #333;
            color: #fff;
            padding: 10px 15px;
            font-family: 'Futura PT', sans-serif;
            font-size: 15px;
            outline: none;
        }

        .search-group input:focus {
            border-color: #e8c881;
        }



        .chars-table-container {
            background: rgba(10, 10, 10, 0.4);
            border: 1px solid #1a1a1a;
            border-radius: 4px;
            overflow-x: auto;
            margin-bottom: 20px;
        }

        .chars-table {
            width: 100%;
            border-collapse: collapse;
            font-family: 'Futura PT', sans-serif;
        }

        .chars-table th {
            padding: 15px 10px;
            text-align: center;
            font-size: 12px;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-bottom: 1px solid #222;
        }

        .chars-table td {
            padding: 12px 10px;
            text-align: center;
            font-size: 14px;
            color: #ccc;
            border-bottom: 1px solid #111;
            vertical-align: middle;
        }

        .chars-table tr:hover {
            background: rgba(232, 200, 129, 0.02);
        }

        .table-filter-input,
        .table-filter-select {
            background: #111;
            border: 1px solid #333;
            color: #ccc;
            padding: 5px;
            width: 100%;
            font-size: 12px;
            font-family: 'Futura PT', sans-serif;
            border-radius: 2px;
            margin-top: 8px;
            outline: none;
            text-align: center;
        }

        .table-filter-input:focus,
        .table-filter-select:focus {
            border-color: #444;
            color: #aaa;
        }

        .status-badge {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            min-width: 30px;
            text-transform: uppercase;
        }

        .status-active {
            color: #48bb78;
        }

        .status-deleted {
            color: #e53e3e;
        }

        .online-badge {
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .online-on {
            background: #2d5a27;
            color: #fff;
        }

        .online-off {
            background: #a52727;
            color: #fff;
        }

        .btn-reset-filters {
            background: transparent;
            border: 1px solid #333;
            color: #888;
            padding: 8px 15px;
            font-size: 11px;
            letter-spacing: 1.5px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-reset-filters:hover {
            border-color: #666;
            color: #fff;
        }

        .filter-checkbox-label {
            color: #ccc;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .filter-checkbox-label input {
            accent-color: #e8c881;
        }

        .badge-adm {
            background: rgba(42, 90, 42, 0.4);
            color: #4caf50;
            padding: 2px 6px;
            border-radius: 2px;
            font-size: 10px;
            font-weight: 600;
            margin-left: 8px;
            border: 1px solid rgba(76, 175, 80, 0.3);
        }

        .badge-player {
            background: rgba(68, 68, 68, 0.2);
            color: #718096;
            padding: 2px 6px;
            border-radius: 2px;
            font-size: 10px;
            font-weight: 600;
            margin-left: 8px;
            border: 1px solid rgba(113, 128, 150, 0.2);
        }

        .user-link {
            color: #5cc8d1;
            text-decoration: none;
            font-weight: 400;
            font-size: 14px;
        }

        .user-link:hover {
            text-decoration: underline;
        }

        .faction-icon {
            display: inline-flex;
            width: 28px;
            height: 28px;
            opacity: 0.9;
            justify-content: center;
            align-items: center;
        }

        .faction-aol {
            color: #4caf50;
        }

        .faction-uof {
            color: #e53e3e;
        }

        .rank-icon {
            display: inline-flex;
            margin-left: 8px;
            opacity: 0.8;
            vertical-align: middle;
        }

        .rank-bar {
            width: 25px;
            height: 12px;
            background: linear-gradient(to right, #5a8bc1, #e8c881);
            border-radius: 2px;
        }

        .time-relative {
            color: #e8c881;
            font-weight: 400;
            font-size: 13px;
        }

        /* Char Edit View Styles */
        .char-edit-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .char-title-section h1 {
            font-size: 24px;
            color: #fff;
            margin: 0;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .char-title-section p {
            color: #888;
            font-size: 14px;
            margin: 5px 0 0 0;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .char-actions-bar {
            display: flex;
            gap: 10px;
            align-items: center;
        }



        .admin-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            height: 32px;
            padding: 0 16px;
            font-size: 11px;
            font-weight: 700;
            border-radius: 4px;
            color: #d1b477;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(209, 180, 119, 0.3);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .admin-btn:hover {
            color: #fff;
            background: rgba(209, 180, 119, 0.1);
            border-color: rgba(209, 180, 119, 0.8);
        }

        .char-status-badge {
            padding: 4px 12px;
            background: rgba(72, 187, 120, 0.2);
            color: #48bb78;
            border: 1px solid rgba(72, 187, 120, 0.3);
            font-size: 11px;
            font-weight: bold;
            border-radius: 4px;
            margin-left: 20px;
            text-transform: uppercase;
        }

        .char-tabs {
            display: flex;
            margin-bottom: 30px;
            border-bottom: 1px solid #333;
            padding-left: 5px;
            overflow-x: auto;
            overflow-y: hidden;
            -ms-overflow-style: none; /* IE and Edge */
            scrollbar-width: none;    /* Firefox */
            align-items: flex-end;
        }

        .char-tabs::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        .char-tab {
            padding: 0 14px;
            height: 40px;
            color: #888;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
            background: #111;
            border: 1px solid #222;
            border-bottom: 1px solid #333;
            border-radius: 6px 6px 0 0;
            margin-right: 4px;
            margin-bottom: -1px;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .char-tab:hover {
            color: #ccc;
            background: #161616;
        }

        .char-tab.admin-page .active {
            height: 46px;
            color: #e8c881;
            background: #0a0a0a;
            border: 1px solid #333;
            border-top: 3px solid #e8c881;
            border-bottom: 1px solid #0a0a0a;
            box-shadow: 0 -4px 10px rgba(0,0,0,0.5);
        }

        /* Visual Inventory Grid */
        .bag-tabs {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
        }

        .bag-tab {
            width: 60px;
            height: 45px;
            background: rgba(25, 25, 25, 0.8);
            border: 1px solid #333;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            color: #777;
            font-size: 10px;
            font-weight: bold;
        }

        .bag-tab i {
            font-size: 16px;
            margin-bottom: 2px;
        }

        .bag-tab:hover {
            border-color: #555;
            color: #999;
        }

        .bag-tab.admin-page .active {
            background: rgba(232, 200, 129, 0.05);
            border: 1px solid #e8c881;
            color: #e8c881;
        }

        .inventory-grid-container {
            padding: 20px;
            background: rgba(15, 15, 15, 0.5);
            border: 1px solid #222;
            border-radius: 4px;
            width: fit-content;
        }

        .inventory-grid {
            display: grid;
            grid-template-columns: repeat(6, 60px);
            grid-gap: 5px;
        }

        .inventory-slot {
            width: 60px;
            height: 60px;
            background: rgba(40, 40, 40, 0.4);
            border: 1px solid #333;
            border-radius: 2px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .inventory-slot:hover {
            border-color: #666;
            background: rgba(50, 50, 50, 0.6);
        }

        .inventory-item {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 4px;
            cursor: help;
        }

        .item-icon-placeholder {
            width: 30px;
            height: 30px;
            background: url('../images/item_placeholder.png');
            /* Fallback */
            background-size: cover;
            margin-bottom: 2px;
            filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
        }

        .item-name-brief {
            font-size: 8px;
            color: #aaa;
            line-height: 1;
            text-align: center;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .item-count-badge {
            position: absolute;
            bottom: 2px;
            right: 3px;
            font-size: 10px;
            font-weight: 800;
            color: #e8c881;
            text-shadow: 0 0 3px #000;
            pointer-events: none;
        }

        .char-edit-section {
            margin-bottom: 50px;
        }

        .char-edit-section h3 {
            font-size: 16px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
            border-bottom: 1px solid #222;
            padding-bottom: 10px;
        }

        .char-edit-form {
            display: flex;
            gap: 15px;
            max-width: 600px;
        }

        .char-input-group {
            flex: 1;
        }

        .char-input {
            width: 100%;
            background: #0a0a0a;
            border: 1px solid #333;
            color: #fff;
            padding: 10px 15px;
            font-size: 14px;
            border-radius: 4px;
            font-family: 'Futura PT', sans-serif;
            outline: none;
        }

        /* Main Info Table Styles */
        .char-info-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 40px;
            background: #0a0a0a;
            border: 1px solid #1a1a1a;
        }

        .char-info-table .header-main {
            background: #f1a94e;
            color: #000;
            text-align: center;
            font-weight: 700;
            padding: 10px;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .char-info-table td {
            padding: 12px 20px;
            border-bottom: 1px solid #1a1a1a;
            font-size: 13px;
            color: #ccc;
            font-family: 'Futura PT', sans-serif;
        }

        .char-info-table td:first-child {
            width: 220px;
            color: #999;
            text-align: right;
            border-right: 1px solid #1a1a1a;
            padding-right: 30px;
        }

        .char-info-table td:last-child {
            text-align: center;
        }

        .char-info-table tr:hover {
            background: rgba(255, 255, 255, 0.01);
        }

        .char-input:focus {
            border-color: #4a5568;
        }



        /* Toggle Switch CSS */
        .switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #333;
            transition: .4s;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
        }

        input:checked+.slider {
            background-color: #2d5a27;
        }

        input:focus+.slider {
            box-shadow: 0 0 1px #2d5a27;
        }

        input:checked+.slider:before {
            transform: translateX(26px);
        }

        .slider.round {
            border-radius: 24px;
        }

        .slider.round:before {
            border-radius: 50%;
        }

        .date-input-wrapper {
            position: relative;
        }

        .date-input-wrapper i {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #444;
            pointer-events: none;
            font-size: 12px;
        }

        .table-filter-input::placeholder {
            color: #666;
            font-size: 11px;
        }
    


                        /* Hide datalist arrow */
                        input[list]::-webkit-calendar-picker-indicator {
                            display: none !important;
                            -webkit-appearance: none;
                        }
                    


                            .blacklist-scroll::-webkit-scrollbar {
                                width: 5px;
                            }

                            .blacklist-scroll::-webkit-scrollbar-track {
                                background: rgba(0, 0, 0, 0.1);
                            }

                            .blacklist-scroll::-webkit-scrollbar-thumb {
                                background: #e8c881;
                                border-radius: 10px;
                            }
                        


                            .chars-page-header {
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                margin-bottom: 30px;
                            }

                            .chars-title {
                                font-size: 24px;
                                font-weight: 700;
                                color: #fff;
                                letter-spacing: 2px;
                                margin: 0;
                            }

                            .chars-top-filters {
                                display: flex;
                                gap: 20px;
                                align-items: center;
                            }

                            .online-off {
                                background: #a52727;
                                color: #fff;
                            }

                            .bg-rank {
                                background: rgba(232, 200, 129, 0.05);
                                border-color: rgba(232, 200, 129, 0.1);
                            }
                        


                            .items-search-card {
                                background: rgba(255, 255, 255, 0.02);
                                padding: 30px;
                                border-radius: 12px;
                                border: 1px solid rgba(255, 255, 255, 0.05);
                                margin-bottom: 40px;
                            }

                            .items-title {
                                font-size: 20px;
                                font-weight: 700;
                                color: #fff;
                                letter-spacing: 2px;
                                margin-bottom: 25px;
                                text-transform: uppercase;
                            }

                            .search-row {
                                display: flex;
                                gap: 30px;
                                align-items: flex-end;
                            }

                            .search-field {
                                flex: 1;
                            }

                            .search-label {
                                display: block;
                                font-size: 11px;
                                color: #666;
                                text-transform: uppercase;
                                letter-spacing: 1px;
                                margin-bottom: 10px;
                            }

                            /* Custom Searchable Dropdown */
                            .custom-dropdown {
                                position: relative;
                                width: 100%;
                            }

                            .dropdown-selected {
                                background: #050505;
                                border: 1px solid #222;
                                color: #eee;
                                padding: 12px 15px;
                                border-radius: 4px;
                                cursor: pointer;
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                font-size: 14px;
                                transition: border-color 0.3s;
                            }

                            .dropdown-selected:hover {
                                border-color: #444;
                            }

                            .dropdown-content {
                                display: none;
                                position: absolute;
                                top: 100%;
                                left: 0;
                                right: 0;
                                background: #0a0a0a;
                                border: 1px solid #333;
                                border-radius: 4px;
                                z-index: 10000;
                                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
                                margin-top: 5px;
                            }

                            .dropdown-search-input {
                                width: 100%;
                                background: #111;
                                border: none;
                                border-bottom: 1px solid #222;
                                color: #fff;
                                padding: 12px 15px;
                                outline: none;
                                font-size: 13px;
                            }

                            .dropdown-list {
                                max-height: 300px;
                                overflow-y: auto;
                            }

                            .dropdown-item {
                                padding: 10px 15px;
                                cursor: pointer;
                                color: #888;
                                font-size: 13px;
                                transition: all 0.2s;
                            }

                            .dropdown-item:hover {
                                background: rgba(232, 200, 129, 0.05);
                                color: #e8c881;
                            }

                            .dropdown-item.hidden {
                                display: none;
                            }

                            /* Results Table styling */
                            .results-header {
                                font-size: 18px;
                                font-weight: 700;
                                color: #fff;
                                letter-spacing: 2px;
                                margin-bottom: 20px;
                                text-transform: uppercase;
                                display: flex;
                                align-items: center;
                                gap: 10px;
                            }

                            .results-header::after {
                                content: "";
                                flex: 1;
                                height: 1px;
                                background: linear-gradient(to right, rgba(232, 200, 129, 0.2), transparent);
                            }

                            .items-results-table {
                                width: 100%;
                                border-collapse: collapse;
                            }

                            .items-results-table th {
                                text-align: left;
                                padding: 15px;
                                font-size: 11px;
                                color: #555;
                                text-transform: uppercase;
                                letter-spacing: 1.5px;
                                border-bottom: 1px solid #1a1a1a;
                            }

                            .items-results-table td {
                                padding: 15px;
                                font-size: 13px;
                                color: #ccc;
                                border-bottom: 1px solid #0a0a0a;
                                vertical-align: middle;
                            }

                            .items-results-table tr:hover {
                                background: rgba(255, 255, 255, 0.01);
                            }

                            .uid-cell {
                                color: #48bb78;
                                font-family: 'Consolas', monospace;
                                font-size: 12px;
                            }

                            .item-id-cell {
                                color: #666;
                                font-weight: 500;
                            }

                            .item-name-cell {
                                color: #e8c881;
                                font-weight: 600;
                                cursor: help;
                                position: relative;
                            }

                            .owner-info {
                                line-height: 1.4;
                            }

                            .owner-info .admin-page .label {
                                color: #555;
                                font-size: 10px;
                                text-transform: uppercase;
                                margin-right: 5px;
                            }

                            .owner-info .value {
                                color: #6a8ec1;
                                font-size: 13px;
                            }

                            .date-cell {
                                color: #666;
                                font-size: 11px;
                            }
                        