.cbp-countdown {
    margin-bottom: 40px;
}

.cbp-countdown-inner {
    display: flex;
    gap: 2px;
}

/* Flip Clock Style */
.cbp-flip .cbp-block {
    position: relative;
    width: 45px;
    height: 45px;
    perspective: 200px;
}

.cbp-flip .cbp-count {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    background: #333;
    color: #fff;
    border-radius: 6px;
    position: relative;
}

.cbp-flip .cbp-count::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0,0,0,0.4);
}

.cbp-flip .cbp-label {
    display: block;
    text-align: center;
    font-size: 12px;
    margin-top: 5px;
}

.cbp-flip .cbp-separator {
    font-size: 26px;
    font-weight: bold;
    padding: 0 5px;
    line-height: 45px;
}

@keyframes cbp-flip-bottom {
    0% { transform: rotateX(90deg); }
    100% { transform: rotateX(0deg); }
}

.cbp-flip .cbp-block.flip .cbp-count::after {
    content: attr(data-next);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 45px;
    text-align: center;
    background: #444;
    border-radius: 6px;
    animation: cbp-flip-bottom 0.3s ease forwards;
    transform-origin: top center;
}