/* ================================================================
   Thần Số Học — Frontend CSS v2
   Màu: Indigo huyền bí #5b21b6 → #7c3aed, accent gold #f59e0b
================================================================ */
:root {
    --tsh-purple:  #7c3aed;
    --tsh-indigo:  #5b21b6;
    --tsh-gold:    #f59e0b;
    --tsh-dark:    #1e1b4b;
    --tsh-darker:  #16143a;
    --tsh-grad:    linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #a855f7 100%);
    --tsh-grad-gold: linear-gradient(135deg, #7c3aed 0%, #f59e0b 100%);
    --tsh-soft:    #f5f3ff;
    --tsh-border:  #ddd6fe;
}

.tsh-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1e293b;
    max-width: 960px;
    margin: 0 auto;
}

/* ── Form Section ───────────────────────────────────────────── */
.tsh-form-section {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--tsh-border);
    box-shadow: 0 4px 24px rgba(124,58,237,.08);
    padding: 32px 28px;
    margin-bottom: 20px;
}

.tsh-form-header { text-align: center; margin-bottom: 24px; }
.tsh-main-title {
    font-size: 1.7rem; font-weight: 800;
    background: var(--tsh-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px;
    line-height: 1.3;
}

/* ── Chọn số nhanh ──────────────────────────────────────────── */
.tsh-quick-pick-wrap {
    background: var(--tsh-soft);
    border: 1px solid var(--tsh-border);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 20px;
    text-align: center;
}
.tsh-quick-pick-label {
    font-size: .875rem; color: #64748b;
    font-style: italic; margin: 0 0 14px;
}
.tsh-so-grid {
    display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.tsh-so-btn {
    min-width: 50px; height: 50px;
    padding: 0 10px;
    border: 2px solid var(--tsh-purple);
    background: #fff; color: var(--tsh-purple);
    border-radius: 50px;
    font-size: .9rem; font-weight: 800;
    cursor: pointer; transition: all .2s;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(124,58,237,.15);
    line-height: 1;
}
.tsh-so-btn:hover {
    background: var(--tsh-grad); color: #fff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(124,58,237,.35);
}

/* ── Divider ────────────────────────────────────────────────── */
.tsh-divider {
    display: flex; align-items: center; gap: 12px;
    margin: 18px 0; color: #94a3b8;
    font-size: .72rem; font-weight: 700; letter-spacing: 2px;
}
.tsh-divider::before, .tsh-divider::after {
    content: ''; flex: 1; height: 1px; background: #e2e8f0;
}

/* ── Stats ──────────────────────────────────────────────────── */
.tsh-stats-row {
    display: flex; justify-content: center;
    gap: 24px; margin-bottom: 18px; flex-wrap: wrap;
}
.tsh-stat { font-size: .875rem; color: #64748b; }

/* ── Fields ─────────────────────────────────────────────────── */
.tsh-form-fields { margin-bottom: 18px; }
.tsh-field       { margin-bottom: 14px; }
.tsh-field label {
    display: block; font-weight: 700;
    font-size: .875rem; color: #374151; margin-bottom: 8px;
}
.tsh-input {
    width: 100%; border: 2px solid #e2e8f0;
    border-radius: 10px; padding: 12px 16px;
    font-size: .9rem; outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}
.tsh-input:focus {
    border-color: var(--tsh-purple);
    box-shadow: 0 0 0 3px rgba(124,58,237,.12);
}

/* ── Submit ─────────────────────────────────────────────────── */
.tsh-submit-btn {
    width: 100%; background: var(--tsh-grad);
    color: #fff; border: none; border-radius: 12px;
    padding: 16px; font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: opacity .2s, transform .1s;
    box-shadow: 0 4px 20px rgba(124,58,237,.35);
}
.tsh-submit-btn:hover  { opacity: .92; transform: translateY(-1px); }
.tsh-submit-btn:active { transform: translateY(0); }

/* ── Disclaimer ─────────────────────────────────────────────── */
.tsh-disclaimer { font-size: .78rem; color: #94a3b8; line-height: 1.6; margin-top: 16px; }

/* ── Loading ────────────────────────────────────────────────── */
.tsh-loading { text-align: center; padding: 60px 20px; }
.tsh-orb-pulse { font-size: 3.5rem; display: inline-block; animation: tshFloat 2s ease-in-out infinite; }
@keyframes tshFloat {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-8px) scale(1.05); }
}
.tsh-loading-title { font-size: 1.1rem; font-weight: 700; color: var(--tsh-purple); margin: 18px 0 4px; }
.tsh-loading-sub   { font-size: .875rem; color: #64748b; margin: 0 0 20px; }
.tsh-loading-bar   { width: 240px; height: 5px; background: #e2e8f0; border-radius: 3px; margin: 0 auto; overflow: hidden; }
.tsh-loading-fill  { height: 100%; background: var(--tsh-grad); animation: tshLoad 2s ease-in-out infinite; }
@keyframes tshLoad { 0%{width:0;margin-left:0} 50%{width:70%;margin-left:0} 100%{width:0;margin-left:100%} }

/* ── Error ──────────────────────────────────────────────────── */
.tsh-error-box {
    text-align: center; padding: 40px;
    background: #fff; border: 1px solid #fca5a5; border-radius: 14px;
}
.tsh-error-box p { color: #ef4444; margin: 10px 0 14px; }
.tsh-error-box button {
    background: #ef4444; color: #fff; border: none;
    border-radius: 8px; padding: 9px 22px; cursor: pointer;
}

/* ── Result wrap ────────────────────────────────────────────── */
.tsh-result { position: relative; margin-top: 20px; }

/* Blur TẤT CẢ nội dung bên trong locked section — ngoại trừ overlay */
.tsh-result.is-locked .tsh-locked-section > *:not(.tsh-section-lock-overlay) {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}
/* Hiện per-section overlay khi locked */
.tsh-result.is-locked .tsh-locked-section > .tsh-section-lock-overlay {
    display: flex;
}

/* ── Per-section lock overlay — nằm giữa section ───────────── */
.tsh-section-lock-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.45);
    z-index: 5;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}
.tsh-section-lock-box {
    background: rgba(30,27,74,.92);
    border: 1px solid rgba(124,58,237,.3);
    border-radius: 12px;
    padding: 14px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(91,33,182,.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 220px;
    width: 85%;
}
.tsh-section-lock-icon { font-size: 1.4rem; display: block; }
.tsh-section-lock-box p {
    font-size: .78rem; color: rgba(255,255,255,.8);
    margin: 0; line-height: 1.4;
}
.tsh-unlock-btn {
    background: var(--tsh-grad); color: #fff; border: none;
    border-radius: 6px; padding: 7px 16px;
    font-size: .78rem; font-weight: 700; cursor: pointer;
    white-space: nowrap; transition: opacity .2s;
}
.tsh-unlock-btn:hover { opacity: .9; }

/* Blur mạnh hơn cho dark card để không đọc được số */
.tsh-result.is-locked .tsh-locked-section > .tsh-dark-card {
    filter: blur(8px) !important;
}

/* ── Reanalyze ──────────────────────────────────────────────── */
.tsh-reanalyze-wrap { text-align: center; margin-top: 24px; }
.tsh-reanalyze-btn  {
    background: var(--tsh-soft); color: var(--tsh-purple);
    border: 2px solid var(--tsh-border); border-radius: 10px;
    padding: 11px 28px; font-size: .9rem; font-weight: 700; cursor: pointer;
    transition: all .2s;
}
.tsh-reanalyze-btn:hover { background: #ede9fe; }

/* ══════════════════════════════════════════════════════════════
   QUICK RESULT
══════════════════════════════════════════════════════════════ */
.tsh-quick-result { }
.tsh-quick-header { text-align: center; margin-bottom: 18px; }
.tsh-quick-title  {
    font-size: 1.35rem; font-weight: 800;
    background: var(--tsh-grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin: 0;
}

.tsh-quick-card {
    background: linear-gradient(135deg, var(--tsh-soft) 0%, #fff 100%);
    border: 1.5px solid var(--tsh-border);
    border-radius: 16px; padding: 20px 22px; margin-bottom: 4px;
    box-shadow: 0 2px 12px rgba(124,58,237,.08);
}
.tsh-quick-card-top { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.tsh-quick-so-badge {
    width: 60px; height: 60px; flex-shrink: 0;
    background: var(--tsh-grad); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; font-weight: 800;
    box-shadow: 0 4px 16px rgba(124,58,237,.4);
}
.tsh-quick-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tsh-quick-tag  {
    background: #ede9fe; color: var(--tsh-purple);
    font-size: .75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px;
}
.tsh-quick-mo-ta { font-size: .9rem; color: #475569; line-height: 1.7; margin: 0; }

.tsh-quick-section { margin-bottom: 4px; }
.tsh-quick-section-inner {
    padding: 20px 0; border-top: 1px solid #f1f5f9;
}
.tsh-section-label     { font-size: .75rem; color: #94a3b8; margin-bottom: 4px; letter-spacing: .5px; }
.tsh-quick-section-title {
    font-size: 1.05rem; font-weight: 800; color: #1e293b; margin: 0 0 12px;
    display: flex; align-items: center; gap: 8px;
}
.tsh-quick-sub-title  {
    font-size: .95rem; font-weight: 700; color: var(--tsh-indigo);
    margin: 14px 0 8px; padding-bottom: 6px;
    border-bottom: 2px solid var(--tsh-border);
}
.tsh-quick-text  { font-size: .9rem; color: #475569; line-height: 1.75; margin: 0 0 10px; }
.tsh-quick-sub   { font-size: .85rem; color: #64748b; margin: 0 0 8px; font-style: italic; }
.tsh-quick-list  { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.tsh-quick-list li {
    font-size: .875rem; color: #475569; padding: 6px 10px 6px 30px;
    position: relative; line-height: 1.6;
    background: #fafafa; border-radius: 6px;
}
.tsh-quick-list li::before {
    content: '✦'; color: var(--tsh-gold);
    position: absolute; left: 10px; font-size: .7rem; top: 8px;
}

/* Tương hợp */
.tsh-compat-item {
    display: flex; align-items: flex-start; gap: 12px;
    background: #fafafa; border-radius: 10px;
    padding: 10px 14px; margin-bottom: 8px;
}
.tsh-compat-good { border-left: 3px solid #22c55e; }
.tsh-compat-bad  { border-left: 3px solid var(--tsh-gold); }
.tsh-compat-so {
    width: 34px; height: 34px; flex-shrink: 0;
    background: var(--tsh-grad); color: #fff;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-weight: 800; font-size: .9rem;
}
.tsh-compat-item p { font-size: .875rem; color: #475569; margin: 4px 0 0; line-height: 1.6; }

/* Nghề */
.tsh-nghe-item { margin-bottom: 8px; font-size: .875rem; color: #475569; padding: 6px 10px; background: #fafafa; border-radius: 6px; }
.tsh-nghe-item strong { color: var(--tsh-indigo); }

/* Số tương hợp */
.tsh-so-tuong-hop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin-top: 12px; }
.tsh-sth-card {
    background: linear-gradient(135deg, var(--tsh-soft), #fff);
    border: 1.5px solid var(--tsh-border); border-radius: 12px;
    padding: 16px; text-align: center;
    box-shadow: 0 2px 8px rgba(124,58,237,.08);
}
.tsh-sth-so    { font-size: 2rem; font-weight: 800; color: var(--tsh-purple); }
.tsh-sth-label { font-size: .72rem; color: #94a3b8; margin-bottom: 6px; }
.tsh-sth-mo-ta { font-size: .8rem; color: #64748b; line-height: 1.5; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   FULL RESULT (2 cột)
══════════════════════════════════════════════════════════════ */
.tsh-full-title {
    font-size: 1.4rem; font-weight: 800; text-align: center;
    margin-bottom: 20px;
    background: var(--tsh-grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tsh-two-col {
    display: grid; grid-template-columns: 250px 1fr;
    gap: 20px; align-items: flex-start;
}

/* ── Sidebar ────────────────────────────────────────────────── */
.tsh-sidebar {
    background: #fff; border: 1px solid var(--tsh-border);
    border-radius: 16px; padding: 16px;
    position: sticky; top: 80px;
    box-shadow: 0 2px 12px rgba(124,58,237,.06);
}
.tsh-sidebar-title {
    font-size: .8rem; font-weight: 700; color: #94a3b8;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.tsh-menu-row {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 10px; border-radius: 8px;
    cursor: pointer; transition: all .15s;
    font-size: .83rem; color: #475569;
}
.tsh-menu-row:hover { background: var(--tsh-soft); color: var(--tsh-purple); }
.tsh-menu-active {
    background: #ede9fe !important; color: var(--tsh-purple) !important;
    font-weight: 700; border-left: 3px solid var(--tsh-purple);
}
.tsh-menu-icon  { font-size: .85rem; flex-shrink: 0; width: 18px; }
.tsh-menu-label { flex: 1; }
.tsh-menu-lock  { font-size: .7rem; color: #94a3b8; flex-shrink: 0; }
.tsh-menu-arrow { font-size: .65rem; color: #94a3b8; flex-shrink: 0; transition: transform .2s; }
.tsh-arrow-down { transform: rotate(180deg); }
.tsh-menu-child { padding-left: 30px; font-size: .8rem; }
.tsh-menu-children { overflow: hidden; }
.tsh-menu-group { margin-bottom: 2px; }

/* ── Content ────────────────────────────────────────────────── */
.tsh-content { min-width: 0; }

/* Dark card tổng quan */
.tsh-dark-card {
    background: linear-gradient(160deg, var(--tsh-darker) 0%, var(--tsh-dark) 50%, #2d1b69 100%);
    border-radius: 18px; padding: 28px 24px;
    margin-bottom: 16px; color: #fff; text-align: center;
    box-shadow: 0 8px 32px rgba(91,33,182,.4);
    position: relative; overflow: hidden;
}
.tsh-dark-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(168,85,247,.2) 0%, transparent 60%);
    pointer-events: none;
}
.tsh-dark-name     { font-size: 1.4rem; font-weight: 800; margin: 0 0 4px; }
.tsh-dark-ngaysinh { font-size: .875rem; color: #a5b4fc; margin: 0 0 22px; }

.tsh-so-chu-dao-circle {
    width: 120px; height: 120px;
    border: 2px solid rgba(168,85,247,.5);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    margin: 0 auto 22px;
    background: rgba(168,85,247,.15);
    box-shadow: 0 0 30px rgba(168,85,247,.3);
}
.tsh-so-chu-dao-num   { font-size: 3rem; font-weight: 800; line-height: 1; }
.tsh-so-chu-dao-label { font-size: .6rem; color: #a5b4fc; letter-spacing: 3px; margin-top: 4px; }

.tsh-chi-so-mini-grid {
    display: flex; gap: 8px; flex-wrap: wrap;
    justify-content: center; margin-bottom: 20px;
}
.tsh-chi-so-mini {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px; padding: 8px 12px; text-align: center; min-width: 68px;
}
.tsh-csmini-label { font-size: .65rem; color: #a5b4fc; margin-bottom: 3px; }
.tsh-csmini-val   { font-size: 1.35rem; font-weight: 800; color: #fff; }

/* ── Content sections (scroll) ──────────────────────────────── */
.tsh-content-section { margin-bottom: 20px; }

/* Section card — background trắng, bo góc, shadow nhẹ */
.tsh-section-card {
    background: #fff;
    border: 1px solid var(--tsh-border);
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 2px 12px rgba(124,58,237,.06);
    margin-top: 14px;
}
.tsh-section-card-title {
    font-size: 1rem; font-weight: 800; color: var(--tsh-indigo);
    margin: 0 0 16px; padding-bottom: 10px;
    border-bottom: 2px solid var(--tsh-border);
    display: flex; align-items: center; gap: 8px;
}

.tsh-chart-wrap { height: 180px; margin-top: 8px; }

/* Panel body */
.tsh-panel-title {
    font-size: 1.05rem; font-weight: 800; color: var(--tsh-indigo);
    margin: 0 0 16px; padding-bottom: 10px;
    border-bottom: 2px solid var(--tsh-border);
    display: flex; align-items: center; gap: 8px;
}
.tsh-panel-body { }
.tsh-panel-text { font-size: .9rem; color: #475569; line-height: 1.75; margin: 0 0 12px; }

/* Chỉ số block */
.tsh-cs-block {
    background: #fff; border: 1px solid var(--tsh-border);
    border-radius: 14px; padding: 18px 20px; margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(124,58,237,.05);
    transition: box-shadow .2s;
}
.tsh-cs-block:hover { box-shadow: 0 4px 16px rgba(124,58,237,.12); }
.tsh-cs-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.tsh-cs-so {
    width: 50px; height: 50px; flex-shrink: 0;
    background: var(--tsh-grad); color: #fff;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.4rem; font-weight: 800;
    box-shadow: 0 3px 12px rgba(124,58,237,.4);
}
.tsh-cs-label { font-size: .72rem; color: #94a3b8; display: block; letter-spacing: .5px; }
.tsh-cs-name  { font-size: .95rem; font-weight: 700; color: #1e293b; display: block; margin: 3px 0 7px; }
.tsh-cs-tags  { display: flex; gap: 5px; flex-wrap: wrap; }
.tsh-tag      {
    background: #ede9fe; color: var(--tsh-purple);
    font-size: .72rem; font-weight: 700; padding: 2px 9px; border-radius: 20px;
}
.tsh-cs-mota  { font-size: .875rem; color: #475569; line-height: 1.75; margin: 0 0 12px; }
.tsh-cs-list  { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.tsh-cs-list li {
    font-size: .875rem; color: #475569;
    padding: 6px 10px 6px 28px; position: relative;
    background: var(--tsh-soft); border-radius: 6px; line-height: 1.5;
}
.tsh-cs-list li::before {
    content: '✦'; color: var(--tsh-gold);
    position: absolute; left: 9px; font-size: .65rem; top: 8px;
}

/* Generic section */
.tsh-generic-row   { display: flex; gap: 10px; margin-bottom: 10px; font-size: .875rem; align-items: flex-start; }
.tsh-generic-key   { font-weight: 700; color: var(--tsh-indigo); flex-shrink: 0; min-width: 120px; }
.tsh-generic-val   { color: #475569; line-height: 1.6; }
.tsh-generic-group { margin-bottom: 16px; }
.tsh-generic-group-title {
    font-weight: 700; font-size: .9rem; color: #1e293b;
    margin-bottom: 8px; padding: 6px 0;
    border-bottom: 1px solid var(--tsh-border);
}
.tsh-generic-list  { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.tsh-generic-li    {
    font-size: .875rem; color: #475569;
    padding: 6px 10px 6px 26px; position: relative;
    background: var(--tsh-soft); border-radius: 6px;
}
.tsh-generic-li::before { content: '✦'; color: var(--tsh-gold); position: absolute; left: 9px; font-size: .65rem; top: 8px; }
.tsh-generic-block { margin-bottom: 8px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .tsh-two-col { grid-template-columns: 1fr; }
    .tsh-sidebar { position: static; }
    .tsh-form-section { padding: 20px 16px; }
}
@media (max-width: 480px) {
    .tsh-main-title { font-size: 1.3rem; }
    .tsh-so-btn { width: 42px; height: 42px; font-size: .85rem; }
    .tsh-chi-so-mini-grid { gap: 6px; }
}

/* ── Quick hero card ────────────────────────────────────────── */
.tsh-quick-hero-card   { border-radius: 16px 16px 0 0 !important; border-bottom: none !important; }
.tsh-quick-free-section { border-radius: 0 0 16px 16px !important; margin-bottom: 16px; }
.tsh-quick-ten-goi { font-size: 1rem; font-weight: 800; color: #1e293b; margin: 0 0 8px; }

/* ── Nghe grid ──────────────────────────────────────────────── */
.tsh-nghe-grid { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.tsh-nghe-item { background: var(--tsh-soft); border-radius: 8px; padding: 9px 12px; font-size: .875rem; }
.tsh-nghe-item strong { display: block; color: var(--tsh-indigo); font-size: .8rem; margin-bottom: 2px; font-weight: 700; }
.tsh-nghe-item span { color: #475569; }

/* ── Global lock overlay (cách top 70px) ───────────────────── */
.tsh-lock-overlay-global {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    top: 70px;
    z-index: 20;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,.65) 8%);
    border-radius: 0 0 16px 16px;
}
.tsh-lock-box-global {
    background: #1e1b4b;
    border-radius: 16px;
    padding: 28px 40px;
    text-align: center;
    max-width: 380px;
    width: 94%;
    box-shadow: 0 16px 48px rgba(91,33,182,.35);
}
.tsh-lock-box-global .tsh-lock-icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.tsh-lock-box-global .tsh-lock-msg  { font-size: .9rem; color: #c4b5fd; margin: 0 0 18px; line-height: 1.5; }
.tsh-unlock-btn-global {
    background: var(--tsh-grad); color: #fff; border: none;
    border-radius: 10px; padding: 11px 28px;
    font-size: .95rem; font-weight: 700; cursor: pointer;
    box-shadow: 0 4px 16px rgba(124,58,237,.35); transition: opacity .2s;
}
.tsh-unlock-btn-global:hover { opacity: .9; }

/* ── Loading box ────────────────────────────────────────────── */
.tsh-lock-loading-anim  { font-size: 2.8rem; display: block; margin-bottom: 12px; animation: tshFloat 1.5s ease-in-out infinite; }
.tsh-lock-loading-title { font-size: 1rem; font-weight: 800; color: #fff; margin: 0 0 5px; }
.tsh-lock-loading-sub   { font-size: .85rem; color: rgba(255,255,255,.65); margin: 0 0 16px; }
.tsh-lock-bar { width: 200px; height: 5px; background: rgba(255,255,255,.2); border-radius: 3px; margin: 0 auto; overflow: hidden; }
.tsh-lock-bar-fill { height: 100%; background: var(--tsh-grad); border-radius: 3px; animation: tshBarAnim 1.8s ease-in-out infinite; }
@keyframes tshBarAnim { 0%{width:0;margin-left:0} 50%{width:70%;margin-left:0} 100%{width:0;margin-left:100%} }

/* ══════════════════════════════════════════════════════════════
   QUICK MODE — Wrapper + Overlay
══════════════════════════════════════════════════════════════ */

/* Wrapper bọc toàn bộ sections */
.tsh-quick-wrapper {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    overflow: hidden;
}

/* Mỗi section card bên trong có border xám nhẹ */
.tsh-quick-wrapper .tsh-section-card {
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 1px solid #e2e8f0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}
.tsh-quick-wrapper .tsh-section-card:first-of-type { border-radius: 16px 16px 0 0 !important; }
.tsh-quick-wrapper .tsh-section-card:last-of-type  { border-bottom: none !important; border-radius: 0 0 16px 16px !important; }

/* Blur nội dung khi locked */
.tsh-result.is-locked .tsh-quick-blurred {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

/* Overlay nằm trong wrapper, cách top 70px */
.tsh-quick-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    top: 70px;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 8%);
    border-radius: 0 0 16px 16px;
}

/* Box trong overlay */
.tsh-quick-overlay-box {
    background: var(--tsh-dark, #1e1b4b);
    border-radius: 14px;
    padding: 24px 36px;
    text-align: center;
    max-width: 360px;
    width: 90%;
    box-shadow: 0 12px 40px rgba(91,33,182,.3);
}
.tsh-quick-overlay-box p {
    font-size: .875rem;
    color: #c4b5fd;
    margin: 0 0 16px;
    line-height: 1.5;
}
.tsh-quick-overlay-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 10px;
}

/* Loading state */
.tsh-quick-overlay-loading {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
    animation: tshFloat 1.5s ease-in-out infinite;
}
.tsh-quick-overlay-loading-title {
    font-size: .95rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
}
.tsh-quick-overlay-loading-sub {
    font-size: .8rem;
    color: rgba(255,255,255,.65);
    margin: 0 0 14px;
}
