/* Countdown Timer Styles */
.countdown-start {
    position: relative;
    width: 100%;
    background: rgba(13, 15, 20, 0.95);
    padding: 5px 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(70, 147, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.countdown-start-div {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.countdown-text {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(70, 147, 255, 0.5);
    display: flex;
    align-items: center;
}

.countdown-text::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4693ff;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 0 10px #4693ff;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, #1a1c24, #13151b);
    border: 1px solid #4693ff;
    border-radius: 8px;
    padding: 5px 15px;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4693ff, transparent);
}

.countdown-item .count {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 15px rgba(70, 147, 255, 0.6);
}

.countdown-item .label {
    font-size: 10px;
    color: #8b9bb4;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .countdown-start-div {
        justify-content: center;
        text-align: center;
    }

    .countdown-text {
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }

    .countdown-item {
        min-width: 60px;
        padding: 8px 10px;
    }

    .countdown-item .count {
        font-size: 18px;
    }

    .countdown-item .label {
        font-size: 9px;
    }
}