/* ===== VARIÁVEIS E RESET ===== */
:root {
    --primary-red: #dd1616;
    --dark-red: #8b0000;
    --light-red: #ba2626;
    --vibrant-red: #ff0000; /* Novo vermelho vibrante para destaque */
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --tertiary-black: #2a2a2a;
    --gold: #ffd700;
    --gold-dark: #b8860b;
    --gold-light: #ffed4e;
    --white: #ffffff;
    --text-light: #e5e5e5;
    --text-gray: #b0b0b0;
    --text-shadow: rgba(255, 255, 255, 0.5);
    --gradient-bg: #080808; /*radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);*/
    --gradient-red: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    --gradient-vibrant-red: linear-gradient(45deg, var(--vibrant-red), var(--primary-red)); /* Novo gradiente vermelho */
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gradient-bg);
    min-height: 100vh;
    color: var(--white);
    overflow-x: hidden;
    position: relative;
    padding-bottom: 120px; /* Espaço para o rodapé */
    touch-action: pan-x pan-y;
}

/* ===== CONTEÚDO PRINCIPAL ===== */
.main-content {
    padding: 2rem 1rem;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* ===== PARTICLES BACKGROUND ===== */
.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: float 15s infinite linear;
    opacity: 0.6;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 16s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* ===== GLASS EFFECT ===== */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ===== CARROSSEL DE PRÊMIOS RECENTES ===== */
.recent-prizes-section {
    text-align: center;
    margin: 2rem 0 1rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.recent-prizes-title {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.prizes-carousel-container {
    overflow: hidden;
    position: relative;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    margin: 0 auto;
}

.prizes-carousel {
    display: flex;
    animation: scrollPrizes 20s linear infinite;
    gap: 2rem;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
    white-space: nowrap;
}

.prize-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.prize-amount {
    font-weight: bold;
    text-shadow: 0 0 10px currentColor;
}

.prize-amount.small {
    color: var(--dark-red);
}

.prize-amount.medium {
    color: var(--primary-red);
}

.prize-amount.large {
    color: var(--vibrant-red);
}

.prize-time {
    color: var(--text-gray);
    font-size: 0.8rem;
}

@keyframes scrollPrizes {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-200%);
    }
}

/* ===== PRÊMIOS EM DESTAQUE ===== */
.highlighted-prizes-section {
    margin: -1.5rem auto -2rem auto;
    padding: 1.5rem 1rem;
    /* background: rgba(0, 0, 0, 0.2); */
    border-radius: 20px;
    animation: fadeInUp 1s ease-out 1s both;
    max-width: 500px;
}

.highlighted-prizes-section .col-4 {
    align-content: end;
}

.highlighted-prizes-section small {
    color: var(--primary-red);
    text-shadow: none;
}

#roulettePreviousValue, #rouletteCurrentValue {
    text-shadow: 0 0 10px var(--text-shadow);
}

#prizesTodayValue small {
    font-size: 0.7rem;
}

#roulettePreviousValue small, #rouletteCurrentValue small {
    font-size: 0.5rem;
}

.highlight-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 0 15px var(--primary-red);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.highlight-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

@media (max-width: 576px) {
    .highlight-value {
        font-size: 1.8rem;
    }
    .highlight-label {
        font-size: 0.7rem;
    }
}

.terms-conditions {
    display: block;
    text-align: center;
    color: #696969;
    margin-bottom: 100px;
}

/* ===== RODAPÉ FLUTUANTE ===== */
.floating-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--primary-red);
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(204, 22, 22, 0.3);
    animation: slideInUp 1s ease-out;
}

.next-roulette-timer {
    background: var(--gradient-red);
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: timerPulse 10s ease-in-out infinite;
}

.next-roulette-timer strong {
    color: var(--white);
    font-size: 1.1rem;
    text-shadow: 0 3px 6px var(--text-shadow);
}

@keyframes timerPulse {
    0%, 100% { 
        background: var(--primary-red);
    }
    50% {
        background: var(--dark-red);
    }
}

.floating-footer .container {
    padding: 1rem 0;
}

.floating-footer .stat-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    padding: 0.5rem;
}

.floating-footer .stat-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.floating-footer .stat-item i {
    font-size: 1.5rem;
    color: #c60000;
    margin-bottom: 0.5rem;
    display: block;
    animation: pulse 2s infinite;
}

.floating-footer .stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
}

.floating-footer .stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== LOGO SECTION ===== */
.logo-section {
    animation: fadeInDown 1.5s ease-out;
}

.logo-container {
    animation: logoFloat 3s ease-in-out infinite;
}

.main-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(204, 22, 22, 0.5));
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(204, 22, 22, 0.8));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.animate-fade-in {
    animation: fadeIn 2s ease-out 0.5s both;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.prize-highlight {
    color: var(--vibrant-red);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(204, 22, 22, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(204, 22, 22, 0.5); }
    to { text-shadow: 0 0 20px rgba(204, 22, 22, 0.8); }
}

/* ===== PAINEL DO USUÁRIO ===== */
.user-panel {
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 0.3s both;
    transition: all 0.3s ease;
}

.user-panel:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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


@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(110%); opacity: 0; }
}

.user-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-red);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(204, 22, 22, 0.4);
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.user-stat:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(204, 22, 22, 0.6);
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 3px 6px var(--text-shadow);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===== ROLETA SIMPLES ===== */
.roulette-container {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
    animation: zoomIn 1.2s ease-out 0.6s both;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.roulette-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roulette-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 60%, var(--primary-red) 100%);
    animation: rotateContinuous 20s linear infinite;
    opacity: 0.3;
}

@keyframes rotateContinuous {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.roulette-wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid var(--primary-red);
    position: relative;
    box-shadow: 
        0 0 40px rgba(204, 22, 22, 0.6),
        inset 0 0 20px rgba(0,0,0,0.5),
        0 0 80px rgba(204, 22, 22, 0.3);
    transition: transform 4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: rotate(-9deg);
    background: conic-gradient(
        var(--secondary-black) 0deg 18deg,
        var(--light-red) 18deg 36deg,
        var(--secondary-black) 36deg 54deg,
        var(--primary-red) 54deg 72deg,
        var(--secondary-black) 72deg 90deg,
        var(--light-red) 90deg 108deg,
        var(--secondary-black) 108deg 126deg,
        var(--light-red) 126deg 144deg,
        var(--secondary-black) 144deg 162deg,
        var(--primary-red) 162deg 180deg,
        var(--secondary-black) 180deg 198deg,
        var(--light-red) 198deg 216deg,
        var(--secondary-black) 216deg 234deg,
        var(--light-red) 234deg 252deg,
        var(--secondary-black) 252deg 270deg,
        var(--primary-red) 270deg 288deg,
        var(--secondary-black) 288deg 306deg,
        var(--light-red) 306deg 324deg,
        var(--secondary-black) 324deg 342deg,
        var(--light-red) 342deg 360deg
    );
}

.roulette-prizes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prize-text {
    position: absolute;
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
    transform-origin: center;
}

.prize-text.gold {
    color: var(--white);
    text-shadow: 0 3px 5px rgba(0, 0, 0, 1);
}

.prize-text.red {
    color: var(--white);
    /* text-shadow: 0 0 5px rgba(204, 22, 22, 0.8); */
}

.roulette-pointer {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    z-index: 10;
}

.pointer-inner {
    width: 40px;
    height: 40px;
    background: var(--gradient-vibrant-red);
    border-radius: 50% 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(204, 22, 22, 0.5);
    animation: pointerPulse 1.5s ease-in-out infinite;
}

.pointer-inner i {
    font-size: 1.2rem;
    color: var(--white);
    transform: rotate(45deg);
    font-weight: bold;
}

@keyframes pointerPulse {
    0%, 100% { 
        transform: rotate(45deg) scale(1);
        box-shadow: 0 4px 15px rgba(204, 22, 22, 0.5);
    }
    50% { 
        transform: rotate(45deg) scale(1.1);
        box-shadow: 0 6px 25px rgba(204, 22, 22, 0.8);
    }
}

.roulette-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-vibrant-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(204, 22, 22, 0.6);
    z-index: 5;
    animation: centerSpin 4s ease-in-out infinite;
}

.roulette-center i {
    font-size: 1.5rem;
    color: var(--white);
}

@keyframes centerSpin {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

/* ===== BOTÕES MODERNOS ===== */
.action-buttons {
    margin: 4rem 0;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.action-buttons button {
    display: block;
    margin: 5px auto;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-btn {
    position: relative;
    margin: 0.8rem;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    min-width: 280px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.btn-content i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modern-btn:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

.modern-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.modern-btn:hover .btn-content i {
    transform: scale(1.2) rotate(360deg);
}

.modern-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Botão de Anúncio */
.btn-ad {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-ad:hover {
    background: linear-gradient(135deg, #5a6578 0%, #3d4758 100%);
    border-color: var(--text-gray);
}

/* Botão Principal - Girar */
.btn-spin {
    background: var(--gradient-red);
    color: var(--white);
    border: 3px solid var(--light-red);
    box-shadow: 
        0 8px 25px rgba(204, 22, 22, 0.4),
        0 0 40px rgba(255, 51, 51, 0.2);
}

.btn-spin:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--light-red) 0%, var(--primary-red) 100%);
    border-color: var(--vibrant-red);
    box-shadow: 
        0 15px 35px rgba(204, 22, 22, 0.6),
        0 0 60px rgba(255, 51, 51, 0.4);
    animation: buttonPulse 0.6s ease-in-out;
}

@keyframes buttonPulse {
    0%, 100% { transform: translateY(-3px) scale(1.02); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.btn-spin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(50%);
}

/* Botão Super Roleta */
.btn-super {
    background: var(--gradient-vibrant-red);
    color: var(--white);
    border: 2px solid var(--light-red);
    box-shadow: 0 8px 25px rgba(204, 22, 22, 0.4);
}

.btn-super:hover {
    background: linear-gradient(135deg, #ff1a1a 0%, var(--primary-red) 100%);
    box-shadow: 0 15px 35px rgba(204, 22, 22, 0.6);
}

/* Botões Outline Modernos */
.btn-outline-modern {
    border: 2px solid var(--primary-red);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204, 22, 22, 0.4);
}

/* ===== INFO CARDS ===== */
.info-section {
    margin-top: 4rem;
    animation: slideInUp 1s ease-out 1.2s both;
}

.info-card {
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-red);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(204, 22, 22, 0.4);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.info-card:hover .info-icon {
    transform: rotate(360deg) scale(1.1);
}

.info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-content h5 {
    color: var(--vibrant-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 300px;
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.loading-spinner {
    text-align: center;
    color: var(--white);
}

.spinner-circle {
    width: 80px;
    height: 80px;
    border: 4px solid var(--secondary-black);
    border-top: 4px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
}

/* ===== ANIMAÇÕES ESPECIAIS ===== */
.spinning {
    animation: spinRoulette 4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes spinRoulette {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(1800deg); }
}

.prize-glow {
    animation: prizeGlow 1.5s ease-in-out infinite alternate;
}

@keyframes prizeGlow {
    from {
        box-shadow: 0 0 30px var(--primary-red);
        border-color: var(--primary-red);
    }
    to {
        box-shadow: 
            0 0 60px var(--primary-red), 
            0 0 90px var(--vibrant-red),
            0 0 120px var(--dark-red);
        border-color: var(--light-red);
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    body {
        padding-bottom: 140px; /* Mais espaço para o rodapé em mobile */
    }
    
    .main-logo {
        max-width: 150px;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .roulette-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .roulette-glow {
        width: 300px;
        height: 300px;
    }
    
    .modern-btn {
        min-width: 240px;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .floating-footer .stat-number {
        font-size: 1.5rem;
    }
    
    .floating-footer .stat-item i {
        font-size: 1.2rem;
    }
    
    .user-panel {
        padding: 1.5rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        align-self: center;
    }
    
    .prize-item {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .main-logo {
        max-width: 120px;
    }
    
    .roulette-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .roulette-glow {
        width: 260px;
        height: 260px;
    }
    
    .modern-btn {
        min-width: 200px;
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
        margin: 0.5rem;
    }
    
    .user-stat {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .floating-footer .stat-number {
        font-size: 1.3rem;
    }
    
    .floating-footer .stat-label {
        font-size: 0.7rem;
    }
    
    .next-roulette-timer {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
    
    .prizes-carousel-container {
        height: 50px;
    }
    
    .prize-item {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
}

/* ===== SWEETALERT CUSTOMIZATION ===== */
.swal2-popup {
    background: var(--gradient-bg) !important;
    border: 2px solid var(--primary-red) !important;
    color: var(--white) !important;
    border-radius: 20px !important;
}

.swal2-title {
    color: var(--vibrant-red) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
}

.swal2-content {
    color: var(--text-light) !important;
}

.swal2-confirm {
    background: var(--gradient-red) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: bold !important;
    padding: 0.8rem 2rem !important;
    transition: all 0.3s ease !important;
}

.swal2-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(204, 22, 22, 0.5) !important;
}

/* ===== BOTÃO MODO NOTURNO CORRIGIDO ===== */
.dark-mode-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    /* Modo escuro: botão claro com ícone escuro */
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-black);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ===== BOTÃO DE SOM ===== */
.sound-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    /* Modo escuro: botão claro com ícone escuro */
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-black);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.sound-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.sound-toggle.muted {
    background: rgba(204, 22, 22, 0.9);
    color: var(--white);
}

/* ===== MODO CLARO CORRIGIDO ===== */
body.light-mode {
    /* Fundo claro em vez de escuro */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--primary-black);
}

/* Modo escuro com gradiente padrão */
body:not(.light-mode) {
    background: var(--gradient-bg);
    color: var(--white);
}

/* Botão no modo claro: escuro com ícone claro */
body.light-mode .dark-mode-toggle {
    background: rgba(10, 10, 10, 0.9);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

body.light-mode .dark-mode-toggle:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

body.light-mode .floating-footer {
    background: rgba(255, 255, 255, 0.95);
    border-top: 2px solid var(--primary-red);
    color: var(--primary-black);
}

body.light-mode .floating-footer .stat-number {
    color: white;
}

body.light-mode .floating-footer .stat-label {
    color: #666;
}

body.light-mode .glass-effect {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--primary-black);
}

body.light-mode .subtitle {
    color: var(--primary-black);
}

body.light-mode .info-content h5 {
    color: var(--primary-red);
}

body.light-mode .info-content p {
    color: #555;
}

body.light-mode .next-roulette-timer {
    background: var(--gradient-red);
    color: var(--white);
}

body.light-mode .recent-prizes-title {
    color: #666;
}

body.light-mode .prize-time {
    color: #888;
}

body.light-mode .prizes-carousel-container {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .prize-item {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--primary-black);
}

body.light-mode .prize-item:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Estilo para Toast Notifications Corrigido */
.toast-notification {
    position: fixed;
    top: 80px; /* Posicionado abaixo dos botões */
    right: 20px;
    padding: 15px 25px;
    background: rgba(20, 20, 20, 0.95) !important;
    color: var(--white) !important;
    border-radius: 12px !important;
    border: 1px solid var(--primary-red) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5) !important;
    z-index: 99999 !important;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    min-width: 280px;
    max-width: 350px;
    margin-bottom: 10px; /* Espaçamento entre notificações */
}

/* Botão de som no modo claro */
body.light-mode .sound-toggle {
    background: rgba(10, 10, 10, 0.9);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

body.light-mode .sound-toggle:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

body.light-mode .sound-toggle.muted {
    background: rgba(204, 22, 22, 0.9);
    color: var(--white);
} 