/* =============================================
   WIDGET
   ============================================= */
.widget-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.widget-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.widget-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

/* =============================================
   FAVORITE OSHI
   ============================================= */
.oshi-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.oshi-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.oshi-rank {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.oshi-item img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.oshi-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.oshi-info strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.oshi-info span {
    font-size: 11px;
    color: var(--text-2);
}

.oshi-votes {
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
}

/* =============================================
   NEXT BIRTHDAY
   ============================================= */
.birthday-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.birthday-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--red);
}

.birthday-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.birthday-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.birthday-team {
    font-size: 12px;
    color: var(--text-2);
}

.birthday-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-2);
}

.birthday-date i {
    color: var(--red);
    font-size: 14px;
}

.birthday-countdown {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.countdown-val {
    font-size: 18px;
    font-weight: 900;
    color: var(--red);
}

.countdown-lbl {
    font-size: 10px;
    color: var(--text-2);
    margin-right: 6px;
}

.bday-upcoming {
    border-top: 1px solid var(--border);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bday-next-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bday-next-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-2);
}

.bday-next-item span:last-child {
    font-weight: 600;
    color: var(--text);
}

/* =============================================
   NEXT SHOW
   ============================================= */
.show-feature {
    margin-bottom: 14px;
}

.show-badge-live {
    display: inline-block;
    background: rgba(232, 0, 45, 0.1);
    color: var(--red);
    border: 1px solid rgba(232, 0, 45, 0.2);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.show-title-main {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 2px;
}

.show-sub {
    font-size: 12px;
    color: var(--text-2);
    margin-bottom: 10px;
}

.show-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}

.show-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-2);
}

.show-meta-item i {
    color: var(--red);
    font-size: 14px;
}

.btn-show-watch {
    width: 100%;
    background: var(--red);
    color: white;
    border-radius: 10px;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s;
}

.btn-show-watch:hover {
    background: var(--red-dark);
}

.show-upcoming-list {
    border-top: 1px solid var(--border);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.show-list-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-2);
}

.show-list-item span:last-child {
    font-weight: 600;
    color: var(--text);
}