.dashboard-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 40px 0;
}

.dashboard-container .stat-card .stat-number {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50 !important;
}

.dashboard-container .stat-card .stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5a6c7d !important;
    margin-bottom: 8px;
}

.dashboard-container .stat-card .stat-description {
    font-size: 0.95rem;
    color: #95a5a6 !important;
    line-height: 1.4;
}

.dashboard-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
}

.dashboard-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.stat-card.support-today {
    border-top-color: #667eea;
}

.stat-card.support-open {
    border-top-color: #f093fb;
}

.stat-card.active-sites {
    border-top-color: #4facfe;
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.support-today .stat-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.support-open .stat-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.active-sites .stat-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.95rem;
    color: #95a5a6;
    line-height: 1.4;
}

.refresh-section {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.refresh-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.refresh-btn:disabled {
    background: #6c757d;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

.loading-spinner {
    text-align: center;
    padding: 60px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.stat-card {
    animation: slideInUp 0.6s ease-out;
}

.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; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .dashboard-container { padding: 20px 0; }
    .dashboard-title { font-size: 2rem; }
    .stats-grid { gap: 20px; grid-template-columns: 1fr; }
    .stat-card { padding: 30px 20px; }
    .stat-number { font-size: 2.8rem; }
}