.p777-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(140deg, #F4C430 0%, #FFD966 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(244, 196, 48, 0.6);
    transition: all 0.3s ease;
    z-index: 999;
    animation: p777FloatPulse 2s ease-in-out infinite;
}

@keyframes p777FloatPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 20px rgba(244, 196, 48, 0.6);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 8px 30px rgba(244, 196, 48, 0.8);
    }
}

.p777-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(244, 196, 48, 0.9);
}

.p777-btn-icon {
    font-size: 26px;
}

.p777-btn-text {
    font-size: 12px;
    font-weight: 800;
    color: #1C1C1C;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.p777-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.p777-modal-overlay.p777-active {
    display: flex;
    animation: p777FadeIn 0.3s ease-out;
}

@keyframes p777FadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.p777-modal-container {
    background: linear-gradient(160deg, #1C1C1C 0%, #2A2A2A 100%);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    padding: 40px 30px;
    box-shadow: 0 10px 50px rgba(244, 196, 48, 0.3);
    border: 2px solid #F4C430;
    animation: p777SlideUp 0.4s ease-out;
}

@keyframes p777SlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.p777-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(244, 196, 48, 0.2);
    border: 2px solid #F4C430;
    border-radius: 50%;
    color: #F4C430;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 33;
}

.p777-modal-close:hover {
    background: #F4C430;
    color: #1C1C1C;
    transform: rotate(90deg);
}

.p777-modal-content {
    text-align: center;
}

.p777-modal-icon {
    font-size: 60px;
    margin-bottom: 15px;
    animation: p777Bounce 1s ease-in-out infinite;
}

@keyframes p777Bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.p777-modal-title {
    font-size: 32px;
    font-weight: 900;
    color: #F4C430;
    margin: 0 0 10px 0;
    text-shadow: 0 0 15px rgba(244, 196, 48, 0.5);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.p777-modal-subtitle {
    font-size: 16px;
    color: #E0E0E0;
    margin: 0 0 25px 0;
    font-weight: 500;
}

.p777-bonus-amount {
    background: linear-gradient(140deg, #F4C430 0%, #FFD966 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    display: inline-block;
}

.p777-currency {
    font-size: 28px;
    font-weight: 700;
    color: #1C1C1C;
}

.p777-amount {
    font-size: 42px;
    font-weight: 900;
    color: #1C1C1C;
    margin-left: 5px;
}

.p777-modal-description {
    font-size: 15px;
    color: #D0D0D0;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.p777-modal-description strong {
    color: #F4C430;
    font-weight: 700;
}

.p777-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.p777-feature-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
    color: #E0E0E0;
    border-bottom: 1px solid rgba(244, 196, 48, 0.2);
}

.p777-feature-item:last-child {
    border-bottom: none;
}

.p777-check-icon {
    width: 24px;
    height: 24px;
    background: #F4C430;
    color: #1C1C1C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
}

.p777-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, #F4C430 0%, #FFD966 100%);
    color: #1C1C1C;
    font-size: 18px;
    font-weight: 900;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(244, 196, 48, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.p777-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 196, 48, 0.6);
    background: linear-gradient(140deg, #FFD966 0%, #FFE699 100%);
}

.p777-arrow {
    margin-left: 10px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.p777-cta-button:hover .p777-arrow {
    transform: translateX(5px);
}

.p777-terms {
    font-size: 11px;
    color: #999;
    margin: 15px 0 0 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .p777-floating-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .p777-btn-icon {
        font-size: 24px;
    }
    
    .p777-btn-text {
        font-size: 10px;
    }
    
    .p777-modal-container {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .p777-modal-title {
        font-size: 26px;
    }
    
    .p777-modal-subtitle {
        font-size: 14px;
    }
    
    .p777-amount {
        font-size: 36px;
    }
    
    .p777-currency {
        font-size: 24px;
    }
    
    .p777-cta-button {
        font-size: 16px;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .p777-modal-icon {
        font-size: 50px;
    }
    
    .p777-modal-title {
        font-size: 22px;
    }
    
    .p777-amount {
        font-size: 32px;
    }
    
    .p777-modal-description {
        font-size: 14px;
    }
    
    .p777-feature-item {
        font-size: 14px;
    }
}