/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background Logo */
.background-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;
    filter: blur(3px);
}

.background-logo img {
    width: 600px;
    height: 600px;
    object-fit: contain;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: spinPulse 6s ease-in-out infinite;
}

.loading-spinner i {
    font-size: 9.6rem;
    color: #1a1a2e;
}

.loading-logo {
    width: 256px;
    height: 256px;
    object-fit: contain;
    border-radius: 32px;
    animation: logoSpin 6s ease-in-out infinite;
}

@keyframes spinPulse {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

@keyframes logoSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(360deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.loading-content h2 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.loading-bar {
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    border-radius: 3px;
    transition: width 0.1s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Partículas de fundo */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Estrelas de fundo */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 10px #fff, 0 0 20px #ffd700;
    }
}

/* Container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-img {
    height: 70px;
    width: auto;
    border-radius: 10px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a1a2e;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Header direita */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Botão de som */
.sound-toggle,
.fullscreen-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffd700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sound-toggle:hover,
.fullscreen-toggle:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.sound-toggle.muted {
    color: #666;
}

.sound-toggle.muted i::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 20px;
    background: #ff4444;
    transform: rotate(45deg);
}

/* Pessoas online */
.online-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4ade80;
    margin-bottom: 20px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.welcome-section h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.animate-title {
    animation: titleBounce 1s ease-out;
    background: linear-gradient(90deg, #fff, #ffd700, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleBounce 1s ease-out, shimmerText 3s linear infinite;
}

@keyframes shimmerText {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes titleBounce {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-30px);
    }
    50% {
        transform: scale(1.1) translateY(0);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.welcome-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    min-height: 1.8em;
    height: 1.8em;
    width: 100%;
    display: block;
    margin-bottom: 40px;
}

.typing-text {
    border-right: 2px solid #ffd700;
    animation: blink-caret 0.75s step-end infinite;
    display: inline-block;
    min-height: 1.5em;
}

.typing-text.done {
    border-right: none;
    animation: none;
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #ffd700; }
}

.welcome-section strong {
    color: #ffd700;
}

/* Timer de expiração */
.timer-section {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 100, 100, 0.2);
    border: 1px solid rgba(255, 100, 100, 0.5);
    padding: 10px 20px;
    border-radius: 30px;
    color: #ff6b6b;
    font-size: 0.95rem;
    animation: timerPulse 2s infinite;
}

.timer-section i {
    font-size: 1.1rem;
}

.timer-section strong {
    color: #ff6b6b;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
}

@keyframes timerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Wheel Section */
.wheel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

/* Dica de girar */
.spin-hint {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
    border: 1px dashed #ffd700;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    animation: hintBounce 1s ease-in-out infinite;
}

.spin-hint span {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes hintBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.spin-hint.hidden {
    display: none;
}

.wheel-container {
    position: relative;
    width: 320px;
    height: 320px;
    margin-bottom: 30px;
    animation: wheelEntry 1s ease-out 1.5s both;
}

@keyframes wheelEntry {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-180deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

.wheel-container.shake {
    animation: wheelShake 0.5s ease-in-out;
}

@keyframes wheelShake {
    0%, 100% { transform: translateX(0) rotate(0); }
    10% { transform: translateX(-10px) rotate(-2deg); }
    20% { transform: translateX(10px) rotate(2deg); }
    30% { transform: translateX(-10px) rotate(-2deg); }
    40% { transform: translateX(10px) rotate(2deg); }
    50% { transform: translateX(-5px) rotate(-1deg); }
    60% { transform: translateX(5px) rotate(1deg); }
    70% { transform: translateX(-5px) rotate(-1deg); }
    80% { transform: translateX(5px) rotate(1deg); }
    90% { transform: translateX(-2px) rotate(0); }
}

/* Pointer */
.pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.pointer::before {
    content: '▼';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #c9a227;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transition: transform 0.08s ease-out;
}

.pointer.bounce::before {
    animation: pointerBounce 0.1s ease-out;
}

@keyframes pointerBounce {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
    100% { transform: translateX(-50%) translateY(0); }
}

/* Wheel Border */
.wheel-border {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a227, #8b7355);
    padding: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.wheel-lights {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    display: none;
}

.light {
    display: none;
}

/* Canvas da Roleta */
#wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

#wheel::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: wheelShine 3s ease-in-out infinite;
}

@keyframes wheelShine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* Wheel Center */
.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #1a1a2e;
    border: 3px solid #c9a227;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #c9a227;
    z-index: 5;
}

/* Spin Button */
.spin-button {
    background: linear-gradient(135deg, #c9a227, #8b7355);
    border: none;
    padding: 16px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.spin-button:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.spin-button:active {
    transform: scale(0.98);
}

.spin-button:disabled {
    background: linear-gradient(135deg, #555, #333);
    cursor: not-allowed;
}

.spin-button.spinning {
    animation: none;
    pointer-events: none;
}

/* Partículas do botão ao clicar */
.button-particle {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    animation: buttonParticleAnim 0.8s ease-out forwards;
}

@keyframes buttonParticleAnim {
    0% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: scale(0) translate(var(--tx), var(--ty));
    }
}

/* Estrelas cadentes para prêmios raros */
.shooting-star {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700, 0 0 30px #ffd700;
    animation: shootingStar 1s ease-out forwards;
    pointer-events: none;
    z-index: 9999;
}

.shooting-star::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #ffd700);
    transform: translateY(-50%);
}

@keyframes shootingStar {
    0% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(300px) translateY(200px);
    }
}

/* Último prêmio ganho */
.last-prize {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 15px;
    color: #4ade80;
    font-size: 0.9rem;
    animation: fadeIn 0.5s ease;
}

.last-prize i {
    color: #ffd700;
    font-size: 1.2rem;
}

.last-prize strong {
    color: #ffd700;
    font-weight: 700;
}

/* Giros restantes */
.spins-remaining {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.spins-remaining i {
    color: #4ade80;
}

.spins-remaining.used {
    color: rgba(255, 255, 255, 0.4);
}

.spins-remaining.used i {
    color: rgba(255, 255, 255, 0.4);
}

/* Barra de sorte */
.luck-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    font-size: 0.85rem;
}

.luck-label {
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.luck-progress {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.luck-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 4px;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.luck-percent {
    color: #4ade80;
    font-weight: 600;
    min-width: 35px;
}

/* Prizes Section */
.prizes-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.prizes-section h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffd700;
    font-size: 1.2rem;
}

.prizes-section h3 i {
    margin-right: 8px;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 10px;
}

.prize-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    cursor: pointer;
}

.prize-item:hover {
    transform: translateY(-3px);
}

/* Tooltips */
.prize-item::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    margin-bottom: 5px;
}

.prize-item:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Badges de raridade */
.rarity-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

.rarity-badge.legendary {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.5);
}

.rarity-badge.mythic {
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.prize-item .days {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.prize-item .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.prize-item.common {
    border-color: #888;
    background: rgba(136, 136, 136, 0.2);
}
.prize-item.common .days { color: #ccc; }

.prize-item.uncommon {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.15);
}
.prize-item.uncommon .days { color: #4ade80; }

.prize-item.rare {
    border-color: #60a5fa;
    background: rgba(96, 165, 250, 0.15);
}
.prize-item.rare .days { color: #60a5fa; }

.prize-item.epic {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.15);
}
.prize-item.epic .days { color: #a855f7; }

.prize-item.legendary {
    border-color: #f97316;
    background: rgba(249, 115, 22, 0.15);
}
.prize-item.legendary .days { color: #f97316; }

.prize-item.mythic {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    animation: glow 2s ease-in-out infinite alternate;
}
.prize-item.mythic .days { 
    color: #ffd700; 
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.prize-item.indicacao {
    border-color: #ec4899;
    background: rgba(236, 72, 153, 0.15);
    animation: glowPink 2s ease-in-out infinite alternate;
}
.prize-item.indicacao .days { 
    color: #ec4899;
    font-size: 1.3rem;
}
.prize-item.indicacao .label {
    font-size: 0.65rem;
    color: #ec4899;
}

@keyframes glowPink {
    0% { box-shadow: 0 0 5px rgba(236, 72, 153, 0.3); }
    100% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.6); }
}

.prize-item.desconto {
    border-color: #14b8a6;
    background: rgba(20, 184, 166, 0.15);
    animation: glowTeal 2s ease-in-out infinite alternate;
}
.prize-item.desconto .days { 
    color: #14b8a6;
    font-size: 1.3rem;
}
.prize-item.desconto .label {
    color: #14b8a6;
}

@keyframes glowTeal {
    0% { box-shadow: 0 0 5px rgba(20, 184, 166, 0.3); }
    100% { box-shadow: 0 0 20px rgba(20, 184, 166, 0.6); }
}

.prize-result.desconto {
    border-color: #14b8a6;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(20, 184, 166, 0.1));
}

.prize-result.desconto .prize-days {
    color: #14b8a6;
    text-shadow: 0 0 30px rgba(20, 184, 166, 0.5);
}

.prize-result.indicacao {
    border-color: #ec4899;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.1));
}

.prize-result.indicacao .prize-days {
    color: #ec4899;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.3); }
    100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer .small {
    font-size: 0.75rem;
    margin-top: 5px;
}

/* Últimos ganhadores */
.winners-section {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    max-width: 280px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    z-index: 100;
}

.winners-section h4 {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.winner-item .avatar {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.winner-item .info {
    flex: 1;
}

.winner-item .name {
    font-weight: 600;
}

.winner-item .prize {
    color: #4ade80;
    font-weight: 600;
}

.winner-item .time {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 480px) {
    .winners-section {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}

/* Mensagem de boa sorte */
.luck-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.95), rgba(34, 197, 94, 0.95));
    padding: 20px 40px;
    border-radius: 20px;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.luck-message.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.luck-message span {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Notificação de ganhador */
.winner-notification {
    position: fixed;
    top: 20px;
    right: -350px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.95), rgba(34, 197, 94, 0.95));
    border-radius: 15px;
    padding: 15px 20px;
    z-index: 1000;
    transition: right 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.winner-notification.show {
    right: 20px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
}

.notification-content i {
    font-size: 1.5rem;
    color: #ffd700;
}

@media (max-width: 480px) {
    .winner-notification {
        right: -100%;
        left: 10px;
        right: auto;
        transform: translateX(-120%);
    }
    
    .winner-notification.show {
        right: auto;
        transform: translateX(0);
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal.active ~ .container,
body:has(.modal.active) .container {
    filter: blur(5px);
    transition: filter 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: modalSlide 0.5s ease;
}

@keyframes modalSlide {
    from { 
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-content.used {
    border-color: rgba(255, 100, 100, 0.5);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: #1a1a2e;
    animation: iconPop 0.5s ease 0.3s both;
}

.modal-icon.warning {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.modal-icon.error {
    background: linear-gradient(135deg, #c0392b, #8e2424);
}

.modal-content.invalid {
    border-color: #c0392b;
}

.modal-content.invalid h2 {
    color: #ff6b6b;
}

@keyframes iconPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Texto Jackpot */
.jackpot-text {
    margin-bottom: 10px;
}

.jackpot-text span {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffd700, #ff8c00, #ff6b6b, #ffd700);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: jackpotGlow 1s linear infinite, jackpotPulse 0.5s ease-in-out infinite;
    text-shadow: none;
}

@keyframes jackpotGlow {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

@keyframes jackpotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Screen Shake para prêmios grandes */
@keyframes screenShake {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-10px) rotate(-1deg); }
    20% { transform: translateX(10px) rotate(1deg); }
    30% { transform: translateX(-8px) rotate(-0.5deg); }
    40% { transform: translateX(8px) rotate(0.5deg); }
    50% { transform: translateX(-5px); }
    60% { transform: translateX(5px); }
    70% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
    90% { transform: translateX(-1px); }
}

body.screen-shake {
    animation: screenShake 0.6s ease-in-out;
}

.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.modal-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.prize-result {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.prize-result .prize-days {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffd700, #ff8c00, #ffd700, #ff8c00);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 2s linear infinite;
    line-height: 1;
}

@keyframes gradientMove {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.prize-result .prize-text {
    display: block;
    font-size: 1.2rem;
    color: #fff;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.prize-message {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.modal-close {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.modal-close:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Botão WhatsApp */
.whatsapp-button {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.4rem;
}

/* Botão Compartilhar */
.share-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.share-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Confetti */
.confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -20px;
    animation: confettiFall 3s linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(400px) rotate(720deg);
        opacity: 0;
    }
}

/* Fogos de artifício */
.fireworks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.firework-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: fireworkExplode 1.5s ease-out forwards;
    box-shadow: 0 0 6px currentColor;
}

@keyframes fireworkExplode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* Chuva de emojis */
.emoji-rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.emoji-drop {
    position: absolute;
    top: -50px;
    animation: emojiDrop linear forwards;
}

@keyframes emojiDrop {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Efeito flash dourado para prêmio mítico */
.mythic-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.5), transparent 70%);
    z-index: 9997;
    pointer-events: none;
    animation: mythicFlash 1.5s ease-out forwards;
}

@keyframes mythicFlash {
    0% { opacity: 0; }
    20% { opacity: 1; }
    100% { opacity: 0; }
}

/* Confete durante o giro */
.spin-confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    overflow: hidden;
}

.spin-confetti-piece {
    position: absolute;
    top: -10px;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    animation: spinConfettiFall linear forwards;
}

@keyframes spinConfettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .header {
        flex-direction: column;
        gap: 15px;
    }

    .welcome-section h1 {
        font-size: 1.5rem;
    }

    .wheel-container {
        width: 280px;
        height: 280px;
    }

    #wheel {
        width: 260px;
        height: 260px;
    }

    .spin-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    .prizes-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .prize-item {
        padding: 10px 5px;
    }

    .prize-item .days {
        font-size: 1.2rem;
    }

    .modal-content {
        padding: 25px;
    }

    .prize-result .prize-days {
        font-size: 3rem;
    }
}

/* Proteção contra seleção e cópia */
.wheel-section, .prizes-section {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Esconder scrollbar mas manter funcionalidade */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #1a1a2e;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 4px;
}
