﻿.del-container {
    font-family: 'Vazirmatn', sans-serif;
    background: linear-gradient(180deg, #f4f6fa 0%, #e9eef5 100%);
    min-height: 100vh;
}

/* Glassy cards */
.glassy {
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(245,247,250,0.62));
    backdrop-filter: blur(11px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    transition: transform .35s ease, box-shadow .35s ease;
    position: relative;
    overflow: hidden;
}

/* Accent line */
.accent-line {
    height: 4px;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* Lottie */
.lottie-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
}

.lottie-icon {
    width: 64px;
    height: 64px;
}

/* Live dot + pulse */
.live-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
    animation: pulse 2s infinite;
}

.online {
    background: #4caf50;
}

.delay {
    background: #ff9800;
}

.offline {
    background: #f44336;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

/* 3D Hover + reflection */
.hover-3d:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

.hover-3d::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 38%;
    background: linear-gradient(to top, rgba(255,255,255,0.18), transparent);
    opacity: 0;
    transition: .35s ease;
}

.hover-3d:hover::after {
    opacity: 1;
}

/* Heading gradient */
.gradient-text {
    background: linear-gradient(90deg, #42a5f5, #7e57c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
