.banner-container {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding-left: 16px;
    padding-right: 16px;
}

/* Banner Identities (Backgrounds) */
.banner-1-bg { background-image: url('../desktop_assets/banners/banner_1.png'); }
.banner-2-bg { background-image: url('../desktop_assets/banners/banner_2.png'); }
.banner-3-bg { background-image: url('../desktop_assets/banners/banner_3.png'); }

/* Position and Alignment Classes */
.banner-pos-left .banner-info {
    align-items: flex-start;
    text-align: left;
}

.banner-pos-left .banner-logo {
    right: 16px;
    left: auto;
}

.banner-pos-right .banner-info {
    align-items: flex-end;
    text-align: right;
    margin-left: auto;
}

.banner-pos-right .banner-logo {
    left: 16px;
    right: auto;
}

.banner-pos-hidden {
    display: none;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-page);
    opacity: 0.6;
    z-index: 1;
}

.banner-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    width: 100%;
    z-index: 2;
    position: relative;
}

.banner-title {
    color: var(--color-text-primary);
    font-size: 18px;
    font-weight: 600;
}

.banner-button {
    background-color: var(--color-button-accent);
    color: var(--color-text-button-accent);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    line-height: normal;
}

.banner-logo {
    width: 150px;
    position: absolute;
    bottom: 10px;
    z-index: 2;
}

/* Specific styles for Banner 3 (Coming Soon) when visible in a slot */
.banner-3-bg .banner-info {
    justify-content: center;
    gap: 8px;
}

.banner-3-bg .banner-logo-static {
    width: 150px;
    height: auto;
    margin-bottom: 4px;
}

.banner-title-large {
    color: var(--color-text-primary);
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.banner-subtitle {
    color: var(--color-text-primary);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

/* Blinds Animation Styles */
#banner-slot-left, #banner-slot-right {
    position: relative;
    width: 100%;
    height: 120px;
    margin-top: 8px;
    border-radius: 12px;
    /* overflow: hidden; */ /* Keep overflow visible if needed, but relative positioning is key */
}

.blinds-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    pointer-events: none;
    z-index: 10;
    border-radius: 12px;
    overflow: hidden;
}

.blinds-strip {
    height: 100%;
    flex: 1;
    background-color: var(--color-bg-page, #0a0a0d);
    transform: scaleX(0);
    transform-origin: left;
    box-shadow: 0 0 10px rgba(0,0,0,0.5); /* Add some depth to strips */
}

body.cb-light .banner-container,
body.cb-dark .banner-container {
    filter: grayscale(1);
}
