@keyframes ariandata-ping {
    0% { transform: scale(1); opacity: 0.8; }
    75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes ariandata-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes ariandata-slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.ariandata-box {
    animation: ariandata-slideUp 0.6s ease-out;
}
.ariandata-box-decorative {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    pointer-events: none;
}
.ariandata-icon-wrap {
    animation: ariandata-float 3s ease-in-out infinite;
}
.ariandata-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.ariandata-platform-btn:hover {
    transform: scale(1.08);
}
.ariandata-badge {
    animation: ariandata-slideUp 0.8s ease-out;
}

/* Floating button */
#ariandata-floating-btn {
    position: fixed;
    bottom: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#ariandata-floating-btn:hover {
    transform: scale(1.1);
}
#ariandata-floating-btn .pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: ariandata-ping 1.5s infinite;
    opacity: 0.3;
}

/* Sticky bar */
#ariandata-sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    direction: rtl;
}
#ariandata-sticky-bar.visible {
    transform: translateY(0);
}
#ariandata-sticky-bar .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
}
#ariandata-sticky-bar .close-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 16px;
}

/* Popup */
#ariandata-popup {
    position: fixed;
    z-index: 9997;
    bottom: 84px;
    animation: ariandata-slideUp 0.4s ease-out;
    direction: rtl;
}
#ariandata-popup .popup-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    padding: 16px;
    max-width: 280px;
    position: relative;
}
#ariandata-popup .popup-close {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
#ariandata-popup .popup-arrow {
    position: absolute;
    bottom: -6px;
    left: 24px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 600px) {
    .ariandata-box .ariandata-buttons {
        grid-template-columns: 1fr !important;
    }
    .ariandata-box-inner {
        padding: 16px !important;
    }
}