/* Everwind Server List - Main Styles */

:root {
    --primary-color: #6366f1;
    --secondary-color: #ec4899;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Stat Cards */
.stat-card {
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* Server List */
.list-group-item:hover {
    background-color: #f8f9fa;
}

/* Pagination */
.pagination {
    gap: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
}
