.ibc-banner-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
		z-index: 3;
}

.ibc-banner-content {
    width: 100%;
    height: 100%;
    max-width: 1140px; /* Kept from previous user edit */
    margin: 0 auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: flex-end; /* Kept from previous user edit */
    align-items: center;

    /* Variable usage for fallback or if scoped ID not overriding */
    background-image: var(--ibc-bg-desktop);
    padding-right: 20px; /* Add some padding so countdown isn't flush against edge */
}

/* Countdown styles */
.ibc-countdown {
    font-family: 'Roboto', sans-serif; 
    color: white;
    font-weight: bold;
    display: flex;
    gap: 10px;
    z-index: 10;
    line-height: 1;
}

.ibc-time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* NEW: Card/Palette Design */
.ibc-card {
    background: linear-gradient(180deg, var(--ibc-p-top) 50%, var(--ibc-p-bottom) 50%);
    border-radius: 6px;
    padding: 1px 12px; /* Inner padding */
    min-width: 50px;
    height: 44px; /* Fixed height for consistency */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    position: relative;
    margin-bottom: 4px;
}

/* Middle line separator effect */
.ibc-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0,0,0,0.15); /* Subtle dark line */
    box-shadow: 0 1px 0 rgba(255,255,255,0.1); /* Subtle highlight below */
}

.ibc-number { 
    font-size: 28px; 
    font-weight: 700;
    color: var(--ibc-p-text);
    z-index: 2; /* Above the separator */
}

.ibc-label { 
    font-size: 9px; 
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    margin-top: 2px;
}

/* Tablet */
@media (max-width: 1024px) {
    .ibc-banner-content {
        background-image: var(--ibc-bg-tablet);
        justify-content: flex-end; /* Center on smaller screens? Or keep right? Let's center for tablet/mobile usually */
        padding-right: 15px;
    }
}

/* Mobile */
@media (max-width: 580px) {
    .ibc-banner-content {
        background-image: var(--ibc-bg-mobile);
        padding: 0 10px;
    }
    
    .ibc-number {
        font-size: 22px;
    }
    
    .ibc-card {
        min-width: 40px;
        height: 36px;
        padding: 5px;
    }
}