.promo-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    background: #f0f0f0;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 10px 10px;
    transition: bottom 0.5s ease;
    z-index: 9999;
}

.promo-banner.show {
    bottom: 0;
}

.promo-content {
    position: relative;
    display: flex;
}

.promo-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.promo-btn {
    display: block;
    width: 80%;
    max-width: 300px;
    padding: 14px 0;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.promo-btn.orange {
    background: #FF904D;
    color: white;
}

.promo-btn.orange:hover {
    background: #e67835;
    transform: translateY(-2px);
}

.promo-btn.black {
    background: black;
    color: white;
}

.promo-btn.black:hover {
    background: #222;
    transform: translateY(-2px);
}

.promo-close {
    position: absolute;
    top: 12px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.promo-close:hover {
    transform: scale(1.2);
    color: #FF904D;
}

#tryModal {
    z-index: 99999;
}

.banner.modal-header {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

@media (max-width: 729px) {
    .promo-btn-group {
        flex-direction: column;
        gap: 10px;
    }
}