.polo9-floating-wrapper {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
}

.polo9-float-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 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(255, 215, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: polo9FloatPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.polo9-float-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.polo9-float-btn:hover::before {
    width: 100%;
    height: 100%;
}

.polo9-float-btn:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
}

@keyframes polo9FloatPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.polo9-float-icon {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 2px;
    position: relative;
    z-index: 1;
}

.polo9-float-text {
    font-size: 10px;
    font-weight: 900;
    color: #03193A;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.polo9-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 25, 58, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.polo9-modal-overlay.polo9-active {
    opacity: 1;
    visibility: visible;
}

.polo9-modal-container {
    background: linear-gradient(135deg, #03193A 0%, #12294A 100%);
    border-radius: 20px;
    max-width: 480px;
    width: 90%;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8) translateY(30px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid #FFD700;
}

.polo9-modal-overlay.polo9-active .polo9-modal-container {
    transform: scale(1) translateY(0);
}

.polo9-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 50%;
    color: #FFD700;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.polo9-modal-close:hover {
    background: #FFD700;
    color: #03193A;
    transform: rotate(90deg);
}

.polo9-modal-content {
    text-align: center;
}

.polo9-modal-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: polo9IconBounce 1s ease-in-out infinite;
}

@keyframes polo9IconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.polo9-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;
}

.polo9-modal-subtitle {
    font-size: 18px;
    color: #FFFFFF;
    margin: 0 0 25px 0;
    font-weight: 600;
}

.polo9-bonus-amount {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 20px;
    border-radius: 15px;
    margin: 0 0 30px 0;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.polo9-currency {
    font-size: 28px;
    font-weight: 700;
    color: #03193A;
    margin-right: 5px;
}

.polo9-amount {
    font-size: 42px;
    font-weight: 900;
    color: #03193A;
    letter-spacing: 2px;
}

.polo9-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.polo9-benefit-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.polo9-benefit-item:last-child {
    border-bottom: none;
}

.polo9-check {
    width: 24px;
    height: 24px;
    background: #FFD700;
    color: #03193A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}

.polo9-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #03193A !important;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.polo9-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.5s;
}

.polo9-cta-button:hover::before {
    left: 100%;
}

.polo9-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.polo9-arrow {
    margin-left: 10px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.polo9-cta-button:hover .polo9-arrow {
    transform: translateX(5px);
}

.polo9-terms {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 20px 0 0 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .polo9-floating-wrapper {
        right: 20px;
        bottom: 20px;
    }
    
    .polo9-float-btn {
        width: 60px;
        height: 60px;
    }
    
    .polo9-float-icon {
        font-size: 24px;
    }
    
    .polo9-float-text {
        font-size: 9px;
    }
    
    .polo9-modal-container {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .polo9-modal-title {
        font-size: 26px;
    }
    
    .polo9-modal-subtitle {
        font-size: 16px;
    }
    
    .polo9-amount {
        font-size: 36px;
    }
    
    .polo9-cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .polo9-modal-icon {
        font-size: 50px;
    }
    
    .polo9-modal-title {
        font-size: 24px;
    }
    
    .polo9-bonus-amount {
        padding: 15px;
    }
    
    .polo9-amount {
        font-size: 32px;
    }
    
    .polo9-benefit-item {
        font-size: 14px;
    }
}