/* BA Coming Soon - Style */
.ba-cs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    min-height: 400px;
    width: 100%;
    background-color: #0a0a2a;
    border-radius: 10px;
}

.ba-cs-content {
    max-width: 800px;
    width: 100%;
}

.ba-cs-image img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.ba-cs-heading {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 4px;
}

.ba-cs-subheading {
    font-size: 20px;
    color: #aaaaaa;
    margin-bottom: 30px;
}

.ba-cs-timer-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ba-cs-timer-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    min-width: 80px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-cs-timer {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    line-height: 1.2;
}

.ba-cs-timer-label {
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 2px;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.ba-cs-year {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    letter-spacing: 3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .ba-cs-heading {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .ba-cs-subheading {
        font-size: 16px;
    }

    .ba-cs-timer-wrapper {
        gap: 12px;
    }

    .ba-cs-timer-box {
        padding: 12px 14px;
        min-width: 60px;
    }

    .ba-cs-timer {
        font-size: 26px;
    }

    .ba-cs-timer-label {
        font-size: 10px;
    }

    .ba-cs-image img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .ba-cs-heading {
        font-size: 24px;
    }

    .ba-cs-subheading {
        font-size: 14px;
    }

    .ba-cs-timer-wrapper {
        gap: 8px;
    }

    .ba-cs-timer-box {
        padding: 10px 10px;
        min-width: 50px;
    }

    .ba-cs-timer {
        font-size: 20px;
    }

    .ba-cs-timer-label {
        font-size: 8px;
    }

    .ba-cs-image img {
        max-width: 120px;
    }

    .ba-cs-container {
        padding: 20px 10px;
        min-height: 300px;
    }
}