.bb44-floating-container {
    position: fixed;
    z-index: 9999;
}

.bb44-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00FFD4 0%, #00FF7F 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 255, 212, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    animation: floatBounce 3s ease-in-out infinite;
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

.bb44-float-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 255, 212, 0.7);
}

.bb44-float-btn:active {
    transform: scale(0.95);
}

.float-icon {
    font-size: 36px;
    position: relative;
    z-index: 2;
    animation: iconRotate 4s ease-in-out infinite;
}

@keyframes iconRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

.float-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 3px solid rgba(0, 255, 212, 0.6);
    animation: pulseRing 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.bb44-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.bb44-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.bb44-modal-box {
    background: linear-gradient(180deg, #013F40 0%, #00352F 100%);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 255, 212, 0.3);
    transform: scale(0.8) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.bb44-modal-overlay.active .bb44-modal-box {
    transform: scale(1) translateY(0);
}

.bb44-modal-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00FFD4 0%, #FFD700 50%, #00FF7F 100%);
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.bb44-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.bb44-modal-close:hover {
    background: rgba(255, 68, 68, 0.2);
    border-color: rgba(255, 68, 68, 0.5);
    transform: rotate(90deg);
}

.close-x {
    font-size: 28px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
}

.modal-content-wrapper {
    padding: 50px 32px 36px;
}

.modal-icon-header {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.bonus-icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00FFD4 0%, #00FF7F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 255, 212, 0.5);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.bonus-icon {
    font-size: 48px;
}

.modal-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin: 0 0 28px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

.bonus-highlight {
    background: linear-gradient(135deg, rgba(0, 255, 212, 0.15) 0%, rgba(0, 255, 127, 0.15) 100%);
    border: 2px solid rgba(0, 255, 212, 0.4);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 28px;
    text-align: center;
}

.bonus-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #00FFD4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.bonus-amount {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    animation: amountGlow 2.5s ease-in-out infinite;
}

@keyframes amountGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;
    color: #e8e9ed;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #00FFD4 0%, #00FF7F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: #013F40;
    margin-right: 14px;
    flex-shrink: 0;
}

.benefit-text {
    font-weight: 500;
}

.bb44-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 58px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    color: #013F40;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.bb44-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.bb44-cta-button:active {
    transform: translateY(0);
}

.cta-text {
    margin-right: 8px;
}

.cta-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.bb44-cta-button:hover .cta-arrow {
    transform: translateX(6px);
}

.modal-terms {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .bb44-float-btn {
        width: 64px;
        height: 64px;
        bottom: 24px;
        right: 24px;
    }
    
    .float-icon {
        font-size: 32px;
    }
    
    .bb44-modal-box {
        max-width: 420px;
    }
    
    .modal-content-wrapper {
        padding: 44px 28px 32px;
    }
    
    .modal-title {
        font-size: 28px;
    }
    
    .bonus-amount {
        font-size: 38px;
    }
    
    .bb44-cta-button {
        height: 54px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .bb44-float-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .float-icon {
        font-size: 28px;
    }
    
    .bb44-modal-box {
        max-width: 100%;
        border-radius: 20px;
    }
    
    .modal-content-wrapper {
        padding: 10px 10px 10px;
    }
    
    .bonus-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .bonus-icon {
        font-size: 42px;
    }
    
    .modal-title {
        font-size: 26px;
        margin-bottom: 24px;
    }
    
    .bonus-highlight {
        padding: 18px;
        margin-bottom: 24px;
    }
    
    .bonus-amount {
        font-size: 36px;
    }
    
    .benefit-item {
        font-size: 15px;
        padding: 10px 0;
    }
    
    .bb44-cta-button {
        height: 52px;
        font-size: 14px;
    }
    
    .bb44-modal-close {
        width: 36px;
        height: 36px;
        top: 14px;
        right: 14px;
    }
    
    .close-x {
        font-size: 24px;
    }
}