/* --- SOSYAL MEDYA LİNKLERİ --- */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

    .social-link:hover {
        transform: translateY(-3px);
        color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .social-link.facebook:hover {
        background: #1877F2;
        border-color: #1877F2;
    }

    .social-link.twitter:hover {
        background: #000000;
        border-color: #333;
    }

    .social-link.instagram:hover {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        border-color: transparent;
    }

    .social-link.youtube:hover {
        background: #FF0000;
        border-color: #FF0000;
    }

    .social-link.whatsapp:hover {
        background: #25D366;
        border-color: #25D366;
    }

/* --- İSTATİSTİK VE BÖLÜM YAPILARI --- */
.stats-container {
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.stat-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.section-title {
    font-weight: 900;
    color: #0f172a;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 5px;
        background: #dc2626;
        border-radius: 5px;
    }

/* --- BLAZOR RECONNECT MODAL --- */
#components-reconnect-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #ffffff;
    transition: opacity 0.5s ease-out;
}

    #components-reconnect-modal.components-reconnect-hide {
        opacity: 0;
        pointer-events: none;
    }

@@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}
