.nlr-card {
    background: #0f0f0f;
    padding: 24px;
    border-radius: 14px;
    color: #ffffff;
    margin-bottom: 20px;
    border: 1px solid #1c1c1c;
    transition: all 0.3s ease;
}

.nlr-card:hover {
    border-color: #ff2d2d;
    transform: translateY(-2px);
}

/* HEADER */
.nlr-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ICON BOX */
.nlr-icon {
    width: 52px;
    height: 52px;
    background: #1f1f1f; /* changed from dark red to neutral dark */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #2a2a2a;
}

/* Font Awesome icon */
.nlr-icon i {
    color: #ff2d2d; /* bright red */
    font-size: 22px;
}

.nlr-icon svg {
    width: 22px;
    height: 22px;
    fill: #ff2d2d;
}

/* TITLE + BADGE */
.nlr-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nlr-title-wrap h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.nlr-badge {
    background: #ff2d2d;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

/* DESCRIPTION */
.nlr-desc {
    margin: 12px 0;
    color: #b5b5b5;
    font-size: 14px;
    line-height: 1.5;
}

/* META INFO */
.nlr-meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: #9a9a9a;
    flex-wrap: wrap;
}

.nlr-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nlr-meta-item i {
    color: #ff2d2d;
    opacity: 0.8;
}

.nlr-meta span {
    position: relative;
}

/* optional separator */
.nlr-meta span:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: #555;
}

/* FOOTER */
.nlr-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

/* DETAILS LINK */
.nlr-details {
    font-size: 13px;
    color: #bbbbbb;
    text-decoration: none;
    transition: 0.3s;
}

.nlr-details:hover {
    color: #ffffff;
}

/* DOWNLOAD BUTTON */
.nlr-btn {
    background: #ff2d2d;
    padding: 10px 16px;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nlr-btn:hover {
    background: #e60000;
    transform: translateY(-1px);
}