:root{
    --bca-promo-primary:#0f4f3d;
    --bca-promo-secondary:#0b3f31;
    --bca-promo-accent:#f4c542;
    --bca-promo-light:#f8fbf9;
    --bca-promo-text:#fff;
    --bca-promo-height:76px;
    --bca-promo-font:15px;
    --bca-promo-button-radius:999px;
    --bca-promo-popup-radius:24px;
    --bca-promo-shadow:0 18px 18px rgba(8,55,42,.22);
    --bca-promo-popup-width:860px
}

.bca-promo-bar,
.bca-promo-bar * ,
.bca-promo-popup,
.bca-promo-popup * {
    box-sizing:border-box
}

.bca-promo-bar{
    position:relative;
    z-index:99990;
    width:100%;
    min-height:var(--bca-promo-height);
    background:
        radial-gradient(circle at 15% 20%,rgba(255,255,255,.07),transparent 28%),
        linear-gradient(115deg,var(--bca-promo-secondary),var(--bca-promo-primary));
    color:var(--bca-promo-text);
    box-shadow:0 7px 22px rgba(8,55,42,.15);
    font-family:inherit
}

.bca-promo-bar.is-sticky{
    position:sticky;
    top:0
}

body.admin-bar .bca-promo-bar.is-sticky{
    top:32px
}

.bca-promo-bar__inner{
    width:min(1480px,calc(100% - 32px));
    min-height:var(--bca-promo-height);
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(280px,1fr) auto auto auto;
    align-items:center;
    gap:24px
}

.bca-promo-bar__message{
    min-width:0;
    display:flex;
    align-items:center;
    gap:13px
}

.bca-promo-bar__logo{
    display:block;
    width:auto;
    max-width:82px;
    max-height:48px;
    object-fit:contain;
    filter:brightness(0) invert(1)
}

.bca-promo-bar__spark{
    color:var(--bca-promo-accent);
    font-size:22px
}

.bca-promo-bar__copy{
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:3px
}

.bca-promo-bar__title{
    overflow:hidden;
    color:#fff;
    font-family:Georgia,"Times New Roman",serif;
    font-size:calc(var(--bca-promo-font) + 5px);
    line-height:1.05;
    white-space:nowrap;
    text-overflow:ellipsis
}

.bca-promo-bar__subtitle{
    overflow:hidden;
    max-width:640px;
    color:rgba(255,255,255,.78);
    font-size:calc(var(--bca-promo-font) - 4px);
    line-height:1.25;
    white-space:nowrap;
    text-overflow:ellipsis
}

.bca-promo-countdown{
    display:flex;
    align-items:center;
    gap:7px
}

.bca-promo-countdown>div{
    min-width:57px;
    min-height:48px;
    padding:7px 8px 6px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.13);
    border-radius:11px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px)
}

.bca-promo-countdown strong{
    color:#fff;
    font-size:18px;
    line-height:1
}

.bca-promo-countdown span{
    margin-top:4px;
    color:rgba(255,255,255,.65);
    font-size:7px;
    line-height:1;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase
}

.bca-promo-countdown i{
    color:var(--bca-promo-accent);
    font-style:normal;
    font-weight:900
}

.bca-promo-bar__button{
    min-height:44px;
    padding:0 20px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border-radius:var(--bca-promo-button-radius);
    background:var(--bca-promo-accent);
    color:var(--bca-promo-secondary)!important;
    box-shadow:0 8px 18px rgba(244,197,66,.2);
    font-size:calc(var(--bca-promo-font) - 1px);
    font-weight:900;
    text-decoration:none!important;
    white-space:nowrap;
    transition:transform .18s ease,box-shadow .18s ease
}

.bca-promo-bar__button:hover{
    transform:translateY(-2px);
    box-shadow:0 11px 24px rgba(244,197,66,.28)
}

.bca-promo-bar__close{
    width:35px;
    height:35px;
    padding:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.18);
    border-radius:50%;
    background:rgba(255,255,255,.07);
    color:#fff;
    font-size:25px;
    line-height:1;
    cursor:pointer
}

.bca-promo-bar.is-hidden{
    display:none!important
}

.bca-promo-bar.is-expired .bca-promo-countdown{
    display:none
}

.bca-promo-popup{
    position:fixed;
    z-index:100000;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
    opacity:0;
    transition:opacity .2s ease
}

.bca-promo-popup.is-visible{
    display:flex;
    opacity:1
}

.bca-promo-popup__overlay{
    position:absolute;
    inset:0;
    background:rgba(5,25,19,.72);
    backdrop-filter:blur(6px)
}

.bca-promo-popup__dialog{
    position:relative;
    z-index:2;
    overflow:hidden;
    width:min(var(--bca-promo-popup-width),100%);
    max-height:calc(100vh - 40px);
    display:grid;
    grid-template-columns:minmax(280px,.92fr) minmax(320px,1.08fr);
    border:1px solid rgba(255,255,255,.4);
    border-radius:var(--bca-promo-popup-radius);
    background:#fff;
    box-shadow:var(--bca-promo-shadow);
    transform:translateY(14px) scale(.985);
    transition:transform .22s ease
}

.bca-promo-popup.is-visible .bca-promo-popup__dialog{
    transform:translateY(0) scale(1)
}

.bca-promo-popup__close{
    position:absolute;
    z-index:5;
    top:13px;
    right:13px;
    width:38px;
    height:38px;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(11,63,49,.14);
    border-radius:50%;
    background:rgba(255,255,255,.94);
    color:var(--bca-promo-secondary);
    box-shadow:0 6px 18px rgba(11,63,49,.12);
    font-size:27px;
    line-height:1;
    cursor:pointer
}

.bca-promo-popup__media{
    min-height:480px;
    background:#edf4f0
}

.bca-promo-popup__media img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover
}

.bca-promo-popup__content{
    padding:44px 38px 34px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:
        radial-gradient(circle at 94% 10%,rgba(244,197,66,.18),transparent 30%),
        #fff
}

.bca-promo-popup__brand{
    display:flex;
    align-items:center;
    gap:12px
}

.bca-promo-popup__brand img{
    width:auto;
    max-width:84px;
    max-height:50px;
    object-fit:contain
}

.bca-promo-popup__brand>span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:54px;
    height:54px;
    border-radius:50%;
    background:var(--bca-promo-primary);
    color:#fff;
    font-family:Georgia,serif;
    font-size:18px;
    font-weight:900
}

.bca-promo-popup__brand small{
    color:var(--bca-promo-primary);
    font-size:9px;
    line-height:1.35;
    font-weight:900;
    letter-spacing:.09em;
    text-transform:uppercase
}

.bca-promo-popup h2{
    margin:22px 0 0;
    color:var(--bca-promo-secondary);
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(34px,4vw,52px);
    line-height:1;
    letter-spacing:-.035em
}

.bca-promo-popup__text{
    margin-top:16px;
    color:#5d746a;
    font-size:15px;
    line-height:1.65
}

.bca-promo-popup__text p{
    margin:0
}

.bca-promo-popup__ticket-strip{
    margin-top:20px;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:10px
}

.bca-promo-popup__ticket-strip>div{
    min-height:72px;
    padding:12px 14px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    border:1px solid rgba(15,79,61,.12);
    border-radius:14px;
    background:var(--bca-promo-light)
}

.bca-promo-popup__ticket-strip span{
    color:#61786e;
    font-size:11px;
    font-weight:800
}

.bca-promo-popup__ticket-strip strong{
    margin-top:3px;
    color:var(--bca-promo-secondary);
    font-size:27px;
    line-height:1
}

.bca-promo-popup__ticket-strip i{
    display:inline-flex;
    width:34px;
    height:34px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--bca-promo-accent);
    color:var(--bca-promo-secondary);
    font-size:9px;
    font-style:normal;
    font-weight:900
}

.bca-promo-popup__button{
    min-height:52px;
    margin-top:18px;
    padding:0 20px;
    display:inline-flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    border-radius:var(--bca-promo-button-radius);
    background:var(--bca-promo-primary);
    color:#fff!important;
    box-shadow:0 13px 26px rgba(15,79,61,.2);
    font-size:14px;
    font-weight:900;
    text-decoration:none!important
}

.bca-promo-popup__button span{
    color:var(--bca-promo-accent);
    font-size:20px
}

.bca-promo-popup__note{
    margin:11px 0 0;
    color:#89958f;
    font-size:9px;
    line-height:1.4;
    text-align:center
}

body.bca-promo-popup-open{
    overflow:hidden
}

@media(max-width:1100px){
    .bca-promo-bar__inner{
        grid-template-columns:minmax(220px,1fr) auto auto auto;
        gap:13px
    }

    .bca-promo-countdown>div{
        min-width:49px
    }
}

@media(max-width:782px){
    body.admin-bar .bca-promo-bar.is-sticky{
        top:46px
    }

    .bca-promo-bar__inner{
        width:calc(100% - 22px);
        grid-template-columns:minmax(0,1fr) auto auto;
        gap:9px
    }

    .bca-promo-bar__message{
        gap:8px
    }

    .bca-promo-bar__logo{
        max-width:50px;
        max-height:35px
    }

    .bca-promo-bar__title{
        font-size:15px
    }

    .bca-promo-bar__subtitle{
        font-size:9px
    }

    .bca-promo-countdown{
        gap:4px
    }

    .bca-promo-countdown>div{
        min-width:39px;
        min-height:40px;
        padding:5px 4px
    }

    .bca-promo-countdown strong{
        font-size:14px
    }

    .bca-promo-countdown span{
        font-size:5px
    }

    .bca-promo-countdown i{
        display:none
    }

    .bca-promo-bar__button{
        min-height:38px;
        padding:0 12px;
        font-size:11px
    }

    .bca-promo-bar__close{
        position:absolute;
        right:4px;
        top:4px;
        width:25px;
        height:25px;
        font-size:18px
    }

    .bca-promo-popup__dialog{
        overflow:auto;
        grid-template-columns:1fr
    }

    .bca-promo-popup__media{
        min-height:230px;
        max-height:320px
    }

    .bca-promo-popup__content{
        padding:30px 24px 26px
    }

    .bca-promo-popup h2{
        font-size:36px
    }
}

@media(max-width:560px){
    .bca-promo-mobile-hide-subtitle .bca-promo-bar__subtitle{
        display:none
    }

    .bca-promo-mobile-compact .bca-promo-bar{
        min-height:62px
    }

    .bca-promo-mobile-compact .bca-promo-bar__inner{
        min-height:62px
    }

    .bca-promo-bar__logo,
    .bca-promo-bar__spark{
        display:none
    }

    .bca-promo-bar__inner{
        grid-template-columns:minmax(0,1fr) auto;
        padding-right:25px
    }

    .bca-promo-countdown{
        display:none
    }

    .bca-promo-bar__button{
        max-width:125px;
        white-space:normal;
        text-align:center
    }

    .bca-promo-popup{
        padding:10px
    }

    .bca-promo-popup__dialog{
        max-height:calc(100vh - 20px)
    }

    .bca-promo-popup__ticket-strip{
        grid-template-columns:1fr
    }

    .bca-promo-popup__ticket-strip i{
        margin:auto
    }
}




/* Explicit device visibility controls. These do not depend on JavaScript. */
@media (min-width:1025px){
    .bca-hide-desktop{display:none!important}
}
@media (min-width:768px) and (max-width:1024px){
    .bca-hide-tablet{display:none!important}
}
@media (max-width:767px){
    .bca-hide-mobile{display:none!important}
}


/* v1.4 hard compatibility rules */
#bca-promo-bar.bca-promo-bar{
    visibility:visible;
    opacity:1;
}
#bca-promo-popup.bca-promo-popup.is-visible{
    display:flex!important;
    visibility:visible!important;
    opacity:1!important;
}
