.hhbd-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 60px;
    background: linear-gradient(135deg, #1C1C1C 0%, #1C1C1B 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px 0 8px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6),
                0 0 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    border: 2px solid rgba(255, 193, 7, 0.3);
    overflow: hidden;
}

.hhbd-floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 193, 7, 0.2) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.hhbd-floating-btn:hover::before {
    left: 100%;
}

.hhbd-floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7),
                0 0 30px rgba(255, 193, 7, 0.5);
    border-color: rgba(255, 193, 7, 0.6);
}

.hhbd-floating-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.hhbd-float-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 2px solid rgba(255, 193, 7, 0.6);
    animation: hhbdFloatPulse 2s ease-out infinite;
}

@keyframes hhbdFloatPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.hhbd-float-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.5);
    position: relative;
    z-index: 1;
}

.hhbd-gift-emoji {
    font-size: 24px;
    animation: hhbdGiftBounce 2s ease-in-out infinite;
}

@keyframes hhbdGiftBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-4px) rotate(-10deg);
    }
    75% {
        transform: translateY(-4px) rotate(10deg);
    }
}

.hhbd-float-text {
    font-size: 15px;
    font-weight: 700;
    color: #FFC107;
    text-shadow: 0 2px 8px rgba(255, 193, 7, 0.5);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.hhbd-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.hhbd-modal-overlay.hhbd-active {
    opacity: 1;
    visibility: visible;
}

.hhbd-modal-container {
    background: linear-gradient(135deg, #1C1C1C 0%, #1C1C1B 100%);
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(255, 193, 7, 0.2);
    border: 2px solid rgba(255, 193, 7, 0.3);
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.hhbd-modal-overlay.hhbd-active .hhbd-modal-container {
    transform: scale(1) translateY(0);
}

.hhbd-modal-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        #FFC107 0%, 
        #FFD54F 50%, 
        #FFC107 100%);
}

.hhbd-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.hhbd-modal-close:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.6);
    transform: rotate(90deg);
}

.hhbd-modal-close span {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
}

.hhbd-modal-content {
    padding: 50px 40px 40px;
    text-align: center;
}

.hhbd-modal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.5),
                0 0 40px rgba(255, 193, 7, 0.3);
    animation: hhbdModalIconFloat 3s ease-in-out infinite;
}

@keyframes hhbdModalIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hhbd-bonus-icon {
    font-size: 50px;
}

.hhbd-modal-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.hhbd-brand-name {
    color: #FFC107;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
}

.hhbd-bonus-amount {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px;
    text-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
    animation: hhbdAmountGlow 2s ease-in-out infinite;
}

@keyframes hhbdAmountGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.9));
    }
}

.hhbd-modal-description {
    font-size: 16px;
    line-height: 1.6;
    color: #d0d0d0;
    margin: 0 0 28px;
}

.hhbd-bonus-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.hhbd-bonus-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hhbd-bonus-features li:last-child {
    border-bottom: none;
}

.hhbd-check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 900;
    color: #1C1C1C;
}

.hhbd-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    color: #1C1C1C;
    font-size: 18px;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.5);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.hhbd-cta-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%);
    transition: left 0.5s ease;
}

.hhbd-cta-button:hover::before {
    left: 100%;
}

.hhbd-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 193, 7, 0.7);
}

.hhbd-cta-button:active {
    transform: translateY(-1px);
}

.hhbd-cta-text {
    position: relative;
    z-index: 1;
}

.hhbd-cta-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.hhbd-cta-button:hover .hhbd-cta-arrow {
    transform: translateX(4px);
}

.hhbd-modal-footer {
    font-size: 12px;
    color: #888;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .hhbd-floating-btn {
        width: 160px;
        height: 56px;
        bottom: 20px;
        right: 20px;
        padding: 0 16px 0 6px;
    }
    
    .hhbd-float-icon {
        width: 40px;
        height: 40px;
    }
    
    .hhbd-gift-emoji {
        font-size: 22px;
    }
    
    .hhbd-float-text {
        font-size: 14px;
    }
    
    .hhbd-modal-content {
        padding: 40px 24px 24px;
    }
    
    .hhbd-modal-icon {
        width: 80px;
        height: 80px;
    }
    
    .hhbd-bonus-icon {
        font-size: 40px;
    }
    
    .hhbd-modal-title {
        font-size: 26px;
    }
    
    .hhbd-bonus-amount {
        font-size: 44px;
    }
    
    .hhbd-modal-description {
        font-size: 15px;
    }
    
    .hhbd-bonus-features li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .hhbd-cta-button {
        font-size: 16px;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .hhbd-floating-btn {
        width: 140px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }
    
    .hhbd-float-icon {
        width: 36px;
        height: 36px;
    }
    
    .hhbd-gift-emoji {
        font-size: 20px;
    }
    
    .hhbd-float-text {
        font-size: 13px;
    }
    
    .hhbd-modal-content {
        padding: 36px 20px 20px;
    }
    
    .hhbd-modal-icon {
        width: 70px;
        height: 70px;
    }
    
    .hhbd-bonus-icon {
        font-size: 36px;
    }
    
    .hhbd-modal-title {
        font-size: 24px;
    }
    
    .hhbd-bonus-amount {
        font-size: 38px;
    }
    
    .hhbd-cta-button {
        font-size: 15px;
        padding: 14px 28px;
    }
}