 
.youtube-stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.stat-circle {
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.stat-circle:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.circle-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 24px;
    color: #0073e6;
    font-weight: bold;
}

@media (max-width: 768px) {
    .stat-circle {
        width: 120px;
        height: 120px;
    }

    .stat-title {
        font-size: 16px;
    }

    .stat-value {
        font-size: 20px;
    }
}
