/* Bonus Teaser Banner */
.bonus-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #1E8449, #145A32);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: #FFD700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #145A32;
}

.bonus-banner-text h3 {
    font-size: 14px;
    color: #FFD700;
    margin-bottom: 2px;
    font-weight: bold;
}

.bonus-banner-text p {
    font-size: 12px;
    color: white;
    margin: 0;
}

.bonus-banner-btn {
    background: #FFD700;
    color: #145A32;
    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 {
    background: #ffed4e;
    transform: scale(1.05);
}

.bonus-banner-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 22px;
    cursor: pointer;
}

.bonus-banner-close:hover {
    color: white;
}

/* 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(45deg, #f1c40f, #ffd700);
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    color: #145A32;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(241, 196, 15, 0.4);
    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(241, 196, 15, 0.6);
}

.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.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #196F3D;
    border-radius: 16px;
    padding: 30px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid #F1C40F;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    line-height: 30px;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: rotate(90deg);
}

.popup-gift {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #145A32;
    animation: giftBounce 1s infinite alternate;
    box-shadow: 0 0 25px rgba(241, 196, 15, 0.6);
}

.popup-title {
    font-size: 24px;
    color: #F1C40F;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.popup-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
}

.popup-bonus {
    background: transparent;
    border: 1px solid #ffd700;
    border-radius: 15px;
    padding: 15px;
    margin: 20px 0;
}

.bonus-amount {
    font-size: 32px;
    color: #ffd700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0 auto 25px;
}

.bonus-label {
    color: white;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
}

.popup-features {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
}

.popup-btn {
    background: #F1C40F;
    color: #196F3D;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: all 0.3s;
    text-transform: uppercase;
    box-shadow: none;
}

.popup-btn:hover {
    background: #ffdb58;
    transform: translateY(0);
    box-shadow: none;
}

/* Animations */
@keyframes slideUp{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}
@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: 28px; }
}