/* --- COUNTDOWN BASE --- */
.starter-countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.starter-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.starter-countdown-number {
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.starter-countdown-label {
    margin-top: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
}

/* --- STYLE 1: FLIP CLOCK --- */
.starter-countdown--flip .starter-countdown-item {
    min-width: 70px;
}

.starter-countdown--flip .starter-countdown-number {
    background: #1f2937;
    color: #fff;
    font-size: 32px;
    padding: 16px 12px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

/* Flip Line */
.starter-countdown--flip .starter-countdown-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0,0,0,0.2);
    transform: translateY(-50%);
}

.starter-countdown--flip .starter-countdown-label {
    color: #6b7280;
}

/* --- STYLE 2: CIRCULAR PROGRESS --- */
.starter-countdown--circle {
    gap: 30px;
}

.starter-countdown--circle .starter-countdown-item {
    position: relative;
    width: 100px;
    height: 100px;
}

.starter-countdown--circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.starter-countdown--circle circle {
    fill: none;
    stroke-width: 6;
}

.starter-countdown--circle .bg-circle {
    stroke: #e5e7eb;
}

.starter-countdown--circle .progress-circle {
    stroke: #4f46e5;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s linear;
}

.starter-countdown--circle .starter-countdown-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #111827;
}

.starter-countdown--circle .starter-countdown-label {
    position: absolute;
    bottom: -25px;
    width: 100%;
    color: #6b7280;
    font-size: 11px;
}

/* --- STYLE 3: DIGITAL NEON --- */
.starter-countdown--neon {
    background: #000;
    padding: 30px;
    border-radius: 16px;
    gap: 40px;
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
}

.starter-countdown--neon .starter-countdown-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 48px;
    color: #22c55e; /* Neon Green */
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.starter-countdown--neon .starter-countdown-label {
    color: #fff;
    opacity: 0.7;
    font-size: 10px;
}

/* Separator Dots for Neon */
.starter-countdown--neon .starter-countdown-item:not(:last-child)::after {
    content: ':';
    position: absolute;
    right: -25px;
    top: 10px;
    font-size: 32px;
    color: #fff;
    opacity: 0.3;
    animation: starterBlink 1s infinite;
}

@keyframes starterBlink {
    50% { opacity: 0; }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .starter-countdown-container { gap: 10px; }
    .starter-countdown--flip .starter-countdown-number { font-size: 20px; padding: 10px 6px; }
    .starter-countdown--circle .starter-countdown-item { width: 70px; height: 70px; }
    .starter-countdown--circle .starter-countdown-number { font-size: 16px; }
    .starter-countdown--neon { gap: 15px; padding: 20px; }
    .starter-countdown--neon .starter-countdown-number { font-size: 24px; }
    .starter-countdown--neon .starter-countdown-item:not(:last-child)::after { right: -10px; top: 0; font-size: 20px; }
}