.bmw33-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.6);
    transition: all 0.3s ease;
    z-index: 9998;
    animation: bmw33FloatBounce 2s ease-in-out infinite;
    border: 3px solid #140505;
}

@keyframes bmw33FloatBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 24px rgba(255, 184, 0, 0.6);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 12px 32px rgba(255, 184, 0, 0.8);
    }
}

.bmw33-floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 36px rgba(255, 184, 0, 0.9);
}

.bmw33-float-icon {
    font-size: 28px;
    margin-bottom: 2px;
    animation: bmw33IconRotate 3s ease-in-out infinite;
}

@keyframes bmw33IconRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

.bmw33-float-text {
    font-size: 10px;
    font-weight: 900;
    color: #140505;
    letter-spacing: 1px;
}

.bmw33-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.bmw33-modal-overlay.bmw33-active {
    opacity: 1;
    visibility: visible;
}

.bmw33-modal-container {
    background: linear-gradient(135deg, #140505 0%, #2A2B30 100%);
    border-radius: 20px;
    max-width: 480px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 3px solid #FFB800;
    overflow: hidden;
}

.bmw33-modal-overlay.bmw33-active .bmw33-modal-container {
    transform: scale(1);
}

.bmw33-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: #FFB800;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: #140505;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.bmw33-modal-close:hover {
    background: #FF8C00;
    transform: rotate(90deg) scale(1.1);
}

.bmw33-modal-header {
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
}

.bmw33-modal-icon {
    font-size: 60px;
    margin-bottom: 10px;
    animation: bmw33ModalIconPulse 2s ease-in-out infinite;
}

@keyframes bmw33ModalIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.bmw33-modal-title {
    font-size: 32px;
    font-weight: 900;
    color: #140505;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Arial Black', sans-serif;
}

.bmw33-modal-body {
    padding: 40px 30px;
    text-align: center;
}

.bmw33-bonus-amount {
    font-size: 56px;
    font-weight: 900;
    color: #FFB800;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 184, 0, 0.8);
    animation: bmw33AmountGlow 2s ease-in-out infinite;
    font-family: 'Arial Black', sans-serif;
}

@keyframes bmw33AmountGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(255, 184, 0, 0.8);
    }
    50% {
        text-shadow: 0 0 45px rgba(255, 184, 0, 1), 0 0 60px rgba(255, 140, 0, 0.8);
    }
}

.bmw33-bonus-subtitle {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: 600;
}

.bmw33-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    text-align: left;
}

.bmw33-feature-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 500;
}

.bmw33-feature-icon {
    width: 28px;
    height: 28px;
    background: #FFB800;
    color: #140505;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.bmw33-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    color: #140505;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.5);
    margin-bottom: 20px;
}

.bmw33-cta-button:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FFB800 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 184, 0, 0.7);
}

.bmw33-cta-text {
    margin-right: 10px;
}

.bmw33-cta-arrow {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.bmw33-cta-button:hover .bmw33-cta-arrow {
    transform: translateX(5px);
}

.bmw33-modal-footer-text {
    font-size: 14px;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .bmw33-floating-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .bmw33-float-icon {
        font-size: 24px;
    }
    
    .bmw33-float-text {
        font-size: 9px;
    }
    
    .bmw33-modal-container {
        max-width: 95%;
    }
    
    .bmw33-modal-header {
        padding: 30px 20px 25px;
    }
    
    .bmw33-modal-icon {
        font-size: 50px;
    }
    
    .bmw33-modal-title {
        font-size: 26px;
    }
    
    .bmw33-modal-body {
        padding: 30px 20px;
    }
    
    .bmw33-bonus-amount {
        font-size: 44px;
    }
    
    .bmw33-bonus-subtitle {
        font-size: 16px;
    }
    
    .bmw33-feature-item {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .bmw33-cta-button {
        padding: 16px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .bmw33-floating-btn {
        width: 55px;
        height: 55px;
    }
    
    .bmw33-float-icon {
        font-size: 22px;
    }
    
    .bmw33-bonus-amount {
        font-size: 38px;
    }
    
    .bmw33-modal-title {
        font-size: 22px;
    }
    
    .bmw33-cta-button {
        font-size: 14px;
        padding: 14px 25px;
    }
}