.floating-bonus-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #426666 0%, #2a4444 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(66, 102, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow: visible;
}

.floating-bonus-btn:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 255, 170, 0.6);
    background: linear-gradient(135deg, #00ffaa 0%, #426666 100%);
}

.floating-bonus-btn:active {
    transform: translateY(-4px) scale(1.05);
}

.btn-icon {
    font-size: 32px;
    margin-bottom: 2px;
    color: #fff;
    animation: iconBounce 2.5s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.btn-text {
    font-size: 9px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.1;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(0, 255, 170, 0.6);
    animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: linear-gradient(135deg, #2a3d3d 0%, #1a2626 100%);
    border-radius: 24px;
    max-width: 768px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(66, 102, 102, 0.3);
    border: 2px solid rgba(66, 102, 102, 0.4);
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 51, 51, 0.8);
    border-color: rgba(255, 51, 51, 0.6);
    transform: rotate(90deg);
}

.modal-content {
    padding: 50px 35px 40px;
}

.modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.bonus-icon {
    font-size: 60px;
    margin-bottom: 15px;
    animation: iconRotate 3s ease-in-out infinite;
}

@keyframes iconRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.1);
    }
}

.modal-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.brand-name {
    color: #00ffaa;
    text-shadow: 0 0 20px rgba(0, 255, 170, 0.8);
}

.modal-subtitle {
    font-size: 16px;
    color: #b8c5c5;
    font-weight: 500;
}

.bonus-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
    margin-bottom: 35px;
}

.bonus-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(66, 102, 102, 0.3);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: rgba(0, 255, 170, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 255, 170, 0.2);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.bonus-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.bonus-amount {
    font-size: 20px;
    font-weight: 800;
    color: #00ffaa;
    margin-bottom: 8px;
}

.bonus-amount .highlight {
    color: #7fff00;
    text-shadow: 0 0 15px rgba(127, 255, 0, 0.7);
}

.bonus-desc {
    font-size: 13px;
    color: #8a9d9d;
    font-weight: 500;
}

 .modal-content .cta-section {
    text-align: center;
    flex-direction: column;
    padding: 0;
    background: none;
    gap: 0;
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #00ffaa 0%, #00cc88 100%);
    color: #1a2626;
    font-size: 18px;
    font-weight: 800;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 255, 170, 0.4);
    position: relative;
    overflow: hidden;
}

.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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 255, 170, 0.6);
    background: linear-gradient(135deg, #7fff00 0%, #00ffaa 100%);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-arrow {
    font-size: 24px;
    font-weight: 900;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.terms-text {
    margin-top: 18px;
    font-size: 12px;
    color: #6a7d7d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .floating-bonus-btn {
        width: 65px;
        height: 65px;
        bottom: 25px;
        right: 25px;
    }
    
    .btn-icon {
        font-size: 28px;
    }
    
    .btn-text {
        font-size: 8px;
    }
    
    .modal-container {
        width: 95%;
        max-width: 100%;
    }
    
    .modal-content {
        padding: 45px 25px 35px;
    }
    
    .bonus-icon {
        font-size: 50px;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-subtitle {
        font-size: 14px;
    }
    
    .bonus-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modal-container {
        overflow: auto;
    }
    
    .cta-button {
        width: 100%;
        padding: 16px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .floating-bonus-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .btn-icon {
        font-size: 26px;
    }
    
    .btn-text {
        font-size: 7px;
    }
    
    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
    
    .modal-content {
        padding: 40px 20px 30px;
    }
    
    .bonus-icon {
        font-size: 45px;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    .bonus-card {
        padding: 20px 12px;
    }
    
    .card-icon {
        font-size: 35px;
    }
}

.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: rgba(66, 102, 102, 0.6);
    border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 170, 0.6);
}






