/* Pretpot Countdown Timer Widget Styles */

/* Base Glass Styles */
.pretpot-countdown-timer {
    --timer-bg: rgba(255, 255, 255, 0.1);
    --timer-border: rgba(255, 255, 255, 0.2);
    --timer-text: #ffffff;
    --timer-label: rgba(255, 255, 255, 0.7);
    --timer-ring: rgba(255, 255, 255, 0.3);
}

.pretpot-countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: var(--timer-bg);
    border: 1px solid var(--timer-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    box-sizing: border-box;
}

/* Style 1: Clean Circular */
.pretpot-countdown-timer.style-1 {
    gap: 30px;
    padding: 40px;
    border-radius: 20px;
}

.pretpot-countdown-timer.style-1 .timer-unit {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--timer-ring);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pretpot-countdown-timer.style-1 .timer-unit:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
}

.pretpot-countdown-timer.style-1 .timer-number {
    font-size: 36px;
    font-weight: 300;
    color: var(--timer-text);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.pretpot-countdown-timer.style-1 .timer-label {
    font-size: 11px;
    color: var(--timer-label);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Style 2: Minimal Cards */
.pretpot-countdown-timer.style-2 {
    gap: 15px;
    padding: 30px;
    border-radius: 16px;
}

.pretpot-countdown-timer.style-2 .timer-unit {
    width: 80px;
    height: 100px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.pretpot-countdown-timer.style-2 .timer-unit:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.pretpot-countdown-timer.style-2 .timer-number {
    font-size: 32px;
    font-weight: 200;
    color: var(--timer-text);
    font-variant-numeric: tabular-nums;
}

.pretpot-countdown-timer.style-2 .timer-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.pretpot-countdown-timer.style-2 .timer-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
    font-weight: 100;
    align-self: center;
}

/* Responsive */
@media (max-width: 768px) {
    .pretpot-countdown-timer.style-1 {
        gap: 15px;
        padding: 30px 20px;
    }
    
    .pretpot-countdown-timer.style-1 .timer-unit {
        width: 80px;
        height: 80px;
    }
    
    .pretpot-countdown-timer.style-1 .timer-number {
        font-size: 24px;
    }
    
    .pretpot-countdown-timer.style-1 .timer-label {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .pretpot-countdown-timer.style-2 {
        gap: 10px;
        padding: 20px;
    }
    
    .pretdot-countdown-timer.style-2 .timer-unit {
        width: 60px;
        height: 80px;
    }
    
    .pretpot-countdown-timer.style-2 .timer-number {
        font-size: 24px;
    }
    
    .pretpot-countdown-timer.style-2 .timer-separator {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .pretpot-countdown-timer.style-1 {
        gap: 10px;
        padding: 20px 15px;
    }
    
    .pretpot-countdown-timer.style-1 .timer-unit {
        width: 65px;
        height: 65px;
    }
    
    .pretpot-countdown-timer.style-1 .timer-number {
        font-size: 20px;
    }
    
    .pretpot-countdown-timer.style-1 .timer-label {
        font-size: 8px;
        letter-spacing: 0.5px;
    }
    
    .pretpot-countdown-timer.style-2 {
        gap: 8px;
        padding: 15px;
    }
    
    .pretpot-countdown-timer.style-2 .timer-unit {
        width: 50px;
        height: 65px;
    }
    
    .pretpot-countdown-timer.style-2 .timer-number {
        font-size: 20px;
    }
    
    .pretpot-countdown-timer.style-2 .timer-label {
        font-size: 8px;
    }
    
    .pretpot-countdown-timer.style-2 .timer-separator {
        font-size: 14px;
    }
}