/* RaspadinhaGPT - Estilos CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(ellipse at center, #0f1419 0%, #0a0f14 50%, #050a0f 100%);
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(0, 255, 136, 0.05) 0%, transparent 40%),
        linear-gradient(45deg, rgba(0, 255, 136, 0.02) 0%, transparent 50%, rgba(0, 255, 136, 0.02) 100%);
    animation: backgroundPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.container {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(15, 20, 25, 0.8));
    border-radius: 24px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(0, 255, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), transparent);
}

.container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 136, 0.03), transparent);
    animation: containerRotate 20s linear infinite;
    z-index: -1;
}

@keyframes containerRotate {
    to { transform: rotate(360deg); }
}

/* Logo e Cabeçalho */
.logo-container {
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Quadro Animado de Análise */
.analyzer-frame {
    position: absolute;
    width: 160px;
    height: 160px;
    z-index: 1;
    pointer-events: none;
}

.analyzer-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: gridScan 3s ease-in-out infinite;
    border-radius: 12px;
}

.analyzer-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.8), transparent);
    animation: scanLine 2s ease-in-out infinite;
    border-radius: 2px;
}

.analyzer-corners {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #00ff88;
    animation: cornerPulse 1.5s ease-in-out infinite;
}

.corner.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.corner.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-radius: 0 8px 0 0;
}

.corner.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 8px;
}

.corner.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

@keyframes gridScan {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes scanLine {
    0% { top: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { top: calc(100% - 4px); opacity: 0; }
}

@keyframes cornerPulse {
    0%, 100% { 
        border-color: #00ff88;
        box-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
    }
    50% { 
        border-color: #00ffaa;
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
    }
}

.logo {
    width: 120px;
    height: 120px;
    z-index: 2;
    position: relative;
    border-radius: 20px;
    box-shadow: 
        0 15px 30px rgba(0, 255, 136, 0.3),
        0 0 0 2px rgba(0, 255, 136, 0.2);
    animation: logoFloat 4s ease-in-out infinite;
}

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

.logo-bg::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff88, #00cc66, #00ff88);
    border-radius: 22px;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

.clover {
    font-size: 60px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.ai-label {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #00ff88;
    color: #000;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
}

.premium-label {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
}

h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.subtitle {
    color: #00ff88;
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Botões Profissionais */
.btn {
    display: block;
    width: 100%;
    padding: 18px 35px;
    margin: 15px 0;
    border: 2px solid #00ff88;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: linear-gradient(135deg, #00ff88, #00cc66, #00ff88);
    background-size: 200% 200%;
    color: #ffffff;
    box-shadow: 
        0 0 25px rgba(0, 255, 136, 0.6),
        0 0 50px rgba(0, 255, 136, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.9);
    min-width: 200px;
}

/* Botões Menores */
.btn-small {
    padding: 12px 25px;
    font-size: 14px;
    min-width: 160px;
    border-radius: 14px;
    margin: 8px;
    transform: scale(0.9);
    box-shadow: 
        0 0 15px rgba(0, 255, 136, 0.4),
        0 0 30px rgba(0, 255, 136, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.btn-small .btn-icon {
    font-size: 14px;
}

.btn-small .btn-text {
    font-size: 13px;
    letter-spacing: 1px;
}

.btn-platform {
    background: linear-gradient(135deg, #00ff88, #00dd77, #00ff88);
    border: 2px solid #00ff88;
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.7),
        0 0 60px rgba(0, 255, 136, 0.4),
        0 12px 24px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-icon {
    font-size: 18px;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.8));
    animation: iconPulse 2s ease-in-out infinite;
}

.btn-text {
    font-weight: 700;
    letter-spacing: 1.5px;
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    border-radius: 27px;
    z-index: -1;
    animation: glowRotate 3s linear infinite;
}

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

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

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

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

.btn:hover {
    background-position: 100% 0;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 0 40px rgba(0, 255, 136, 0.9),
        0 0 80px rgba(0, 255, 136, 0.6),
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 3px 6px rgba(255, 255, 255, 0.25);
    text-shadow: 0 0 20px rgba(0, 255, 136, 1.2);
    border-color: #00ffaa;
    animation: buttonHover 0.6s ease-in-out;
}

.btn:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 
        0 0 25px rgba(0, 255, 136, 0.7),
        0 0 50px rgba(0, 255, 136, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-platform:hover {
    box-shadow: 
        0 0 50px rgba(0, 255, 136, 0.9),
        0 0 100px rgba(0, 255, 136, 0.6),
        0 25px 50px rgba(0, 0, 0, 0.6),
        inset 0 3px 6px rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
}

.btn-analyze:hover {
    transform: translateY(-6px) scale(1.15);
    box-shadow: 
        0 0 60px rgba(0, 255, 136, 1),
        0 0 120px rgba(0, 255, 136, 0.7),
        0 25px 50px rgba(0, 0, 0, 0.6),
        inset 0 4px 8px rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 25px rgba(0, 255, 136, 1.5);
}

.btn-small:hover {
    transform: translateY(-2px) scale(0.95);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.6),
        0 0 40px rgba(0, 255, 136, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.15);
}

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

.btn-primary {
    background: linear-gradient(135deg, #00ff88, #00cc66, #00ff88);
    background-size: 200% 200%;
    color: #000;
    box-shadow: 
        0 5px 20px rgba(0, 255, 136, 0.3),
        0 0 0 1px rgba(0, 255, 136, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.8),
        0 0 60px rgba(0, 255, 136, 0.5),
        0 12px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    background-position: 100% 50%;
    border-color: #00ffaa;
    text-shadow: 0 0 15px rgba(0, 255, 136, 1);
}

.btn-secondary {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a, #1a1a1a);
    background-size: 200% 200%;
    color: #00ff88;
    border: 2px solid #00ff88;
    padding: 18px 35px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 12px;
    box-shadow: 
        0 0 25px rgba(0, 255, 136, 0.4),
        0 0 50px rgba(0, 255, 136, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.7);
    min-width: 200px;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #00ffaa, #00dd77);
    color: #ffffff;
    border-color: #00ffaa;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 0 25px rgba(0, 255, 136, 0.6),
        0 0 50px rgba(0, 255, 136, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.9);
}

.btn-analyze {
    background: linear-gradient(135deg, #00ff88, #00cc66, #00ff88);
    background-size: 200% 200%;
    color: #000;
    font-size: 20px;
    padding: 25px 50px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 280px;
    border-radius: 25px;
    transform: scale(1.1);
    box-shadow: 
        0 0 40px rgba(0, 255, 136, 0.8),
        0 0 80px rgba(0, 255, 136, 0.5),
        0 15px 30px rgba(0, 0, 0, 0.5),
        inset 0 3px 6px rgba(255, 255, 255, 0.15);
    text-shadow: 0 0 20px rgba(0, 255, 136, 1.2);
    transition: all 0.4s ease;
}

.btn-analyze .btn-icon {
    font-size: 24px;
    margin-right: 5px;
}

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

.btn-analyze:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 30px rgba(0, 255, 136, 0.6),
        0 0 0 3px rgba(0, 255, 136, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    background-position: 100% 50%;
}

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

.btn-analyze:active {
    transform: translateY(-1px) scale(1.02);
}

/* Loading */
.loading {
    display: none;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 25px;
    padding: 20px;
    margin: 20px 0;
    border: 2px solid #00ff88;
}

/* Loading Animation */
.loading-container {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.loading-text {
    font-size: 18px;
    color: #00ff88;
    margin-bottom: 30px;
    font-weight: 500;
    animation: pulse 2s ease-in-out infinite;
}

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

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(0, 255, 136, 0.2);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00cc6a, #00ff88);
    background-size: 200% 100%;
    width: 0;
    animation: progressFill 5s ease-in-out forwards, shimmer 2s ease-in-out infinite;
    border-radius: 6px;
}

@keyframes progressFill {
    to { width: 100%; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.step {
    padding: 15px 25px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.5s ease;
    width: 100%;
    max-width: 320px;
    position: relative;
    overflow: hidden;
}

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

.step.active {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    color: #00ff88;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.step.active::before {
    left: 100%;
}

/* Resultado */
.result-container {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(15, 20, 25, 0.8));
    border-radius: 24px;
    padding: 35px;
    margin-top: 25px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 255, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: resultFadeIn 0.8s ease-out;
}

.result-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
}

@keyframes resultFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.result-title {
    font-size: 26px;
    color: #00ff88;
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 30px rgba(0, 255, 136, 0.3); }
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.result-item:hover {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 12px;
    padding: 18px 15px;
    margin: 0 -15px;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.result-value {
    font-size: 18px;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.result-action {
    color: #00ff88;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: actionPulse 2s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

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

.result-chance {
    font-size: 28px;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    animation: chanceGlow 1.5s ease-in-out infinite;
}

@keyframes chanceGlow {
    0%, 100% { 
        color: #00ff88;
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    }
    50% { 
        color: #00ffaa;
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.8), 0 0 40px rgba(0, 255, 136, 0.4);
    }
}

.result-gain {
    font-size: 22px;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.action-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
}

.action-label {
    color: #ccc;
    font-size: 14px;
}

.action-value {
    color: #00ff88;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.action-icon {
    width: 20px;
    height: 20px;
    background: #00ff88;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 12px;
}

.chance-bar {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 0;
}

.chance-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4444, #ffaa00, #00ff88);
    border-radius: 4px;
    transition: width 1s ease;
}

.gain-amount {
    font-size: 24px;
    color: #00ff88;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Animações */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

/* Sistema de Partículas Profissional */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.8) 0%, rgba(0, 255, 136, 0.4) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) {
    width: 6px;
    height: 6px;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 85%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    width: 8px;
    height: 8px;
    top: 30%;
    left: 70%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 25%;
    animation-delay: 9s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    width: 5px;
    height: 5px;
    top: 50%;
    left: 5%;
    animation-delay: 12s;
    animation-duration: 20s;
}

.particle:nth-child(6) {
    width: 7px;
    height: 7px;
    top: 20%;
    left: 90%;
    animation-delay: 15s;
    animation-duration: 13s;
}

.particle:nth-child(7) {
    width: 4px;
    height: 4px;
    top: 90%;
    left: 60%;
    animation-delay: 18s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 40%;
    animation-delay: 21s;
    animation-duration: 15s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Efeito de grade de análise no fundo */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: -3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Responsivo */
@media (max-width: 480px) {
    .container {
        padding: 25px;
        margin: 15px;
        border-radius: 20px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .logo-bg {
        width: 100px;
        height: 100px;
        border-radius: 20px;
    }
    
    .clover {
        font-size: 50px;
    }
    
    .btn-analyze {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .result-title {
        font-size: 22px;
    }
    
    .result-chance {
        font-size: 24px;
    }
    
    .result-gain {
        font-size: 18px;
    }
}

/* Efeitos especiais */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ff88;
    border-radius: 50%;
    animation: sparkle 2s infinite;
}

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

.circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        linear-gradient(90deg, #00ff88 1px, transparent 1px),
        linear-gradient(180deg, #00ff88 1px, transparent 1px);
    background-size: 20px 20px;
    animation: circuit 10s linear infinite;
}

@keyframes circuit {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}