/* Glassmorphism Card */
.author-card {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    padding: 16px;
    transition: 0.3s ease;
}

.author-card:hover {
    transform: translateY(-4px);
}

/* Image */
.author-img-wrap {
    position: relative;
}

.author-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0d6efd;
}

/* Online dot */
.online-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* Verified Badge */
.verified {
    font-size: 12px;
    background: linear-gradient(45deg, #0d6efd, #00c6ff);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Text */
.author-text {
    font-size: 14px;
    color: #444;
}

/* Stats */
.author-stats span {
    font-size: 13px;
    color: #666;
}

/* Social */
.author-social a {
    text-decoration: none;
    font-size: 13px;
    margin-left: 8px;
    padding: 5px 12px;
    border-radius: 20px;
    color: #fff;
    transition: 0.3s;
}

/* YouTube */
.author-social .yt {
    background: #ff0000;
}

/* Instagram */
.author-social .ig {
    background: linear-gradient(45deg, #e1306c, #fd1d1d, #f77737);
}

.author-social a:hover {
    opacity: 0.85;
}