/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background: rgba(15, 20, 25, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700 !important;
    text-decoration: none;
}

.navbar-brand i {
    font-size: 1.8rem;
    color: #ffd700;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700 !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 70px;
        min-height: 100vh;
        max-height: 600px;
    }
}

/* Banner Slide Específico */
.hero-slide-banner {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%) !important;
    position: relative;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .hero-slide-banner {
        height: 100vh;
        max-height: 600px;
        min-height: 500px;
    }
}

.banner-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 1200px;
    animation: bannerGlow 4s ease-in-out infinite;
}

.hero-banner-mobile {
    display: none;
}

.hero-banner-desktop {
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px;
}

.banner-cta {
    text-align: center;
    animation: ctaPulse 2s ease-in-out infinite;
}

.btn-banner-cta {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    border: none;
    color: #000;
    font-weight: 800;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-banner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-banner-cta:hover::before {
    left: 100%;
}

.btn-banner-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    color: #000;
}

.btn-banner-cta i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Animações do Banner */
@keyframes bannerGlow {
    0%, 100% {
        filter: brightness(1) contrast(1);
    }
    50% {
        filter: brightness(1.1) contrast(1.1);
    }
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero-slide {
    background: linear-gradient(135deg, #ff8c00 0%, #ffd700 50%, #ff8c00 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slide.slide-2 {
    background: linear-gradient(135deg, #4169e1 0%, #00bfff 50%, #4169e1 100%);
}

.hero-slide.slide-3 {
    background: linear-gradient(135deg, #32cd32 0%, #00ff7f 50%, #32cd32 100%);
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-amount {
    font-size: 5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin: 0.5rem 0;
}

.money-animation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.money-animation i {
    font-size: 2rem;
    color: #ffd700;
    animation: bounce 2s infinite;
}

.money-animation i:nth-child(2) {
    animation-delay: 0.2s;
}

.money-animation i:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-image {
    text-align: center;
    position: relative;
    z-index: 2;
}

.treasure-chest {
    font-size: 8rem;
    color: #ffd700;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.game-cards {
    display: flex;
    justify-content: center;
    gap: 1rem;
    animation: slideInRight 1s ease-out;
}

.card-item {
    font-size: 4rem;
    animation: spin 3s linear infinite;
}

.card-item:nth-child(2) {
    animation-delay: 0.5s;
}

.card-item:nth-child(3) {
    animation-delay: 1s;
}

.prize-showcase {
    display: flex;
    justify-content: center;
    gap: 2rem;
    animation: slideInRight 1s ease-out;
}

.prize-item {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

.prize-item:nth-child(2) {
    animation-delay: 0.3s;
}

.prize-item:nth-child(3) {
    animation-delay: 0.6s;
}

/* Floating Money Animation */
.floating-money {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.money-note {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.money-note:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.money-note:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.money-note:nth-child(3) {
    top: 30%;
    right: 25%;
    animation-delay: 4s;
}

.money-note:nth-child(4) {
    top: 70%;
    left: 20%;
    animation-delay: 1s;
}

/* Winners Section */
.winners-section {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.winners-carousel-container {
    background: rgba(15, 20, 25, 0.9);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 215, 0, 0.4);
    margin: 0 1rem;
    position: relative;
}

.winners-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.winners-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.winners-track {
    display: flex;
    gap: 1rem;
    animation: scrollWinners 30s linear infinite;
    width: max-content;
}

.winner-card {
    flex: none;
    width: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.winner-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.prize-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.prize-image-winner {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.winner-card:hover .prize-image-winner {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.4));
    background: rgba(255, 215, 0, 0.15);
}

.prize-value {
    color: #ffd700;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.winner-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    margin-bottom: 0.5rem;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.winner-name {
    font-weight: 500;
    color: #ffffff;
    font-size: 0.8rem;
    line-height: 1.2;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.winner-name:hover {
    opacity: 1;
    color: #ffd700;
}

/* Animação do carrossel */
@keyframes scrollWinners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausa a animação no hover */
.winners-carousel:hover .winners-track {
    animation-play-state: paused;
}

/* Efeito de fade nas bordas */
.winners-carousel::before,
.winners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}

.winners-carousel::before {
    left: 0;
    background: linear-gradient(90deg, rgba(15, 20, 25, 0.9) 0%, transparent 100%);
}

.winners-carousel::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(15, 20, 25, 0.9) 0%, transparent 100%);
}

/* Versão antiga para fallback */
.winner-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    transition: all 0.3s ease;
}

.winner-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.winner-prize {
    color: #ffd700;
    font-weight: 700;
    margin-left: auto;
}

/* Treasure Section */
.treasure-section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title i {
    color: #ffd700;
    margin-right: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Treasure Cards */
.treasure-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.treasure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.treasure-card:hover::before {
    left: 100%;
}

.treasure-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.treasure-card.featured {
    border: 2px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.treasure-header {
    text-align: center;
    margin-bottom: 2rem;
}

.treasure-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.treasure-price {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.treasure-image {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.treasure-chest {
    font-size: 6rem;
    margin-bottom: 1rem;
    animation: treasureGlow 3s ease-in-out infinite;
}

.treasure-chest-img {
    width: 160px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 1rem;
    animation: treasureGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    border-radius: 15px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    padding: 15px;
    max-width: 100%;
}

.treasure-chest-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 25px rgba(255, 215, 0, 0.4));
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.treasure-chest.silver {
    color: #c0c0c0;
    filter: drop-shadow(0 0 20px rgba(192, 192, 192, 0.5));
}

.treasure-chest.gold {
    color: #ffd700;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.7));
}

.treasure-chest.diamond {
    color: #00bfff;
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.7));
}

.treasure-chest.ruby {
    color: #dc143c;
    filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.7));
}

.treasure-chest.premium {
    color: #9932cc;
    filter: drop-shadow(0 0 20px rgba(153, 50, 204, 0.7));
}

.treasure-chest.pink {
    color: #ff69b4;
    filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.7));
}

.view-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-btn:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
}

.view-btn.gold {
    background: rgba(255, 215, 0, 0.3);
}

.view-btn.diamond {
    background: rgba(0, 191, 255, 0.3);
}

.view-btn.ruby {
    background: rgba(220, 20, 60, 0.3);
}

.view-btn.premium {
    background: rgba(153, 50, 204, 0.3);
}

.view-btn.pink {
    background: rgba(255, 105, 180, 0.3);
}

.treasure-content {
    text-align: center;
}

.treasure-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Prizes Carousel */
.prizes-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    height: 140px;
}

.prizes-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.prize-set {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-in-out;
}

.prize-set.active {
    opacity: 1;
    transform: translateX(0);
}

.prize-set.leaving {
    opacity: 0;
    transform: translateX(-30px);
}

/* Fallback - Grid estático para compatibilidade */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    justify-items: center;
}

.prize-item {
    text-align: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    width: 100%;
}

.prize-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.prize-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.prize-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
}

.prize-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.4));
}

.prize-item span {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #ffffff;
}

/* Buttons */
.btn-treasure {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border: none;
    color: #000;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-treasure::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-treasure:hover::before {
    left: 100%;
}

.btn-treasure:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
    color: #000;
}

.btn-treasure.gold {
    background: linear-gradient(45deg, #ff8c00, #ffd700);
}

.btn-treasure.diamond {
    background: linear-gradient(45deg, #00bfff, #87ceeb);
}

.btn-treasure.ruby {
    background: linear-gradient(45deg, #dc143c, #ff6b6b);
}

.btn-treasure.premium {
    background: linear-gradient(45deg, #9932cc, #ba55d3);
}

.btn-treasure.pink {
    background: linear-gradient(45deg, #ff69b4, #ffb6c1);
}

/* Footer */
.footer {
    background: rgba(15, 20, 25, 0.9);
    padding: 2rem 0;
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes treasureGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-amount {
        font-size: 3rem;
    }
    
    .treasure-chest {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .treasure-card {
        margin-bottom: 2rem;
    }
    
    .prizes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ticker-content {
        gap: 1rem;
    }
    
    .winner-item {
        min-width: 150px;
        font-size: 0.9rem;
    }
    
    /* Banner Responsivo */
    .banner-container {
        height: 100vh;
        max-height: 600px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    
    .hero-banner-desktop {
        display: none;
    }
    
    .hero-banner-mobile {
        display: block;
        width: 100vw;
        height: 100%;
        object-fit: cover;
        object-position: center;
        margin: 0;
        padding: 0;
    }
    
    .banner-overlay {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        padding: 15px;
        background: transparent;
        width: 90%;
        text-align: center;
        z-index: 10;
    }
    
    .banner-cta {
        margin: 0;
    }
    
    .btn-banner-cta {
        padding: 14px 40px;
        font-size: 1.1rem;
        letter-spacing: 1px;
        font-weight: 700;
        border-radius: 25px;
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-amount {
        font-size: 2.5rem;
    }
    
    .treasure-card {
        padding: 1.5rem;
    }
    
    /* Responsive Prizes Carousel */
    .prizes-carousel {
        height: 120px;
    }
    
    .prize-set {
        gap: 0.5rem;
    }
    
    .prizes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .prize-item {
        min-height: 100px;
        padding: 0.6rem;
    }
    
    .prize-image {
        width: 45px;
        height: 45px;
    }
    
    .treasure-chest-img {
        width: 120px;
        height: 100px;
        padding: 10px;
    }
    
    .winner-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    /* Winners carousel responsive */
    .winners-carousel-container {
        margin: 0 0.5rem;
        padding: 1rem;
    }
    
    .winner-card {
        width: 100px;
        padding: 0.8rem;
    }
    
    .prize-icon {
        font-size: 1.5rem;
    }
    
    .prize-value {
        font-size: 0.8rem;
    }
    
    .winner-avatar {
        width: 30px;
        height: 30px;
    }
    
    .winner-name {
        font-size: 0.7rem;
    }
    
    .winners-header {
        font-size: 1rem;
    }
    
    .prize-image-winner {
        width: 40px;
        height: 40px;
        padding: 3px;
    }
    
    /* Banner Mobile Pequeno */
    .banner-container {
        height: 100vh !important;
        max-height: 500px !important;
        padding: 0;
        margin: 0;
    }
    
    .hero-banner-mobile {
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .banner-overlay {
        padding: 10px !important;
        bottom: 15px !important;
    }
    
    .btn-banner-cta {
        padding: 12px 28px !important;
        font-size: 1rem !important;
        width: 100%;
        max-width: 250px;
    }
}
