.it-70882f9e-container {
    position: relative;
    width: 100%;
    z-index: 1;
}

.it-70882f9e-title {
    position: relative;
    z-index: 2;
    margin: 0;
    pointer-events: none;
}

.it-70882f9e-btn {
    position: absolute;
    cursor: pointer;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    --float-scale: 1;
}

.it-70882f9e-btn:hover,
.it-70882f9e-btn.is-active {
    z-index: 9999 !important;
    animation-play-state: paused;
}

.it-70882f9e-btn-label {
    display: inline-block;
    padding: 10px 20px;
    background: #eef1ff;
    color: #000;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 4;
}

.it-70882f9e-img-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    width: 250px;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility, transform;
}

.it-70882f9e-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Hover Reveal Animations */
.it-70882f9e-anim-fade .it-70882f9e-img-wrapper {
    opacity: 0;
}
.it-70882f9e-anim-fade .it-70882f9e-btn.is-active .it-70882f9e-img-wrapper,
.it-70882f9e-anim-fade .it-70882f9e-btn:hover .it-70882f9e-img-wrapper {
    opacity: 1;
    visibility: visible;
}

.it-70882f9e-anim-scale .it-70882f9e-img-wrapper {
    transform: translateX(-50%) scale(0.8);
    opacity: 0;
}
.it-70882f9e-anim-scale .it-70882f9e-btn.is-active .it-70882f9e-img-wrapper,
.it-70882f9e-anim-scale .it-70882f9e-btn:hover .it-70882f9e-img-wrapper {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.it-70882f9e-anim-slide .it-70882f9e-img-wrapper {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
}
.it-70882f9e-anim-slide .it-70882f9e-btn.is-active .it-70882f9e-img-wrapper,
.it-70882f9e-anim-slide .it-70882f9e-btn:hover .it-70882f9e-img-wrapper {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Floating Keyframe Animations — X axis only */
@keyframes float-pattern-1 {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(calc(-80px * var(--float-scale))); }
    50%  { transform: translateX(calc(75px * var(--float-scale))); }
    75%  { transform: translateX(calc(30px * var(--float-scale))); }
    100% { transform: translateX(0); }
}

@keyframes float-pattern-2 {
    0%   { transform: translateX(0); }
    33%  { transform: translateX(calc(95px * var(--float-scale))); }
    66%  { transform: translateX(calc(-85px * var(--float-scale))); }
    100% { transform: translateX(0); }
}

@keyframes float-pattern-3 {
    0%   { transform: translateX(0); }
    20%  { transform: translateX(calc(-60px * var(--float-scale))); }
    40%  { transform: translateX(calc(80px * var(--float-scale))); }
    60%  { transform: translateX(calc(-75px * var(--float-scale))); }
    80%  { transform: translateX(calc(90px * var(--float-scale))); }
    100% { transform: translateX(0); }
}

.it-70882f9e-float-1 { animation-name: float-pattern-1; }
.it-70882f9e-float-2 { animation-name: float-pattern-2; }
.it-70882f9e-float-3 { animation-name: float-pattern-3; }
