.logo-link {
    color: inherit;
    text-decoration: none;
}

.nav-link.active {
    color: #ff4444;
}

.nav-link.active::after {
    width: 100%;
}

.main .container {
    max-width: none !important;
    width: 95% !important;
    padding: 0 2rem !important;
}

.stats-container {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
}

.stats-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stats-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-header p {
    color: #ccc;
    font-size: 1.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.stat-card.reports::before {
    background: linear-gradient(90deg, #4caf50, #66bb6a);
}

.stat-card.blacklisted::before {
    background: linear-gradient(90deg, #f44336, #ef5350);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.stat-content h3 {
    color: #f5f5f5;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: "Courier New", monospace;
}

.reports .stat-number {
    color: #4caf50;
}

.blacklisted .stat-number {
    color: #f44336;
}

.stat-content p {
    color: #999;
    font-size: 1.1rem;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.stat-number.loading {
    opacity: 0.5;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}