.ct-d58255a9-container {
    position: relative;
    background: #000;
    padding: 3rem 1rem;
    overflow: hidden;
    border-radius: 12px;
    text-align: center;
    font-family: monospace;
}
.ct-stars-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}
.ct-star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: ct-blink infinite alternate;
}
@keyframes ct-blink {
    0% { opacity: 0.1; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.3); text-shadow: 0 0 5px #fff; }
}
.ct-timer-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.ct-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}
.ct-number {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    transition: filter 0.3s ease;
}
.ct-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 8px;
    opacity: 0.7;
}
