.header-back-link {
    text-decoration: none;
    color: inherit;
}

.winners-page .main-content {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

.winners-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.winners-head {
    padding: 0.25rem 0.15rem 0;
}

.winners-head-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.winners-title-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.winners-title-icon {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(255, 110, 180, 0.35));
}

.winners-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.winners-subtitle {
    font-size: 0.76rem;
    color: var(--muted);
    line-height: 1.45;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.55rem 0.28rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 45, 120, 0.12);
    border: 1px solid rgba(255, 110, 180, 0.28);
    box-shadow: 0 0 16px rgba(255, 45, 120, 0.12);
    flex-shrink: 0;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff3b6b;
    box-shadow: 0 0 0 0 rgba(255, 59, 107, 0.65);
    animation: livePulse 1.6s ease-in-out infinite;
}

.live-text {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #ff8fc0;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 107, 0.55); transform: scale(1); }
    70% { box-shadow: 0 0 0 8px rgba(255, 59, 107, 0); transform: scale(1.08); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 107, 0); transform: scale(1); }
}

.winners-feed {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.winner-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.6rem 0.75rem;
    min-height: 64px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s, opacity 0.25s;
}

.winner-card.is-new {
    opacity: 0;
    transform: translateY(-8px);
    border-color: rgba(255, 110, 180, 0.35);
    box-shadow: 0 0 18px rgba(255, 45, 120, 0.12);
}

.winner-card:not(.is-new) {
    opacity: 1;
    transform: translateY(0);
}

.winner-card-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.winner-card-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.winner-card-amount {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--pink-light);
    letter-spacing: 0.02em;
}

.winner-card-logo {
    flex: 0 0 64px;
    width: 64px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

.winner-card-logo img {
    max-width: 100%;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (min-width: 481px) {
    .winners-title-icon { width: 36px; height: 36px; }
    .winners-title { font-size: 1.3rem; }
    .winner-card { padding: 0.7rem 0.9rem; border-radius: 14px; min-height: 70px; }
    .winner-card-logo { flex-basis: 72px; width: 72px; height: 62px; }
    .winner-card-logo img { max-height: 62px; }
}
