.lec-scope {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

@media (max-width: 768px) {
    .lec-scope {
        grid-template-columns: 1fr;
    }
}

/* کارت تیره */
.lec-card {
    background: #13183E;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    transition: all 0.4s ease;
    font-family: sans-serif;
    font-size: 16px;
    min-width: 250px;
    color: #ffffff;
}

/* هدر */
.lec-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.lec-currency-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
   
    
}

/* Live Dot */
.lec-live-dot {
    width: 12px;
    height: 12px;
    background: #00ff8f;
    border-radius: 50%;
    display: inline-block;
    animation: lec-pulse 1.2s infinite;
}

@keyframes lec-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.4; }
    100% { transform: scale(1); opacity: 1; }
}

/* قیمت */
.lec-price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
    display: flex;
    align-items: center;
}


/* اختلاف قیمت */
.lec-diff {
    font-weight: bold;
    margin-bottom: 14px;
}

.lec-diff.up {
    color: #3CFF6B;
}

.lec-diff.down {
    color: #FF4C4C;
}

/* خط جداکننده */
.lec-separator {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 10px;
}

/* تاریخ و ساعت */
.lec-update {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    text-align: left;
    font-weight: 500;
}
