.dhaka7-floating-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
}

.floating-bonus-button {
    position: relative;
    width: 200px;
    height: 64px;
    background: linear-gradient(135deg, #097061 0%, #125635 100%);
    border: none;
    border-radius: 32px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(9, 112, 97, 0.6),
                0 0 0 0 rgba(9, 112, 97, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: floatingBounce 3s ease-in-out infinite;
}

.floating-bonus-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: buttonShine 3s ease-in-out infinite;
}

@keyframes buttonShine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

@keyframes floatingBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.floating-bonus-button:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 32px rgba(9, 112, 97, 0.8),
                0 0 0 8px rgba(9, 112, 97, 0.2);
}

.floating-bonus-button:active {
    transform: translateY(-2px) scale(1.03);
}

.button-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
}

.gift-icon {
    font-size: 28px;
    animation: giftRotate 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

@keyframes giftRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-15deg) scale(1.1);
    }
    75% {
        transform: rotate(15deg) scale(1.1);
    }
}

.button-text {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 32px;
    border: 3px solid rgba(255, 223, 0, 0.6);
    animation: pulseAnimation 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseAnimation {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.bonus-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bonus-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.bonus-modal-container {
    position: relative;
    width: 90%;
    max-width: 520px;
    background: linear-gradient(145deg, #0a5a4d 0%, #125635 100%);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 0 3px rgba(255, 223, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bonus-modal-overlay.active .bonus-modal-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 223, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(255, 223, 0, 0.2);
    transform: rotate(90deg);
    border-color: rgba(255, 223, 0, 0.6);
}

.close-x {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.header-icon {
    font-size: 64px;
    margin-bottom: 16px;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.1);
    }
}

.modal-title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

.modal-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #ffdf00;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bonus-highlight-card {
    background: linear-gradient(135deg, rgba(255, 223, 0, 0.15) 0%, rgba(255, 223, 0, 0.05) 100%);
    border: 3px solid rgba(255, 223, 0, 0.4);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(255, 223, 0, 0.2),
                inset 0 2px 8px rgba(255, 223, 0, 0.1);
    animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(255, 223, 0, 0.2),
                    inset 0 2px 8px rgba(255, 223, 0, 0.1);
    }
    50% {
        box-shadow: 0 12px 32px rgba(255, 223, 0, 0.4),
                    inset 0 2px 12px rgba(255, 223, 0, 0.2);
    }
}

.bonus-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.currency-symbol {
    font-size: 36px;
    font-weight: 900;
    color: #ffdf00;
    text-shadow: 0 4px 12px rgba(255, 223, 0, 0.8);
}

.amount-number {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(255, 223, 0, 0.6);
    letter-spacing: 1px;
}

.bonus-label {
    font-size: 15px;
    font-weight: 700;
    color: #00ff88;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 255, 136, 0.6);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    border-left: 4px solid rgba(255, 223, 0, 0.5);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 0, 0, 0.35);
    border-left-color: rgba(255, 223, 0, 0.8);
    transform: translateX(6px);
}

.benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.benefit-text {
    font-size: 15px;
    font-weight: 600;
    color: #e8e9ed;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.claim-bonus-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 64px;
    background: linear-gradient(135deg, #ffdf00 0%, #ffa500 100%);
    border-radius: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(255, 223, 0, 0.5);
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

.claim-bonus-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.claim-bonus-cta:hover::before {
    left: 100%;
}

.claim-bonus-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 32px rgba(255, 223, 0, 0.7);
}

.claim-bonus-cta:active {
    transform: translateY(-1px) scale(1);
}

.cta-text {
    font-size: 18px;
    font-weight: 900;
    color: #125635;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.cta-arrow {
    font-size: 28px;
    font-weight: 900;
    color: #125635;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.claim-bonus-cta:hover .cta-arrow {
    transform: translateX(6px);
}

.terms-notice {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 4px 0 0 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .dhaka7-floating-wrapper {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-bonus-button {
        width: 160px;
        height: 56px;
    }
    
    .gift-icon {
        font-size: 24px;
    }
    
    .button-text {
        font-size: 14px;
    }
    
    .bonus-modal-container {
        padding: 32px 24px;
        max-width: 95%;
    }
    
    .modal-title {
        font-size: 26px;
    }
    
    .modal-subtitle {
        font-size: 14px;
    }
    
    .header-icon {
        font-size: 52px;
    }
    
    .amount-number {
        font-size: 42px;
    }
    
    .currency-symbol {
        font-size: 30px;
    }
    
    .benefit-text {
        font-size: 14px;
    }
    
    .cta-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .dhaka7-floating-wrapper {
        bottom: 16px;
        right: 16px;
    }

    .modal-header {
        margin-bottom: 20px;
    }
    
    .modal-body {
        gap: 10px;
    }
    
    .floating-bonus-button {
        width: 140px;
        height: 52px;
    }
    
    .gift-icon {
        font-size: 22px;
    }
    
    .button-text {
        font-size: 13px;
    }
    
    .bonus-modal-container {
        padding: 28px 20px;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    .modal-subtitle {
        font-size: 13px;
    }
    
    .header-icon {
        font-size: 48px;
        margin-bottom: 12px;
    }
    
    .amount-number {
        font-size: 36px;
    }
    
    .currency-symbol {
        font-size: 26px;
    }
    
    .bonus-label {
        font-size: 13px;
    }
    
    .benefit-item {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .benefit-icon {
        font-size: 20px;
    }
    
    .benefit-text {
        font-size: 13px;
    }
    
    .claim-bonus-cta {
        height: 56px;
    }
    
    .cta-text {
        font-size: 15px;
    }
    
    .cta-arrow {
        font-size: 24px;
    }
    
    .modal-close-btn {
        width: 38px;
        height: 38px;
        top: 12px;
        right: 12px;
    }
    
    .close-x {
        font-size: 28px;
    }
}