@font-face {
    font-family: 'IranSans';
    src: url('../fonts/IranSans.woff2') format('woff2');
}
.alc-cards-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    direction: rtl;
}
.alc-card {
    display: flex;
    align-items: center;
    background: #141316;
    border: 0.3px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    padding: 12px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s;
}
.alc-logo-container {
    margin-left: 8px;
    background: #2e2e2e;
    border: 0.3px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    padding: 6px;
}
.alc-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.alc-content {
    flex: 1;
    text-align: right;
    margin: 0 8px;
}
.alc-title {
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
}
.alc-pulse-dot {
    color: #0a84ff;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-left: 6px;
    animation: pulse-color 1s infinite;
}
@keyframes pulse-color {
    0% { background: #00FF00; }
    50% { background: #888888; }
    100% { background: #00FF00; }
}
.alc-subtitle {
    margin: 0;
    font-size: 0.65rem;
    font-weight: 200;
    opacity: 0.7;
}
.alc-datetime {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.alc-time-container {
    display: flex;
    align-items: center;
}
.alc-time-container i {
    margin-left: 6px;
}
.alc-time {
    font-size: 0.875rem;
    color: #FFA500;
    margin: 0;
}
.alc-date-container {
    margin-top: 2px;
}
.alc-date {
    font-size: 0.65rem;
    font-weight: 200;
    opacity: 0.7;
}