/* ============================================
   WEEKLY RESET COUNTDOWN WIDGET
   Nagyobb, látványosabb verzió
   ============================================ */

.weekly-reset-widget {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(37, 99, 235, 0.15) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: resetPulse 3s ease-in-out infinite;
}

@keyframes resetPulse {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(59, 130, 246, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border-color: rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 
            0 6px 30px rgba(59, 130, 246, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
        border-color: rgba(96, 165, 250, 0.6);
    }
}

/* Header */
.reset-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.reset-icon {
    font-size: 32px;
    animation: spin 3s linear infinite;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.8));
}

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

.reset-title-group {
    flex: 1;
}

.reset-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.reset-subtitle {
    font-size: 11px;
    color: rgba(147, 197, 253, 0.9);
    margin: 4px 0 0 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Countdown Large */
.reset-countdown-large {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 1.5rem 0;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 12px 8px;
    box-shadow: inset 0 2px 10px rgba(59, 130, 246, 0.1);
}

.countdown-value {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        0 0 25px rgba(96, 165, 250, 1),
        0 0 40px rgba(59, 130, 246, 0.8),
        0 0 15px rgba(138, 43, 226, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Arial Black', Arial, sans-serif;
    animation: valueGlow 2s ease-in-out infinite;
}

@keyframes valueGlow {
    0%, 100% {
        text-shadow: 
            0 0 25px rgba(96, 165, 250, 1),
            0 0 40px rgba(59, 130, 246, 0.8),
            0 0 15px rgba(138, 43, 226, 0.9),
            0 2px 4px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 
            0 0 35px rgba(147, 197, 253, 1),
            0 0 60px rgba(96, 165, 250, 1),
            0 0 25px rgba(186, 85, 211, 0.9),
            0 2px 4px rgba(0, 0, 0, 0.5);
    }
}

.countdown-unit {
    font-size: 11px;
    color: rgba(147, 197, 253, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.countdown-divider {
    font-size: 32px;
    font-weight: bold;
    color: rgba(59, 130, 246, 0.6);
    margin: 0 4px;
    animation: dividerBlink 1.5s ease-in-out infinite;
}

@keyframes dividerBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Reset Info */
.reset-info {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.reset-day {
    font-size: 13px;
    color: rgba(191, 219, 254, 0.95);
    font-weight: 600;
    letter-spacing: 0.5px;
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.4));
}

/* Responsive */
@media (max-width: 768px) {
    .weekly-reset-widget {
        padding: 1.2rem;
    }
    
    .reset-title {
        font-size: 18px;
    }
    
    .countdown-value {
        font-size: 32px;
    }
    
    .countdown-block {
        min-width: 60px;
        padding: 10px 6px;
    }
}
