/* Bonus Teaser Banner */
.bonus-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(23, 56, 65, 0.85);
    backdrop-filter: blur(10px);
    border-top: 2px solid #66e578;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transform: translateY(100%);
    animation: slideUp 0.5s ease 2s forwards;
}

.bonus-banner.show {
    transform: translateY(0);
}

.bonus-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bonus-banner-icon {
    width: 40px;
    height: 40px;
    background: #66e578;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #173841;
}

.bonus-banner-text h3 {
    font-size: 14px;
    color: #66e578;
    margin-bottom: 2px;
    font-weight: bold;
}

.bonus-banner-text p {
    font-size: 12px;
    color: #B0B8C5;
    margin: 0;
}

.bonus-banner-btn {
    background: #66e578;
    color: #13092A;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 30px;
}

.bonus-banner-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.bonus-banner-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 22px;
    cursor: pointer;
}

/* Floating Bonus Button */
.floating-bonus {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    animation: pulse 2s infinite;
}

.bonus-btn {
    background: linear-gradient(283deg, rgb(57, 190, 233) 9.48%, rgb(80, 210, 174) 51.57%, rgb(102, 229, 120));
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    color: #13092A;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(97, 226, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.bonus-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(97, 226, 255, 0.5);
}

.bonus-icon {
    font-size: 18px;
    animation: bounce 1s infinite alternate;
}

/* Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #173841;
    border-radius: 16px;
    padding: 30px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #66e578;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: #ccc;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 30px;
    transition: all 0.3s;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: rotate(90deg);
}

.popup-gift {
    width: 80px;
    height: 80px;
    background: #FFD700;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #1E123F;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.popup-title {
    font-size: 26px;
    color: #FFD700;
    margin-bottom: 8px;
    font-weight: bold;
}

.popup-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    color: #B0B8C5;
}

.popup-bonus {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(97, 226, 255, 0.5);
    border-radius: 12px;
    padding: 20px 15px;
    margin: 0 auto 25px;
}

.bonus-amount {
    font-size: 48px;
    color: #66e578;
    font-weight: bold;
    margin-bottom: 8px;
}

.bonus-label {
    color: white;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
}

.popup-features {
    color: #B0B8C5;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.popup-btn {
    background: #66e578;
    color: #13092A;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    transition: filter 0.3s ease;
    text-transform: uppercase;
}

.popup-btn:hover {
    filter: brightness(1.1);
}

/* Animations */
@keyframes slideUp{from{transform:translateY(100%)}to{transform:translateY(0)}}
@keyframes pulse{0%{transform:translateY(-50%) scale(1)}50%{transform:translateY(-50%) scale(1.05)}100%{transform:translateY(-50%) scale(1)}}
@keyframes bounce{0%{transform:translateY(0)}100%{transform:translateY(-3px)}}
@keyframes giftBounce{0%{transform:translateY(0) rotate(-3deg)}100%{transform:translateY(-8px) rotate(3deg)}}

/* Responsive */
@media (max-width: 768px) {
    .bonus-banner { padding: 10px 15px; }
    .floating-bonus { right: 15px; }
    .bonus-btn { padding: 12px 16px; font-size: 13px; }
    .popup-content { width: 95%; padding: 25px; }
    .popup-title { font-size: 22px; }
    .bonus-amount { font-size: 42px; }
}