/* Seller profile: giveaways + friends */
.yon-seller-giveaways {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.yon-seller-gw-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.1);
    background: linear-gradient(180deg, #161b24 0%, #121820 100%);
    padding: 16px;
    box-shadow: 0 8px 28px rgba(0,0,0,.25);
}
.yon-seller-gw-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.yon-seller-gw-card__creator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #e2e8f0;
    text-decoration: none;
}
.yon-seller-gw-card__creator span {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #334155;
    display: grid;
    place-items: center;
    font-size: 11px;
    color: #fff;
}
.yon-seller-gw-card__profile-btn {
    font-size: 11px;
    font-weight: 700;
    color: #a5b4fc;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(99,102,241,.12);
}
.yon-seller-gw-card__title {
    margin: 12px 0 0;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    line-height: 1.35;
}
.yon-seller-gw-card__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    text-align: center;
    font-size: 10px;
}
.yon-seller-gw-card__stats span { display: block; color: #64748b; }
.yon-seller-gw-card__stats strong { display: block; margin-top: 4px; color: #fff; font-size: 12px; font-weight: 800; }
.yon-seller-gw-card__visual {
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0d14;
    aspect-ratio: 16/10;
    display: grid;
    place-items: center;
}
.yon-seller-gw-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.yon-seller-gw-card__visual span { font-size: 40px; color: #6366f1; }
.yon-seller-gw-card__timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 12px;
    padding: 10px;
    border-radius: 10px;
    background: #0a0d14;
    border: 1px solid rgba(255,255,255,.06);
    text-align: center;
}
.yon-seller-gw-card__timer strong { display: block; font-size: 18px; color: #fff; font-weight: 900; }
.yon-seller-gw-card__timer span { display: block; font-size: 9px; color: #64748b; margin-top: 2px; text-transform: uppercase; }
.yon-seller-gw-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}
.yon-seller-gw-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 10px;
    border-radius: 10px;
    border: none;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
}
.yon-seller-gw-card__btn--primary { background: rgba(99,102,241,.22); color: #c4b5fd; }
.yon-seller-gw-card__btn--join { background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff; }

.yon-seller-friends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.yon-seller-friend-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.25);
    text-align: center;
    text-decoration: none;
    transition: border-color .15s, transform .15s;
}
.yon-seller-friend-card:hover { border-color: rgba(99,102,241,.45); transform: translateY(-2px); }
.yon-seller-friend-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    overflow: hidden;
    background: #334155;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
}
.yon-seller-friend-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.yon-seller-friend-card strong { font-size: 13px; color: #e2e8f0; word-break: break-all; }
