/* ======================================================= */
/* TIKTOK PROFILE CARD WIDGET (COMPACT & SLEEK 1:1 DESIGN) */
/* ======================================================= */
.tiktok-card-brick {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

.tiktok-card {
    background: radial-gradient(circle at 85% 15%, rgba(37, 244, 238, 0.08) 0%, rgba(254, 44, 85, 0.08) 40%, rgba(26, 27, 30, 0.98) 75%), #1a1b1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    font-family: 'gg sans', 'Noto Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #f2f3f5;
    user-select: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    padding: 10px 10px 8px 10px;
}

.tiktok-card:hover {
    border-color: rgba(254, 44, 85, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(254, 44, 85, 0.15), 0 0 20px rgba(37, 244, 238, 0.1);
}

/* Body / User Profile */
.tiktok-card-body {
    display: flex;
    align-items: center;
    padding: 0 2px;
    gap: 10px;
    position: relative;
    z-index: 2;
}

/* Glowing Avatar Wrapper */
.tiktok-avatar-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #fe2c55 0%, #ff0050 40%, #00f2fe 100%);
    box-shadow: 0 0 8px rgba(254, 44, 85, 0.35);
}

.tiktok-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background-color: #111214;
    border: 2px solid #1a1b1e;
    box-sizing: border-box;
}

.tiktok-user-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

/* Nickname Row: Nickname on left, TIKTOK logo on right */
.tiktok-nickname-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.tiktok-nickname {
    font-size: 14.5px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.15;
}

.tiktok-brand-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15.5px;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-transform: uppercase;
    background: transparent;
    border: none;
    padding: 0;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.tiktok-card:hover .tiktok-brand-tag {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.tiktok-logo-icon {
    width: 18px;
    height: 18px;
    filter: drop-shadow(2px 0 0 rgba(254, 44, 85, 0.95)) drop-shadow(-2px 0 0 rgba(37, 244, 238, 0.95));
    transition: filter 0.2s ease, transform 0.2s ease;
}

.tiktok-card:hover .tiktok-logo-icon {
    filter: drop-shadow(2.5px 0 0 #fe2c55) drop-shadow(-2.5px 0 0 #25f4ee) drop-shadow(0 0 10px rgba(254, 44, 85, 0.6));
    transform: scale(1.05);
}

.tiktok-handle {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1px;
}

.tiktok-bio {
    font-size: 10.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Stats Counter Row */
.tiktok-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 4px 6px 4px 6px;
    margin: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.tiktok-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.tiktok-stat-num {
    font-size: 12.5px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.tiktok-stat-label {
    font-size: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 1px;
}

.tiktok-stat-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}
