/* Lo Shu Grid Calculator — scoped styles
   Design: Ink & Cosmos — Chinese ink + imperial gold + deep red on cosmos navy. */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@400;600&family=Noto+Serif+SC:wght@500;700&family=Inter:wght@400;500;600&display=swap');

.loshu-scope {
    --lo-cinzel-d: 'Cinzel Decorative', serif;
    --lo-cinzel: 'Cinzel', serif;
    --lo-chinese: 'Noto Serif SC', serif;
    --lo-body: 'Inter', system-ui, sans-serif;
    --lo-navy: #0a0a14;
    --lo-deep: #0d0a18;
    --lo-burgundy: #12080a;
    --lo-red: #991b1b;
    --lo-red-bright: #dc2626;
    --lo-gold: #fbbf24;
    --lo-gold-soft: #fcd34d;
    --lo-cream: #f5f0e8;
    --lo-border: rgba(251,191,36,0.15);
    --lo-border-hover: rgba(251,191,36,0.35);

    background: linear-gradient(160deg, #0a0a14 0%, #0d0a18 50%, #12080a 100%);
    color: var(--lo-cream);
    font-family: var(--lo-body);
}

/* ─── HERO ─── */
.lo-hero {
    position: relative;
    min-height: 92vh;
    padding: 140px 0 80px;
    overflow: hidden;
}
.lo-hero-watermark {
    position: absolute;
    right: -10%; top: 50%;
    transform: translateY(-50%);
    font-family: var(--lo-chinese);
    font-size: 42vw;
    color: rgba(251,191,36,0.025);
    font-weight: 900;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    user-select: none;
}
.lo-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (max-width: 960px) {
    .lo-hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}
.lo-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    font-family: var(--lo-cinzel);
    font-size: 0.72rem;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: var(--lo-red-bright);
}
.lo-hero-eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--lo-red);
}
.lo-hero-title {
    font-family: var(--lo-cinzel-d);
    font-weight: 900;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    line-height: 1.08;
    margin: 0 0 1rem;
    letter-spacing: 0.01em;
}
.lo-hero-title span { display: block; }
.lo-hero-title .lo-gold {
    color: var(--lo-gold);
    text-shadow: 0 0 40px rgba(251,191,36,0.4);
}
.lo-hero-chinese {
    font-family: var(--lo-chinese);
    font-size: 1.8rem;
    letter-spacing: 0.4em;
    color: rgba(251,191,36,0.35);
    margin: 0 0 1.5rem;
}
@media (max-width: 960px) {
    .lo-hero-chinese { letter-spacing: 0.15em; }
}
.lo-hero-lead {
    color: rgba(245,240,232,0.72);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 0 1rem;
}
@media (max-width: 960px) { .lo-hero-lead { margin-left: auto; margin-right: auto; } }
.lo-hero-lead strong { color: var(--lo-gold); font-weight: 600; }

.lo-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
@media (max-width: 960px) { .lo-hero-cta { justify-content: center; } }

.lo-hero-stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
@media (max-width: 960px) { .lo-hero-stats { justify-content: center; } }
.lo-hero-stat {
    padding: 10px 16px;
    border-left: 2px solid var(--lo-gold);
    background: rgba(251,191,36,0.04);
}
.lo-hero-stat-val {
    font-family: var(--lo-cinzel-d);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--lo-gold);
}
.lo-hero-stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
}

.lo-hero-turtle {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 40px rgba(251,191,36,0.2));
    animation: lo-float 7s ease-in-out infinite;
}
@keyframes lo-float {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) { .lo-hero-turtle { animation: none; } }

/* ─── BUTTONS ─── */
.lo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 2px;
    font-family: var(--lo-cinzel);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}
.lo-btn-gold {
    background: linear-gradient(135deg, var(--lo-gold), var(--lo-gold-soft));
    color: var(--lo-navy);
    box-shadow: 0 0 30px rgba(251,191,36,0.35);
}
.lo-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(251,191,36,0.55); }
.lo-btn-ghost {
    background: transparent;
    color: var(--lo-cream);
    border: 1px solid rgba(251,191,36,0.4);
}
.lo-btn-ghost:hover { border-color: var(--lo-gold); background: rgba(251,191,36,0.06); }

/* ─── SECTIONS ─── */
.lo-section { padding: 80px 0; position: relative; }
.lo-section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.lo-eyebrow {
    display: inline-block;
    font-family: var(--lo-cinzel);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--lo-red-bright);
    margin-bottom: 1rem;
}
.lo-section-title {
    font-family: var(--lo-cinzel-d);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--lo-cream);
    margin: 0 0 1rem;
    letter-spacing: 0.01em;
}
.lo-section-sub {
    color: rgba(245,240,232,0.65);
    line-height: 1.75;
    margin: 0;
}

/* ─── CALCULATOR ─── */
.lo-calc-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 36px;
    background: linear-gradient(180deg, rgba(153,27,27,0.06), rgba(251,191,36,0.03));
    border: 1px solid var(--lo-border);
    border-radius: 4px;
    position: relative;
}
.lo-calc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(251,191,36,0.08);
    margin: 8px;
    pointer-events: none;
    border-radius: 2px;
}
.lo-calc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
}
.lo-field-label {
    display: block;
    font-family: var(--lo-cinzel);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(251,191,36,0.7);
    margin-bottom: 8px;
}
.lo-input {
    width: 100%;
    padding: 14px 12px;
    text-align: center;
    font-family: var(--lo-cinzel-d);
    font-size: 1.2rem;
    color: var(--lo-cream);
    background: rgba(10,10,20,0.5);
    border: 1px solid rgba(251,191,36,0.25);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.25s;
    color-scheme: dark;
}
.lo-input:focus { border-color: var(--lo-gold); box-shadow: 0 0 0 3px rgba(251,191,36,0.12); }
.lo-error {
    display: none;
    color: #fca5a5;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    padding: 10px 14px;
    background: rgba(153,27,27,0.15);
    border: 1px solid rgba(153,27,27,0.35);
    border-radius: 2px;
}
.lo-submit {
    width: 100%;
    padding: 16px;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    position: relative;
    z-index: 1;
}

/* ─── 3x3 GRID ─── */
.lo-grid-wrap { max-width: 640px; margin: 0 auto; }
.loshu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    aspect-ratio: 1;
    padding: 14px;
    background:
        linear-gradient(180deg, rgba(251,191,36,0.04), rgba(153,27,27,0.04));
    border: 1px solid var(--lo-border);
}
.loshu-cell {
    position: relative;
    padding: 16px 12px;
    background: rgba(10,10,20,0.6);
    border: 1px solid rgba(251,191,36,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    min-height: 110px;
    transition: all 0.25s;
}
.loshu-cell.has-digits {
    border-color: rgba(251,191,36,0.35);
    background: linear-gradient(180deg, rgba(251,191,36,0.10), rgba(153,27,27,0.05));
    box-shadow: 0 0 25px rgba(251,191,36,0.12) inset;
}
.loshu-cell.is-missing {
    border-color: rgba(153,27,27,0.25);
    background: rgba(153,27,27,0.06);
    opacity: 0.7;
}
.loshu-cell-pos {
    font-family: var(--lo-cinzel-d);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--lo-gold);
    line-height: 1;
    text-shadow: 0 0 16px rgba(251,191,36,0.35);
}
.loshu-cell.is-missing .loshu-cell-pos {
    color: rgba(153,27,27,0.7);
    text-decoration: line-through;
    text-decoration-color: rgba(153,27,27,0.5);
}
.loshu-cell-digits {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}
.loshu-cell-chip {
    display: inline-flex;
    width: 20px; height: 20px;
    align-items: center;
    justify-content: center;
    font-family: var(--lo-cinzel);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lo-cream);
    background: var(--lo-red);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(220,38,38,0.4);
}
.loshu-cell-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    font-size: 0.62rem;
    text-align: center;
}
.loshu-cell-dir {
    font-family: var(--lo-cinzel);
    color: rgba(245,240,232,0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.loshu-cell-elem {
    color: rgba(245,240,232,0.4);
}

/* ─── DRIVER / CONDUCTOR ─── */
.loshu-dc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
@media (max-width: 720px) { .loshu-dc-grid { grid-template-columns: 1fr; } }
.loshu-dc-card {
    padding: 30px;
    background: linear-gradient(180deg, rgba(251,191,36,0.04), rgba(255,255,255,0.02));
    border: 1px solid var(--lo-border);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
.loshu-dc-card::before {
    content: '';
    position: absolute; inset: 0;
    border: 1px solid rgba(251,191,36,0.1);
    margin: 6px;
    pointer-events: none;
}
.loshu-dc-conductor::before { border-color: rgba(153,27,27,0.18); }
.loshu-dc-eyebrow {
    font-family: var(--lo-cinzel);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lo-red-bright);
    display: block;
    margin-bottom: 0.4rem;
}
.loshu-dc-num {
    font-family: var(--lo-cinzel-d);
    font-size: 4rem;
    font-weight: 900;
    color: var(--lo-gold);
    line-height: 1;
    text-shadow: 0 0 30px rgba(251,191,36,0.4);
    margin-bottom: 0.5rem;
}
.loshu-dc-conductor .loshu-dc-num {
    color: var(--lo-red-bright);
    text-shadow: 0 0 30px rgba(220,38,38,0.35);
}
.loshu-dc-arch {
    font-family: var(--lo-cinzel-d);
    font-size: 1.5rem;
    color: var(--lo-cream);
    margin: 0 0 0.5rem;
}
.loshu-dc-theme {
    font-family: var(--lo-cinzel);
    font-size: 0.85rem;
    color: rgba(251,191,36,0.75);
    letter-spacing: 0.06em;
    margin: 0 0 1rem;
}
.loshu-dc-desc {
    color: rgba(245,240,232,0.7);
    line-height: 1.75;
    font-size: 0.92rem;
    margin: 0 0 1.4rem;
}
.loshu-dc-sublabel {
    font-family: var(--lo-cinzel);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(251,191,36,0.65);
    margin: 1rem 0 0.6rem;
}

/* ─── TAGS ─── */
.loshu-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.loshu-tag {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 2px;
    background: rgba(251,191,36,0.08);
    border: 1px solid rgba(251,191,36,0.2);
    color: rgba(245,240,232,0.85);
}

/* ─── MISSING NUMBERS ─── */
.loshu-missing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
}
.loshu-missing-card {
    padding: 26px;
    background: linear-gradient(180deg, rgba(153,27,27,0.06), rgba(10,10,20,0.3));
    border: 1px solid rgba(153,27,27,0.3);
    border-radius: 4px;
}
.loshu-missing-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(251,191,36,0.15);
}
.loshu-missing-num {
    font-family: var(--lo-cinzel-d);
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    color: var(--lo-red-bright);
    text-decoration: line-through;
    text-decoration-color: rgba(153,27,27,0.6);
}
.loshu-missing-aspect {
    font-family: var(--lo-cinzel);
    font-size: 0.95rem;
    color: var(--lo-gold);
    margin: 0 0 2px;
}
.loshu-missing-dir {
    font-size: 0.78rem;
    color: rgba(245,240,232,0.5);
    margin: 0;
}
.loshu-missing-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245,240,232,0.75);
    margin: 0 0 1.2rem;
}
.loshu-remedy-box {
    padding: 16px;
    background: rgba(251,191,36,0.05);
    border: 1px solid rgba(251,191,36,0.18);
    border-radius: 3px;
}
.loshu-remedy-label {
    font-family: var(--lo-cinzel);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lo-gold);
    margin: 0 0 8px;
}
.loshu-remedy-text {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(245,240,232,0.78);
    margin: 0 0 12px;
}
.loshu-remedy-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(251,191,36,0.12);
}
@media (max-width: 480px) { .loshu-remedy-mini { grid-template-columns: 1fr; } }
.loshu-remedy-mini-cell { display: flex; flex-direction: column; gap: 2px; }
.loshu-remedy-mini-label {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(251,191,36,0.6);
    font-family: var(--lo-cinzel);
}
.loshu-remedy-mini-val {
    font-size: 0.78rem;
    color: rgba(245,240,232,0.85);
}
.loshu-no-missing,
.loshu-no-critical {
    text-align: center;
    color: rgba(245,240,232,0.6);
    font-style: italic;
}

/* ─── PLANES ─── */
.loshu-planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    max-width: 1180px;
    margin: 0 auto;
}
.loshu-plane-card {
    padding: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--lo-border);
    border-radius: 4px;
    transition: all 0.25s;
}
.loshu-plane-card.is-present {
    border-color: rgba(251,191,36,0.35);
    background: linear-gradient(180deg, rgba(251,191,36,0.08), rgba(10,10,20,0.2));
    box-shadow: 0 0 24px rgba(251,191,36,0.08);
}
.loshu-plane-card.is-absent {
    border-color: rgba(153,27,27,0.22);
    opacity: 0.85;
}
.loshu-plane-head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 1rem;
}
.loshu-plane-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}
.loshu-plane-name {
    font-family: var(--lo-cinzel-d);
    font-size: 1.15rem;
    color: var(--lo-cream);
    margin: 0 0 2px;
}
.loshu-plane-dir {
    font-family: var(--lo-cinzel);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
    margin: 0;
}
.loshu-plane-badge {
    margin-left: auto;
    font-family: var(--lo-cinzel);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    padding: 3px 10px;
    border-radius: 2px;
    text-transform: uppercase;
}
.loshu-plane-card.is-present .loshu-plane-badge {
    background: rgba(251,191,36,0.15);
    color: var(--lo-gold);
    border: 1px solid rgba(251,191,36,0.3);
}
.loshu-plane-card.is-absent .loshu-plane-badge {
    background: rgba(153,27,27,0.15);
    color: #fca5a5;
    border: 1px solid rgba(153,27,27,0.3);
}
.loshu-plane-text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(245,240,232,0.72);
    margin: 0;
}

/* ─── COMPATIBILITY ─── */
.loshu-compat-form {
    max-width: 560px;
    margin: 0 auto 2rem;
    padding: 28px;
    background: linear-gradient(180deg, rgba(153,27,27,0.05), rgba(10,10,20,0.3));
    border: 1px solid rgba(153,27,27,0.22);
    border-radius: 4px;
}
.loshu-compat-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px;
    background: linear-gradient(180deg, rgba(251,191,36,0.05), rgba(10,10,20,0.3));
    border: 1px solid rgba(251,191,36,0.22);
    border-radius: 4px;
}
.loshu-compat-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    gap: 14px;
}
.loshu-compat-title {
    font-family: var(--lo-cinzel-d);
    font-size: 1.4rem;
    margin: 0;
    color: var(--lo-cream);
}
.loshu-compat-score-val {
    font-family: var(--lo-cinzel-d);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--lo-gold);
    line-height: 1;
    text-shadow: 0 0 24px rgba(251,191,36,0.4);
}
.loshu-compat-score-label {
    font-family: var(--lo-cinzel);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
}
.loshu-compat-interp {
    font-size: 0.95rem;
    color: rgba(245,240,232,0.78);
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-style: italic;
}
.loshu-compat-rows { display: flex; flex-direction: column; gap: 18px; }
.loshu-compat-row {
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(251,191,36,0.12);
    border-radius: 3px;
}
.loshu-compat-row-label {
    font-family: var(--lo-cinzel);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lo-gold);
    margin: 0 0 8px;
}
.loshu-compat-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.loshu-compat-chip {
    display: inline-flex;
    width: 30px; height: 30px;
    align-items: center;
    justify-content: center;
    font-family: var(--lo-cinzel-d);
    font-weight: 700;
    color: var(--lo-gold);
    background: rgba(251,191,36,0.1);
    border: 1px solid rgba(251,191,36,0.3);
    border-radius: 2px;
}
.loshu-compat-row-empty {
    font-size: 0.85rem;
    color: rgba(245,240,232,0.5);
    font-style: italic;
    margin: 0 0 8px;
}
.loshu-compat-row-note {
    font-size: 0.78rem;
    color: rgba(245,240,232,0.55);
    margin: 0;
    line-height: 1.6;
}

/* ─── FENG SHUI REFERENCE ─── */
.loshu-fs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.loshu-fs-card {
    padding: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--lo-border);
    border-radius: 4px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}
.loshu-fs-card:hover {
    transform: translateY(-3px);
    border-color: var(--lo-border-hover);
}
.loshu-fs-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.loshu-fs-num {
    font-family: var(--lo-cinzel-d);
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--lo-gold);
    flex-shrink: 0;
    text-shadow: 0 0 20px rgba(251,191,36,0.35);
}
.loshu-fs-dir {
    font-family: var(--lo-cinzel);
    font-size: 0.85rem;
    color: var(--lo-cream);
    margin: 0 0 2px;
    letter-spacing: 0.06em;
}
.loshu-fs-elem {
    font-size: 0.72rem;
    color: rgba(245,240,232,0.55);
    margin: 0;
}
.loshu-fs-trigram {
    margin-left: auto;
    font-size: 1.8rem;
    color: rgba(251,191,36,0.5);
    line-height: 1;
}
.loshu-fs-aspect {
    font-family: var(--lo-cinzel);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: rgba(251,191,36,0.7);
    text-transform: uppercase;
    margin: 0 0 10px;
}
.loshu-fs-present {
    font-size: 0.86rem;
    line-height: 1.65;
    color: rgba(245,240,232,0.7);
    margin: 12px 0 10px;
}
.loshu-fs-meta {
    display: flex;
    gap: 8px;
    font-size: 0.72rem;
    margin-top: 4px;
}
.loshu-fs-meta-label {
    color: rgba(251,191,36,0.55);
    font-family: var(--lo-cinzel);
    letter-spacing: 0.06em;
    min-width: 72px;
}
.loshu-fs-meta-val {
    color: rgba(245,240,232,0.7);
}

/* ─── DIVIDER ─── */
.lo-divider {
    max-width: 640px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(251,191,36,0.3) 50%, transparent 100%);
    position: relative;
}
.lo-divider::after {
    content: '\u7AD9';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--lo-navy);
    padding: 0 16px;
    color: rgba(251,191,36,0.6);
    font-family: var(--lo-chinese);
    font-size: 0.85rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .lo-hero { padding: 110px 0 70px; }
    .lo-section { padding: 60px 0; }
    .lo-calc-card { padding: 24px; }
    .loshu-cell { min-height: 88px; padding: 12px 6px; }
    .loshu-cell-pos { font-size: 1.4rem; }
    .loshu-cell-chip { width: 16px; height: 16px; font-size: 0.65rem; }
    .loshu-cell-info { display: none; }
    .loshu-dc-card, .loshu-missing-card, .loshu-compat-card { padding: 22px; }
}
