/* ============================================
   ستون کناری (چپ)
   ============================================ */

/* ---- کارت سطح و امتیاز (برای بازدیدکنندگان) ---- */
/* (همان کلاس‌های glass-card و section-header از main استفاده می‌شوند) */

/* ---- گرید آمار ---- */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(253, 86, 49, 0.06);
    transform: translateX(-5px);
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(253, 86, 49, 0.12), rgba(93, 60, 242, 0.12));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fd5631;
}

.stat-card-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.location-value {
    font-size: 1rem;
}

.location-sep {
    margin: 0 0.25rem;
    color: #666276;
}

.stat-card-label {
    font-size: 0.7rem;
    color: #9691a4;
}

/* ---- لینک‌های اجتماعی و ارتباط ---- */
.social-link-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.social-link-btn i:first-child {
    font-size: 1.25rem;
    color: #fd5631;
}

.social-link-btn span {
    flex: 1;
    font-size: 0.85rem;
    color: #fff;
}

.arrow-icon {
    opacity: 0;
    transition: all 0.3s ease;
}

.social-link-btn:hover {
    background: rgba(253, 86, 49, 0.08);
    border-color: rgba(253, 86, 49, 0.3);
    transform: translateX(-5px);
}

.social-link-btn:hover .arrow-icon {
    opacity: 1;
    transform: translateX(-5px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: #bbb7c5;
    transition: all 0.3s ease;
}

.social-link-item i:first-child {
    font-size: 1.1rem;
    color: #fd5631;
}

.social-link-item:hover {
    background: rgba(253, 86, 49, 0.08);
    color: #fff;
    transform: translateX(-5px);
}

/* ---- گزارش تخلف ---- */
.report-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
}

.report-section i {
    font-size: 2rem;
    color: #f23c49;
    opacity: 0.6;
}

.btn-report {
    background: rgba(242, 60, 73, 0.1);
    border: 1px solid rgba(242, 60, 73, 0.2);
    border-radius: 2rem;
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    color: #f23c49;
    transition: all 0.3s ease;
}

.btn-report:hover {
    background: rgba(242, 60, 73, 0.2);
    transform: scale(0.98);
}

/* ---- ریسپانسیو ---- */
@media (max-width: 768px) {
    .stat-card-value {
        font-size: 1rem;
    }

    .stat-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}