/* ═══════════════════════════════════════════════════════════════
   ĐẠI LỤC NHÂM - THIÊN VIÊN ĐỊA PHƯƠNG
   Grand Six Ren Divination Styles
   ═══════════════════════════════════════════════════════════════ */

/* ─── Bàn Thức Grid Layout ─────────────────────────────────── */
.ban-thuc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.ban-thuc-grid::before {
    content: '地 盤';
    position: absolute;
    top: -28px;
    right: 0;
    font-size: 0.75rem;
    color: #95a5a6;
}

.cung-cell {
    border: 1px solid #bdc3c7;
    padding: 8px;
    min-height: 140px;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
}

.cung-cell:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
    z-index: 10;
}

.cung-cell.center-cell {
    background: linear-gradient(135deg, #fef9e7, #fdebd0);
    border: 2px solid #f39c12;
    min-height: 160px;
}

/* ─── Thiên bàn / Địa bàn chi ──────────────────────────────── */
.thien-dia-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.thien-chi-badge {
    background: #3498db;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

.dia-chi-badge {
    background: #e8e8e8;
    color: #555;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* ─── Thần Tướng ────────────────────────────────────────────── */
.than-tuong-box {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
    margin: 4px 0;
}

.than-dai_cat { background: #d5f5e3; color: #1e8449; border-left: 3px solid #27ae60; }
.than-cat { background: #eafaf1; color: #27ae60; border-left: 3px solid #82e0aa; }
.than-trung { background: #fef9e7; color: #7d6608; border-left: 3px solid #f9e79f; }
.than-hung { background: #fdedec; color: #cb4335; border-left: 3px solid #e74c3c; }
.than-dai_hung,
.than-đại_hung { background: #f9ebea; color: #922b21; border-left: 3px solid #c0392b; }
.than-đại_cát { background: #d5f5e3; color: #1e8449; border-left: 3px solid #27ae60; }

/* ─── Ngũ Hành badges ───────────────────────────────────────── */
.hanh-badge {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}
.hanh-Kim { background: #e0e0e0; color: #424242; }
.hanh-Moc,
.hanh-Mộc { background: #d5f5e3; color: #1e8449; }
.hanh-Thuy,
.hanh-Thủy { background: #d6eaf8; color: #2874a6; }
.hanh-Hoa,
.hanh-Hỏa { background: #fadbd8; color: #cb4335; }
.hanh-Tho,
.hanh-Thổ { background: #fff3cd; color: #7d6608; }

/* ─── Cung footer & hướng badge ─────────────────────────────── */
.cung-footer {
    margin-top: auto;
    border-top: 1px dashed #ddd;
    padding-top: 4px;
    font-size: 0.72rem;
    color: #888;
    text-align: center;
}

.huong-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: #fff;
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 0.68rem;
    white-space: nowrap;
}

/* ─── Nature colors ─────────────────────────────────────────── */
.nature-đại_cát,
.nature-dai_cat { color: #1abc9c; font-weight: bold; }
.nature-cát,
.nature-cat { color: #27ae60; font-weight: bold; }
.nature-trung { color: #f39c12; }
.nature-hung { color: #e74c3c; font-weight: bold; }
.nature-đại_hung,
.nature-dai_hung { color: #c0392b; font-weight: bold; }

