/* Carrossel Container */
.powerball-carousel {
    margin: 24px 0;
    padding: 0 4px;
}

.carousel-title {
    font-size: 16px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 8px;
}

.carousel-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 20px;
    /* EspaĂ§o para shadow */
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 16px;
    padding: 8px 8px;
}

/* Card Base */
.concurso-card {
    min-width: 280px;
    max-width: 320px;
    scroll-snap-align: center;
    background: linear-gradient(145deg, #1E1E1E, #2A2A2A);
    border-radius: 16px;
    padding: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Estados do Card */
.concurso-card.state-today {
    border-color: #FFB300;
    box-shadow: 0 8px 32px rgba(255, 179, 0, 0.3);
}

.concurso-card.state-today.pulsate {
    animation: pulse-border 2s infinite;
}

.concurso-card.state-future {
    border-color: rgba(76, 175, 80, 0.3);
}

.concurso-card.state-buffer {
    border-color: rgba(255, 152, 0, 0.3);
    opacity: 0.9;
}

.concurso-card.state-finished {
    border-color: rgba(156, 39, 176, 0.3);
    opacity: 0.85;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 179, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 179, 0, 0);
    }
}

/* Badge Utilities (Bootstrap-like) */
.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.bg-danger {
    background-color: #dc3545 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.text-dark {
    color: #212529 !important;
}

.text-white {
    color: #fff !important;
}

/* Styles from previous step */
.concurso-title {
    font-size: 24px;
    font-weight: 800;
    color: #FFF;
    margin: 0;
}

.concurso-subtitle {
    display: block;
    color: #888;
    font-size: 11px;
    margin-bottom: 8px;
}

.prize-display {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prize-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #AAA;
}

.prize-value {
    font-size: 28px;
    font-weight: 900;
    color: #F5C542;
    margin: 4px 0 0 0;
    text-shadow: 0 2px 10px rgba(245, 197, 66, 0.2);
}

.accumulated-badge {
    margin-top: 4px;
    font-size: 10px;
    color: #FFC107;
    font-weight: 700;
}
/* Efeito de Vitória (Point 2 da Análise UX) */
.pulse-gold {
    animation: gold-glow 3s infinite alternate;
}

.pulse-green {
    animation: green-glow 3s infinite alternate;
}

@keyframes gold-glow {
    0% { border-color: rgba(245, 158, 11, 0.3); box-shadow: 0 0 5px rgba(245, 158, 11, 0.1); }
    100% { border-color: rgba(245, 158, 11, 0.8); box-shadow: 0 0 25px rgba(245, 158, 11, 0.3); }
}

@keyframes green-glow {
    0% { border-color: rgba(34, 197, 94, 0.3); box-shadow: 0 0 5px rgba(34, 197, 94, 0.1); }
    100% { border-color: rgba(34, 197, 94, 0.8); box-shadow: 0 0 25px rgba(34, 197, 94, 0.3); }
}

.perspective-ticket {
    perspective: 1000px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

