/* Server Statistics Section Styling for Valorium KalOnline */

.server-stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 15px;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    background-color: rgba(20, 20, 20, 0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid #9c27b0;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    color: #9c27b0;
    margin-bottom: 15px;
    display: inline-block;
    background-color: rgba(156, 39, 176, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.2);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(156, 39, 176, 0.2);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.3);
}

.stat-title {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #9c27b0;
}

.stat-value a {
    color: #9c27b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.stat-value a:hover {
    color: #ba68c8;
    text-decoration: underline;
}

/* Status colors */
.status-online {
    color: #4CAF50; /* Green for online */
}

.status-offline {
    color: #f44336; /* Red for offline */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .server-stats-container {
        flex-direction: column;
    }
    
    .stat-card {
        width: 100%;
    }
}