/* Modern and attractive default styles for Countdown Timer */
.lcake-countdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.lcake-timer-container {
    display: flex;
    flex-direction: column;
}
.lcake-inner-container {
    background: linear-gradient(145deg, #1e1e2f, #2a2a40);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
    min-width: 130px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lcake-inner-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.lcake-timer-count {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(255,255,255,0.2);
}
.lcake-timer-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a0a0b0;
    font-family: 'Inter', sans-serif;
    display: block;
}
.lcake-flip-clock {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.lcake-time {
    background: #1e1e2f;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.lcake-flip-clock .lcake-count {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    display: block;
}
.lcake-flip-clock .lcake-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a0a0b0;
    display: block;
}
.lcake-coundown-finish {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #ef233c;
    padding: 20px;
}
