.back-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
}
.back-link:hover { color: #fff; }

.sorteio-image-wrap {
    text-align: center;
    margin-bottom: 24px;
}
.sorteio-image {
    max-width: 100%;
    max-height: 360px;
    border-radius: 12px;
    object-fit: cover;
}

.status-banner {
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 24px;
}
.status-active  { background: #d1fae5; color: #065f46; }
.status-drawn   { background: #fef3c7; color: #92400e; }
.status-closed  { background: #f3f4f6; color: #6b7280; }

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.info-icon  { font-size: 28px; margin-bottom: 8px; }
.info-label { font-size: 12px; color: #6b7280; margin-bottom: 4px; }
.info-value { font-size: 15px; font-weight: 700; color: var(--wl-primary, #1B3A5F); }

.winner-banner {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}
.winner-trophy { font-size: 48px; }
.winner-info h2 { margin: 0 0 4px; font-size: 14px; color: #92400e; text-transform: uppercase; letter-spacing: 1px; }
.winner-name  { font-size: 22px; font-weight: 700; color: #78350f; margin: 0 0 4px; }
.winner-date  { font-size: 13px; color: #92400e; margin: 0; }

.detail-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.detail-section h3 { margin: 0 0 12px; color: var(--wl-primary, #1B3A5F); }
.detail-section p  { margin: 0; color: #374151; line-height: 1.6; }

.cta-wrap { text-align: center; margin: 32px 0; }
.btn-participate-large {
    display: inline-block;
    background: var(--wl-primary, #1B3A5F);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-participate-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}