.banner-ad {
    position: fixed;
    top: -100px; /* Start hidden */
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(-45deg, #08acf2, #ffffff, #4bc54d, #df8383);
    background-size: 400% 400%;
    animation: liquidBg 10s ease infinite;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transition: top 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-ad.show { top: 0; }

@keyframes liquidBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.scene {
    width: 95%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000; /* Priority Black Text */
    font-weight: 900;
}

#sc-1 {
    width: 100%;
     font-size: 1.2rem; 
     letter-spacing: -1px;
      text-transform: uppercase; 
      justify-content: center;
     }

/* Stroked Price Styling */
/* .offer-box { display: flex; align-items: center; gap: 0px; } */

.stroked-price {
    font-size: 0.8rem;
    color: rgb(119, 0, 0);
    text-decoration: line-through;
    opacity: 0.6;
}

.current-price { 
    font-size: 1.5rem; 
    color: #000;
    font-weight: bold;
 }

.arrow { font-size: 1.2rem; animation: pulse 1s infinite; }

/* Bouncy Slide Up */
.loop-container { height: 100%; overflow: hidden; flex: 1; text-align: center; }

.bouncy-text {
    max-width: 140px;
    font-size: 12px;
    text-transform: uppercase;
    animation: springIn 0.7s cubic-bezier(0.68, -0.6, 0.32, 1.6) forwards;
}

@keyframes springIn {
    0% { transform: translateY(40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulse { 50% { opacity: 0.3; } }

.wa-btn {
    background: #000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 11px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}