.floating-banner {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 350px;
    background: #d4af37;
    color: #000;
    padding: 20px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    position: relative;
}

.floating-banner .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.2);
    border: none;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    width: 35px;
    height: 35px;
    
    cursor: pointer;
}

@media(max-width:768px){
    .floating-banner {
        width: 90%;
        height: auto;
        top: 10px;
        padding: 12px;
        font-size: 16px;
    }
    .floating-banner .close-btn {
        top: 5px;
        right: 5px;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}
