﻿:root {
    --bg0: #060b1a;
    --bg1: #07122a;
    --card: #0b1a3a;
    --line: rgba(255,255,255,.10);
    --text: rgba(255,255,255,.92);
    --muted: rgba(255,255,255,.70);
    --accent: #6df0ff;
    --accent2: #4da3ff;
}

.llmc-body {
    background: linear-gradient(180deg, var(--bg0), #050914);
    color: var(--text);
}

.llmc-main {
    min-height: 60vh;
}

/* NAV */
.llmc-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(6,11,26,.78);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
/* FIX: Bootstrap .collapse hides menu on desktop unless used with navbar-expand-* */
@media (min-width: 992px) {
    #llmcTopNav.collapse {
        display: flex !important;
        height: auto !important;
        visibility: visible !important;
    }

        #llmcTopNav.collapse:not(.show) {
            display: flex !important;
        }
}

.llmc-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}

.llmc-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
}

.llmc-brand-badge {
    font-weight: 900;
    letter-spacing: .14em;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255,255,255,.04);
}

.llmc-brand-text {
    font-weight: 800;
    letter-spacing: .02em;
    color: var(--muted);
}

.llmc-menu {
    display: flex;
    align-items: center;
    gap: 14px;
}

.llmc-link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 10px;
}

    .llmc-link:hover {
        color: var(--text);
        background: rgba(255,255,255,.04);
    }

.llmc-link-muted {
    opacity: .72;
}

.llmc-divider-v {
    width: 1px;
    height: 26px;
    background: var(--line);
    margin: 0 6px;
}

.llmc-lang {
    color: var(--muted);
    text-decoration: none;
    font-weight: 800;
}

    .llmc-lang.is-active {
        color: var(--accent);
    }

.llmc-lang-sep {
    opacity: .6;
    margin: 0 6px;
}

/* burger */
.llmc-burger {
    display: none;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    border-radius: 12px;
    padding: 10px 10px;
}

    .llmc-burger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text);
        margin: 4px 0;
        opacity: .85;
    }

@media (max-width: 991px) {
    .llmc-burger {
        display: block;
    }

    .llmc-menu {
        margin-top: 10px;
        padding: 10px 0 8px 0;
        border-top: 1px solid var(--line);
        flex-direction: column;
        align-items: flex-start;
    }

    .llmc-divider-v {
        display: none;
    }
}

/* FOOTER */
.llmc-footer {
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.02);
    padding: 34px 0 18px 0;
}

.llmc-footer-title {
    font-weight: 900;
    letter-spacing: .03em;
    margin-bottom: 10px;
}

.llmc-footer-text {
    color: var(--muted);
    line-height: 1.6;
}

.llmc-footer-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .llmc-footer-list li {
        margin: 8px 0;
    }

    .llmc-footer-list a, .llmc-footer a {
        color: var(--accent2);
        text-decoration: none;
        font-weight: 700;
    }

        .llmc-footer a:hover {
            text-decoration: underline;
        }

.llmc-footer-note {
    margin-top: 10px;
    color: rgba(255,255,255,.58);
    font-size: .92rem;
}

.llmc-footer-bottom {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
    color: rgba(255,255,255,.62);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.llmc-footer-dot {
    opacity: .6;
}
