.bb67-floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.bb67-float-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C15373 0%, #d97694 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(193, 83, 115, 0.6),
                0 0 0 0 rgba(193, 83, 115, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: bb67FloatBounce 3s ease-in-out infinite;
}

@keyframes bb67FloatBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.bb67-float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 40px rgba(193, 83, 115, 0.8),
                0 0 60px rgba(193, 83, 115, 0.5);
}

.bb67-float-btn:active {
    transform: scale(0.95);
}

.bb67-float-icon {
    font-size: 32px;
    position: relative;
    color: #fff;
    z-index: 2;
    animation: bb67IconRotate 4s ease-in-out infinite;
}

@keyframes bb67IconRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

.bb67-float-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #C15373;
    opacity: 0;
    animation: bb67PulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes bb67PulseRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.bb67-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: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.bb67-modal-overlay.bb67-active {
    opacity: 1;
    visibility: visible;
}

.bb67-modal-content {
    background: linear-gradient(180deg, #2a1820 0%, #1c1015 100%);
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    position: relative;
    border: 3px solid #C15373;
    box-shadow: 0 20px 60px rgba(193, 83, 115, 0.4),
                0 0 100px rgba(193, 83, 115, 0.2);
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.bb67-modal-overlay.bb67-active .bb67-modal-content {
    transform: scale(1) translateY(0);
}

.bb67-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #C15373, #d97694, #C15373);
    background-size: 200% auto;
    animation: bb67HeaderGradient 3s linear infinite;
}

@keyframes bb67HeaderGradient {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.bb67-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid #C15373;
    background: rgba(193, 83, 115, 0.1);
    color: #C15373;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.bb67-modal-close:hover {
    background: #C15373;
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

.bb67-modal-header {
    padding: 50px 30px 30px;
    text-align: center;
    background: linear-gradient(180deg, rgba(193, 83, 115, 0.15) 0%, transparent 100%);
}

.bb67-modal-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: bb67IconBounceModal 2s ease-in-out infinite;
}

@keyframes bb67IconBounceModal {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

.bb67-modal-title {
    font-size: 32px;
    font-weight: 900;
    color: #C15373;
    margin: 0 0 10px 0;
    text-shadow: 0 0 20px rgba(193, 83, 115, 0.6);
}

.bb67-modal-subtitle {
    font-size: 16px;
    color: #d9d9d9;
    margin: 0;
    font-weight: 500;
}

.bb67-modal-body {
    padding: 0 30px 30px;
}

.bb67-bonus-card {
    background: linear-gradient(135deg, #3d2229 0%, #2a1820 100%);
    border: 2px solid #C15373;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(193, 83, 115, 0.3);
}

.bb67-bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #C15373 0%, #d97694 100%);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(193, 83, 115, 0.5);
}

.bb67-bonus-amount {
    font-size: 48px;
    font-weight: 900;
    color: #C15373;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(193, 83, 115, 0.8);
    animation: bb67AmountPulse 2s ease-in-out infinite;
}

@keyframes bb67AmountPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.bb67-bonus-label {
    font-size: 18px;
    color: #f0e8ec;
    font-weight: 600;
    margin-bottom: 12px;
}

.bb67-bonus-extra {
    font-size: 20px;
    color: #d97694;
    font-weight: 700;
    background: rgba(193, 83, 115, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
}

.bb67-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bb67-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(193, 83, 115, 0.08);
    border-radius: 10px;
    border-left: 3px solid #C15373;
    transition: all 0.3s ease;
}

.bb67-benefit-item:hover {
    background: rgba(193, 83, 115, 0.15);
    transform: translateX(5px);
}

.bb67-benefit-icon {
    width: 24px;
    height: 24px;
    background: #C15373;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.bb67-benefit-text {
    color: #e8e8e8;
    font-size: 15px;
    font-weight: 500;
}

.bb67-modal-footer {
    padding: 0 30px 35px;
    text-align: center;
}

.bb67-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #C15373 0%, #d97694 100%);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(193, 83, 115, 0.5);
    position: relative;
    overflow: hidden;
}

.bb67-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.bb67-cta-button:hover::before {
    left: 100%;
}

.bb67-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(193, 83, 115, 0.7);
    background: linear-gradient(135deg, #d97694 0%, #e898af 100%);
}

.bb67-cta-button:active {
    transform: translateY(0) scale(0.98);
}

.bb67-cta-text {
    position: relative;
    z-index: 1;
}

.bb67-cta-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.bb67-cta-button:hover .bb67-cta-arrow {
    transform: translateX(5px);
}

.bb67-modal-terms {
    margin-top: 15px;
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .bb67-floating-container {
        bottom: 20px;
        right: 20px;
    }
    
    .bb67-float-btn {
        width: 60px;
        height: 60px;
    }
    
    .bb67-float-icon {
        font-size: 28px;
    }
    
    .bb67-modal-content {
        max-width: 100%;
    }
    
    .bb67-modal-header {
        padding: 20px 25px;
    }
    
    .bb67-modal-icon {
        font-size: 56px;
    }
    
    .bb67-modal-title {
        font-size: 28px;
    }
    
    .bb67-modal-body {
        padding: 0 20px 25px;
    }
    
    .bb67-bonus-card {
        padding: 25px 20px;
    }
    
    .bb67-bonus-amount {
        font-size: 40px;
    }
    
    .bb67-modal-footer {
        padding: 0 20px 30px;
    }
    
    .bb67-cta-button {
        font-size: 18px;
        padding: 16px 28px;
    }
}

@media (max-width: 480px) {

    .bb67-modal-header {
        padding: 10px;
    }

    .bb67-modal-body {
        padding: 0 10px 10px;
    }

    .bb67-modal-overlay {
        padding: 10px;
    }

    .bb67-cta-button {
        padding: 10px 20px !important;
    }

    .bb67-floating-container {
        bottom: 15px;
        right: 15px;
    }
    
    .bb67-float-btn {
        width: 55px;
        height: 55px;
    }
    
    .bb67-float-icon {
        font-size: 24px;
    }
    
    .bb67-modal-icon {
        font-size: 48px;
    }
    
    .bb67-modal-title {
        font-size: 24px;
    }
    
    .bb67-bonus-amount {
        font-size: 36px;
    }
    
    .bb67-bonus-label {
        font-size: 16px;
    }
    
    .bb67-bonus-extra {
        font-size: 18px;
    }
    
    .bb67-cta-button {
        font-size: 17px;
        padding: 15px 24px;
    }
}