/* VaroxCraft Theme - Gaming Aesthetic */

:root {
    --gold: #D4AF37;
    --gold-dark: #AA8C2C;
    --blue: #00A8E8;
    --blue-dark: #0087B8;
    --purple: #6F2DA8;
    --red: #C41E3A;
    --dark-bg: #0a0e27;
    --card-bg: #1a1f3a;
    --border-color: #2a3f5f;
    --text-light: #e0e0e0;
    --text-muted: #9ca3af;
}

* {
    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-light);
    background-color: var(--dark-bg);
    background-image:
        linear-gradient(rgba(10, 14, 39, 0.7), rgba(10, 14, 39, 0.7)),
        url('../img/background.png');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Navbar Styling */
.navbar {
    background: rgba(10, 14, 39, 0.8) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 0.5rem 2rem;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav-centered {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1200px) {
    .navbar-nav-centered {
        position: static;
        transform: none;
        margin: 1rem 0;
    }
}

.nav-link {
    color: var(--text-light) !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.nav-link i {
    font-size: 1rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
    opacity: 1;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.nav-link.active {
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}

.navbar-utilities {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.utility-link {
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.utility-link:hover {
    color: var(--gold);
}

.btn-download {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000 !important;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5);
}

/* Hero Section */
.hero-section {
    background: transparent;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    border-bottom: none;
}

/* Smaller hero section for internal pages */
body:not(.home-page) .hero-section {
    padding: 4.5rem 0 3.5rem;
}

body:not(.home-page) .hero-section h1,
body:not(.home-page) .hero-section .hero-title {
    font-size: 2.5rem !important;
}

body:not(.home-page) .hero-section .hero-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    margin-bottom: 1rem !important;
}

body:not(.home-page) .hero-section .lead {
    font-size: 1.1rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10, 14, 39, 0.2) 0%, rgba(10, 14, 39, 0.7) 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 950;
    letter-spacing: 2px;
    margin: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #CCCCCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.hero-subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.hero-subtitle-line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-subtitle-text {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.hero-glow-blue {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 168, 232, 0.15) 0%, transparent 70%);
    filter: blur(50px);
}

.hero-glow-gold {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(50px);
}

/* Cards */
.card {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2) !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 168, 232, 0.1) 100%);
}

.glass-card {
    background: rgba(26, 31, 58, 0.6) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.glass-card:hover {
    background: rgba(26, 31, 58, 0.8) !important;
    border-color: var(--gold) !important;
    transform: translateY(-5px);
}

.glass-panel {
    background: rgba(26, 31, 58, 0.6) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.card-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--blue) 100%);
    border-radius: 10px 10px 0 0;
    border: none;
    font-weight: 700;
    color: var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-body {
    color: var(--text-light);
}

.card-title {
    color: var(--gold);
    font-weight: 700;
}

.team-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(26, 31, 58, 0.6) 100%);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.team-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.team-card:hover::before {
    left: 100%;
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 168, 232, 0.2) 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-role {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Staff Page */
.staff-page {
    position: relative;
}

.staff-hero {
    padding-top: 7rem;
    padding-bottom: 5rem;
}

.staff-hero-inner {
    z-index: 1;
}

.staff-hero-mark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.6);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    color: var(--gold);
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

.staff-hero-subtitle {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.65rem;
    text-transform: uppercase;
}

.staff-hero-copy {
    max-width: 42rem;
    margin: 0 auto;
}

.staff-showcase {
    padding-top: 0;
}

.staff-panel-card {
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.72) 0%, rgba(15, 20, 42, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.staff-panel-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    color: var(--gold);
    font-size: 1.2rem;
}

.staff-center-stack {
    display: grid;
    gap: 0.85rem;
}

.staff-card-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.25rem;
    text-align: center;
    text-transform: uppercase;
}

.staff-card-label-owner {
    color: var(--gold);
}

.staff-card-label-admin {
    color: #ff5d6c;
}

.staff-card-label-dev {
    color: var(--blue);
}

.staff-panel-card-alt .staff-panel-icon {
    color: var(--blue);
}

.staff-grid {
    display: none; /* We use Bootstrap grid now */
}

.staff-member-card-wide {
    min-height: 180px;
}

.staff-member-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 60%);
    pointer-events: none;
}

.staff-member-card {
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.staff-member-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--staff-accent, var(--gold));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px color-mix(in srgb, var(--staff-accent, var(--gold)) 25%, transparent);
}

.staff-member-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, color-mix(in srgb, var(--staff-accent, var(--gold)) 12%, transparent) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.staff-member-card:hover .staff-member-glow {
    opacity: 1;
}

.staff-member-top {
    position: relative;
    z-index: 1;
}

.staff-member-card-wide .staff-member-top {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.staff-avatar {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    border-radius: 24px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.staff-member-card-wide .staff-avatar {
    margin: 0;
}

.staff-member-card:hover .staff-avatar {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--staff-accent, var(--gold));
    box-shadow: 0 0 25px color-mix(in srgb, var(--staff-accent, var(--gold)) 40%, transparent);
}

.staff-avatar img {
    image-rendering: pixelated;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.staff-member-headline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.staff-member-card-wide .staff-member-headline {
    justify-content: flex-start;
}

.staff-member-meta {
    position: relative;
    z-index: 1;
}

.staff-member-meta h4 {
    font-size: 1.75rem;
    font-weight: 950;
    color: #fff;
    margin: 0.5rem 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.staff-member-meta .badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.staff-member-meta p {
    margin: 1rem 0 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 500;
}

.staff-member-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.staff-member-links a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.staff-member-links a:hover {
    color: #000;
    background: var(--staff-accent, var(--gold));
    transform: translateY(-5px) rotate(8deg);
    border-color: transparent;
    box-shadow: 0 10px 20px color-mix(in srgb, var(--staff-accent, var(--gold)) 30%, transparent);
}

.staff-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 991.98px) {
    .staff-hero {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }
}

@media (max-width: 575.98px) {
    .staff-member-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 0.75rem 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--blue) 100%);
    border-color: var(--gold);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline-light:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

.article-content {
    color: var(--text-light);
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.article-content ul,
.article-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Statistics Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 168, 232, 0.1) 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
}

.stat-item:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    color: var(--text-light);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    color: var(--gold);
}

footer h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.75rem;
}

footer a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-server-status {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-dot.online {
    background: #00FF00;
    box-shadow: 0 0 10px #00FF00;
}

.footer-address {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.btn-play {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1.5rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }
}

/* Utility Classes */
.text-muted {
    color: #9ca3af !important;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.hero-divider {
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

/* Accordion */
.custom-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
    background: transparent;
    color: var(--gold) !important;
}

.custom-accordion .accordion-button:not(.collapsed) i {
    transform: rotate(90deg);
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.transition {
    transition: all 0.3s ease;
}

/* Comments */
.comment-text {
    line-height: 1.6;
    color: var(--text-light);
}

.comment-text p:last-child {
    margin-bottom: 0;
}

/* Pagination Styling */
.pagination {
    gap: 0.5rem;
}

.pagination .page-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px !important;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.pagination .page-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.pagination .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2);
}

/* Forms */
.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Badges */
.badge {
    padding: 0.5em 1em;
    font-weight: 600;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a58ca 100%);
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

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

.card {
    animation: fadeIn 0.5s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0b5ed7;
}


/* News Cards */
.news-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    position: relative;
}

.news-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(26, 31, 58, 1), transparent);
}

/* User Navbar */
.user-nav-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.user-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Server Status Home */
.server-icon-bg {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 168, 232, 0.1);
    border-radius: 12px;
}

.status-indicator-large {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Notifications Dropdown */
.notifications-dropdown .dropdown-menu {
    width: 320px;
    max-height: 480px;
    overflow-y: auto;
    padding: 0;
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.notifications-dropdown .dropdown-header {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.75rem 1rem;
    font-weight: bold;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.notifications-dropdown .dropdown-item {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    white-space: normal;
    color: #e0e0e0;
}

.notifications-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

/* Scrollbar for Notifications */
.notifications-dropdown .dropdown-menu::-webkit-scrollbar {
    width: 4px;
}

.notifications-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}
