/* AhoraToca Frontend Styles */

.ahoratoca-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    color: white;
    text-align: center;
    position: relative;
}

.loteria-header h2 {
    font-size: 28px;
    margin: 0 0 30px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.combinacion-display {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.numero-bola {
    width: 80px;
    height: 80px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.numero-bola:hover {
    transform: scale(1.1);
}

.numero-bola.blur {
    filter: blur(8px);
    background: rgba(255,255,255,0.5);
}

.countdown-container {
    margin: 30px 0;
}

.countdown-label {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.countdown {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 4px;
}

.disclaimer {
    background: rgba(0,0,0,0.2);
    padding: 15px 20px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer p {
    margin: 0;
}

.cta-buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-register {
    background: white;
    color: #667eea;
    margin-bottom: 10px;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.btn-premium {
    background: #ffd700;
    color: #000;
}

.btn-premium:hover {
    background: #ffed4e;
    transform: translateY(-3px);
}

.cta-text {
    margin: 10px 0 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.loading {
    font-size: 18px;
    padding: 40px 0;
    animation: pulse 1.5s infinite;
}

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

/* Primitiva locked section */
.primitiva-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
    overflow: hidden;
}

.primitiva-section.locked {
    opacity: 0.9;
}

.combinacion-display.blurred {
    filter: blur(3px);
    pointer-events: none;
}

.overlay-lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

.lock-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.lock-text {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .ahoratoca-container {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .numero-bola {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .loteria-header h2 {
        font-size: 22px;
    }
    
    .countdown {
        font-size: 28px;
    }
}
