.dragao7v-floating-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
}

.dragao7v-float-btn {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0E7C37 0%, #12a048 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 8px 30px rgba(14, 124, 55, 0.6),
                0 0 40px rgba(14, 124, 55, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: dragao7vFloatBounce 3s ease-in-out infinite;
    overflow: hidden;
}

@keyframes dragao7vFloatBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.dragao7v-float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 40px rgba(14, 124, 55, 0.8),
                0 0 60px rgba(14, 124, 55, 0.6);
    background: linear-gradient(135deg, #12a048 0%, #15c757 100%);
}

.dragao7v-float-btn:active {
    transform: scale(0.95);
}

.dragao7v-float-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(14, 124, 55, 0.4);
    transform: translate(-50%, -50%);
    animation: dragao7vPulseWave 2s ease-out infinite;
}

@keyframes dragao7vPulseWave {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.dragao7v-float-icon {
    font-size: 28px;
    color: #ffffff;
    animation: dragao7vIconRotate 4s linear infinite;
}

@keyframes dragao7vIconRotate {
    0%, 90% {
        transform: rotate(0deg);
    }
    95% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(15deg);
    }
}

.dragao7v-float-text {
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dragao7v-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: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dragao7v-modal-overlay.dragao7v-active {
    opacity: 1;
    visibility: visible;
}

.dragao7v-modal-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: linear-gradient(180deg, #0a2818 0%, #051510 100%);
    border-radius: 24px;
    border: 3px solid #0E7C37;
    box-shadow: 0 20px 60px rgba(14, 124, 55, 0.4),
                0 0 100px rgba(14, 124, 55, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.dragao7v-modal-overlay.dragao7v-active .dragao7v-modal-container {
    transform: scale(1) translateY(0);
}

.dragao7v-modal-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0E7C37 0%, #12a048 50%, #0E7C37 100%);
    background-size: 200% 100%;
    animation: dragao7vHeaderGlow 3s linear infinite;
}

@keyframes dragao7vHeaderGlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.dragao7v-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(14, 124, 55, 0.2);
    border: 2px solid #0E7C37;
    border-radius: 50%;
    color: #0E7C37;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.dragao7v-modal-close:hover {
    background: #0E7C37;
    color: #ffffff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(14, 124, 55, 0.6);
}

.dragao7v-modal-content {
    padding: 40px 30px 30px;
}

.dragao7v-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.dragao7v-modal-logo {
    font-size: 50px;
    margin-bottom: 15px;
    animation: dragao7vLogoBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(14, 124, 55, 0.6));
}

@keyframes dragao7vLogoBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.15) rotate(5deg);
    }
}

.dragao7v-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #e0f5e8;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dragao7v-modal-brand {
    display: block;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #0E7C37 0%, #12a048 50%, #15c757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-top: 5px;
}

.dragao7v-modal-body {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dragao7v-bonus-badge {
    background: linear-gradient(135deg, #0D7C37 0%, #0a5f2a 100%);
    border: 3px solid #0E7C37;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(14, 124, 55, 0.4),
                inset 0 2px 10px rgba(255, 255, 255, 0.1);
}

.dragao7v-bonus-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    animation: dragao7vBadgeShine 3s linear infinite;
}

@keyframes dragao7vBadgeShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.dragao7v-bonus-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #a8e6c1;
    letter-spacing: 2px;
    margin-bottom: 8px;
    position: relative;
}

.dragao7v-bonus-amount {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #fee001;
    text-shadow: 0 0 30px rgba(14, 124, 55, 1),
                 0 4px 8px rgba(0, 0, 0, 0.4);
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    animation: dragao7vAmountPulse 2s ease-in-out infinite;
}

@keyframes dragao7vAmountPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.dragao7v-bonus-extra {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #e0f5e8;
    letter-spacing: 1px;
    position: relative;
}

.dragao7v-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dragao7v-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(14, 124, 55, 0.1);
    border-radius: 10px;
    border-left: 4px solid #0E7C37;
    transition: all 0.3s ease;
}

.dragao7v-benefit-item:hover {
    background: rgba(14, 124, 55, 0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(14, 124, 55, 0.2);
}

.dragao7v-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #0E7C37;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(14, 124, 55, 0.4);
}

.dragao7v-benefit-text {
    font-size: 15px;
    font-weight: 600;
    color: #e0f5e8;
    line-height: 1.4;
}

.dragao7v-modal-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.dragao7v-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #0E7C37 0%, #12a048 100%);
    border: none;
    border-radius: 14px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 6px 25px rgba(14, 124, 55, 0.5);
}

.dragao7v-cta-button::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 ease, height 0.6s ease;
}

.dragao7v-cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.dragao7v-cta-button:hover {
    background: linear-gradient(135deg, #12a048 0%, #15c757 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(14, 124, 55, 0.7);
}

.dragao7v-cta-button:active {
    transform: translateY(-1px);
}

.dragao7v-cta-text {
    position: relative;
    z-index: 1;
}

.dragao7v-cta-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.dragao7v-cta-button:hover .dragao7v-cta-arrow {
    transform: translateX(5px);
}

.dragao7v-modal-disclaimer {
    font-size: 11px;
    color: #8fa89a;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .dragao7v-floating-wrapper {
        bottom: 20px;
        right: 20px;
    }
    
    .dragao7v-float-btn {
        width: 60px;
        height: 60px;
    }
    
    .dragao7v-float-icon {
        font-size: 24px;
    }
    
    .dragao7v-float-text {
        font-size: 9px;
    }
    
    .dragao7v-modal-content {
        padding: 35px 25px 25px;
    }
    
    .dragao7v-modal-logo {
        font-size: 45px;
    }
    
    .dragao7v-modal-title {
        font-size: 20px;
    }
    
    .dragao7v-modal-brand {
        font-size: 28px;
    }
    
    .dragao7v-bonus-amount {
        font-size: 42px;
    }
    
    .dragao7v-benefit-text {
        font-size: 14px;
    }
    
    .dragao7v-cta-button {
        padding: 16px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .dragao7v-floating-wrapper {
        bottom: 15px;
        right: 15px;
    }
    
    .dragao7v-float-btn {
        width: 55px;
        height: 55px;
    }
    
    .dragao7v-float-icon {
        font-size: 22px;
    }
    
    .dragao7v-float-text {
        font-size: 8px;
    }
    
    .dragao7v-modal-container {
        max-width: 95%;
    }
    
    .dragao7v-modal-content {
        padding: 30px 20px 20px;
    }
    
    .dragao7v-modal-logo {
        font-size: 40px;
    }
    
    .dragao7v-modal-title {
        font-size: 18px;
    }
    
    .dragao7v-modal-brand {
        font-size: 26px;
        letter-spacing: 2px;
    }
    
    .dragao7v-bonus-badge {
        padding: 20px 15px;
    }
    
    .dragao7v-bonus-amount {
        font-size: 38px;
    }
    
    .dragao7v-bonus-extra {
        font-size: 14px;
    }
    
    .dragao7v-benefit-item {
        padding: 10px 12px;
    }
    
    .dragao7v-benefit-text {
        font-size: 13px;
    }
    
    .dragao7v-cta-button {
        padding: 15px 20px;
        font-size: 13px;
    }
    
    .dragao7v-modal-disclaimer {
        font-size: 10px;
    }
}