/* Modern Lunaris Website Styles - Dark Theme */

/* Import Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Custom Properties - Dark Theme */
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #fd79a8;
    --dark-bg: #0f0f23;
    --darker-bg: #0a0a1a;
    --card-bg: #1a1a2e;
    --light-bg: #16213e;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --text-dark: #e0e0e0;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-dark: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.3);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.4);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 76px; /* Space for fixed navbar */
    background: var(--dark-bg);
}

.modern-body {
    background: var(--dark-bg);
}

/* Page Template Styles */
.page-container {
    min-height: calc(100vh - 76px);
    background: var(--dark-bg);
}

/* Force dark theme for all page elements */
.page-container,
.page-container *,
.page-container .container,
.page-container .row,
.page-container .col-12,
.page-container .col-md-4,
.page-container .col-md-6,
.page-container .col-lg-8,
.page-container .col-lg-4 {
    background: var(--dark-bg) !important;
    color: var(--text-light) !important;
}

/* Override Bootstrap default backgrounds */
body.modern-body .page-container,
body.modern-body .page-container *,
body.modern-body .container,
body.modern-body .row,
body.modern-body .col-* {
    background: var(--dark-bg) !important;
    color: var(--text-light) !important;
}

/* Force dark theme for specific elements */
.page-container h1,
.page-container h2,
.page-container h3,
.page-container h4,
.page-container h5,
.page-container h6,
.page-container p,
.page-container span,
.page-container div,
.page-container label,
.page-container strong {
    color: var(--text-light) !important;
}

.page-header {
    text-align: center;
    padding: 2rem 0;
    background: var(--darker-bg);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.page-content {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Content Cards */
.content-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.content-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 255, 255, 0.1);
}

.content-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ Items */
.faq-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Download Cards */
.download-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 255, 255, 0.1);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.download-icon i {
    font-size: 2rem;
    color: white;
}

.download-content {
    text-align: center;
}

.download-title {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.download-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Tables */
.table-modern {
    background: var(--card-bg) !important;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Force dark theme for table elements */
.table-modern,
.table-modern thead,
.table-modern tbody,
.table-modern tr,
.table-modern th,
.table-modern td {
    background: var(--card-bg) !important;
    color: var(--text-light) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.table-modern thead {
    background: var(--light-bg);
}

.table-modern th {
    color: var(--text-light);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.table-modern td {
    color: var(--text-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
}

.table-modern tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Ranking Badges */
.rank-badge {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}

.rank-1 {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

.rank-2 {
    background: linear-gradient(135deg, #c0c0c0, #e5e5e5);
    color: #333;
}

.rank-3 {
    background: linear-gradient(135deg, #cd7f32, #daa520);
    color: white;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.online {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.status-badge.offline {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.status-badge i {
    font-size: 0.7rem;
}

/* Level Badge */
.level-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Job and Guild Icons */
.job-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guild-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    margin-right: 0.5rem;
}

/* Progress Bar */
.progress {
    background: var(--light-bg);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background: var(--gradient-primary) !important;
}

/* Stats Items */
.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item h4 {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* Player Count Display */
.player-count-display {
    text-align: center;
}

.player-count-display .count-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.player-count-display .count-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Forms */
.form-modern {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-modern .form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-modern .form-control {
    background: var(--light-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-light) !important;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

/* Force dark theme for all form elements */
.page-container input,
.page-container textarea,
.page-container select,
.page-container .form-control,
.page-container .form-select {
    background: var(--card-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-light) !important;
}

.page-container input::placeholder,
.page-container textarea::placeholder {
    color: var(--text-muted) !important;
}

.form-modern .form-control:focus {
    background: var(--light-bg);
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

.form-modern .form-control::placeholder {
    color: var(--text-muted);
}

.form-modern .form-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-modern .form-check-label {
    color: var(--text-light);
}

.form-modern .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Alerts */
.alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.alert-warning {
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.alert-info {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

/* Buttons */
.btn-modern {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
    text-decoration: none;
}

.btn-modern-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-modern-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    text-decoration: none;
}

/* Navbar Adjustments */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(15, 15, 35, 0.95) !important;
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.dropdown-menu {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
}

.dropdown-item {
    transition: var(--transition);
    color: var(--text-dark);
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -76px; /* Compensate for navbar padding */
    padding-top: 76px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/background-main.jpg') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 35, 0.8);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-right: 15px;
    margin-bottom: 10px;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Online Status Card */
.online-status-card {
    background: rgba(26, 26, 46, 0.95);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
    animation: slideInRight 1s ease 0.6s both;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.status-header i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.status-header h4 {
    color: var(--text-light);
    font-weight: 600;
    margin: 0;
}

.player-count {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    color: var(--text-light);
}

.count-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.count-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.online-list-preview {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.online-list-preview h6 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.online-players-scroll {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
}

.online-player-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.online-player-item:hover {
    background: var(--card-bg);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.player-info {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.player-name {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.player-level {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.player-job {
    display: flex;
    align-items: center;
}

.job-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.no-players {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
}

.no-players i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.no-players p {
    margin: 0;
    font-size: 0.9rem;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Feature Cards */
.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Quick Link Cards */
.quick-link-card {
    display: block;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-link-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    text-decoration: none;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.1);
}

.quick-link-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.quick-link-icon i {
    font-size: 1.5rem;
    color: white;
}

.quick-link-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quick-link-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* News Cards */
.news-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 255, 255, 0.1);
}

.news-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-card-header h5 {
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.news-date {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Section Backgrounds */
.features-section {
    background: var(--darker-bg);
}

.quick-links-section {
    background: var(--darker-bg);
}

.news-section {
    background: var(--darker-bg);
}

/* Footer Styles */
.footer-modern {
    background: var(--darker-bg);
    color: var(--text-light);
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    padding: 3rem 0 2rem;
}

.footer-section h5,
.footer-section h6 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    margin-right: 0.5rem;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
}

.legal-links {
    font-size: 0.9rem;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--secondary-color);
}

.separator {
    color: #636e72;
    margin: 0 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .online-status-card {
        margin-top: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .footer-content {
        padding: 2rem 0 1rem;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .feature-card,
    .quick-link-card,
    .news-card,
    .download-card {
        padding: 1.5rem;
    }
    
    .page-content {
        padding: 1.5rem;
    }
    
    body {
        padding-top: 66px; /* Smaller navbar on mobile */
    }
    
    .hero-section {
        margin-top: -66px;
        padding-top: 66px;
    }
}

/* Custom Scrollbar */
.online-players-scroll::-webkit-scrollbar {
    width: 6px;
}

.online-players-scroll::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 3px;
}

.online-players-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.online-players-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
} 