/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #050a15;
    color: white;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Variáveis CSS */
:root {
    --primary-bg: #050a15;
    --secondary-bg: #121827;
    --accent-color: #3dd675;
    --accent-border: #3dd675;
    --text-primary: #ffffff;
    --text-secondary: #b8c4d0;
    --shadow-light: rgba(61, 214, 117, 0.1);
    --shadow-medium: rgba(61, 214, 117, 0.2);
    --shadow-strong: rgba(61, 214, 117, 0.3);
    --gold-color: #ffd700;
    --gold-bright: #ffed4a;
}

/* Animações */
@keyframes scan {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scanline {
    0% { top: -100%; }
    100% { top: 100%; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-8px); }
    70% { transform: translateY(-4px); }
    90% { transform: translateY(-2px); }
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

@keyframes radar-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes lightning-bounce {
    0%, 100% { 
        transform: translateX(15px) translateY(0px) scale(1);
        opacity: 1;
    }
    25% { 
        transform: translateX(15px) translateY(-3px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(15px) translateY(-5px) scale(1.2);
        opacity: 1;
    }
    75% { 
        transform: translateX(15px) translateY(-2px) scale(1.05);
        opacity: 0.9;
    }
}

/* Header */
.header {
    background: rgba(18, 24, 39, 0.95);
    
    border-bottom: 1px solid #3dd675;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

.header-container {
    width: 100%;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 10px;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.logo-text {
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    gap: 0.2rem;
}

.dna-text {
    color: #00d4ff;
}

.dos-text {
    color: #ffffff;
}

.slots-text {
    color: #ffed4a;
}

.logo-subtitle {
    font-size: 0.6rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: #3dd675;
    color: #050a15;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-balance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(61, 214, 117, 0.1);
    border: 1px solid rgba(61, 214, 117, 0.3);
    color: #3dd675;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-balance:hover {
    background: rgba(61, 214, 117, 0.2);
    border-color: rgba(61, 214, 117, 0.5);
    transform: translateY(-1px);
}

.user-balance svg {
    flex-shrink: 0;
    color: #3dd675;
}

.user-balance .refresh-icon {
    width: 14px;
    height: 14px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.user-balance:hover .refresh-icon {
    opacity: 1;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.balance-label {
    font-weight: 500;
    color: #b8c4d0;
}

.balance-value {
    font-weight: bold;
    color: #3dd675;
    font-size: 0.85rem;
}

@keyframes balancePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        color: #00ff88;
    }
}

.deposit-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #3dd675, #00d4ff);
    color: #050a15;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.deposit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 214, 117, 0.3);
    background: linear-gradient(45deg, #00d4ff, #3dd675);
}

.deposit-button svg {
    flex-shrink: 0;
}

.admin-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ffd700, #ffaa00);
    color: #0a0e1a;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.admin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffaa00, #ffd700);
}

.admin-button svg {
    flex-shrink: 0;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Logo Radar Container */
.logo-radar-container {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-radar-circle {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0099cc, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (min-width: 640px) {
    .logo-radar-circle {
        width: 36px;
        height: 36px;
    }
}

/* Animações do Radar */
.radar-scan-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: scan 2s linear infinite;
}

.radar-scanline {
    position: absolute;
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    filter: blur(1px);
}

.radar-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-icon {
    color: white;
    animation: radar-spin 3s linear infinite;
}

.lightning-icon {
    position: absolute;
    color: #ffed4a;
    filter: drop-shadow(0 0 4px #ffd700);
    animation: lightning-bounce 1.5s ease-in-out infinite;
    z-index: 20;
}

.radar-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 212, 255, 0.4), transparent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.indicator {
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.6);
    animation: pulse 2s infinite;
}

.indicator-1 {
    height: 4px;
    width: 8px;
}

.indicator-2 {
    height: 4px;
    width: 12px;
    background: rgba(0, 212, 255, 0.8);
    animation-delay: 0.1s;
}

.indicator-3 {
    height: 4px;
    width: 4px;
    animation-delay: 0.2s;
}

/* Raio dourado (mantendo compatibilidade) */
.golden-lightning {
    color: #ffed4a;
    filter: drop-shadow(0 0 4px #ffd700);
}

.golden-lightning:hover {
    color: #ffd700;
    filter: drop-shadow(0 0 8px #ffed4a);
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 70px; /* Posicionar abaixo do header */
    left: 0;
    width: 280px;
    height: calc(100vh - 70px); /* Altura total menos a altura do header */
    background: #121827;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    border-right: 1px solid #3dd675;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-overlay {
    position: fixed;
    top: 70px; /* Começar abaixo do header */
    left: 0;
    width: 100vw;
    height: calc(100vh - 70px); /* Altura total menos a altura do header */
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.sidebar.active .sidebar-overlay {
    opacity: 1;
    visibility: visible;
}

.sidebar-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    overflow-y: auto;
}

.sidebar-nav {
    margin-top: 0;
}

.nav-list {
    list-style: none;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: rgba(61, 214, 117, 0.1);
    border-color: #3dd675;
    transform: translateX(5px);
}

.nav-icon {
    color: #3dd675;
    flex-shrink: 0;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(61, 214, 117, 0.2);
}

.user-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b8c4d0;
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3dd675;
    animation: pulse 2s infinite;
}

/* Main Content */
.main-content {
    margin-top: 70px;
    padding: 2rem 1rem;
    margin-bottom: 80px; /* Reduzido para compensar footer menor */
    transition: margin-left 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    text-align: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
}

.page-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(0, 212, 255, 1);
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    animation: fadeIn 0.6s ease;
}

/* Jogos escondidos inicialmente */
.game-card-hidden {
    display: none !important;
}

/* Container do botão de expandir */
.expand-games-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    padding: 1rem;
}

/* Botão de expandir jogos */
.expand-games-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3dd675 0%, #2eb85c 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(61, 214, 117, 0.3);
}

.expand-games-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 214, 117, 0.4);
    background: linear-gradient(135deg, #2eb85c 0%, #3dd675 100%);
}

.expand-games-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(61, 214, 117, 0.3);
}

.expand-games-button svg {
    transition: transform 0.3s ease;
}

.expand-games-button:hover svg {
    transform: translateY(2px);
}

/* Esconder elementos do reCAPTCHA que não devem ser visíveis */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    display: none !important;
}

.rc-anchor {
    display: none !important;
    visibility: hidden !important;
}

.rc-anchor-alert {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

iframe[src*="recaptcha"] {
    display: none !important;
    visibility: hidden !important;
}

/* Info Card */
.info-card {
    background: linear-gradient(135deg, 
        #121827 0%, 
        rgba(18, 24, 39, 0.95) 100%);
    border: 2px solid rgba(61, 214, 117, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(61, 214, 117, 0.1);
    
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        #3dd675, 
        #00d4ff, 
        #3dd675, 
        transparent);
    animation: infoGlow 3s ease-in-out infinite;
}

.info-header {
    text-align: center;
    margin-bottom: 2rem;
}

.info-title {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(61, 214, 117, 0.05);
    border: 1px solid rgba(61, 214, 117, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-step:hover {
    background: rgba(61, 214, 117, 0.1);
    border-color: rgba(61, 214, 117, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(61, 214, 117, 0.2);
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(61, 214, 117, 0.3));
}

.step-content h3 {
    color: #3dd675;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
}

.step-content p {
    color: #b8c4d0;
    margin: 0;
    line-height: 1.5;
}

.info-tip,
.info-target {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.info-target {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
}

.tip-icon,
.target-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tip-content,
.target-content {
    color: #ffffff;
    line-height: 1.5;
}

.tip-content strong,
.target-content strong {
    color: #3dd675;
}

@keyframes infoGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Testimonials Card */
.testimonials-card {
    background: linear-gradient(135deg, 
        #121827 0%, 
        rgba(18, 24, 39, 0.95) 100%);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(0, 212, 255, 0.1);
    
    position: relative;
    overflow: hidden;
}

.testimonials-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        #00d4ff, 
        #3dd675, 
        #00d4ff, 
        transparent);
    animation: testimonialsGlow 3s ease-in-out infinite;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-title {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.testimonials-content {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    text-align: center;
    padding: 1rem;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-avatar {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.avatar-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3dd675;
    box-shadow: 
        0 0 20px rgba(61, 214, 117, 0.3),
        0 0 40px rgba(61, 214, 117, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item.active .avatar-image {
    animation: avatarGlow 2s ease-in-out infinite;
}

.testimonial-stars {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.testimonial-name {
    color: #3dd675;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.testimonial-profit {
    color: #00d4ff;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.testimonial-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #3dd675;
    box-shadow: 0 0 10px rgba(61, 214, 117, 0.5);
}

.indicator:hover {
    background: rgba(61, 214, 117, 0.7);
}

@keyframes testimonialsGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes avatarGlow {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(61, 214, 117, 0.3),
            0 0 40px rgba(61, 214, 117, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(61, 214, 117, 0.5),
            0 0 60px rgba(61, 214, 117, 0.2);
    }
}

/* Testimonials Card Compacto */
.testimonials-card-compact {
    background: linear-gradient(135deg, 
        #121827 0%, 
        rgba(18, 24, 39, 0.95) 100%);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.testimonials-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        #00d4ff, 
        #3dd675, 
        #00d4ff, 
        transparent);
    animation: testimonialsGlow 3s ease-in-out infinite;
}

.testimonials-header-compact {
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonials-title-compact {
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.testimonials-content-compact {
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    z-index: 1;
}

.testimonial-compact {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(20px) scale(0.95);
    background: rgba(18, 24, 39, 0.6);
    border: 1px solid rgba(61, 214, 117, 0.2);
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.5s ease;
    opacity: 0;
    max-width: 600px;
    width: 90%;
    pointer-events: none;
    z-index: 1;
}

.testimonial-compact.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    border-color: #3dd675;
    box-shadow: 0 5px 20px rgba(61, 214, 117, 0.2);
    pointer-events: auto;
    z-index: 2;
}

.testimonial-header-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.avatar-compact {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #3dd675;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-info-compact {
    flex: 1;
    min-width: 0;
}

.testimonial-name-compact {
    color: #3dd675;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-stars-compact {
    font-size: 0.9rem;
    color: #ffd700;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.testimonial-profit-compact {
    color: #00d4ff;
    font-size: 0.85rem;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

.testimonial-text-compact {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    font-style: italic;
    margin: 0;
}

.testimonials-indicators-compact {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 10;
    padding: 1rem 2rem;
    background: transparent;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.indicator-compact {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 15;
    display: block;
}

.indicator-compact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.indicator-compact.active {
    background: #3dd675;
    border-color: #3dd675;
    box-shadow: 0 0 15px rgba(61, 214, 117, 0.6);
    transform: scale(1.2);
}

.indicator-compact.active::before {
    background: white;
    width: 4px;
    height: 4px;
}

.indicator-compact:hover {
    background: rgba(61, 214, 117, 0.4);
    border-color: rgba(61, 214, 117, 0.6);
    transform: scale(1.1);
}

.game-card {
    background: rgba(18, 24, 39, 0.8);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 214, 117, 0.2);
    
    cursor: pointer;
    position: relative;
    height: 200px;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(61, 214, 117, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #3dd675;
    box-shadow: 0 20px 40px rgba(61, 214, 117, 0.2);
}

.game-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

/* Efeito de escurecimento das outras imagens quando hover em um card específico */
.games-grid:hover .game-card:not(:hover) .game-image {
    filter: brightness(0.4);
    transition: filter 0.3s ease;
}

.games-grid:hover .game-card:not(:hover) .game-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    transition: background 0.3s ease;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    padding-bottom: 4rem;
    z-index: 1;
    pointer-events: none;
    transition: background 0.3s ease;
}

.game-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.game-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.play-button {
    background: linear-gradient(45deg, #3dd675, #00d4ff);
    border: none;
    color: #050a15;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    z-index: 100;
    opacity: 0;
    font-size: 0.9rem;
    pointer-events: none;
    display: block;
    white-space: nowrap;
}

.game-card:hover .play-button {
    opacity: 1 !important;
    transform: translate(-50%, -50%) translateY(0) !important;
    pointer-events: auto !important;
}

.play-button:hover {
    transform: translate(-50%, -50%) translateY(-2px);
    box-shadow: 0 10px 20px rgba(61, 214, 117, 0.3);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #121827;
    border-top: 1px solid #3dd675;
    z-index: 1000;
    
}

.footer-container {
    padding: 0.75rem 1rem;
}

.footer-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: #b8c4d0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    min-width: 60px;
    cursor: pointer;
    border: none;
    background: none;
}

.footer-link:hover,
.footer-link.active {
    color: #3dd675;
    background: rgba(61, 214, 117, 0.1);
}

.footer-link span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(61, 214, 117, 0.3);
    border-top: 3px solid #3dd675;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-actions {
        flex-direction: row-reverse;
    }
    
    .user-info {
        gap: 0.5rem;
    }
    
    .user-balance {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .user-balance svg {
        width: 14px;
        height: 14px;
    }
    
    .balance-label {
        display: none; /* Esconder "Saldo:" no mobile */
    }
    
    .balance-value {
        font-size: 0.75rem;
    }
    
    .user-balance .refresh-icon {
        width: 12px;
        height: 12px;
    }
    
    .deposit-button,
    .admin-button {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        gap: 0.3rem;
    }
    
    .deposit-button svg,
    .admin-button svg {
        width: 16px;
        height: 16px;
    }
    
    .menu-toggle {
        display: block;
    }

    .user-info {
        gap: 0.5rem;
    }
    
    .deposit-button {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .logo-text-container{
        display: none;
    }
    
    .info-title {
        font-size: 1.5rem;
    }
    
    .info-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-step {
        padding: 1rem;
    }
    
    .step-icon {
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .testimonials-card {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .testimonials-title {
        font-size: 1.5rem;
    }
    
    .testimonial-name {
        font-size: 1.2rem;
    }
    
    .testimonial-profit {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .avatar-image {
        width: 70px;
        height: 70px;
    }
    
    /* Testimonials Compacto - Tablet */
    .testimonials-card-compact {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
    
    .testimonials-title-compact {
        font-size: 1.4rem;
    }
    
    .testimonials-content-compact {
        min-height: 100px;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-indicators-compact {
        margin-top: 1.25rem;
        padding: 0.75rem 0;
    }
    
    .testimonial-compact {
        padding: 0.875rem;
        max-width: 500px;
        width: 85%;
    }
    
    .testimonials-indicators-compact {
        max-width: 350px;
        padding: 0.75rem 1.5rem;
        background: transparent;
    }
    
    .testimonial-name-compact {
        font-size: 0.95rem;
    }
    
    .testimonial-stars-compact {
        font-size: 0.85rem;
    }
    
    .testimonial-profit-compact {
        font-size: 0.8rem;
    }
    
    .testimonial-text-compact {
        font-size: 0.85rem;
    }
    
    .avatar-compact {
        width: 36px;
        height: 36px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }
    
    .stat-card {
        padding: 0.6rem 0.4rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        margin-top: 0.2rem;
    }
    
    .page-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .main-content {
        padding: 1rem 0.5rem;
        margin-top: 60px;
        margin-bottom: 70px;
    }
    
    .info-card {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .info-title {
        font-size: 1.3rem;
    }
    
    .info-step {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .step-icon {
        font-size: 1.8rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .info-tip,
    .info-target {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .testimonials-card {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .testimonials-title {
        font-size: 1.3rem;
    }
    
    .testimonials-content {
        min-height: 150px;
    }
    
    .testimonial-stars {
        font-size: 1.2rem;
    }
    
    .testimonial-name {
        font-size: 1.1rem;
    }
    
    .testimonial-profit {
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }
    
    .avatar-image {
        width: 60px;
        height: 60px;
    }
    
    /* Testimonials Compacto - Mobile */
    .testimonials-card-compact {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .testimonials-title-compact {
        font-size: 1.2rem;
    }
    
    .testimonials-content-compact {
        min-height: 90px;
        margin-bottom: 1.25rem;
    }
    
    .testimonials-indicators-compact {
        margin-top: 4rem;
        padding: 0.5rem 0;
    }
    
    .testimonial-compact {
        padding: 0.75rem;
        max-width: 100%;
        width: 95%;
    }
    
    .testimonials-indicators-compact {
        max-width: 300px;
        padding: 0.5rem 1rem;
        background: transparent;
    }
    
    .testimonial-header-compact {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-name-compact {
        font-size: 0.9rem;
    }
    
    .testimonial-stars-compact {
        font-size: 0.8rem;
    }
    
    .testimonial-profit-compact {
        font-size: 0.75rem;
    }
    
    .testimonial-text-compact {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .avatar-compact {
        width: 32px;
        height: 32px;
    }
    
    .indicator-compact {
        width: 10px;
        height: 10px;
    }
    
    .indicator-compact::before {
        width: 5px;
        height: 5px;
    }
    
    .indicator-compact.active::before {
        width: 3px;
        height: 3px;
    }
    
    .game-card {
        border-radius: 12px;
        height: 150px;
    }
    
    .game-overlay {
        padding: 0.8rem;
    }
    
    .game-title {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .game-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }
    
    .play-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Tablet Layout */
@media (min-width: 769px) and (max-width: 1023px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }
    
    .game-card {
        height: 180px;
    }
    
    .main-content {
        padding: 1.5rem;
        margin-top: 65px;
        margin-bottom: 75px;
    }
}

/* Desktop Sidebar Always Visible */
@media (min-width: 1024px) {
    body {
        display: flex;
    }
    
    .sidebar {
        transform: translateX(0);
        position: fixed;
        width: 280px;
        height: calc(100vh - 56px);
        top: 56px;
        left: 0;
        z-index: 999;
    }
    
    .content-wrapper {
        flex: 1;
        margin-left: 280px;
        width: calc(100% - 280px);
    }
    
    .main-content {
        margin-left: 0;
        margin-bottom: 2rem;
        padding: 2rem;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .header {
        margin-left: 0;
        width: 100%;
    }
    
    /* Grid para desktop: 5 colunas */
    .games-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
    
    .game-card {
        height: 200px;
    }
    
    .game-overlay {
        padding: 0px 1rem;
    }
    
    .game-title {
        font-size: 1.2rem;
    }
    
    .game-subtitle {
        font-size: 0.9rem;
    }
}

/* Scanner Section Styles */
.scanner-section {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.scanner-button {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(61, 214, 117, 0.15) 0%, 
        rgba(0, 212, 255, 0.15) 50%, 
        rgba(255, 215, 0, 0.15) 100%);
    border: 2px solid rgba(61, 214, 117, 0.3);
    border-radius: 20px;
    padding: 1.5rem 2.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #ffffff;
    font-family: inherit;
    overflow: hidden;
    min-width: 320px;
}

.scanner-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(61, 214, 117, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.scanner-button:hover::before {
    left: 100%;
}

.scanner-button:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #3dd675;
    box-shadow: 
        0 20px 40px rgba(61, 214, 117, 0.2),
        0 0 30px rgba(61, 214, 117, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.scanner-button:active {
    transform: translateY(-2px) scale(1.02);
}

.scanner-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3dd675, #00d4ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.scanner-icon svg {
    width: 24px;
    height: 24px;
    color: #050a15;
    z-index: 2;
    animation: scannerIconPulse 2s ease-in-out infinite;
}

.scanner-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: scannerGlow 3s ease-in-out infinite;
}

.scanner-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.scanner-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #3dd675;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scanner-subtitle {
    font-size: 0.9rem;
    color: #b8c4d0;
    margin-top: 0.2rem;
}

.scanner-pulse {
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
    animation: scannerPulse 1.5s ease-in-out infinite;
}

.scanner-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: scannerRipple 1.5s ease-out infinite;
}

/* Scanner Modal Styles */
.scanner-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.5s ease;
    overflow: hidden;
    will-change: opacity;
    transform: translateZ(0);
}

/* Prevenir scroll do body quando modal estiver aberto */
body.scanner-modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Otimização de performance para o modal */
.scanner-modal * {
    backface-visibility: hidden;
    perspective: 1000px;
}

.scanner-content {
    background: linear-gradient(135deg, 
        #121827 0%, 
        rgba(18, 24, 39, 0.98) 100%);
    border: 2px solid rgba(61, 214, 117, 0.3);
    border-radius: 24px;
    padding: 0;
    max-width: 700px;
    width: 95%;
    max-height: 95vh;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(61, 214, 117, 0.1);
    
    will-change: transform;
    transform: translateZ(0);
}

.scanner-header {
    background: linear-gradient(135deg, 
        rgba(61, 214, 117, 0.1) 0%, 
        rgba(0, 212, 255, 0.1) 100%);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(61, 214, 117, 0.2);
    text-align: center;
    position: relative;
}

.scanner-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        #3dd675, 
        transparent);
}

.scanner-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    padding: 0;
    min-width: 50px;
    min-height: 50px;
}

.scanner-close:hover {
    background: #3dd675;
    color: #050a15;
    transform: rotate(90deg);
}

.scanner-logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #3dd675, #00d4ff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: logoGlow 4s ease-in-out infinite;
    will-change: text-shadow;
}

.scanner-brand {
    color: #b8c4d0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.scanner-body {
    padding: 1.5rem;
    text-align: center;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(95vh - 120px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.stat-card {
    background: rgba(61, 214, 117, 0.05);
    border: 1px solid rgba(61, 214, 117, 0.2);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3dd675, transparent);
    animation: statScan 3s ease-in-out infinite;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: bold;
    color: #3dd675;
    animation: counterUp 2s ease-out;
    transition: transform 0.2s ease, color 0.2s ease;
    will-change: transform, color;
}

.stat-label {
    color: #b8c4d0;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.analyzing-section {
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(61, 214, 117, 0.2);
}

.analyzing-title {
    color: #3dd675;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-game {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    margin: 1rem 0;
    animation: gameFlicker 2s ease-in-out infinite;
    will-change: opacity;
    transition: opacity 0.3s ease;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(61, 214, 117, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3dd675, #00d4ff);
    border-radius: 4px;
    transition: width 0.5s ease;
    position: relative;
    will-change: width;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: progressShine 1.5s ease-in-out infinite;
}

.warning-text {
    color: #ffa500;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Results Section */
.results-section {
    padding: 2rem;
    text-align: left;
}

.results-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #3dd675;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.games-category {
    margin-bottom: 2rem;
}

.category-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-high {
    background: rgba(61, 214, 117, 0.2);
    color: #3dd675;
    border: 1px solid rgba(61, 214, 117, 0.3);
}

.category-medium {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.category-low {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.games-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .games-list {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .games-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

.result-game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.result-game-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.5s ease;
}

.result-game-card:hover::before {
    left: 100%;
}

.result-game-card:hover {
    transform: translateY(-5px);
    border-color: #3dd675;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.result-game-image {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.game-result-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.result-game-card:hover .game-result-image {
    transform: scale(1.1);
}

.result-game-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.result-game-name {
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.2;
}

.result-game-provider {
    color: #b8c4d0;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.result-game-status {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.status-high {
    background: rgba(61, 214, 117, 0.2);
    color: #3dd675;
}

.status-medium {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.status-low {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* Ajustes para cards do scanner no mobile - 3 colunas */
@media (max-width: 768px) {
    .games-category {
        margin-bottom: 1.5rem;
    }
    
    .category-title {
        font-size: 0.95rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .result-game-card {
        min-height: 150px;
        border-radius: 8px;
    }
    
    .result-game-image {
        height: 80px;
        border-radius: 8px 8px 0 0;
    }
    
    .result-game-info {
        padding: 0.6rem 0.5rem;
    }
    
    .result-game-name {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
        line-height: 1.1;
    }
    
    .result-game-provider {
        font-size: 0.65rem;
        margin-bottom: 0.4rem;
    }
    
    .result-game-status {
        font-size: 0.65rem;
        padding: 0.3rem 0.4rem;
        border-radius: 6px;
        letter-spacing: 0.3px;
    }
}

/* Ajustes extras para telas muito pequenas */
@media (max-width: 480px) {
    .games-list {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.4rem !important;
    }
    
    .category-title {
        font-size: 0.85rem;
        padding: 0.35rem 0.6rem;
    }
    
    .result-game-card {
        min-height: 140px;
    }
    
    .result-game-image {
        height: 70px;
    }
    
    .result-game-info {
        padding: 0.5rem 0.4rem;
    }
    
    .result-game-name {
        font-size: 0.7rem;
    }
    
    .result-game-provider {
        font-size: 0.6rem;
    }
    
    .result-game-status {
        font-size: 0.6rem;
        padding: 0.25rem 0.35rem;
    }
}

/* Animations */
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scannerIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes scannerGlow {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes scannerPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes scannerRipple {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

@keyframes scanLine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes logoGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(61, 214, 117, 0.5); }
    50% { text-shadow: 0 0 25px rgba(61, 214, 117, 0.7); }
}

@keyframes statScan {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

@keyframes counterUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gameFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Otimização para reduzir tremor */
@media (prefers-reduced-motion: reduce) {
    .scanner-logo,
    .current-game,
    .progress-shine {
        animation: none !important;
    }
}

/* Reduzir tremor durante transições */
.scanner-body.transitioning .current-game,
.scanner-body.transitioning .progress-shine,
.scanner-body.transitioning .stat-value {
    animation-play-state: paused;
}

/* Remover efeito transitioning problemático que causa rotação como hélice */
.scanner-body.transitioning {
    transform: none !important;
    animation: none !important;
    will-change: auto !important;
}

.scanner-body.transitioning * {
    transform: none !important;
    animation: none !important;
    will-change: auto !important;
}

/* Especificamente para elementos que podem causar rotação durante transitioning */
.scanner-body.transitioning .stat-value,
.scanner-body.transitioning .current-game,
.scanner-body.transitioning .progress-fill,
.scanner-body.transitioning .progress-shine {
    transform: none !important;
    animation: none !important;
    will-change: auto !important;
    transition: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .scanner-button {
        min-width: auto;
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .scanner-content {
        width: 95%;
        margin: 1rem;
    }
    
    .scanner-header,
    .scanner-body,
    .results-section {
        padding: 0.8rem 1.5rem 0rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .stat-card {
        padding: 0.8rem 0.5rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }
    
    .games-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}

/* Footer Redesigned - Sobrescrever estilos antigos */
.footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: #121827 !important;
    border-top: 2px solid #3dd675 !important;
    z-index: 1000 !important;
    display: block !important;
    box-shadow: 
        0 -8px 32px rgba(0, 0, 0, 0.3),
        0 -2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
}

/* Footer responsivo para desktop com sidebar */
@media (min-width: 1024px) {
    .footer {
        left: 280px !important;
        width: calc(100% - 280px) !important;
    }
}

.footer-container {
    padding: 0.4rem 1rem;
}

.footer-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 1.5rem;
    gap: 0.5rem;
}

.footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    padding: 0.15rem 0.4rem;
    color: #b8c4d0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
    flex: 1;
    max-width: 100px;
}

.footer-link:hover {
    color: #3dd675;
    background: rgba(61, 214, 117, 0.1);
    transform: translateY(-1px);
}

.footer-link.active {
    color: #3dd675;
    background: rgba(61, 214, 117, 0.15);
}

.footer-link span {
    font-size: 0.55rem;
    font-weight: 500;
}

/* Botão Scanner Destacado */
.footer-scanner-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.15rem;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    max-width: 100px;
    height: auto;
    overflow: visible;
    padding-top: 0.8rem;
}

.scanner-radar {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.3) 0%, 
        rgba(0, 170, 255, 0.2) 50%, 
        rgba(0, 150, 255, 0.1) 100%);
    overflow: hidden;
    box-shadow: 
        0 0 15px rgba(0, 212, 255, 0.3),
        inset 0 0 15px rgba(0, 212, 255, 0.1);
    z-index: 10;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: rgba(0, 212, 255, 0.7);
    border-radius: 50%;
    animation: radarPulse 2s ease-in-out infinite;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 270deg,
        rgba(0, 212, 255, 0.8) 315deg,
        rgba(0, 212, 255, 0.4) 360deg
    );
    border-radius: 50%;
    animation: radarSweep 3s linear infinite;
}

.scanner-radar svg {
    position: relative;
    z-index: 3;
    color: rgba(0, 212, 255, 1);
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
    width: 28px;
    height: 28px;
}

.footer-scanner-btn span {
    font-size: 0.55rem;
    font-weight: bold;
    color: rgba(0, 212, 255, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-top: 0.8rem;
}

.footer-scanner-btn:hover .scanner-radar {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.4),
        inset 0 0 20px rgba(0, 212, 255, 0.2);
}

.footer-scanner-btn:active .scanner-radar {
    transform: translateX(-50%) scale(0.95);
}

/* Animações do Radar */
@keyframes radarPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.8; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.5); 
        opacity: 0.3; 
    }
}

@keyframes radarSweep {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsivo para o Footer */
@media (max-width: 768px) {
    .footer-nav {
        padding: 0 0.5rem;
        gap: 0.2rem;
    }
    
    .footer-link,
    .footer-scanner-btn {
        max-width: 70px;
        padding: 0.4rem 0.4rem;
    }
    
    .footer-scanner-btn {
        padding-top: 0.9rem;
        gap: 0.4rem;
    }
    
    .scanner-radar {
        width: 70px;
        height: 70px;
        top: -45px;
        transform: translateX(-50%);
    }
    
    .radar-circle {
        width: 56px;
        height: 56px;
    }
    
    .radar-pulse {
        width: 28px;
        height: 28px;
    }
    
    .radar-sweep {
        width: 70px;
        height: 70px;
    }
    
    .footer-link span,
    .footer-scanner-btn span {
        font-size: 0.55rem;
    }
    
    .footer-scanner-btn span {
        margin-top: 0.9rem;
    }
}

/* ===== ESTILOS PARA SEÇÃO DE CUPONS ===== */

.coupons-section {
    min-height: calc(100vh - 150px);
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0a0e1a 100%);
    padding: 2rem 0;
    margin-top: 70px; /* Compensar header fixo */
    margin-bottom: 80px; /* Compensar footer fixo */
    position: relative;
    overflow: hidden;
}

.coupons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(61, 214, 117, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(61, 214, 117, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.coupons-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.coupons-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.gift-icon {
    color: #3dd675;
    filter: drop-shadow(0 0 20px rgba(61, 214, 117, 0.5));
    animation: giftFloat 3s ease-in-out infinite;
}

.gift-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(61, 214, 117, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: giftGlow 2s ease-in-out infinite alternate;
}

@keyframes giftFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes giftGlow {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.coupons-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.coupons-subtitle {
    font-size: 1.2rem;
    color: #b8c4d0;
    margin-bottom: 0;
}

.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.coupon-card {
    background: linear-gradient(145deg, #1a1f2e 0%, #2a2f3e 100%);
    border: 1px solid rgba(61, 214, 117, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease-out;
}

.coupon-card:nth-child(1) { animation-delay: 0.1s; }
.coupon-card:nth-child(2) { animation-delay: 0.2s; }
.coupon-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coupon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(61, 214, 117, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.coupon-card:hover::before {
    transform: translateX(100%);
}

.coupon-card:hover {
    transform: translateY(-5px);
    border-color: rgba(61, 214, 117, 0.5);
    box-shadow: 0 10px 30px rgba(61, 214, 117, 0.2);
}

.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.coupon-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coupon-badge.hot {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

.coupon-badge.novo {
    background: linear-gradient(45deg, #4ecdc4, #6bcf7f);
    color: white;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.4);
}

.coupon-badge.limitado {
    background: linear-gradient(45deg, #ffd93d, #ff8c42);
    color: white;
    box-shadow: 0 0 20px rgba(255, 217, 61, 0.4);
}

.coupon-icon {
    color: #3dd675;
}

.coupon-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.coupon-game {
    color: #b8c4d0;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.coupon-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    color: #b8c4d0;
    font-size: 0.9rem;
}

.detail-value {
    color: #3dd675;
    font-weight: 600;
    font-size: 1rem;
}

.coupon-code-container {
    background: rgba(61, 214, 117, 0.1);
    border: 1px solid rgba(61, 214, 117, 0.3);
    border-radius: 12px;
    padding: 1rem;
}

.code-label {
    color: #b8c4d0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.code-box {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.8rem;
    border: 1px solid rgba(61, 214, 117, 0.2);
}

.code-text {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: #3dd675;
    text-align: center;
    letter-spacing: 2px;
}

.copy-button {
    background: linear-gradient(45deg, #3dd675, #4ecdc4);
    border: none;
    border-radius: 6px;
    padding: 0.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.copy-button:hover {
    background: linear-gradient(45deg, #4ecdc4, #3dd675);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(61, 214, 117, 0.4);
}

.copy-button:active {
    transform: scale(0.95);
}

.coupons-info-card {
    background: linear-gradient(145deg, #1a1f2e 0%, #2a2f3e 100%);
    border: 1px solid rgba(61, 214, 117, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.coupons-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(61, 214, 117, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.coupons-info-card:hover::before {
    transform: translateX(100%);
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-icon {
    color: #3dd675;
    margin-right: 1rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.info-content {
    margin-bottom: 2rem;
}

.info-content p {
    color: #b8c4d0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.deposit-button-large {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #3dd675, #4ecdc4);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(61, 214, 117, 0.3);
    cursor: pointer;
    border: none;
}

.deposit-button-large:hover {
    background: linear-gradient(45deg, #4ecdc4, #3dd675);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61, 214, 117, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsivo para Cupons */
@media (max-width: 768px) {
    .coupons-section {
        margin-top: 60px; /* Ajustar para mobile */
        margin-bottom: 70px; /* Ajustar para mobile */
        padding: 1.5rem 0;
    }
    
    .coupons-title {
        font-size: 2rem;
    }
    
    .coupons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coupon-card {
        padding: 1.5rem;
    }
    
    .coupon-value {
        font-size: 1.5rem;
    }
    
    .code-box {
        flex-direction: column;
        gap: 1rem;
    }
    
    .copy-button {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .coupons-section {
        margin-top: 65px; /* Ajustar para mobile pequeno */
        margin-bottom: 75px; /* Ajustar para mobile pequeno */
        padding: 1rem 0;
    }
}

/* ===== ESTILOS PARA SEÇÃO DE RANKING ===== */

.ranking-section {
    min-height: calc(100vh - 150px);
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0a0e1a 100%);
    padding: 2rem 0;
    margin-top: 70px; /* Compensar header fixo */
    margin-bottom: 80px; /* Compensar footer fixo */
    position: relative;
    overflow: hidden;
}

.ranking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 192, 192, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ranking-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.ranking-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.trophy-icon {
    color: #ffd700;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    animation: trophyFloat 3s ease-in-out infinite;
}

.trophy-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: trophyGlow 2s ease-in-out infinite alternate;
}

@keyframes trophyFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes trophyGlow {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.ranking-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.ranking-subtitle {
    font-size: 1.2rem;
    color: #b8c4d0;
    margin-bottom: 0;
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ranking-card {
    background: linear-gradient(145deg, #1a1f2e 0%, #2a2f3e 100%);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease-out;
}

.ranking-card:nth-child(1) { animation-delay: 0.1s; }
.ranking-card:nth-child(2) { animation-delay: 0.2s; }
.ranking-card:nth-child(3) { animation-delay: 0.3s; }

.ranking-card.gold {
    border: 2px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.ranking-card.silver {
    border: 2px solid #c0c0c0;
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.3);
}

.ranking-card.bronze {
    border: 2px solid #cd7f32;
    box-shadow: 0 0 30px rgba(205, 127, 50, 0.3);
}

.ranking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.ranking-card:hover::before {
    transform: translateX(100%);
}

.ranking-card:hover {
    transform: translateY(-5px);
}

.rank-position {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.rank-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

.rank-crown {
    position: absolute;
    top: -10px;
    right: -10px;
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
    animation: crownShine 2s ease-in-out infinite;
}

.rank-medal {
    position: absolute;
    top: -5px;
    right: -5px;
    color: #c0c0c0;
    filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.7));
}

@keyframes crownShine {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.player-avatar {
    flex-shrink: 0;
}

.player-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #3dd675;
    object-fit: cover;
}

.player-details {
    flex: 1;
}

.player-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.player-points {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3dd675;
    margin-bottom: 1rem;
}

.player-prize {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.prize-icon {
    font-size: 1.5rem;
}

.prize-text {
    color: #b8c4d0;
    font-weight: 600;
}

.prize-value {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.1rem;
}

.ranking-list {
    margin-bottom: 3rem;
}

.ranking-list-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.ranking-items {
    display: grid;
    gap: 1rem;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(145deg, #1a1f2e 0%, #2a2f3e 100%);
    border: 1px solid rgba(61, 214, 117, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.ranking-item:hover {
    transform: translateX(5px);
    border-color: rgba(61, 214, 117, 0.5);
    box-shadow: 0 5px 15px rgba(61, 214, 117, 0.2);
}

.item-position {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3dd675;
    min-width: 30px;
    text-align: center;
}

.item-avatar {
    flex-shrink: 0;
}

.item-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #3dd675;
    object-fit: cover;
}

.item-info {
    flex: 1;
}

.item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.item-points {
    font-size: 0.9rem;
    color: #b8c4d0;
}

.ranking-info-card {
    background: linear-gradient(145deg, #1a1f2e 0%, #2a2f3e 100%);
    border: 1px solid rgba(61, 214, 117, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.ranking-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(61, 214, 117, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.ranking-info-card:hover::before {
    transform: translateX(100%);
}

/* Responsivo para Ranking */
@media (max-width: 768px) {
    .ranking-section {
        margin-top: 60px; /* Ajustar para mobile */
        margin-bottom: 70px; /* Ajustar para mobile */
        padding: 1.5rem 0;
    }
    
    .ranking-title {
        font-size: 2rem;
    }
    
    .ranking-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ranking-card {
        padding: 1.5rem;
    }
    
    .rank-number {
        font-size: 3rem;
    }
    
    .player-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .player-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .ranking-section {
        margin-top: 65px; /* Ajustar para mobile pequeno */
        margin-bottom: 75px; /* Ajustar para mobile pequeno */
        padding: 1rem 0;
    }
    
    .ranking-item {
        padding: 0.8rem 1rem;
    }
    
    .item-position {
        font-size: 1.2rem;
        min-width: 25px;
    }
}

/* ===== ESTILOS PARA MODAL DE SORTEIO ===== */

.sweepstakes-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sweepstakes-overlay.show {
    opacity: 1;
}

.sweepstakes-modal {
    background: linear-gradient(145deg, #1a1f2e 0%, #2a2f3e 100%);
    border: 2px solid #ffd700;
    border-radius: 15px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.3);
    max-width: 450px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.sweepstakes-overlay.show .sweepstakes-modal {
    transform: scale(1);
}

.sweepstakes-content {
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.sweepstakes-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.sweepstakes-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.sweepstakes-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.sweepstakes-icon .gift-icon {
    color: #ffd700;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.7));
    animation: sweepstakesGiftFloat 2s ease-in-out infinite;
}

.gift-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: sweepstakesGiftGlow 2s ease-in-out infinite alternate;
}

@keyframes sweepstakesGiftFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

@keyframes sweepstakesGiftGlow {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.sweepstakes-header {
    margin-bottom: 1.5rem;
}

.sweepstakes-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: sweepstakesTitlePulse 2s ease-in-out infinite;
}

.sweepstakes-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@keyframes sweepstakesTitlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.sweepstakes-body {
    margin-bottom: 1.5rem;
}

.sweepstakes-description {
    font-size: 0.9rem;
    color: #b8c4d0;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}

.countdown-container {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
}

.countdown-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: #b8c4d0;
    margin: 0;
}

.countdown-timer {
    font-size: 1.7rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    animation: countdownPulse 1s ease-in-out infinite;
}

@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.members-info {
    background: rgba(61, 214, 117, 0.1);
    border: 1px solid rgba(61, 214, 117, 0.3);
    border-radius: 10px;
    padding: 0.8rem;
}

.members-count {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3dd675;
    margin-bottom: 0.4rem;
}

.members-text {
    font-size: 0.9rem;
    color: #b8c4d0;
    line-height: 1.4;
}

.sweepstakes-footer {
    margin-top: 1.5rem;
}

.sweepstakes-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000000;
    text-decoration: none;
    padding: 0.7rem 1.3rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    margin-bottom: 0.6rem;
    animation: sweepstakesButtonPulse 2s ease-in-out infinite;
}

.sweepstakes-button:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    color: #000000;
    text-decoration: none;
}

@keyframes sweepstakesButtonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.urgency-text {
    font-size: 0.8rem;
    color: #ff6b6b;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
    animation: urgencyBlink 1.5s ease-in-out infinite;
}

@keyframes urgencyBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsivo para Modal de Sorteio */
@media (max-width: 768px) {
    .sweepstakes-modal {
        width: 95%;
        margin: 1rem;
    }
    
    .sweepstakes-content {
        padding: 1.5rem;
    }
    
    .sweepstakes-title {
        font-size: 1.5rem;
    }
    
    .sweepstakes-subtitle {
        font-size: 1.2rem;
    }
    
    .countdown-timer {
        font-size: 2rem;
    }
    
    .sweepstakes-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sweepstakes-modal {
        width: 98%;
        margin: 0.5rem;
    }
    
    .sweepstakes-content {
        padding: 1rem;
    }
    
    .sweepstakes-title {
        font-size: 1.3rem;
    }
    
    .countdown-timer {
        font-size: 1.8rem;
    }
    
    .sweepstakes-button {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
    }
}

/* ===== ESTILOS PARA SEÇÃO DE GESTÃO DE BANCA ===== */

.bank-management-section {
    min-height: calc(100vh - 150px);
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0a0e1a 100%);
    padding: 1rem 0;
    margin-top: 70px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.bank-management-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bank-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.bank-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.bank-icon svg {
    color: #ffc107;
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.5));
    animation: bankFloat 3s ease-in-out infinite;
}

@keyframes bankFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

.bank-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.bank-subtitle {
    font-size: 1rem;
    color: #b8c4d0;
    margin-bottom: 0;
}

.bank-info-card {
    background: linear-gradient(145deg, #1a1f2e 0%, #2a2f3e 100%);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 16px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.bank-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 193, 7, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.bank-info-card:hover::before {
    transform: translateX(100%);
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.info-description {
    color: #b8c4d0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.risk-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.risk-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.risk-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.1);
}

.risk-card.active {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
}

.risk-card.conservative.active {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.2);
}

.risk-card.moderate.active {
    border-color: #FF9800;
    background: rgba(255, 152, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.2);
}

.risk-card.aggressive.active {
    border-color: #F44336;
    background: rgba(244, 67, 54, 0.1);
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.2);
}

.risk-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.risk-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.risk-card p {
    font-size: 0.8rem;
    color: #b8c4d0;
    line-height: 1.4;
    margin: 0;
}

.bank-config-card {
    background: linear-gradient(145deg, #1a1f2e 0%, #2a2f3e 100%);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 16px;
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
}

.bank-config-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 193, 7, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.bank-config-card:hover::before {
    transform: translateX(100%);
}

.config-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
    text-align: center;
}

.config-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.input-group {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.currency {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    padding: 0.8rem;
    font-weight: 600;
    border-right: 1px solid rgba(255, 193, 7, 0.3);
}

.input-group input,
.form-group select {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.8rem;
    font-size: 1rem;
    outline: none;
}

.input-group input::placeholder {
    color: #b8c4d0;
}

.form-group select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 0rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.calculation-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.calc-label {
    font-size: 0.8rem;
    color: #b8c4d0;
}

.goal-status,
.current-status {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
}

.goal-status h3,
.current-status h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.status-buttons {
    display: flex;
    gap: 0.8rem;
}

.status-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.status-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.status-btn.active {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
    color: #4CAF50;
}

.status-btn.danger.active {
    background: rgba(244, 67, 54, 0.2);
    border-color: #F44336;
    color: #F44336;
}

.status-icon {
    font-size: 1.2rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: nowrap;
    min-width: 0;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffc107;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #000000;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff9800, #ffc107);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.btn-secondary {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: #ffffff;
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #66BB6A, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Responsivo para Gestão de Banca */
@media (max-width: 768px) {
    .bank-management-section {
        margin-top: 60px;
        margin-bottom: 70px;
        padding: 1rem 0;
    }
    
    .bank-title {
        font-size: 1.8rem;
    }
    
    .risk-profiles {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .status-buttons {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .bank-management-section {
        margin-top: 65px;
        margin-bottom: 75px;
        padding: 0.8rem 0;
    }
    
    .bank-title {
        font-size: 1.6rem;
    }
    
    .bank-info-card,
    .bank-config-card {
        padding: 1rem;
    }
}

/* ===== ESTILOS PARA SEÇÃO DE INDICAÇÃO ===== */

.referral-section {
    min-height: calc(100vh - 150px);
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0a0e1a 100%);
    padding: 1rem 0;
    margin-top: 70px; /* Compensar header fixo */
    margin-bottom: 80px; /* Compensar footer fixo */
    position: relative;
    overflow: hidden;
}

.referral-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(61, 214, 117, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(61, 214, 117, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.referral-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.referral-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.share-icon {
    color: #3dd675;
    filter: drop-shadow(0 0 20px rgba(61, 214, 117, 0.5));
    animation: shareFloat 3s ease-in-out infinite;
}

.share-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(61, 214, 117, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: shareGlow 2s ease-in-out infinite alternate;
}

@keyframes shareFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shareGlow {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.referral-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.referral-subtitle {
    font-size: 1rem;
    color: #b8c4d0;
    margin-bottom: 0;
}

.referral-stats {
    margin-bottom: 1.5rem;
}

.stats-card {
    background: linear-gradient(145deg, #1a1f2e 0%, #2a2f3e 100%);
    border: 1px solid rgba(61, 214, 117, 0.2);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(61, 214, 117, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stats-card:hover::before {
    transform: translateX(100%);
}

.stats-icon {
    color: #3dd675;
    flex-shrink: 0;
}

.stats-content {
    flex: 1;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #3dd675;
    text-shadow: 0 0 20px rgba(61, 214, 117, 0.5);
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1.1rem;
    color: #b8c4d0;
    font-weight: 600;
}

.referral-link-card {
    background: linear-gradient(145deg, #1a1f2e 0%, #2a2f3e 100%);
    border: 1px solid rgba(61, 214, 117, 0.2);
    border-radius: 16px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.referral-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(61, 214, 117, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.referral-link-card:hover::before {
    transform: translateX(100%);
}

.link-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.link-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.copy-link-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #3dd675, #4ecdc4);
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-link-btn:hover {
    background: linear-gradient(45deg, #4ecdc4, #3dd675);
    transform: scale(1.05);
}

.link-container {
    margin-bottom: 1.5rem;
}

.link-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(61, 214, 117, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: #3dd675;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #25D366, #128C7E);
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.share-whatsapp-btn:hover {
    background: linear-gradient(45deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.rewards-section {
    margin-bottom: 1.5rem;
}

.rewards-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.reward-card {
    background: linear-gradient(145deg, #1a1f2e 0%, #2a2f3e 100%);
    border: 1px solid rgba(61, 214, 117, 0.2);
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-3px);
    border-color: rgba(61, 214, 117, 0.5);
    box-shadow: 0 8px 25px rgba(61, 214, 117, 0.2);
}

.reward-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reward-tier {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.reward-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.reward-status.available {
    background: linear-gradient(45deg, #3dd675, #4ecdc4);
    color: white;
}

.reward-status.locked {
    background: rgba(184, 196, 208, 0.2);
    color: #b8c4d0;
}

.reward-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3dd675;
    margin-bottom: 1rem;
}

.reward-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(61, 214, 117, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #3dd675, #4ecdc4);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #b8c4d0;
    min-width: 40px;
}

.referral-info-card {
    background: linear-gradient(145deg, #1a1f2e 0%, #2a2f3e 100%);
    border: 1px solid rgba(61, 214, 117, 0.2);
    border-radius: 16px;
    padding: 1.2rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.referral-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(61, 214, 117, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.referral-info-card:hover::before {
    transform: translateX(100%);
}

/* Responsivo para Indicação */
@media (max-width: 768px) {
    .referral-section {
        margin-top: 60px; /* Ajustar para mobile */
        margin-bottom: 70px; /* Ajustar para mobile */
        padding: 1.5rem 0;
    }
    
    .referral-title {
        font-size: 2rem;
    }
    
    .stats-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .link-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .referral-section {
        margin-top: 65px; /* Ajustar para mobile pequeno */
        margin-bottom: 75px; /* Ajustar para mobile pequeno */
        padding: 1rem 0;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .reward-card {
        padding: 1rem;
    }
}

/* Estilos para Análise Premium */
.premium-analysis-section {
    margin: 3rem 0;
    max-width: 100%;
}

.premium-button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.premium-analysis-btn {
    background: linear-gradient(135deg, #ff6b6b, #ffd700, #ff6b6b);
    background-size: 200% 200%;
    border: none;
    border-radius: 15px;
    padding: 1.2rem 2.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    animation: premiumGradient 3s ease infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-analysis-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    animation-duration: 1.5s;
}

.premium-analysis-btn:active {
    transform: translateY(0);
}

.premium-icon {
    animation: lockPulse 2s ease-in-out infinite;
}

.premium-text {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.premium-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    
}

.premium-info-card {
    background: linear-gradient(135deg, #1a1f2e, #2d3748);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.premium-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ffd700, #3dd675, #4ecdc4);
    background-size: 200% 100%;
    animation: premiumBorder 3s ease infinite;
}

.premium-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.premium-content-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.premium-text-item {
    font-size: 0.85rem;
    color: #b8c4d0;
    line-height: 1.4;
    margin: 0;
    position: relative;
    text-align: left;
}

.premium-text-item .feature-icon {
    font-size: 1.1rem;
    margin-right: 0.3rem;
}

.premium-text-item strong {
    color: #ffd700;
    font-weight: 700;
}

.premium-text-item.highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 107, 0.1));
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.premium-text-item.highlight::before {
    content: '⭐';
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    font-size: 1rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

/* Animações para Análise Premium */
@keyframes premiumGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes premiumBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes lockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Modal de Login */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.login-modal-content {
    background: linear-gradient(135deg, 
        #121827 0%, 
        rgba(18, 24, 39, 0.98) 100%);
    border: 2px solid rgba(61, 214, 117, 0.3);
    border-radius: 20px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(61, 214, 117, 0.1);
    
    animation: modalSlideIn 0.3s ease;
}

.login-modal-header {
    background: linear-gradient(135deg, 
        rgba(61, 214, 117, 0.1) 0%, 
        rgba(0, 212, 255, 0.1) 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(61, 214, 117, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.login-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        #3dd675, 
        transparent);
}

.login-modal-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #3dd675, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.login-modal-close:hover {
    background: #3dd675;
    color: #050a15;
    transform: rotate(90deg);
}

.login-modal-body {
    padding: 2rem;
}

.login-info-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(61, 214, 117, 0.15), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(61, 214, 117, 0.3);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.login-info-box .info-icon {
    color: #3dd675;
    flex-shrink: 0;
}

.login-info-box .info-text {
    color: #b8c4d0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.login-info-box .info-text strong {
    color: #3dd675;
    font-weight: 700;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: #b8c4d0;
    z-index: 1;
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(61, 214, 117, 0.2);
    border-radius: 12px;
    padding: 1rem 1rem 1rem 3rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #3dd675;
    box-shadow: 0 0 20px rgba(61, 214, 117, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.form-input::placeholder {
    color: #b8c4d0;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #b8c4d0;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: #3dd675;
    background: rgba(61, 214, 117, 0.1);
}

.login-status {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(61, 214, 117, 0.2);
    border-radius: 12px;
    padding: 1rem;
}

.status-message {
    color: #b8c4d0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.response-output {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #b8c4d0;
    max-height: 150px;
    overflow-y: auto;
    white-space: pre-wrap;
    border: 1px solid rgba(61, 214, 117, 0.1);
}

.login-submit-btn {
    background: linear-gradient(45deg, #3dd675, #00d4ff);
    color: #050a15;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61, 214, 117, 0.4);
    background: linear-gradient(45deg, #00d4ff, #3dd675);
}

.login-submit-btn:active {
    transform: translateY(0);
}

.login-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-footer {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(61, 214, 117, 0.1);
}

.login-info {
    color: #b8c4d0;
    font-size: 0.9rem;
    margin: 0;
}

.register-link {
    color: #3dd675;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-link:hover {
    color: #00d4ff;
    text-decoration: underline;
}

/* Animações para o modal de login */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsividade para Modal de Login */
@media (max-width: 768px) {
    .login-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .login-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .login-modal-title {
        font-size: 1.3rem;
    }
    
    .login-modal-body {
        padding: 1.5rem;
    }
    
    .login-info-box {
        padding: 0.875rem 1rem;
        gap: 0.625rem;
    }
    
    .login-info-box .info-text {
        font-size: 0.85rem;
    }
    
    .login-info-box .info-icon {
        width: 18px;
        height: 18px;
    }
    
    .form-input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    }
}

@media (max-width: 480px) {
    .login-modal-content {
        width: 95%;
        margin: 0.5rem;
    }
    
    .login-modal-header {
        padding: 1rem;
    }
    
    .login-modal-title {
        font-size: 1.2rem;
    }
    
    .login-modal-body {
        padding: 1rem;
    }
    
    .login-info-box {
        padding: 0.75rem 0.875rem;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .login-info-box .info-text {
        font-size: 0.8rem;
    }
    
    .login-info-box .info-icon {
        width: 16px;
        height: 16px;
    }
    
    .form-input {
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
        font-size: 0.9rem;
    }
    
}

/* Modal de Depósito */
/* Estilos para resultados do scanner */
.results-section {
    padding: 1rem;
    animation: fadeInUp 0.5s ease-out;
}

.results-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #3dd675;
    margin-bottom: 2rem;
}

.games-category {
    margin-bottom: 2rem;
}

.games-category h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.game-result {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-result:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade para resultados do scanner */
@media (max-width: 768px) {
    .results-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .game-result {
        padding: 0.8rem;
    }
    
    .games-category h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .results-section {
        padding: 0.8rem;
    }
    
    .results-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .games-category h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .game-result {
        padding: 0.6rem;
    }
}

.deposit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.deposit-modal-content {
    background: linear-gradient(135deg, 
        #121827 0%, 
        rgba(18, 24, 39, 0.98) 100%);
    border: 2px solid rgba(61, 214, 117, 0.3);
    border-radius: 20px;
    padding: 0;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(61, 214, 117, 0.1);
    
    animation: modalSlideIn 0.3s ease;
}

.deposit-modal-header {
    background: linear-gradient(135deg, 
        rgba(61, 214, 117, 0.1) 0%, 
        rgba(0, 212, 255, 0.1) 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(61, 214, 117, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.deposit-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        #3dd675, 
        transparent);
}

.deposit-modal-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #3dd675, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.deposit-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.deposit-modal-close:hover {
    background: #3dd675;
    color: #050a15;
    transform: rotate(90deg);
}

.deposit-modal-body {
    padding: 2rem;
}

.deposit-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Quick Amounts Section */
.quick-amounts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-amounts-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.quick-amounts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.quick-amount-btn {
    position: relative;
    background: linear-gradient(135deg, rgba(61, 214, 117, 0.1), rgba(0, 212, 255, 0.1));
    border: 2px solid rgba(61, 214, 117, 0.3);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-height: 70px;
    overflow: hidden;
}

.quick-amount-btn::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.5s ease;
}

.quick-amount-btn:hover::before {
    left: 100%;
}

.quick-amount-btn:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(61, 214, 117, 0.2), rgba(0, 212, 255, 0.2));
    box-shadow: 0 8px 20px rgba(61, 214, 117, 0.3);
}

.quick-amount-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(61, 214, 117, 0.2);
}

.quick-amount-btn.active {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(61, 214, 117, 0.25), rgba(0, 212, 255, 0.25));
    box-shadow: 0 0 20px rgba(61, 214, 117, 0.4);
}

.quick-amount-btn .amount-value {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 1;
}

.quick-amount-btn.hot {
    border-color: rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 193, 7, 0.15));
}

.quick-amount-btn.hot:hover {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(255, 193, 7, 0.25));
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.quick-amount-btn.hot.active {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 193, 7, 0.3));
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.hot-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(45deg, #ff6b35, #ffc107);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    animation: hotPulse 2s ease-in-out infinite;
}

@keyframes hotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.6);
    }
}

.deposit-submit-btn {
    background: linear-gradient(45deg, #3dd675, #00d4ff);
    color: #050a15;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.deposit-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61, 214, 117, 0.4);
    background: linear-gradient(45deg, #00d4ff, #3dd675);
}

.deposit-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Seção PIX Results */
.pix-results {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(61, 214, 117, 0.2);
}

.pix-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pix-title {
    color: #3dd675;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pix-subtitle {
    color: #b8c4d0;
    font-size: 0.9rem;
}

.pix-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.qr-section {
    text-align: center;
}

.qr-code {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(61, 214, 117, 0.3);
    margin-bottom: 1rem;
}

.qr-instruction {
    color: #b8c4d0;
    font-size: 0.9rem;
}

.pix-code-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pix-code-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.pix-code-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pix-code-output {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(61, 214, 117, 0.2);
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #b8c4d0;
    word-break: break-all;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.copy-pix-btn {
    background: linear-gradient(45deg, #3dd675, #00d4ff);
    color: #050a15;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-pix-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(61, 214, 117, 0.3);
}

.copy-pix-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pix-instructions {
    background: rgba(61, 214, 117, 0.05);
    border: 1px solid rgba(61, 214, 117, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.pix-instructions h4 {
    color: #3dd675;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pix-instructions ol {
    color: #b8c4d0;
    padding-left: 1.5rem;
}

.pix-instructions li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Responsividade para Modal de Depósito */
@media (max-width: 768px) {
    .deposit-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .deposit-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .deposit-modal-title {
        font-size: 1.3rem;
    }
    
    .deposit-modal-body {
        padding: 1.5rem;
    }
    
    .deposit-form {
        gap: 1.5rem;
    }
    
    .quick-amounts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }
    
    .quick-amount-btn {
        padding: 0.85rem 0.5rem;
        min-height: 65px;
    }
    
    .quick-amount-btn .amount-value {
        font-size: 1rem;
    }
    
    .hot-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
        top: 4px;
        right: 4px;
    }
    
    .pix-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .qr-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .qr-code {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .deposit-modal-content {
        width: 95%;
        margin: 0.5rem;
    }
    
    .deposit-modal-header {
        padding: 1rem;
    }
    
    .deposit-modal-title {
        font-size: 1.2rem;
    }
    
    .quick-amounts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .quick-amount-btn {
        padding: 0.75rem 0.4rem;
        min-height: 60px;
    }
    
    .quick-amount-btn .amount-value {
        font-size: 0.95rem;
    }
    
    .hot-badge {
        font-size: 0.55rem;
        padding: 0.12rem 0.35rem;
        top: 3px;
        right: 3px;
    }
    
    .deposit-modal-body {
        padding: 1rem;
    }
    
    .deposit-form {
        gap: 1.2rem;
    }
    
    .qr-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .qr-code {
        max-width: 120px;
    }
    
    .pix-instructions {
        padding: 1rem;
    }
}

/* Modal de Análise Premium */
.premium-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: modalFadeIn 0.3s ease;
}

.premium-modal-content {
    background: linear-gradient(135deg, #1a1f2e, #2d3748);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: modalSlideIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    
    /* Personalização da barra de scroll */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.6) rgba(255, 215, 0, 0.1);
}

/* Webkit scrollbar personalizada para modal premium */
.premium-modal-content::-webkit-scrollbar {
    width: 6px;
}

.premium-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    margin: 5px 0;
}

.premium-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ffd700, rgba(255, 215, 0, 0.8));
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.premium-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffed4a, #ffd700);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.5);
}

.premium-modal-content::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #ffd700, #ffc107);
}

.premium-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.premium-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.premium-modal-close {
    background: none;
    border: none;
    color: #b8c4d0;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.premium-modal-close:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.premium-modal-body {
    text-align: center;
}

.premium-modal-text {
    font-size: 1rem;
    color: #b8c4d0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.premium-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.premium-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-btn.deposited {
    background: linear-gradient(45deg, #3dd675, #4ecdc4);
    color: white;
}

.premium-btn.deposited:hover {
    background: linear-gradient(45deg, #4ecdc4, #3dd675);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61, 214, 117, 0.3);
}

.premium-btn.deposit {
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    color: white;
}

.premium-btn.deposit:hover {
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.premium-btn.back {
    background: rgba(255, 255, 255, 0.1);
    color: #b8c4d0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-btn.back:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Animações do Modal */
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsividade para Análise Premium */
@media (max-width: 768px) {
    .premium-analysis-section {
        margin: 2rem 0;
    }
    
    .premium-analysis-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        gap: 0.6rem;
    }
    
    .premium-info-card {
        padding: 2rem;
    }
    
    .premium-title {
        font-size: 1.6rem;
    }
    
    .premium-text-item {
        font-size: 0.8rem;
    }
    
    .premium-text-item .feature-icon {
        font-size: 1rem;
    }
    
    .premium-text-item.highlight {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .premium-analysis-section {
        margin: 2rem 0;
    }
    
    .premium-button-container {
        margin-bottom: 1.5rem;
    }
    
    .premium-analysis-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .premium-info-card {
        padding: 1.5rem;
    }
    
    .premium-title {
        font-size: 1.4rem;
    }
    
    .premium-text-item {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .premium-text-item .feature-icon {
        font-size: 0.9rem;
        margin-right: 0.2rem;
    }
    
    .premium-text-item.highlight {
        padding: 0.6rem;
    }
}

/* Responsividade para Modal Premium */
@media (max-width: 768px) {
    .premium-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .premium-modal-title {
        font-size: 1.3rem;
    }
    
    .premium-modal-text {
        font-size: 0.9rem;
    }
    
    .premium-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .premium-modal-content {
        padding: 1.2rem;
        margin: 0.5rem;
    }
    
    .premium-modal-title {
        font-size: 1.2rem;
    }
    
    .premium-modal-text {
        font-size: 0.85rem;
    }
    
    .premium-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* Modal de Scanner Premium */
.premium-scanner-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: modalFadeIn 0.3s ease;
}

.premium-scanner-content {
    background: linear-gradient(135deg, #0a0e1a, #1a1f2e);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
    position: relative;
    animation: modalSlideIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    
    /* Personalização da barra de scroll */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.6) rgba(255, 215, 0, 0.1);
}

/* Webkit scrollbar personalizada */
.premium-scanner-content::-webkit-scrollbar {
    width: 8px;
}

.premium-scanner-content::-webkit-scrollbar-track {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    margin: 10px 0;
}

.premium-scanner-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ffd700, rgba(255, 215, 0, 0.8));
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.premium-scanner-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffed4a, #ffd700);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}

.premium-scanner-content::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #ffd700, #ffc107);
}

/* Fase de Análise */
.scanner-header {
    text-align: center;
    margin-bottom: 2rem;
}

.scanner-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scanner-subtitle {
    font-size: 1rem;
    color: #b8c4d0;
    margin: 0;
}

.scanner-animation {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
    position: relative;
}

.scanner-animation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: scannerGlow 3s ease-in-out infinite;
}

.scanner-circle {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.scanner-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    animation: scanRing 2s linear infinite;
}

.scanner-ring::before {
    content: '';
    position: absolute;
    inset: -2px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: scanRing 3s linear infinite reverse;
}

.scanner-line {
    position: absolute;
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.3) 20%, 
        #ffd700 50%, 
        rgba(255, 215, 0, 0.3) 80%, 
        transparent 100%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.scanner-center {
    position: relative;
    z-index: 2;
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.scanner-icon {
    animation: scanPulse 1.5s ease-in-out infinite;
}

.scanner-status {
    text-align: center;
}

.status-title {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.status-text {
    font-size: 0.9rem;
    color: #b8c4d0;
    margin-bottom: 1.5rem;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    animation: loadingDots 1.5s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Fase de Resultados */
.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.results-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.results-subtitle {
    font-size: 1rem;
    color: #b8c4d0;
    margin: 0;
}

.games-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.game-result-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.game-result-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

/* Estilos específicos para análise premium */
.premium-game-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.premium-game-image-container {
    flex-shrink: 0;
    width: 130px;
    height: 160px;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.premium-game-image-container:hover {
    border-color: rgba(255, 215, 0, 0.6);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.premium-game-image-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.premium-game-image-container:hover .premium-game-image-portrait {
    transform: scale(1.05);
}

.premium-game-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 160px;
}

.premium-game-info .result-game-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.premium-game-info .result-game-provider {
    font-size: 0.9rem;
    color: #3dd675;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.premium-game-info .game-result-type {
    font-size: 0.9rem;
    color: #ffd700;
    margin: 0;
    font-weight: 600;
    text-align: left;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    width: fit-content;
}

.game-result-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.3rem;
}

.game-result-type {
    font-size: 0.9rem;
    color: #b8c4d0;
    margin: 0 0 0.2rem 0;
}

.game-result-provider {
    font-size: 0.8rem;
    color: #3dd675;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}

/* Estilo específico para o tipo de padrão na análise premium */
.result-game-info .game-result-type {
    font-size: 0.85rem;
    color: #ffd700;
    margin: 0 0 1rem 0;
    font-weight: 600;
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.game-times-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.time-slot {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 0.75rem 0.6rem;
    text-align: center;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.time-value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.25rem;
}

.time-probability {
    font-size: 0.8rem;
    color: #3dd675;
    font-weight: 600;
}

.important-notice {
    background: linear-gradient(135deg, rgba(61, 214, 117, 0.1), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(61, 214, 117, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.notice-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3dd675;
    margin-bottom: 0.8rem;
}

.notice-text {
    font-size: 0.9rem;
    color: #b8c4d0;
    line-height: 1.6;
    margin: 0;
}

.close-scanner-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-scanner-btn:hover {
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Animações do Scanner */
@keyframes scanRing {
    0% { 
        transform: rotate(0deg);
        border-color: rgba(255, 215, 0, 0.4);
    }
    25% {
        border-color: rgba(255, 215, 0, 0.8);
    }
    50% {
        border-color: rgba(255, 215, 0, 0.4);
    }
    75% {
        border-color: rgba(255, 215, 0, 0.2);
    }
    100% { 
        transform: rotate(360deg);
        border-color: rgba(255, 215, 0, 0.4);
    }
}

@keyframes scanLine {
    0% { 
        transform: rotate(0deg);
        opacity: 0.8;
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
    75% {
        opacity: 0.7;
    }
    100% { 
        transform: rotate(360deg);
        opacity: 0.8;
    }
}

@keyframes scanPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    50% { 
        transform: scale(1.15);
        opacity: 0.9;
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
}

@keyframes loadingDots {
    0%, 80%, 100% { 
        transform: scale(0.8);
        opacity: 0.4;
    }
    40% { 
        transform: scale(1.3);
        opacity: 1;
        background: #ffd700;
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    }
}

@keyframes scannerGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

/* Responsividade para Scanner Premium */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Grid de resultados - 2 colunas em tablets grandes */
    .games-results {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .premium-scanner-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .scanner-title,
    .results-title {
        font-size: 1.5rem;
    }
    
    .scanner-circle {
        width: 150px;
        height: 150px;
    }
    
    .scanner-line {
        width: 150px;
    }
    
    .game-times-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .time-slot {
        padding: 0.6rem 0.5rem;
    }
    
    .time-value {
        font-size: 0.95rem;
    }
    
    .time-probability {
        font-size: 0.75rem;
    }
    
    /* Responsividade para layout premium */
    .premium-game-header {
        gap: 1rem;
    }
    
    .premium-game-image-container {
        width: 100px;
        height: 120px;
    }
    
    .premium-game-info {
        min-height: 120px;
    }
    
    .premium-game-info .result-game-name {
        font-size: 1.2rem;
    }
    
    /* Grid de resultados - 2 colunas em tablets */
    .games-results {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .premium-scanner-content {
        padding: 1.2rem;
        margin: 0.5rem;
    }
    
    .scanner-title,
    .results-title {
        font-size: 1.3rem;
    }
    
    .scanner-circle {
        width: 120px;
        height: 120px;
    }
    
    .scanner-line {
        width: 120px;
    }
    
    .game-times-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }
    
    .time-slot {
        padding: 0.6rem;
    }
    
    .game-result-name {
        font-size: 1.1rem;
    }
    
    .time-value {
        font-size: 1rem;
    }
    
    /* Responsividade para layout premium em telas pequenas - imagem em cima */
    .premium-game-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    
    .premium-game-image-container {
        width: 100%;
        max-width: 120px;
        height: 140px;
        flex-shrink: 0;
    }
    
    .premium-game-info {
        min-height: auto;
        align-items: center;
        width: 100%;
    }
    
    .premium-game-info .result-game-name {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .premium-game-info .result-game-provider {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .premium-game-info .game-result-type {
        text-align: center;
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    
    /* Grid de resultados - 2 colunas em mobile pequeno */
    .games-results {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .game-result-card {
        padding: 1rem;
    }
    
    /* Cards de horário menores */
    .game-times-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    
    .time-slot {
        padding: 0.4rem 0.3rem;
    }
    
    .time-value {
        font-size: 0.85rem;
        margin-bottom: 0.15rem;
    }
    
    .time-probability {
        font-size: 0.7rem;
    }
    
    /* Scrollbar mais fina no mobile */
    .premium-scanner-content::-webkit-scrollbar {
        width: 4px;
    }
    
    .premium-modal-content::-webkit-scrollbar {
        width: 4px;
    }
}

/* ========================================
   SCANNER INDIVIDUAL POR JOGO
   ======================================== */

/* Modal do Scanner Individual */
.individual-scanner-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    
    opacity: 1;
    visibility: visible;
}

.individual-scanner-content {
    background: linear-gradient(135deg, #121827 0%, rgba(18, 24, 39, 0.95) 100%);
    border-radius: 20px;
    border: 1px solid rgba(61, 214, 117, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    
}

/* Header do Scanner Individual */
.individual-scanner-header {
    background: linear-gradient(135deg, rgba(61, 214, 117, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(61, 214, 117, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.individual-scanner-logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: #3dd675;
    text-shadow: 0 0 10px rgba(61, 214, 117, 0.3);
}

.individual-scanner-brand {
    font-size: 0.9rem;
    color: #b8c4d0;
    opacity: 0.8;
}

.individual-scanner-close {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.individual-scanner-close:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: scale(1.1);
}

/* Body do Scanner Individual */
.individual-scanner-body {
    padding: 2rem;
}

/* Fase de Análise */
.individual-analysis-phase {
    text-align: center;
}

.game-analysis-header {
    margin-bottom: 2rem;
}

.game-title-analysis {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3dd675;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(61, 214, 117, 0.3);
}

.analysis-subtitle {
    color: #b8c4d0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Status da Análise Individual */
.individual-analysis-status {
    margin: 2rem 0;
}

.individual-status-title {
    font-size: 1.4rem;
    color: #3dd675;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.individual-status-text {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.individual-loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.individual-loading-dots span {
    width: 8px;
    height: 8px;
    background: #3dd675;
    border-radius: 50%;
    animation: individualLoadingDots 1.4s ease-in-out infinite both;
}

.individual-loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.individual-loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.individual-loading-dots span:nth-child(3) { animation-delay: 0s; }

/* Progresso da Análise Individual */
.individual-analysis-progress {
    margin: 2rem 0;
}

.progress-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.progress-label {
    color: #ffffff;
    font-weight: 600;
}

.progress-value {
    color: #3dd675;
    font-weight: bold;
    font-size: 1.1rem;
}

.progress-bar-individual {
    width: 100%;
    height: 8px;
    background: rgba(61, 214, 117, 0.1);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(61, 214, 117, 0.2);
}

.progress-fill-individual {
    height: 100%;
    background: linear-gradient(90deg, #3dd675, #00d4ff);
    border-radius: 4px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(61, 214, 117, 0.5);
}

/* Estatísticas da Análise */
.analysis-stats {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(61, 214, 117, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(61, 214, 117, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #3dd675;
    margin-bottom: 0.3rem;
}

.stat-label {
    color: #b8c4d0;
    font-size: 0.9rem;
}

/* Simulação de Banca */
.bank-simulation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(61, 214, 117, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(61, 214, 117, 0.3);
}

.bank-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3dd675;
}

.bank-percentage {
    font-size: 1.2rem;
    font-weight: bold;
    color: #3dd675;
}

.bank-indicator {
    font-size: 2rem;
    font-weight: bold;
}

.bank-indicator.positive {
    color: #3dd675;
}

.bank-indicator.negative {
    color: #ff6b6b;
}

/* Disclaimer da Análise */
.analysis-disclaimer {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.analysis-disclaimer p {
    color: #b8c4d0;
    font-size: 0.9rem;
    margin: 0.3rem 0;
    text-align: center;
}

/* Fase de Resultados */
.individual-results-phase {
    text-align: center;
}

.individual-results-header {
    margin-bottom: 2rem;
}

.individual-results-title {
    font-size: 1.6rem;
    color: #3dd675;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Instruções do Sinal */
.signal-instructions {
    margin: 2rem 0;
}

.signal-patterns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.signal-pattern {
    background: linear-gradient(135deg, rgba(61, 214, 117, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid rgba(61, 214, 117, 0.3);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    min-width: 100px;
    text-align: center;
    transition: all 0.3s ease;
}

.signal-pattern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(61, 214, 117, 0.2);
}

.pattern-type {
    font-size: 0.9rem;
    color: #b8c4d0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pattern-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3dd675;
    text-shadow: 0 0 10px rgba(61, 214, 117, 0.3);
}

/* Aviso Importante Individual */
.important-notice-individual {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.notice-title-individual {
    color: #ffc107;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.notice-text-individual {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Botão Jogar Agora */
.play-now-btn {
    background: linear-gradient(45deg, #3dd675, #00d4ff);
    color: #050a15;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(61, 214, 117, 0.3);
    margin-top: 1rem;
    width: 100%;
    max-width: 300px;
}

.play-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(61, 214, 117, 0.4);
    background: linear-gradient(45deg, #00d4ff, #3dd675);
}

.play-now-btn:active {
    transform: translateY(-1px);
}

@keyframes individualLoadingDots {
    0%, 80%, 100% { 
        transform: scale(0.8);
        opacity: 0.4;
    }
    40% { 
        transform: scale(1.3);
        opacity: 1;
        background: #ffd700;
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    }
}

/* Responsividade do Scanner Individual */
@media (max-width: 768px) {
    .individual-scanner-content {
        width: 95%;
        max-width: none;
        margin: 1rem;
    }
    
    .individual-scanner-body {
        padding: 1.5rem;
    }
    
    .game-title-analysis {
        font-size: 1.5rem;
    }
    
    .individual-scanner-circle {
        width: 150px;
        height: 150px;
    }
    
    .signal-patterns {
        gap: 0.8rem;
    }
    
    .signal-pattern {
        min-width: 80px;
        padding: 1rem 0.8rem;
    }
    
    .pattern-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .individual-scanner-content {
        width: 98%;
        margin: 0.5rem;
    }
    
    .individual-scanner-body {
        padding: 1rem;
    }
    
    .game-title-analysis {
        font-size: 1.3rem;
    }
    
    .individual-scanner-circle {
        width: 120px;
        height: 120px;
    }
    
    .signal-patterns {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .signal-pattern {
        width: 100%;
        max-width: 200px;
    }
    
    .play-now-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Prevenir scroll do body quando modal está aberto */
.individual-scanner-modal-open {
    overflow: hidden;
}

/* Melhorar cursor nos cards dos jogos */
.game-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(61, 214, 117, 0.2);
}