/* ═══════════════════════════════════════════════════════════════
   HOME PAGE - Terminal Theme
   ═══════════════════════════════════════════════════════════════ */

/* Note: .container is now in utilities.css */

/* ═══════════════════════════════════════════════════════════════
   MESSAGE OF THE DAY (MOTD)
   ═══════════════════════════════════════════════════════════════ */

/* MOTD Meta Information */
.motd-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
}

.motd-date {
    font-family: "Courier New", Courier, monospace;
    color: rgba(0, 255, 65, 0.7);
    font-size: 0.8rem;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.2);
}

.motd-tag {
    font-family: "Courier New", Courier, monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--terminal-bg);
    background: var(--phosphor-green);
    padding: 0.25rem 0.75rem;
    font-weight: bold;
    text-shadow: none;
}

/* MOTD Content */
.motd-heading {
    color: var(--phosphor-green);
    font-family: "Courier New", Courier, monospace;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    letter-spacing: 0.05em;
}

.card-body p {
    color: rgba(0, 255, 65, 0.85);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* MOTD List */
.motd-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.motd-list li {
    color: rgba(0, 255, 65, 0.85);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.motd-list li:before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--phosphor-green);
    font-weight: bold;
}

.motd-list li:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .motd-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}