@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #ff7800;
    --secondary-color: #292828;
    --background-color: #000000;
    --text-color: #ffffff;
    --glow-color: rgba(255, 120, 0, 0.5);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Rajdhani', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
}

#days-online {
    display: inline-block;
}

.brand-name {
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-shadow: 0 0 15px var(--glow-color);
}

.highlight {
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-shadow: 0 0 10px var(--glow-color);
}

.countdown-unit {
    font-family: 'Orbitron', sans-serif;
    background: transparent;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ff7800;
    font-size: 0.9rem;
    min-width: 2.5em;
    display: inline-block;
    text-align: center;
    margin: 0 2px;
    box-shadow: 0 0 10px rgba(255, 120, 0, 0.1);
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://cdn.wildfire.ro/?file=wildfire-images/background-mirage.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: -2;
    animation: backgroundChange 30s ease-in-out infinite;
}

@keyframes backgroundChange {
    0%, 30% {
        transform: rotate(0deg) scale(1);
        background-image: url("https://cdn.wildfire.ro/?file=wildfire-images/background-mirage.jpg");
    }
    33%, 63% {
        transform: rotate(2deg) scale(1.1);
        background-image: url("https://cdn.wildfire.ro/?file=wildfire-images/background-cs2.png");
    }
    66%, 96% {
        transform: rotate(-2deg) scale(1.05);
        background-image: url("https://cdn.wildfire.ro/?file=wildfire-images/background-cs22.png");
    }
    97%, 100% {
        transform: rotate(0deg) scale(1);
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.096), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(to right, rgba(255, 120, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 120, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: translate(-25%, -25%) rotate(15deg);
    z-index: -1;
}

@keyframes gridMove {
    0% {
        transform: translate(-25%, -25%) rotate(15deg);
    }

    100% {
        transform: translate(-75%, -75%) rotate(15deg);
    }
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
}

@keyframes startwinkle {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }

    100% {
        background-position: 100px 100px, 100% 100%, 100% 100%, 100% 100%;
    }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    padding: 2rem;
    margin-top: 100px;
    /* Adjust this value if needed */
    width: 100%;
    max-width: 1200px;
}

.container-details {
    box-sizing: content-box;
}

.container-ranks {
    display: flow;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    padding: 2rem;
    margin-top: 100px;
    /* Adjust this value if needed */
    width: 100%;
    max-width: 1200px;
}

.logo-container {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    /* Changed from margin-bottom only */
    position: relative;
    animation: logoEntrance 1s ease-out;
    display: flex;
    /* Added */
    justify-content: center;
    /* Added */
    align-items: center;
    /* Added */
}

.ranks-logo {
    margin: -125px auto 40px;
    position: relative;
    z-index: 1;
}

@keyframes logoEntrance {
    0% {
        transform: scale(0.5) rotate(-10deg);
        opacity: 0;
        filter: drop-shadow(0 0 0 #ff7800);
    }
    
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
        filter: drop-shadow(0 0 20px #ff7800);
    }

    75% {
        transform: scale(0.95) rotate(-2deg);
        opacity: 0.9;
        filter: drop-shadow(0 0 15px #ff7800);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: drop-shadow(0 0 10px #ff7800);
    }
}

.logo {
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.wildfire.ro/?file=wildfire-images/main-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: flameFlicker 3s infinite;
}

.graph-section {
    padding: 3rem 1rem;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.graph-section .graph-container {
    position: relative;
    border-radius: 15px;
    padding: 2rem;
    overflow: hidden;
}

.graph-section .graph-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.graph-section .graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.graph-section .graph-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #ff7800;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 120, 0, 0.5);
    letter-spacing: 1px;
}

.graph-section .graph-controls {
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.graph-section .time-btn {
    background: transparent;
    border: 1px solid rgba(255, 120, 0, 0.3);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 80px;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.graph-section .time-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 120, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.graph-section .time-btn:hover::before {
    opacity: 1;
}

.graph-section .time-btn.active {
    background: #ff7800;
    border-color: #ff7800;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 120, 0, 0.3);
}

.graph-section .graph-wrapper {
    position: relative;
    height: 400px;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    margin: 1rem 0;
    border: 1px solid rgba(255, 120, 0, 0.1);
    border-radius: 8px;
}

.graph-section #serverGraph {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    z-index: 2;
}

.graph-section .server-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0.5rem;
}

.graph-section .stat-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.graph-section .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 120, 0, 0.2);
}

.graph-section .stat-card .stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #ff7800;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 120, 0, 0.3);
}

.graph-section .stat-card .stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.stat-value-animate {
    animation: number-update 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-value.updating {
    animation: valueUpdate 0.5s ease-in-out;
}

/* Trend indicator styles */
.stat-trend {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Positive trend styles */
.stat-trend.positive {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
}

.stat-trend.positive i {
    color: #4caf50;
}

/* Negative trend styles */
.stat-trend.negative {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
}

.stat-trend.negative i {
    color: #f44336;
}

.stat-trend.neutral {
    color: #888;
    background: rgba(136, 136, 136, 0.1);
}

/* Trend value styles */
.trend-value {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
}

.trend-value.updating {
    animation: trendUpdate 0.5s ease-in-out;
}


/* Trend update animation */
@keyframes trendUpdate {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.stat-trend.updating {
    animation: trendUpdate 0.5s ease-in-out;
}

/* Hover effects */
.stat-card:hover .stat-trend {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-trend.positive:hover {
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.stat-trend.negative:hover {
    border-color: rgba(244, 67, 54, 0.4);
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.2);
}

/* Icon styles */
.stat-trend i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.stat-trend.positive i {
    transform: rotate(-45deg);
}

.stat-trend.negative i {
    transform: rotate(45deg);
}

@keyframes valueUpdate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        color: #ffa040;
        text-shadow: 0 0 20px rgba(255, 120, 0, 0.6);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes number-update {
    0% {
        transform: scale(1.1);
        color: #ff9040;
        text-shadow: 0 0 20px rgba(255, 120, 0, 0.5);
    }

    100% {
        transform: scale(1);
        color: #ff7800;
        text-shadow: 0 0 10px rgba(255, 120, 0, 0.3);
    }
}

@keyframes flameFlicker {

    0%,
    100% {
        filter: drop-shadow(0 0 5px #ff7800) brightness(1);
    }

    50% {
        filter: drop-shadow(0 0 15px #ff7800) brightness(1.2);
    }
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(1, 1, 1, 1.0), rgba(1, 1, 1, 1.0));
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgb(0 0 0), 0 4px 8px rgb(0 0 0), 0 8px 16px rgb(0 0 0 / 0%), 0 16px 32px rgb(0 0 0 / 94%), 0 1px 2px rgb(0 0 0);
    border-radius: 0 0 100% 100% / 0 0 40% 40%;
}

.navigation.hidden {
    transform: translateY(-100%);
}

.nav-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.staff-profile-nav {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.staff-profile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.staff-profile-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), #ff4500);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    transform: skew(-15deg);
}

.staff-profile-link:hover::before {
    opacity: 0.2;
}

.staff-profile-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.staff-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 120, 0, 0.5);
    position: relative;
    z-index: 2;
}

.staff-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.staff-name {
    font-size: 14px;
    font-weight: 600;
    color: inherit;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.staff-role {
    font-size: 11px;
    color: rgba(255, 120, 0, 0.8);
    line-height: 1;
    transition: color 0.3s ease;
}

.staff-profile-link:hover .staff-role {
    color: var(--primary-color);
}

.staff-profile-link i {
    color: rgba(255, 120, 0, 0.6);
    font-size: 12px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.staff-profile-link:hover i {
    color: var(--primary-color);
}

/* Add the mobile styles here */
@media only screen and (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .nav-inner {
        justify-content: flex-end;
        padding: 10px 20px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 1001;
        cursor: pointer;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
        border-bottom: 1px solid rgba(255, 120, 0, 0.2);
    }

    .nav-links.mobile-active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 10px 0;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease-in-out;
    }

    .nav-links.mobile-active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    /* Animation delays for menu items */
    .nav-links.mobile-active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.mobile-active .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.mobile-active .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.mobile-active .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.mobile-active .nav-item:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.mobile-active .nav-item:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.mobile-active .nav-item:nth-child(7) { transition-delay: 0.4s; }
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), #ff4500);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    transform: skew(-15deg);
}

.nav-item:hover::before,
.nav-item.active::before {
    opacity: 0.2;
}

.nav-item a:hover,
.nav-item.active a {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.nav-indicator {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.nav-item:hover .nav-indicator,
.nav-item.active .nav-indicator {
    transform: scaleX(1);
    box-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);
}

.nav-flame {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-item:hover .nav-flame,
.nav-item.active .nav-flame {
    opacity: 1;
    bottom: -10px;
    filter: drop-shadow(0 0 5px var(--glow-color));
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.loading-content {
    text-align: center;
}

.logo-loader {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
}

.logo-loader::before,
.logo-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 3px solid #ff7800;
    animation: ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.logo-loader::after {
    animation-delay: -0.5s;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(255, 120, 0, 0.5));
}

@keyframes ripple {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.section-servers {
    margin-top: 80px;
    padding: 50px;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.section-servers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 120, 0, 0.1), rgba(41, 40, 40, 0.1));
    z-index: -1;
    backdrop-filter: blur(5px);
}

.section-servers h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--glow-color);
}

.section-servers p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.6);
}

.section {
    margin-top: 80px;
    padding: 50px;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 120, 0, 0.1), rgba(41, 40, 40, 0.1));
    transform: skewY(-5deg);
    z-index: -1;
    backdrop-filter: blur(5px);
}

.section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--glow-color);
}

.section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.6);
}

.stats-panel {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px var(--glow-color);
}

.stat-value-ranks {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-card {
    position: relative;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: cardEntrance 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 120, 0, 0.2);
    border-color: rgba(255, 120, 0, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 120, 0, 0.1), rgba(41, 40, 40, 0.1));
    z-index: 0;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff7800;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 120, 0, 0.5);
}

.stat-card:hover::after {
    transform: scaleX(1);
}

.stat-icon {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    background: transparent;
    color: #ff7800;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon i {
    font-size: 1.5rem;
    color: #ff7800;
}

.stat-value {
    position: relative;
    z-index: 1;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff7800;
    margin: 0.5rem 0;
    text-shadow: 0 0 10px rgba(255, 120, 0, 0.3);
}

.stat-label {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
}

.stat-trend {
    position: absolute;
    top: 0rem;
    right: 0rem;
    font-size: 0.8rem;
    color: #ff7800;
    background: transparent;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes valueFlicker {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(255, 120, 0, 0.3);
    }

    50% {
        text-shadow: 0 0 15px rgba(255, 120, 0, 0.5);
    }
}

.section-servers {
    margin-top: 80px;
    padding: 50px;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.section-servers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 120, 0, 0.1), rgba(41, 40, 40, 0.1));
    z-index: -1;
    backdrop-filter: blur(5px);
}

.wf-servers {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 120, 0, 0.1);
    border-radius: 1.5rem;
    margin: 10rem auto;
    max-width: 1400px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: cardEntrance 0.8s ease-out forwards;
}

.wf-servers h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff7800;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 20px rgba(255, 120, 0, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.wf-servers h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff7800, #ff4500);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 120, 0, 0.3);
}

.wf-servers p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6); 
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.wf-servers .brand-name {
    color: #ff7800;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 120, 0, 0.3);
    position: relative;
}

.wf-servers__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    min-height: 400px;
}

.wf-servers__grid .wf-servers__card {
    max-width: 500px;
    width: 100%;
}

/* Default loading state */
.wf-servers__grid:empty {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 120, 0, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: gridPulse 2s infinite ease-in-out;
}

.wf-servers__grid:empty::before {
    content: 'Initializing Server...';
    font-family: 'Orbitron', sans-serif;
    color: #ff7800;
    font-size: 1.5rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 120, 0, 0.3);
    animation: textPulse 2s infinite ease-in-out;
}

.wf-servers__grid:empty::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff7800, transparent);
    animation: lineSlide 2s infinite ease-in-out;
}

@keyframes gridPulse {
    0%, 100% {
        border-color: rgba(255, 120, 0, 0.1);
        box-shadow: 0 0 20px rgba(255, 120, 0, 0);
    }
    50% {
        border-color: rgba(255, 120, 0, 0.3);
        box-shadow: 0 0 20px rgba(255, 120, 0, 0.1);
    }
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes lineSlide {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        width: 200px;
        opacity: 1;
    }
    100% {
        width: 0;
        opacity: 0;
    }
}


.wf-servers__card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.wf-servers__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 120, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wf-servers__card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 120, 0, 0.4);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 120, 0, 0.2);
}

.wf-servers__title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #ff7800;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 120, 0, 0.4);
    border-bottom: 2px solid rgba(255, 120, 0, 0.3);
    padding-bottom: 0.75rem;
}

.wf-servers__map {
    height: 180px;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    margin: 1rem 0;
    border: 1px solid rgba(255, 111, 0, 0.623);
    background-size: cover;
    background-position: center;
}

.wf-servers__map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.wf-servers__map-name {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.wf-servers__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    width: fit-content;
}

.wf-servers__status-dot.offline {
    background-color: #ff4444;
}

.wf-servers__status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    animation: wf-pulse 2s infinite;
}

.wf-servers__stat {
    display: flex;
    align-items: center;
align-items: center;
gap: 0.75rem;
padding: 0.5rem 0;
color: rgba(255, 255, 255, 0.9);
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.wf-servers__stat i {
color: #ff7800;
width: 20px;
text-shadow: 0 0 10px rgba(255, 120, 0, 0.3);
}

.wf-servers__btn {
width: 100%;
padding: 1rem;
margin-top: 1.5rem;
background: linear-gradient(45deg, #ff7800, #ff4500);
border: none;
border-radius: 0.5rem;
color: white;
font-family: 'Orbitron', sans-serif;
font-weight: 600;
font-size: 1rem;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
letter-spacing: 1px;
box-shadow: 0 4px 15px rgba(255, 120, 0, 0.2);
}

.wf-servers__btn:hover {
transform: translateY(-2px);
box-shadow: 
0 8px 20px rgba(255, 120, 0, 0.3),
0 0 30px rgba(255, 120, 0, 0.2);
}

.wf-player-list-modal.active {
display: grid;
place-items: center;
background-color: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(8px);
opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    opacity: 1;
}

.wf-player-list-content {
    background: linear-gradient(to bottom, #111111, #000000);
    border: 2px solid #ff7800;
    box-shadow: 
        0 0 20px rgba(255, 120, 0, 0.2),
        inset 0 0 10px rgba(255, 120, 0, 0.1);
    border-radius: 12px;
    width: min(500px, 90vw);
    margin: 20px;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    animation: wf-modalEnter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.wf-player-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 120, 0, 0.3);
    background: rgba(255, 120, 0, 0.05);
    border-radius: 12px 12px 0 0;
}

.wf-player-list-title {
    font-family: 'Orbitron', sans-serif;
    color: #ff7800;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 120, 0, 0.3);
    letter-spacing: 0.5px;
    margin: 0;
}

.wf-player-list-close {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    place-items: center;
    padding: 0;
}

.wf-player-list-close:hover {
    color: #ff7800;
    background: rgba(255, 120, 0, 0.2);
    transform: scale(1.05);
}

.wf-player-list-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.wf-player-list-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 30px;
    font-style: italic;
    background: rgba(255, 120, 0, 0.05);
    border-radius: 8px;
}

.wf-player-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 120, 0, 0.08);
    border: 1px solid rgba(255, 120, 0, 0.15);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: wf-playerItemEnter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.wf-player-item:hover {
    border-color: rgba(255, 120, 0, 0.4);
    background: rgba(255, 120, 0, 0.12);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 4px 12px rgba(255, 120, 0, 0.15);
}

.wf-player-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wf-player-number {
    color: #ff7800;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 4px 8px;
    background: transparent;
    border-radius: 4px;
}

.wf-player-name {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.wf-player-stats {
    display: flex;
    gap: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Animations with scoped names */
@keyframes wf-modalEnter {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes wf-modalExit {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
}

@keyframes wf-playerItemEnter {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Staggered Animation Delays with scoped selectors */
.wf-player-item:nth-child(1) { animation-delay: 0.1s; }
.wf-player-item:nth-child(2) { animation-delay: 0.15s; }
.wf-player-item:nth-child(3) { animation-delay: 0.2s; }
.wf-player-item:nth-child(4) { animation-delay: 0.25s; }
.wf-player-item:nth-child(5) { animation-delay: 0.3s; }

/* Closing Animation */
.wf-player-list-modal.closing {
    opacity: 0;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0);
}

.wf-player-list-modal.closing .wf-player-list-content {
    animation: wf-modalExit 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
}

/* Scoped Scrollbar Styles */
.wf-player-list-body::-webkit-scrollbar {
    width: 8px;
}

.wf-player-list-body::-webkit-scrollbar-track {
    background: rgba(255, 120, 0, 0.05);
    border-radius: 4px;
}

.wf-player-list-body::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff7800, #ff9500);
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.wf-player-list-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ff9500, #ffaa00);
    border: 1.5px solid transparent;
}



@keyframes wf-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}


.server-list {
    display: grid;
    /* This should not be here */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Remove this line */
    gap: 0.75rem;
    padding: 0.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.server-item {
    flex: 1 1 300px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.server-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 120, 0, 0.2), rgba(41, 40, 40, 0.2));
    transform: skew(-5deg);
    z-index: -1;
    transition: all 0.3s ease;
}

.server-item:hover::before {
    transform: skew(-5deg) scale(1.05);
}

.server-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.server-info {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.699);
}

.social-media-section {
    margin-top: 80px;
    padding: 40px;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.social-media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 120, 0, 0.1), rgba(41, 40, 40, 0.1));
    transform: skewY(-5deg);
    z-index: -1;
}

.social-media-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--glow-color);
}

.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icon {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: var(--text-color);
    text-shadow: 0 0 10px var(--glow-color);
}

/* Sleek Footer Styles */
footer {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

/* Animated Top Border */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 2px;
}

.footer-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.copyright-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 120, 0, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.copyright-container:hover {
    border-color: rgba(255, 120, 0, 0.3);
    box-shadow: 
        0 0 20px rgba(255, 120, 0, 0.1),
        0 0 40px rgba(255, 120, 0, 0.05);
    transform: translateY(-2px);
}

.copyright-text {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.copyright-year {
    font-family: 'Orbitron', sans-serif;
    color: #ff7800;
    font-weight: 600;
    padding: 0.4rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.copyright-year::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
}

.copyright-name {
    font-family: 'Orbitron', sans-serif;
    color: #ff7800;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

.copyright-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ff7800;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.copyright-name:hover {
    text-shadow: 0 0 10px rgba(255, 120, 0, 0.5);
    letter-spacing: 3px;
}

.copyright-name:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.copyright-rights {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

@keyframes yearShine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.connect-button {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.connect-button:hover {
    background-color: #ff9900;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 120, 0, 0.3);
}

.connect-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(255, 120, 0, 0.3);
}

.phoenix-fury-text {
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-top: -30px;
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    padding: 10px 20px;
    font-weight: 900;
    letter-spacing: 0.5px;
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
}

.phoenix-fury-text span {
    display: inline-block;
    animation: textColorFade 4s infinite alternate;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes textColorFade {
    0% {
        color: #ff4d00;
        text-shadow: 0 0 10px rgba(240, 86, 15, 0.3);
        opacity: 0.8;
    }
    25% {
        color: var(--primary-color);
        text-shadow: 0 0 15px rgba(255, 120, 0, 0.5);
        opacity: 1;
    }
    50% {
        color: #ff4d00;
        text-shadow: 0 0 15px rgba(255, 77, 0, 0.6);
        opacity: 0.9;
    }
    75% {
        color: #ff9500;
        text-shadow: 0 0 15px rgba(255, 149, 0, 0.5);
        opacity: 1;
    }
    100% {
        color: #ff4d00;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        opacity: 0.8;
    }
}


@keyframes textFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 0;
    }
    20%, 24%, 55% {
        opacity: 0.15;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        text-shadow: 0 0 10px var(--glow-color);
    }

    50% {
        text-shadow: 0 0 20px var(--glow-color), 0 0 30px var(--glow-color);
    }
}

.flame-letter {
    display: inline-block;
    animation: flameLetter 2s ease-in-out infinite;
}

@keyframes flameLetter {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff9900;
}

@media (max-width: 768px) {
    .phoenix-fury-text {
        font-size: 1.2rem;
        margin-top: -20px;
        padding: 8px 15px;
    }

    #server-stats {
        display: none !important;
    }

    .navigation {
        flex-wrap: wrap;
    }

    .nav-item {
        margin: 5px 10px;
    }

    .logo-container {
        width: 200px;
        height: 200px;
        margin-bottom: 40px;
        /* Adjust for mobile */
    }

    .stats-panel {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        margin-bottom: 20px;
        width: 80%;
    }

    .section h2 {
        font-size: 2rem;
    }

    .section p {
        font-size: 1rem;
    }

    .server-item {
        width: 100%;
    }

    .social-media-section h2 {
        font-size: 2rem;
    }

    .social-icon {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        margin: 1rem 0;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%) scaleX(0);
    }

    .footer-section:hover h3::after {
        transform: translateX(-50%) scaleX(1);
    }

    .highlight-date {
        color: #ff7800;
        font-weight: bold;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, rgba(255, 120, 0, 0.1), rgba(41, 40, 40, 0.1));
    border: 1px solid rgba(255, 120, 0, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #ff9900;
}

.scroll-to-top i {
    color: white;
}

/* Mobile responsive scroll button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Phoenix Fury Text Styles */
.phoenix-fury-text {
    font-size: 1.1rem !important;
    text-transform: uppercase;
    margin-top: -30px;
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    padding: 15px 25px;
    font-weight: 900;
    letter-spacing: 1px !important;
    font-family: 'Orbitron', sans-serif !important;
    text-align: center;
    background: linear-gradient(45deg, rgba(255, 120, 0, 0.05), rgba(255, 77, 0, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.phoenix-fury-text span {
    display: inline-block;
    animation: phoenixFury 4s infinite !important;
    animation-delay: calc(var(--i) * 0.15s) !important;
    transition: all 0.3s ease;
    position: relative;
}

.phoenix-fury-text span:hover {
    transform: scale(1.2) translateY(-3px);
    animation-play-state: paused;
    filter: brightness(1.3);
}

@keyframes phoenixFury {
    0%, 100% {
        color: #ff4d00;
        text-shadow: 
            0 0 10px rgba(255, 77, 0, 0.8),
            0 0 20px rgba(255, 77, 0, 0.5),
            0 0 30px rgba(255, 120, 0, 0.3);
        transform: translateY(0) scale(1);
        opacity: 0.9;
    }
    25% {
        color: var(--primary-color);
        text-shadow: 
            0 0 15px rgba(255, 120, 0, 1),
            0 0 25px rgba(255, 120, 0, 0.7),
            0 0 35px rgba(255, 120, 0, 0.4);
        transform: translateY(-2px) scale(1.05);
        opacity: 1;
    }
    50% {
        color: #ff6a00;
        text-shadow: 
            0 0 20px rgba(255, 106, 0, 1),
            0 0 30px rgba(255, 106, 0, 0.6),
            0 0 40px rgba(255, 149, 0, 0.3);
        transform: translateY(-1px) scale(1.02);
        opacity: 1;
    }
    75% {
        color: #ff9500;
        text-shadow: 
            0 0 15px rgba(255, 149, 0, 0.9),
            0 0 25px rgba(255, 149, 0, 0.6),
            0 0 35px rgba(255, 149, 0, 0.3);
        transform: translateY(-1px) scale(1.03);
        opacity: 1;
    }
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
    .phoenix-fury-text {
        font-size: 0.9rem !important;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .phoenix-fury-text {
        font-size: 0.8rem !important;
        padding: 8px 12px;
    }
}

/* Player List Modal Styles */
.wf-player-list-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.wf-player-list-modal.active {
    opacity: 1;
    visibility: visible;
}

.wf-player-list-modal.closing {
    opacity: 0;
    visibility: hidden;
}

.wf-player-list-content {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.wf-player-list-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 120, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wf-player-list-modal.active .wf-player-list-content {
    transform: scale(1) translateY(0);
}

.wf-player-list-content:hover {
    border-color: rgba(255, 120, 0, 0.4);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 120, 0, 0.2);
}

.wf-player-list-content:hover::before {
    opacity: 1;
}

.wf-player-list-header {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    border-bottom: 2px solid rgba(255, 120, 0, 0.3);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.wf-player-list-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #ff7800;
    margin: 0;
    text-shadow: 0 0 15px rgba(255, 120, 0, 0.4);
}

.wf-player-list-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.wf-player-list-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.wf-player-list-body {
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.wf-player-list-empty {
    text-align: center;
    color: #999;
    padding: 2rem;
    font-size: 1rem;
}

.wf-player-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.wf-player-item:hover {
    background: transparent;
    transform: translateX(5px);
}

.wf-player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wf-player-number {
    font-weight: 700;
    font-size: 1.1rem;
    width: 30px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}

.wf-player-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.wf-player-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    color: #ccc;
    font-size: 0.85rem;
    font-family: 'SF Mono', monospace;
}

/* Modal scrollbar styling */
.wf-player-list-body::-webkit-scrollbar {
    width: 8px;
}

.wf-player-list-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.wf-player-list-body::-webkit-scrollbar-thumb {
    background: #ff7800;
    border-radius: 4px;
}

.wf-player-list-body::-webkit-scrollbar-thumb:hover {
    background: #ff9500;
}

/* Inline Player List Styles */
.wf-player-list-inline {
    margin-top: 1rem;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    backdrop-filter: blur(5px);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

.wf-player-list-header-inline {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05));
    border-bottom: 1px solid rgba(255, 120, 0, 0.3);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wf-player-list-title-inline {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #ff7800;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 120, 0, 0.3);
}

.wf-player-list-close-inline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ff7800;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.wf-player-list-close-inline:hover {
    background: rgba(255, 120, 0, 0.2);
    border-color: rgba(255, 120, 0, 0.4);
    transform: scale(1.1);
}

.wf-player-list-body-inline {
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.wf-player-list-empty-inline {
    text-align: center;
    color: #999;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    font-style: italic;
}

.wf-player-item-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 120, 0, 0.1);
    transition: all 0.2s ease;
}

.wf-player-item-inline:hover {
    background: rgba(255, 120, 0, 0.08);
    border-color: rgba(255, 120, 0, 0.2);
    transform: translateX(3px);
}

.wf-player-item-inline:last-child {
    margin-bottom: 0;
}

.wf-player-info-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wf-player-number-inline {
    font-weight: 700;
    font-size: 1rem;
    width: 25px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}

.wf-player-name-inline {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.wf-player-stats-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    color: #bbb;
    font-size: 0.8rem;
    font-family: 'SF Mono', monospace;
}

/* Inline player list scrollbar */
.wf-player-list-body-inline::-webkit-scrollbar {
    width: 6px;
}

.wf-player-list-body-inline::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.wf-player-list-body-inline::-webkit-scrollbar-thumb {
    background: rgba(255, 120, 0, 0.5);
    border-radius: 3px;
}

.wf-player-list-body-inline::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 120, 0, 0.7);
}


/* Staff dropdown styles - Clean card design */
.staff-profile-dropdown {
    position: relative;
}

.staff-profile-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.staff-profile-trigger:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.staff-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(20, 20, 20, 0.95);
    border-left: 3px solid rgba(255, 120, 0, 0.3);
    border-radius: 4px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 120, 0, 0.2);
    z-index: 1001;
}

.staff-profile-dropdown:hover .staff-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--glow-color);
    padding-left: 22px;
}

.dropdown-item.logout {
    color: rgba(255, 100, 100, 0.8);
}

.dropdown-item.logout:hover {
    color: #ff6464;
    text-shadow: 0 0 8px rgba(255, 100, 100, 0.5);
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    font-size: 16px;
    opacity: 0.8;
}

/* Reset button styles for dropdown items */
button.dropdown-item {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item:hover i {
    opacity: 1;
}
