.bee999-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    transition: all 0.4s ease;
    z-index: 9998;
    animation: bee999FloatPulse 3s ease-in-out infinite;
}

@keyframes bee999FloatPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.9);
    }
}

.bee999-float-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(255, 215, 0, 1);
    animation: none;
}

.bee999-float-icon {
    font-size: 28px;
    margin-bottom: 2px;
}

.bee999-float-text {
    font-size: 11px;
    font-weight: 700;
    color: #084C4D;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bee999-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 76, 77, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.bee999-modal-overlay.bee999-active {
    opacity: 1;
    visibility: visible;
}

.bee999-modal-container {
    background: linear-gradient(180deg, #113C3C 0%, #084C4D 100%);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border: 3px solid #FFD700;
    transform: scale(0.7);
    transition: all 0.4s ease;
}

.bee999-modal-overlay.bee999-active .bee999-modal-container {
    transform: scale(1);
}

.bee999-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid #FFD700;
    border-radius: 50%;
    color: #FFD700;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3333;
}

.bee999-modal-close:hover {
    background: #FFD700;
    color: #084C4D;
    transform: rotate(90deg);
}

.bee999-modal-content {
    text-align: center;
}

.bee999-modal-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bee999ModalIconBounce 2s ease-in-out infinite;
}

@keyframes bee999ModalIconBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-10deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    75% {
        transform: scale(1.1) rotate(-10deg);
    }
}

.bee999-modal-title {
    font-size: 32px;
    font-weight: 900;
    color: #FFD700;
    margin: 0 0 15px 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    line-height: 1.2;
}

.bee999-modal-subtitle {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 30px 0;
}

.bee999-modal-subtitle strong {
    color: #FFD700;
    font-size: 24px;
    font-weight: 900;
}

.bee999-bonus-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.bee999-feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.bee999-feature-item:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: translateX(5px);
}

.bee999-feature-icon {
    font-size: 28px;
    margin-right: 15px;
}

.bee999-feature-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
}

.bee999-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #084C4D;
    font-size: 20px;
    font-weight: 900;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 20px;
}

.bee999-cta-button:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.bee999-cta-text {
    margin-right: 10px;
}

.bee999-cta-arrow {
    font-size: 24px;
    transition: all 0.3s ease;
}

.bee999-cta-button:hover .bee999-cta-arrow {
    transform: translateX(5px);
}

.bee999-modal-footer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .bee999-float-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .bee999-float-icon {
        font-size: 24px;
    }
    
    .bee999-float-text {
        font-size: 9px;
    }
    
    .bee999-modal-container {
        padding: 30px 20px;
    }
    
    .bee999-modal-title {
        font-size: 26px;
    }
    
    .bee999-modal-subtitle {
        font-size: 16px;
    }
    
    .bee999-modal-subtitle strong {
        font-size: 20px;
    }
    
    .bee999-feature-text {
        font-size: 14px;
    }
    
    .bee999-cta-button {
        font-size: 18px;
        padding: 15px 30px;
    }
}