.site-stats-component .component-title {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.site-stats .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.site-stats .stat-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.site-stats .stat-badge-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.site-stats .stat-badge-violet {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.site-stats .stat-badge-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.site-stats .stat-badge-red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.style-default {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid var(--border-primary);
}

.style-default .site-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.style-default .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-secondary);
}

.style-compact {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 16px;
    border: 1px solid var(--border-primary);
}

.style-compact .site-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.style-compact .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
}

.style-compact .stat-label {
    font-size: 13px;
}

.style-compact .stat-badge {
    padding: 2px 10px;
    font-size: 13px;
}

.style-grid {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid var(--border-primary);
}

.style-grid .site-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.style-grid .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-secondary);
    text-align: center;
}

.style-grid .stat-label {
    margin-bottom: 8px;
}

.style-minimal {
    background: transparent;
    padding: 0;
}

.style-minimal .site-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.style-minimal .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-primary);
}

.style-minimal .stat-item:last-child {
    border-bottom: none;
}

.style-gradient {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-radius: var(--border-radius);
    padding: 24px;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-md);
}

.style-gradient .site-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.style-gradient .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-secondary);
    transition: all 0.3s ease;
}

.style-gradient .stat-item:hover {
    transform: translateX(4px);
    border-color: var(--theme-color);
}

.style-gradient .stat-badge-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #8b5cf6;
}

.style-gradient .stat-badge-violet {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: #7c3aed;
}

.style-gradient .stat-badge-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #3b82f6;
}

.style-gradient .stat-badge-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    color: #ef4444;
}
