/* Server Status Widget Styles */
.server-status {
    display: block;
    font-size: 0.95rem;
    text-align: center;
    margin: 0 auto;
    padding-top: 5px;
}

/* Online Players section */
.players-section {
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.player-count-box {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(139, 111, 71, 0.15));
    border: 2px solid rgba(212, 165, 116, 0.4);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 
        0 5px 20px rgba(212, 165, 116, 0.2),
        inset 0 0 20px rgba(212, 165, 116, 0.05);
    position: relative;
    overflow: hidden;
}

.player-count-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
}

.count-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.6));
}

.count-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.count-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    text-shadow: 
        0 0 20px rgba(212, 165, 116, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.count-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(232, 232, 232, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    position: relative;
    z-index: 1;
}

.player-card {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(13, 17, 23, 0.8));
    border: 2px solid rgba(77, 217, 232, 0.3);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(77, 217, 232, 0.05);
    position: relative;
    overflow: hidden;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(77, 217, 232, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.player-card:hover {
    transform: translateY(-3px);
    border-color: var(--cyan);
    box-shadow: 
        0 8px 25px rgba(77, 217, 232, 0.3),
        inset 0 0 30px rgba(77, 217, 232, 0.1);
}

.player-card:hover::before {
    opacity: 1;
}

.player-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    border: 2px solid var(--cyan);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 4px 15px rgba(77, 217, 232, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.player-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(232, 232, 232, 0.9);
    text-align: center;
    word-break: break-word;
    position: relative;
    z-index: 1;
}