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

:root {
    --primary: #d4af37;
    --secondary: #ffd700;
    --dark: #0a0a0a;
    --darker: #000000;
    --accent: #b8860b;
    --success: #ffd700;
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffec8b 25%, #d4af37 50%, #b8860b 75%, #ffd700 100%);
    --gold-shine: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.6), transparent);
    --card-bg: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker);
    min-height: 100vh;
    overflow-x: hidden;
    color: #fff;
}

.app-container {
    max-width: 420px;
    margin: 0 auto;
    min-height: 100vh;
    background: linear-gradient(180deg, #0d0d0d 0%, #000000 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Efeito de partículas douradas */
.app-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffd700, transparent),
        radial-gradient(2px 2px at 40px 70px, #d4af37, transparent),
        radial-gradient(2px 2px at 50px 160px, #ffec8b, transparent),
        radial-gradient(2px 2px at 90px 40px, #ffd700, transparent),
        radial-gradient(2px 2px at 130px 80px, #b8860b, transparent),
        radial-gradient(2px 2px at 160px 120px, #ffd700, transparent);
    background-size: 200px 200px;
    animation: sparkle 4s linear infinite;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes sparkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 1rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coins-display {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    padding: 8px 15px;
    border-radius: 25px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.coin-icon {
    width: 24px;
    height: 24px;
}

.coins-display span {
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
}

/* Deposit Screen */
.deposit-screen {
    padding: 20px;
}

.promo-banner {
    background: var(--gold-gradient);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    animation: goldGlow 2s infinite alternate;
    position: relative;
    overflow: hidden;
}

.promo-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-shine);
    animation: shine 3s infinite;
}

@keyframes goldGlow {
    from { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    to { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

.promo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #000;
}

.promo-sub {
    font-size: 0.9rem;
    color: #1a1a1a;
}

/* Woman showcase */
.woman-showcase {
    text-align: center;
    margin: 10px 0;
}

.woman-img {
    width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
}

/* Mulher fixa no canto inferior direito */
.woman-fixed {
    position: absolute;
    bottom: -50px;
    right: -60px;
    width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.5));
    pointer-events: none;
    z-index: 0;
}

.gift-showcase {
    text-align: center;
    margin: 20px 0;
}

.gift-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.5));
}

.floating {
    animation: float 3s ease-in-out infinite;
}

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

.deposit-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.deposit-card h2 {
    text-align: center;
    margin-bottom: 5px;
    font-size: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.deposit-info {
    text-align: center;
    color: #888;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.quick-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.quick-btn {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: var(--secondary);
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.quick-btn:hover, .quick-btn.active {
    background: var(--gold-gradient);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.deposit-input-group {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 5px 15px;
    margin-bottom: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.input-coin {
    width: 30px;
    height: 30px;
}

.deposit-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.deposit-input-group input:focus {
    outline: none;
}

.btn-main {
    width: 100%;
    background: var(--gold-gradient);
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-main:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.btn-main:active {
    transform: scale(0.98);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.error {
    color: #ff6b6b;
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Game Screen */
.game-screen {
    padding: 15px;
}

.game-header {
    text-align: center;
    margin-bottom: 15px;
}

.jackpot-display {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-gradient);
    padding: 10px 30px;
    border-radius: 15px;
    animation: jackpotPulse 1.5s infinite;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.jackpot-icon {
    width: 28px;
    height: 28px;
}

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

.jackpot-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #000;
}

.jackpot-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
}

/* Scratch Card */
.scratch-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    position: relative;
}

.card-header, .card-footer {
    background: var(--gold-gradient);
    padding: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
}

.symbols-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
    background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
}

.symbol-cell {
    aspect-ratio: 1;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.symbol-cell img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    visibility: hidden;
}

.symbol-cell.revealed img,
.symbol-cell.spinning img,
.symbol-cell.stopping img,
.symbol-cell.winner img {
    visibility: visible;
}

/* Símbolos ocultos enquanto não raspou */
.symbols-grid.hidden-symbols .symbol-cell img {
    visibility: hidden !important;
}

.symbols-grid.hidden-symbols .symbol-cell {
    background: rgba(0, 0, 0, 0.7);
}

/* Animação de giro slot machine */
.symbol-cell.spinning {
    animation: none;
}

.symbol-cell.spinning .spin-container {
    animation: spinSlot 0.1s linear infinite;
}

.spin-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes spinSlot {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.symbol-cell.stopping {
    animation: none;
}

.symbol-cell.stopping .spin-container {
    animation: stopSlot 0.3s ease-out forwards;
}

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

.symbol-cell.revealed {
    animation: revealBounce 0.4s ease-out;
}

@keyframes revealBounce {
    0% { transform: scale(0.5) rotateY(180deg); }
    50% { transform: scale(1.2) rotateY(90deg); }
    100% { transform: scale(1) rotateY(0deg); }
}

.symbol-cell.winner {
    animation: winnerPulse 0.5s infinite;
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

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

#scratchCanvas {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: calc(100% - 90px);
    cursor: pointer;
    touch-action: none;
}

.game-info {
    text-align: center;
    padding: 15px;
}

.scratch-hint {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Result Popup */
.result-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.result-popup.show {
    display: flex;
    animation: fadeIn 0.3s;
}

/* Dinheiro voando atrás do content */
.money-behind {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.money-behind img {
    position: absolute;
    width: 60px;
    height: auto;
}

.money-behind img.from-left {
    animation: moneyFlyFromLeft 3s ease-out forwards;
}

.money-behind img.from-right {
    animation: moneyFlyFromRight 3s ease-out forwards;
}

@keyframes moneyFlyFromLeft {
    0% {
        transform: translateX(-100px) rotate(-30deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateX(50vw) translateY(-20px) rotate(30deg);
        opacity: 0;
    }
}

@keyframes moneyFlyFromRight {
    0% {
        transform: translateX(100px) rotate(30deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateX(-50vw) translateY(-20px) rotate(-30deg);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.result-content {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    border: 3px solid var(--primary);
    max-width: 320px;
    width: 100%;
    animation: popIn 0.5s;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.result-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.result-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-content p {
    color: #888;
    margin-bottom: 15px;
}

.result-prize {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.result-prize img {
    width: 40px;
    height: 40px;
}

.result-popup.lose .result-content {
    border-color: #444;
}

.result-popup.lose h3 {
    background: linear-gradient(90deg, #888, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Game Actions */
.game-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-play {
    flex: 2;
    background: var(--gold-gradient);
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-play:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.6);
}

.btn-play:disabled {
    background: #333;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    color: #666;
}

.play-cost {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.play-cost img {
    width: 18px;
    height: 18px;
}

.btn-deposit-more {
    flex: 1;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--secondary);
    padding: 18px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-deposit-more:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Fireworks */
.fireworks {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1001;
}

.firework {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: firework 1s ease-out forwards;
}

.firework-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: fireworkExplode 1.5s ease-out forwards;
}

@keyframes fireworkExplode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

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

/* Responsive */
@media (max-width: 380px) {
    .logo-text { font-size: 0.85rem; }
    .symbol-cell { font-size: 2rem; }
    .symbol-cell img { width: 45px; height: 45px; }
}

/* Container de dinheiro voando - atrás do popup */
.money-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

.money-fly {
    position: absolute;
    width: 60px;
    height: auto;
    animation: moneyFlyAnim 3s ease-out forwards;
}

@keyframes moneyFlyAnim {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        transform: translateY(-100vh) rotate(720deg) scale(0.3);
        opacity: 0;
    }
}


/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 20px;
    transition: all 0.3s;
}

.user-info:hover {
    background: rgba(212, 175, 55, 0.1);
}

.user-info i {
    font-size: 0.9rem;
}

/* Prizes Bar */
.prizes-bar-container {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    padding: 15px;
    margin-top: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.prizes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.prizes-title {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prizes-title i {
    font-size: 1rem;
}

.prizes-chance {
    color: #888;
    font-size: 0.8rem;
}

.prizes-chance strong {
    color: #00ff88;
    font-size: 1rem;
}

.prizes-progress {
    position: relative;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: visible;
    padding: 0 20px;
}

.prizes-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00cc6a, #ffd700);
    border-radius: 20px;
    transition: width 0.5s ease;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.prizes-markers {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    bottom: 0;
}

.prize-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.prize-marker .prize-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.prize-marker .prize-icon i {
    color: #d4af37;
    font-size: 0.8rem;
}

.prize-marker .prize-value {
    font-size: 0.6rem;
    color: #888;
    font-weight: 700;
    position: absolute;
    bottom: -18px;
    white-space: nowrap;
}

.prize-marker:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.prize-marker:hover .prize-icon {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.prize-marker.unlocked .prize-icon {
    background: linear-gradient(135deg, #ffd700, #d4af37);
    border-color: #ffd700;
    animation: prizeGlow 1.5s infinite;
}

.prize-marker.unlocked .prize-icon i {
    color: #000;
}

.prize-marker.unlocked .prize-value {
    color: #ffd700;
}

.jackpot-marker .prize-icon {
    width: 38px;
    height: 38px;
    border-color: #ff6b6b;
    background: linear-gradient(135deg, #2a1a1a, #1a0d0d);
}

.jackpot-marker .prize-icon i {
    color: #ff6b6b;
    font-size: 1rem;
}

.jackpot-marker .prize-value {
    color: #ff6b6b;
    font-size: 0.7rem;
}

@keyframes prizeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.8); }
}

.prizes-info {
    text-align: center;
    color: #666;
    font-size: 0.75rem;
}

.prizes-info i {
    color: #00ff88;
    margin-right: 5px;
}

/* Prize Win Popup */
.prize-win-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1002;
}

.prize-win-popup.show {
    display: flex;
    animation: fadeIn 0.3s;
}

.prize-win-content {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    border: 3px solid #ffd700;
    max-width: 320px;
    width: 100%;
    animation: popIn 0.5s;
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.5);
}

.prize-win-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: bounce 0.6s infinite;
}

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

.prize-win-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.prize-win-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin: 20px 0;
}

.prize-win-amount img {
    width: 40px;
    height: 40px;
}


/* Prizes Real Badge */
.prizes-real-badge {
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.1), rgba(0, 200, 100, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 12px;
    text-align: center;
    color: #00ff88;
    font-size: 0.7rem;
    font-weight: 600;
}

.prizes-real-badge i {
    margin-right: 5px;
}

/* Prize Icon with Image */
.prize-marker .prize-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.jackpot-marker .prize-icon {
    background: linear-gradient(135deg, #ffd700, #d4af37) !important;
    border-color: #ffd700 !important;
    animation: jackpotGlow 1s infinite;
}

.jackpot-marker .prize-icon i {
    color: #000 !important;
}

.jackpot-marker .prize-value {
    color: #ffd700 !important;
    font-weight: 800;
}

@keyframes jackpotGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.6); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 1); }
}

/* Mini Prizes Bar for Game Screen */
.prizes-bar-mini {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.prizes-mini-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.7rem;
}

.prizes-mini-header span:first-child {
    color: #ffd700;
    font-weight: 700;
}

.prizes-mini-header i {
    margin-right: 5px;
}

.prizes-mini-chance {
    color: #888;
}

.prizes-mini-chance strong {
    color: #00ff88;
}

.prizes-mini-progress {
    position: relative;
    height: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.prizes-mini-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #d4af37, #b8860b);
    border-radius: 12px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.prizes-mini-markers {
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    bottom: 0;
    display: flex;
    align-items: center;
}

.mini-marker {
    position: absolute;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 2px solid #d4af37;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-marker span {
    font-size: 0.5rem;
    color: #d4af37;
    font-weight: 700;
}

.mini-marker.jackpot {
    background: linear-gradient(135deg, #ffd700, #d4af37);
    border-color: #ffd700;
    width: 26px;
    height: 26px;
}

.mini-marker.jackpot span {
    color: #000;
    font-size: 0.55rem;
}


/* Physical Prizes */
.physical-prizes {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.physical-prizes-title {
    text-align: center;
    color: #888;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.physical-prizes-list {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.physical-prize {
    flex: 1;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 8px 5px;
    text-align: center;
    transition: all 0.3s;
}

.physical-prize:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.physical-prize i {
    display: block;
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 4px;
}

.physical-prize span {
    font-size: 0.6rem;
    color: #aaa;
    font-weight: 600;
}

/* Ajuste prizes-info */
.prizes-info {
    text-align: center;
    color: #666;
    font-size: 0.7rem;
    margin-top: 15px;
    padding-top: 10px;
}

/* Header logo nowrap */
.logo-text {
    font-size: 0.95rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}
