.dhk91-floating-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.floating-bonus-btn {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0F46E6 0%, #0A2250 100%);
    border: 3px solid rgba(15, 70, 230, 0.5);
    color: #fff;
    box-shadow: 0 8px 24px rgba(15, 70, 230, 0.6);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatBounce 3s ease-in-out infinite;
}

.floating-bonus-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(15, 70, 230, 0.8);
}

.floating-bonus-btn:active {
    transform: scale(0.95);
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.btn-icon {
    font-size: 28px;
    margin-bottom: 2px;
    animation: iconRotate 4s ease-in-out infinite;
}

@keyframes iconRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

.btn-text {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #0F46E6;
    animation: pulseExpand 2s ease-out infinite;
}

@keyframes pulseExpand {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        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: 10000;
    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: 480px;
    background: linear-gradient(145deg, #0A2250 0%, #05152e 100%);
    border-radius: 24px;
    border: 3px solid rgba(15, 70, 230, 0.5);
    box-shadow: 0 20px 60px rgba(15, 70, 230, 0.4);
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.bonus-modal-overlay.active .bonus-modal-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(15, 70, 230, 0.3);
    border: 2px solid rgba(15, 70, 230, 0.5);
    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(15, 70, 230, 0.6);
    transform: rotate(90deg);
}

.close-x {
    font-size: 28px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
}

.modal-content {
    padding: 40px 30px 35px;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.bonus-icon-large {
    font-size: 64px;
    margin-bottom: 15px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.modal-title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-shadow: 0 0 20px rgba(15, 70, 230, 0.8);
}

.modal-subtitle {
    font-size: 16px;
    color: #00bfff;
    margin: 0;
    font-weight: 600;
}

.modal-body {
    text-align: center;
}

.bonus-amount-box {
    background: linear-gradient(145deg, #0F46E6 0%, #0A2250 100%);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 2px solid rgba(15, 70, 230, 0.6);
    box-shadow: 0 8px 24px rgba(15, 70, 230, 0.4);
}

.currency-symbol {
    font-size: 36px;
    color: #00bfff;
    font-weight: 900;
    vertical-align: super;
    margin-right: 5px;
}

.bonus-value {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.8);
}

.bonus-features {
    margin-bottom: 30px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: rgba(15, 70, 230, 0.15);
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(15, 70, 230, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(15, 70, 230, 0.25);
    transform: translateX(5px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #0F46E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text {
    color: #f0f4ff;
    font-size: 15px;
    font-weight: 600;
}

.claim-bonus-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(145deg, #0F46E6 0%, #0A2250 100%);
    border: 3px solid rgba(15, 70, 230, 0.6);
    border-radius: 14px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(15, 70, 230, 0.5);
}

.claim-bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 70, 230, 0.7);
}

.claim-bonus-btn:active {
    transform: translateY(0);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnGlowSlide 3s linear infinite;
}

@keyframes btnGlowSlide {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.btn-label {
    position: relative;
    z-index: 2;
}

.btn-arrow {
    margin-left: 10px;
    font-size: 22px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.claim-bonus-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.modal-footer-text {
    margin-top: 20px;
    font-size: 14px;
    color: #00bfff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .dhk91-floating-wrapper {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-bonus-btn {
        width: 60px;
        height: 60px;
    }
    
    .btn-icon {
        font-size: 24px;
    }
    
    .btn-text {
        font-size: 10px;
    }
    
    .bonus-modal-container {
        max-width: 95%;
    }
    
    .modal-content {
        padding: 35px 20px 30px;
    }
    
    .bonus-icon-large {
        font-size: 52px;
    }
    
    .modal-title {
        font-size: 26px;
    }
    
    .modal-subtitle {
        font-size: 14px;
    }
    
    .bonus-value {
        font-size: 46px;
    }
    
    .currency-symbol {
        font-size: 30px;
    }
    
    .claim-bonus-btn {
        font-size: 16px;
        padding: 16px 25px;
    }
}

@media (max-width: 480px) {
    .floating-bonus-btn {
        width: 55px;
        height: 55px;
    }
    
    .btn-icon {
        font-size: 22px;
    }
    
    .btn-text {
        font-size: 9px;
    }
    
    .modal-content {
        padding: 30px 18px 25px;
    }
    
    .bonus-icon-large {
        font-size: 48px;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .bonus-value {
        font-size: 42px;
    }
    
    .currency-symbol {
        font-size: 26px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .claim-bonus-btn {
        font-size: 15px;
        padding: 15px 20px;
    }
}