.bdt234-floating-wrapper {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 9999;
}

.bdt234-float-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    animation: bdt234FloatPulse 2s ease-in-out infinite;
}

.bdt234-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.8);
}

@keyframes bdt234FloatPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 6px 35px rgba(255, 215, 0, 0.9);
    }
}

.bdt234-float-icon {
    font-size: 28px;
    line-height: 1;
}

.bdt234-float-text {
    font-size: 11px;
    font-weight: 700;
    color: #111923;
    margin-top: 2px;
    text-transform: uppercase;
}

.bdt234-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: bdt234FadeIn 0.3s ease;
}

.bdt234-modal-overlay.bdt234-active {
    display: flex;
}

@keyframes bdt234FadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.bdt234-modal-content {
    position: relative;
    background: linear-gradient(180deg, #293548 0%, #111923 100%);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
    animation: bdt234SlideUp 0.4s ease;
}

@keyframes bdt234SlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bdt234-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid #FFD700;
    border-radius: 50%;
    color: #FFD700;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdt234-modal-close:hover {
    background: #FFD700;
    color: #111923;
    transform: rotate(90deg);
}

.bdt234-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.bdt234-modal-icon {
    font-size: 60px;
    margin-bottom: 15px;
    animation: bdt234IconBounce 1s ease-in-out infinite;
}

@keyframes bdt234IconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.bdt234-modal-title {
    font-size: 32px;
    font-weight: 900;
    color: #FFD700;
    margin: 0 0 10px 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    letter-spacing: 1px;
}

.bdt234-modal-subtitle {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    opacity: 0.9;
}

.bdt234-modal-body {
    text-align: center;
}

.bdt234-bonus-card {
    background: linear-gradient(135deg, #1f2a3c 0%, #111923 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 25px 20px;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.bdt234-bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #111923;
    font-size: 12px;
    font-weight: 900;
    padding: 5px 20px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.bdt234-bonus-amount {
    font-size: 48px;
    font-weight: 900;
    color: #FFD700;
    margin: 10px 0;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    animation: bdt234NumberGlow 2s ease-in-out infinite;
}

@keyframes bdt234NumberGlow {
    0%, 100% {
        text-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    }
    50% {
        text-shadow: 0 0 35px rgba(255, 215, 0, 1), 0 0 45px rgba(255, 165, 0, 0.7);
    }
}

.bdt234-bonus-label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
}

.bdt234-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.bdt234-feature-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border-left: 3px solid #FFD700;
    transition: all 0.3s ease;
}

.bdt234-feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.bdt234-feature-icon {
    width: 24px;
    height: 24px;
    background: #FFD700;
    color: #111923;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}

.bdt234-feature-text {
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
}

.bdt234-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #111923 !important;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.bdt234-cta-button:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.bdt234-cta-text {
    margin-right: 10px;
}

.bdt234-cta-arrow {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.bdt234-cta-button:hover .bdt234-cta-arrow {
    transform: translateX(5px);
}

.bdt234-modal-footer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .bdt234-floating-wrapper {
        right: 15px;
        bottom: 70px;
    }
    
    .bdt234-float-btn {
        width: 60px;
        height: 60px;
    }
    
    .bdt234-float-icon {
        font-size: 24px;
    }
    
    .bdt234-float-text {
        font-size: 10px;
    }
    
    .bdt234-modal-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .bdt234-modal-title {
        font-size: 26px;
    }
    
    .bdt234-modal-icon {
        font-size: 50px;
    }
    
    .bdt234-bonus-amount {
        font-size: 38px;
    }
}