/* Top Bloggers Front */

.tb-grid {
    display: grid;
    grid-template-columns: repeat(var(--tb-columns, 3), 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.tb-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.tb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.tb-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    z-index: 2;
}

.tb-card:nth-child(1) .tb-badge { background: linear-gradient(135deg, #FFD700, #FFA000); }
.tb-card:nth-child(2) .tb-badge { background: linear-gradient(135deg, #C0C0C0, #9E9E9E); }
.tb-card:nth-child(3) .tb-badge { background: linear-gradient(135deg, #CD7F32, #A0522D); }

.tb-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f0f0f0;
    background: #f5f5f5;
}

.tb-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tb-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: #999;
    background: #e8e8e8;
}

.tb-name {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #222;
}

.tb-cat {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f0f0f0;
    color: #666;
    margin-bottom: 10px;
}

.tb-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tb-total-subs {
    margin-bottom: 16px;
}

.tb-total-num {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #333;
}

.tb-total-label {
    font-size: 12px;
    color: #999;
}

.tb-socials {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tb-social {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.tb-social:hover {
    opacity: 0.85;
    transform: scale(1.05);
    color: #fff;
}

.tb-social svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.tb-youtube { background: #FF0000; }
.tb-telegram { background: #0088cc; }
.tb-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.tb-tiktok { background: #010101; }
.tb-vk { background: #4a76a8; }
.tb-dzen { background: #ff6600; }
.tb-website { background: #555; }

.tb-sub-count {
    font-size: 10px;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .tb-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
    .tb-grid { grid-template-columns: 1fr; gap: 16px; }
    .tb-card { padding: 24px 16px; }
}

/* === Single Blogger Page === */
.tb-single-card {
    max-width: 600px;
    margin: 30px auto;
    padding: 32px 28px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    text-align: center;
}

.tb-single-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f0f0f0;
}

.tb-single-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tb-single-cat {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    background: #f0f0f0;
    color: #666;
    margin-bottom: 14px;
}

.tb-single-total {
    margin-bottom: 20px;
}

.tb-single-total-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #333;
}

.tb-single-total-label {
    font-size: 13px;
    color: #999;
}

.tb-single-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.tb-single-social {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tb-single-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: #fff;
}

.tb-single-social svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.tb-single-social-name {
    font-size: 14px;
}

.tb-single-social-subs {
    font-size: 12px;
    opacity: 0.85;
    padding-left: 8px;
    border-left: 1px solid rgba(255,255,255,0.3);
}

@media (max-width: 480px) {
    .tb-single-card { padding: 24px 16px; }
    .tb-single-social { padding: 8px 14px; font-size: 13px; }
}
