/* Server Status Styles */
.server-status-wrapper {
    color: #00c6ff;
}

.server-name {
    font-size: 14px;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
}

.progress-bar {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 3px;
    height: 20px;
    position: relative;
    margin: 5px 0;
    overflow: hidden;
    border: 1px solid rgba(0, 198, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.2);
}

.progress {
    background: #00c6ff;
    height: 100%;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 25%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 50%,
        transparent 75%,
        rgba(255, 255, 255, 0.1) 75%
    );
    background-size: 20px 20px;
    animation: move 1s linear infinite;
}

.player-count {
    color: #ffffff;
    font-size: 12px;
    margin-top: 5px;
    text-align: right;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes move {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}
