/* =========================================================
   GLANCIT AI - MASTER STYLESHEET (OPTIMIZED & FULL RESPONSIVE)
========================================================= */

/* =========================
   [0] TOKENS / RESET & SCROLLBAR
========================= */
:root {
  --bg-base: #050709;
  --bg-panel: #0d1117;
  --bg-hover: #161b22;
  --border: #21262d;
  --text-main: #c9d1d9;
  --text-muted: #8b949e;

  --accent: #f5b300;
  --accent-hover: #ffca28;
  --accent-glow: rgba(245, 179, 0, 0.25);

  --long: #2ea043;
  --short: #f85149;
  
  --glass: rgba(13, 17, 23, 0.65);
  --glass-soft: rgba(255, 255, 255, 0.03);

  --shadow-sm: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.6);

  --radius: 16px;
  --radius-sm: 10px;

  --container: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', sans-serif; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: #30363d; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #484f58; }

body {
  background: var(--bg-base);
  background-image: 
    radial-gradient(1000px circle at 15% 0%, rgba(245,179,0,0.08), transparent 50%),
    radial-gradient(800px circle at 85% 20%, rgba(46,160,67,0.06), transparent 50%),
    radial-gradient(800px circle at 50% 100%, rgba(248,81,73,0.05), transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
ul { list-style: none; }
button { font-family: inherit; outline: none; border: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* =========================
   [1] UTILITIES & ANIMATIONS
========================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade { animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

.glass {
  background-color: var(--glass); border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}

.view-only { display: none !important; }
.index-only { display: block; }

@keyframes pulse-shimmer {
  0% { background-color: rgba(255, 255, 255, 0.02); }
  50% { background-color: rgba(255, 255, 255, 0.06); }
  100% { background-color: rgba(255, 255, 255, 0.02); }
}
.skeleton-box { height: 31px; border-color: transparent !important; animation: pulse-shimmer 1.5s infinite ease-in-out; pointer-events: none; }

@keyframes neon-pulse {
  0% { box-shadow: 0 0 5px rgba(255,170,0,0.2), inset 0 0 5px rgba(255,170,0,0.2); border-color: rgba(255,170,0,0.5); }
  50% { box-shadow: 0 0 20px rgba(255,170,0,0.8), inset 0 0 10px rgba(255,170,0,0.5); border-color: #ffaa00; }
  100% { box-shadow: 0 0 5px rgba(255,170,0,0.2), inset 0 0 5px rgba(255,170,0,0.2); border-color: rgba(255,170,0,0.5); }
}

/* =========================
   [2] TOP DISCLAIMER BAR
========================= */
.topbar {
  border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(5, 7, 9, 0.8);
  backdrop-filter: blur(10px); font-size: 12px; padding-top: env(safe-area-inset-top);
}
.topbar-inner { display: flex; gap: 12px; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; color: var(--text-muted); }
.topbar strong { color: #fff; font-weight: 800; letter-spacing: 0.5px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: #e6edf3; font-weight: 700; flex-shrink: 0;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }

/* =========================
   [3] SLIM TICKER STRIP 
========================= */
.slim-briefing-bar { background: #0d1117; border-bottom: 1px solid rgba(56, 139, 253, 0.2); padding: 6px 0; width: 100%; overflow: hidden; }
.slim-wrapper { margin: 0 auto; padding: 0 15px; display: flex; align-items: center; height: 24px; }
.slim-label {
  display: flex; align-items: center; gap: 6px; background: rgba(57, 211, 83, 0.1);
  padding: 2px 10px; border-radius: 4px; border: 1px solid rgba(57, 211, 83, 0.2); flex-shrink: 0; margin-right: 15px;
}
.slim-dot { width: 6px; height: 6px; background: #3fb950; border-radius: 50%; }
.label-long { color: #3fb950; font-size: 10px; font-weight: 900; }
.label-short { display: none; color: #3fb950; font-size: 10px; font-weight: 900; }
.slim-ticker-viewport { flex: 1; overflow: hidden; position: relative; mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
.slim-ticker-track{ display: flex; align-items: center; white-space: nowrap; will-change: transform; transform: translate3d(0,0,0); }
.ticker-text { color: #e6edf3; font-size: 13px; font-weight: 500; padding-right: 80px; flex: 0 0 auto; }
.slim-ticker-track.is-running{ animation-name: slimMarquee; animation-timing-function: linear; animation-iteration-count: infinite; animation-duration: var(--slim-dur) !important; }
@keyframes slimMarquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(var(--slim-marquee-to, -1000px),0,0); } }
@media (prefers-reduced-motion: reduce) { .slim-ticker-track.is-running { animation: none !important; transform: none !important; } }
.slim-meta { flex-shrink: 0; color: var(--text-muted); font-size: 10px; font-family: monospace; margin-left: 15px; border-left: 1px solid #30363d; padding-left: 12px; }

/* =========================
   [4] OLD TICKER & HEADER
========================= */
.strip { padding: 16px 0 0; }
.strip-wrap { border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; background: rgba(22, 27, 34, 0.5); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); }
.strip-inner { padding: 12px 16px; }
.strip-scroll { width: 100%; overflow: hidden; }
.strip-track { display: flex; flex-direction: column; gap: 5px; }
.strip-row { display: flex; align-items: center; gap: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px; }
.strip-row::-webkit-scrollbar { display: none; }
.strip-row > * { flex-shrink: 0; }
.strip-label { display: flex; align-items: center; gap: 6px; color: #7d8590; font-weight: 800; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding-right: 8px; white-space: nowrap; min-width: 85px; }
.strip-label .mini-dot { width: 5px; height: 5px; border-radius: 50%; background: #7d8590; transition: 0.3s ease; }
.strip-label.is-live .mini-dot { background: var(--accent); box-shadow: 0 0 8px var(--accent); } 
.quote { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 99px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); transition: 0.2s; cursor: default; white-space: nowrap; margin-right: 5px; }
.quote:last-child { margin-right: 0; }
.quote:hover { background: rgba(255,255,255,0.08); }
.quote b { font-size: 12px; color: #fff; font-weight: 700; }
.quote span.px { font-weight: 800; font-variant-numeric: tabular-nums; font-size: 13px; }
.quote span.pct { font-weight: 600; font-size: 11px; padding-left: 2px; }
.up { color: var(--long); } .down { color: var(--short); }

header { padding: 24px 0 16px; transition: padding 0.3s ease; }
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.brand { display: flex; flex-direction: column; gap: 4px; }
.logo { font-size: 26px; font-weight: 900; letter-spacing: -1px; color: #fff; line-height: 1; }
.logo span { color: var(--accent); }
.subtag { font-size: 13px; color: var(--text-muted); font-weight: 500; }
nav { display: flex; gap: 8px; flex-wrap: wrap; }
.navlink { font-size: 13px; font-weight: 700; color: var(--text-muted); padding: 8px 16px; border-radius: 99px; background: rgba(255,255,255,0.03); border: 1px solid transparent; transition: 0.2s; }
.navlink:hover,.navlink.active  { color: #000; background: var(--accent); box-shadow: 0 4px 15px var(--accent-glow); }

/* =========================
   [5] REFERRAL VIP BANNER
========================= */
.referral {
  margin-top: 20px; border-radius: var(--radius); padding: 24px; border: 1px solid rgba(245,179,0,0.35);
  background: linear-gradient(135deg, rgba(20,24,32,0.82) 0%, rgba(10,12,16,0.92) 100%);
  box-shadow: var(--shadow-lg), inset 0 0 40px rgba(245,179,0,0.05); position: relative; overflow: hidden;
}
.referral::before { content:''; position:absolute; top:-50%; left:-50%; width:200%; height:200%; background: radial-gradient(circle, rgba(245,179,0,0.08) 0%, transparent 60%); animation: rotate 20s linear infinite; pointer-events:none; z-index:0; }
.referral::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 35%), radial-gradient(800px 400px at 90% 10%, rgba(245,179,0,0.12), transparent 60%); pointer-events:none; z-index:0; }
@keyframes rotate { 100% { transform: rotate(360deg); } }

.ref-inner { position:relative; display:flex; gap:20px; align-items:center; justify-content:space-between; z-index:1; }
.ref-left { flex:1; }
.ref-brand { display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:10px; position:relative; z-index:1; }
.ref-brand-left { display:flex; align-items:center; gap:10px; }
.ref-brand-logo { width:34px; height:34px; object-fit:contain; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45)); }
.ref-brand-text { display:flex; flex-direction:column; line-height:1.1; }
.ref-brand-title { color:#fff; font-weight:900; letter-spacing:-0.2px; font-size:14px; }
.ref-brand-sub { color: rgba(255,255,255,0.55); font-weight:700; font-size:11px; }

.ref-verified {
  display:inline-flex; align-items:center; gap:8px; padding:7px 12px; border-radius:999px;
  background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.9); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:0.6px; box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}
.ref-verified .dot { width:8px; height:8px; border-radius:50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(245,179,0,0.18), 0 0 20px rgba(245,179,0,0.35); }

.ref-badges { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:12px; }
.badge { display:inline-flex; align-items:center; gap:6px; padding:6px 12px; border-radius:999px; background: rgba(0,0,0,0.4); border: 1px solid rgba(245,179,0,0.2); color: var(--accent); font-weight:800; font-size:11px; letter-spacing:0.5px; text-transform:uppercase; }
.badge .b-ic { display:inline-flex; align-items:center; justify-content:center; width:16px; height:16px; border-radius:6px; background: rgba(245,179,0,0.10); border: 1px solid rgba(245,179,0,0.18); font-size:11px; font-weight:900; }

.ref-title { font-size:22px; font-weight:900; color:#fff; line-height:1.3; letter-spacing:-0.5px; margin-bottom:8px; }
.ref-desc { color: var(--text-muted); font-size:14px; font-weight:500; max-width: 600px; }
.ref-note { display:inline-block; margin-left:6px; color: rgba(255,255,255,0.50); font-weight:600; }

.ref-right { display:flex; flex-direction:column; gap:12px; min-width:320px; }
.ref-box { border-radius: var(--radius-sm); padding:16px; background: rgba(0,0,0,0.40); border: 1px solid rgba(255,255,255,0.10); display:flex; gap:16px; align-items:center; justify-content:space-between; }
.ref-box--bitget { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); background: radial-gradient(700px 300px at 20% 0%, rgba(245,179,0,0.15), transparent 60%), rgba(0,0,0,0.42); }
.ref-watermark { position:absolute; right:-16px; top:-10px; width:140px; height:140px; opacity:0.08; transform: rotate(12deg); pointer-events:none; }
.ref-watermark img { width:100%; height:100%; object-fit:contain; filter: blur(0.2px); }

.ref-code { display:flex; flex-direction:column; gap:2px; position:relative; z-index:1; }
.ref-code small { color: var(--text-muted); font-weight:600; font-size:11px; text-transform:uppercase; letter-spacing:1px; }
.ref-code-row { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.ref-code strong { color:#fff; font-weight:900; font-size:20px; letter-spacing:1.5px; text-shadow: 0 8px 24px rgba(0,0,0,0.55); }
.ref-chip { display:inline-flex; align-items:center; justify-content:center; padding:6px 10px; border-radius:999px; background: rgba(245,179,0,0.12); border: 1px solid rgba(245,179,0,0.25); color: var(--accent); font-size:11px; font-weight:900; letter-spacing:0.6px; text-transform:uppercase; }
.ref-meta { margin-top:6px; color: rgba(255,255,255,0.60); font-size:12px; font-weight:600; }

.ref-actions { display:flex; gap:8px; position:relative; z-index:1; }
.btn-primary { background: var(--accent); color: #000; padding: 10px 16px; border-radius: 8px; font-weight: 800; font-size: 13px; cursor: pointer; transition: 0.2s; border: none; box-shadow: 0 4px 15px var(--accent-glow); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.05); color:#fff; border: 1px solid rgba(255,255,255,0.15); padding: 10px 14px; border-radius: 8px; font-weight: 700; font-size: 13px; cursor: pointer; transition: 0.2s; }
.btn-ghost:hover { background: rgba(255,255,255,0.10); transform: translateY(-2px); }
.btn-primary .arr { display:inline-block; margin-left:4px; transition: transform .2s ease; }
.btn-primary:hover .arr { transform: translateX(3px); }

.ref-mini { display:flex; gap:8px; flex-wrap:wrap; }
.ref-mini .pill { padding:7px 10px; border-radius:999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); font-size:11px; font-weight:700; }

.ref-toast {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%) translateY(10px);
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 999px;
  background: rgba(0,0,0,0.72); border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 12px 30px rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.92); font-size: 12px; font-weight: 800; letter-spacing: 0.2px;
  opacity: 0; pointer-events: none; z-index: 2; transition: opacity .18s ease, transform .18s ease; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.ref-toast-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(245,179,0,0.16); }
.ref-toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================
   [6] GLOBAL SENTIMENT NOTE
========================= */
.global-sentiment-note {
  margin-top: 24px; padding: 14px 20px; border-radius: 12px; background: rgba(245, 179, 0, 0.05); border: 1px solid rgba(245, 179, 0, 0.2); display: flex; align-items: center; gap: 10px;
}
.global-sentiment-note svg { flex-shrink: 0; fill: var(--accent); }
.global-sentiment-note p { font-size: 13px; font-weight: 600; color: var(--text-main); margin: 0; line-height: 1.4; }
.global-sentiment-note b { color: var(--accent); }

/* =========================
   [7] MAIN GRIDS & PANELS
========================= */
main { padding-bottom: 40px; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 16px; align-items: start; }
.panel { border-radius: var(--radius); padding: 20px; }
.panel-head, .preview-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.panel-head > div, .preview-head > div { flex: 1; }
.panel-title h2 { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; }
.panel-title h2 .live { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); flex-shrink: 0; }
.panel-title p { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 4px; }

.viewall { font-size: 12px; font-weight: 700; color: var(--text-muted); padding: 6px 12px; border-radius: 99px; border: 1px solid rgba(255,255,255,0.1); transition: 0.2s; flex-shrink: 0; white-space: nowrap; margin-top: 2px; }
.viewall:hover { color: #000; background: var(--accent); border-color: var(--accent); }

.cards { display: flex; flex-direction: column; gap: 16px; }
.card { border-radius: var(--radius-sm); padding: 16px; border: 1px solid rgba(255,255,255,0.06); background: rgba(22, 27, 34, 0.4); transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); box-shadow: var(--shadow-sm); background: rgba(22, 27, 34, 0.8); }
.card.flashy-new { animation: neon-pulse 2s infinite; border: 1px solid #ffaa00 !important; transform: translateY(-2px); transition: all 0.3s ease; }
.cards .card:first-child { border: 1px solid rgba(255, 189, 46, 0.6) !important; box-shadow: 0 0 20px rgba(255, 189, 46, 0.1) !important; position: relative; }
.cards .card:first-child::before { content: 'NEW'; position: absolute; top: -10px; right: 15px; background: #ffbd2e; color: #000; font-size: 10px; font-weight: 900; padding: 2px 8px; border-radius: 10px; }

.card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.time { color: var(--text-muted); font-weight: 600; font-size: 12px; }
.chips { display: flex; gap: 6px; }
.chip { padding: 4px 8px; border-radius: 6px; font-size: 10px; font-weight: 800; background: rgba(255,255,255,0.05); color: #c9d1d9; }
.chip.ai { background: rgba(245,179,0,0.15); color: var(--accent); }

.title { color: #fff; font-weight: 800; font-size: 16px; line-height: 1.4; margin-bottom: 12px; }
.ai-box { border-radius: 8px; padding: 14px; background: rgba(0,0,0,0.3); border-left: 3px solid var(--accent); margin-bottom: 16px; }
.ai-line { display: flex; gap: 10px; align-items: flex-start; }
.ai-tag { background: var(--accent); color: #000; font-size: 10px; font-weight: 900; padding: 2px 6px; border-radius: 4px; line-height: 1.2; flex-shrink: 0; }
.ai-text { font-size: 13.5px; color: #b1bac4; font-weight: 500; line-height: 1.6; }

.ai-sent-wrapper { margin-bottom: 12px; }
.sent-row { display: flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.4); padding: 8px 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }
.thumb-box { width: 26px; height: 26px; border-radius: 6px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.thumb-box svg { width: 14px; height: 14px; }
.thumb-box.up svg { fill: var(--long); } .thumb-box.down svg { fill: var(--short); }

.sent-meter { flex: 1; height: 6px; border-radius: 99px; background: rgba(255,255,255,0.1); position: relative; margin: 0 4px; }
.sent-fill { position: absolute; left: 0; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--long), var(--short)); width: 100%; }
.sent-knob { position: absolute; top: 50%; transform: translate(-50%,-50%); width: 14px; height: 14px; border-radius: 50%; background: #fff; box-shadow: 0 0 6px rgba(0,0,0,0.6); border: 2px solid #000; }
.sent-label { font-size: 13px; font-weight: 800; min-width: 55px; text-align: right; }
.sent-label.bull { color: var(--long); } .sent-label.bear { color: var(--short); } .sent-label.neu { color: var(--text-muted); }

.card-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.05); }
.source { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.read { font-size: 12px; font-weight: 700; color: var(--accent); }
.read:hover { text-decoration: underline; }

.loadmore-wrap { display: none; margin-top: 16px; }
.btn-more { width: 100%; padding: 14px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.03); border: 1px dashed rgba(255,255,255,0.2); color: #fff; font-weight: 700; cursor: pointer; transition: 0.2s; }
.btn-more:hover { background: rgba(255,255,255,0.08); border-style: solid; }
.btn-more.view-all-mode { background: rgba(245, 179, 0, 0.1); border: 1px solid var(--accent); color: var(--accent); }
.btn-more.view-all-mode:hover { background: var(--accent); color: #000; }

.ai-view-detail-btn {
  display: inline-block; background: rgba(59, 130, 246, 0.1); color: #58a6ff;
  border: 1px solid rgba(59, 130, 246, 0.3); padding: 10px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 800; text-decoration: none; transition: all 0.2s ease;
  width: 100%; text-align: center; margin-top: 8px;
}
.ai-view-detail-btn:hover { background: rgba(59, 130, 246, 0.2); color: #fff; transform: translateY(-2px); }

/* =========================
   [8] PREVIEW & SECTION DIVIDER
========================= */
.section-divider { margin: 40px 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); border: 0; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.preview-panel { border-radius: var(--radius); padding: 20px; }
.preview-head h3 { font-size: 15px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px; }
.p-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); flex-shrink: 0; }
.pine .p-dot { background: var(--long); box-shadow: 0 0 8px var(--long); }
.preview-sub { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 4px; }

.tile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tile { border-radius: var(--radius-sm); padding: 16px; background: rgba(22, 27, 34, 0.4); border: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; justify-content: space-between; min-height: 140px; transition: 0.3s; }
.tile:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); background: rgba(22, 27, 34, 0.8); }
.tile-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.t-pill { padding: 4px 8px; border-radius: 4px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.entry .t-pill { background: rgba(245,179,0,0.15); color: var(--accent); }
.pine .t-pill { background: rgba(46,160,67,0.15); color: var(--long); }
.tile-meta { font-size: 11px; font-weight: 600; color: var(--text-muted); }
.tile h4 { font-size: 14px; font-weight: 800; color: #fff; line-height: 1.4; margin-bottom: 8px; }
.tile p { font-size: 12px; color: #8b949e; line-height: 1.5; }
.tile-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.05); }
.openbtn { font-size: 12px; font-weight: 700; color: #c9d1d9; }
.openbtn:hover { color: #fff; }

/* =========================
   [9] BOTTOM MARKET AREA 
========================= */
.bottom-area { margin-top: 40px; }
.bottom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.macro, .mkt { border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; }
.macro h3, .mkt h3 { font-size: 15px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px; }
.macro h3 .live, .mkt h3 .live { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.macro .ev-name { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 4px; line-height: 1.3; }
.macro .ev-desc { font-size: 13px; color: var(--text-muted); font-weight: 500; margin-bottom: 20px; }

.timer { margin-top: 6px; margin-bottom: 12px; }
.timer .big { font-size: 34px; font-weight: 900; color: var(--accent); font-variant-numeric: tabular-nums; line-height: 1; display: flex; align-items: baseline; gap: 8px; }
.time-unit { font-size: 16px; font-weight: 700; color: var(--text-muted); margin-left: 2px; text-transform: lowercase; }

.upcoming-events { margin-top: auto; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 16px; }
.upc-title { font-size: 11px; font-weight: 800; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.upc-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,0.05); }
.upc-row:last-child { border-bottom: none; padding-bottom: 0; }
.upc-name { font-size: 13px; font-weight: 700; color: #c9d1d9; }
.upc-time { font-size: 12px; font-weight: 600; color: var(--text-muted); }

.mkt-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mkt-toggle { font-size: 12px; font-weight: 700; color: var(--text-muted); background: rgba(255,255,255,0.05); padding: 6px 12px; border-radius: 99px; cursor: pointer; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.stat { border-radius: var(--radius-sm); padding: 16px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); text-align: center; }
.stat .lab { font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.stat .val { font-size: 24px; font-weight: 900; color: #fff; }
.stat .sub { font-size: 12px; font-weight: 600; margin-top: 4px; }
.mini-dashboard { border-radius: var(--radius-sm); padding: 16px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); margin-top: auto; }
.mini-dashboard .hint { font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.cond-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cond-row:last-child { border-bottom: none; padding-bottom: 0; }
.cond-row b { font-size: 13px; font-weight: 700; color: #c9d1d9; }
.cond-row span { font-size: 13px; font-weight: 600; color: #fff; }
.tag-up { color: var(--long) !important; } .tag-down { color: var(--short) !important; }

.ls-panel { margin-top: 24px; border-radius: var(--radius); padding: 20px; }
.ls-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.ls-top h3 { font-size: 15px; font-weight: 900; color: #fff; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.ls-top h3 .live { width: 8px; height: 8px; border-radius: 50%; background: var(--long); box-shadow: 0 0 8px var(--long); }
.legend { display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); font-weight: 600; }
.leg-dot { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }
.leg-long { background: var(--long); } .leg-short { background: var(--short); }
.ls-list { display: grid; grid-template-columns: 1fr; gap: 8px; }
.ls-row { display: flex; align-items: center; gap: 16px; padding: 10px 16px; border-radius: var(--radius-sm); background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); transition: 0.2s; }
.ls-row:hover { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); }
.coin { width: 70px; display: flex; flex-direction: column; }
.coin b { font-size: 14px; font-weight: 800; color: #fff; }
.coin small { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.barwrap { flex: 1; height: 24px; border-radius: 4px; display: flex; overflow: hidden; background: rgba(255,255,255,0.05); }
.bar { height: 100%; display: flex; align-items: center; padding: 0 8px; font-size: 11px; font-weight: 800; color: #fff; white-space: nowrap; }
.bar.long { background: linear-gradient(90deg, #1e6b2c, var(--long)); justify-content: flex-start; min-width: 48px; }
.bar.short { background: linear-gradient(90deg, var(--short), #a0312b); justify-content: flex-end; min-width: 48px; }

/* =========================
   [10] LIVE CHAT (TROLLBOX) & VIP BANNER
========================= */
.chat-toggle-btn {
  position: fixed; bottom: 25px; right: 25px; width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6); color: #fff; border: none;
  box-shadow: 0 4px 15px rgba(59,130,246,0.4); cursor: pointer; z-index: 9999; display: flex;
  align-items: center; justify-content: center; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.chat-toggle-btn:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 25px rgba(59,130,246,0.6); }

.chat-panel {
  position: fixed; bottom: 95px; right: 25px; width: 340px; height: 520px; 
  display: flex; flex-direction: column; z-index: 9998; background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  opacity: 0; pointer-events: none; transform: translateY(20px) scale(0.95); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); overflow: hidden;
}
.chat-panel.active { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }

.chat-header { padding: 15px 18px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.02); font-weight: 700; font-size: 15px; color: #fff; }
.chat-header button { background: none; border: none; color: #8b949e; font-size: 26px; line-height: 1; cursor: pointer; transition: 0.2s; }
.chat-header button:hover { color: #ff5f56; transform: scale(1.1); }

.chat-vip-banner { background: linear-gradient(90deg, rgba(35, 134, 54, 0.2), rgba(59, 130, 246, 0.15)); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 12px 15px; display: flex; justify-content: space-between; align-items: center; }
.vip-content { display: flex; align-items: center; gap: 10px; }
.vip-icon { font-size: 18px; animation: pulse-glow 2s infinite; }
.vip-text { display: flex; flex-direction: column; }
.vip-text strong { color: #58a6ff; font-size: 13px; font-weight: 800; line-height: 1.2; }
.vip-text span { color: #8b949e; font-size: 10px; margin-top: 2px; }
.vip-btn { background: #238636; color: #fff; border: none; padding: 6px 10px; border-radius: 6px; font-size: 11px; font-weight: bold; cursor: pointer; transition: 0.2s; box-shadow: 0 0 10px rgba(35,134,54,0.3); }
.vip-btn:hover { background: #2ea043; box-shadow: 0 0 15px rgba(35,134,54,0.6); transform: translateY(-1px); }

.chat-messages { flex: 1; overflow-y: auto; padding: 15px; display: flex; flex-direction: column; gap: 16px; font-size: 13px; scroll-behavior: smooth; }
.chat-messages::-webkit-scrollbar { width: 5px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
.chat-msg { display: flex; flex-direction: column; animation: fadeIn 0.3s ease; }
.chat-msg-head { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.chat-msg-nick { font-weight: 700; color: #a5d6ff; font-size: 12px; }
.chat-msg-time { font-size: 10px; color: #6e7681; }
.chat-msg-body { color: #e6edf3; line-height: 1.5; word-break: break-word; background: rgba(255,255,255,0.06); padding: 10px 14px; border-radius: 0 12px 12px 12px; width: fit-content; max-width: 90%; border: 1px solid rgba(255,255,255,0.03); }

.chat-input-area { display: flex; gap: 8px; padding: 12px 15px; border-top: 1px solid rgba(255,255,255,0.05); background: rgba(0,0,0,0.2); }
#chatNickname { width: 65px; text-align: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 10px 5px; border-radius: 8px; font-size: 12px; outline: none; transition: 0.2s; }
#chatInput { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 10px 12px; border-radius: 8px; font-size: 13px; outline: none; transition: 0.2s; }
#chatInput:focus, #chatNickname:focus { border-color: #58a6ff; background: rgba(255,255,255,0.08); }
#chatSendBtn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: #3b82f6; color: #fff; border: none; border-radius: 8px; cursor: pointer; transition: 0.2s; flex-shrink: 0; }
#chatSendBtn:hover { background: #58a6ff; transform: scale(1.05); }

/* =========================
   [11] BOARD LIST PAGE (board.php)
========================= */
.board-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #3b82f6; padding-bottom: 15px; margin-top: 0; }
.board-header h1 { margin: 0; color: #fff; font-size: 28px; }

.board-list { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.board-list-item { padding: 25px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; transition: 0.2s; }
.board-list-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }

.board-item-inner { display: flex; gap: 25px; align-items: flex-start; }
.board-item-thumb { flex-shrink: 0; width: 180px; height: 110px; border-radius: 12px; overflow: hidden; display: block; border: 1px solid rgba(255,255,255,0.05); }
.board-item-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.board-list-item:hover .board-item-thumb img { transform: scale(1.05); }

.board-item-body { flex: 1; min-width: 0; }
.board-item-title { margin: 0 0 12px 0; color: #fff; font-size: 20px; line-height: 1.4; transition: color 0.2s; }
.board-list-item:hover .board-item-title { color: #58a6ff; }
.board-item-desc { margin: 0 0 20px 0; color: #9ca3af; font-size: 15px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.board-item-footer { display: flex; justify-content: space-between; align-items: center; color: #6b7280; font-size: 13px; gap: 10px; flex-wrap: wrap; }
.board-item-meta { display: flex; gap: 15px; align-items: center; }
.board-item-meta .time { color: #60a5fa; font-weight: 600; }
.board-item-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.board-badge { background: rgba(255,255,255,0.08); color: #e5e7eb; padding: 4px 10px; border-radius: 6px; }
.board-origin-link { color: #3b82f6; text-decoration: none; font-weight: bold; border-left: 1px solid rgba(255,255,255,0.1); padding-left: 12px; transition: 0.2s; }
.board-origin-link:hover { color: #60a5fa; text-decoration: underline; }

.board-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 40px 0; flex-wrap: wrap; }
.board-pagination a { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 12px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; color: rgba(255, 255, 255, 0.7); font-size: 14px; font-weight: 700; text-decoration: none; transition: all 0.2s ease; }
.board-pagination a:hover { background: rgba(255, 255, 255, 0.15); color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.board-pagination a.active { background: #f0b90b; color: #14151a; border-color: #f0b90b; pointer-events: none; }

/* =========================
   [12] POST VIEW PAGE (post.php)
========================= */
.post-back-link { color: #3b82f6; text-decoration: none; display: inline-block; margin-bottom: 25px; font-weight: 600; font-size: 15px; transition: 0.2s; }
.post-back-link:hover { color: #60a5fa; transform: translateX(-5px); }

.post-article { background: rgba(255,255,255,0.02); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05);}
.post-title { color: #fff; margin: 0 0 25px 0; line-height: 1.3; font-size: 32px; font-weight: 800; }

.post-meta-bar { color: #9ca3af; font-size: 14px; margin-bottom: 35px; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; display: flex; justify-content: space-between; align-items: center; gap: 15px; flex-wrap: wrap; }
.post-meta-left { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; }
.post-meta-time { color: #60a5fa; font-weight: 700; }
.post-source-badge { background: rgba(59, 130, 246, 0.15); color: #60a5fa; padding: 5px 12px; border-radius: 6px; font-weight: 600; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; }

.post-thumb { margin-bottom: 40px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.post-thumb img { width: 100%; max-height: 500px; object-fit: cover; display: block; }

.post-content { line-height: 1.9; font-size: 18px; color: #d1d5db; word-break: break-word; }
.post-content p { margin-bottom: 25px; }
.post-content a { color: #3b82f6; text-decoration: none; border-bottom: 1px solid rgba(59, 130, 246, 0.3); transition: 0.2s; }
.post-content a:hover { background: rgba(59, 130, 246, 0.1); }
.post-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 20px 0; }

.post-cta { margin-top: 50px; padding: 35px; background: rgba(35, 134, 54, 0.05); border: 1px solid rgba(35, 134, 54, 0.15); border-radius: 16px; text-align: center; }
.post-cta h4 { margin: 0 0 15px 0; color: #fff; font-size: 18px; }
.post-cta-btn { display: inline-block; background: #238636; color: #fff; padding: 14px 32px; border-radius: 10px; text-decoration: none; font-weight: 800; font-size: 15px; transition: 0.2s; }
.post-cta-btn:hover { background: #2ea043; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(35,134,54,0.3); }

/* =========================
   [13] FOOTER
========================= */
footer { padding: 40px 20px; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 12px; text-align: center; }
footer p { max-width: 800px; margin: 0 auto; line-height: 1.6; }

/* =========================================================
   [14] PC / TABLET RESPONSIVE (MAX-WIDTH 980PX)
========================================================= */
@media (max-width: 980px) {
  .grid, .grid2, .bottom-grid { grid-template-columns: 1fr; }
  .ref-right { width: 300px; }
}

/* =========================================================
   [15] 🔥 FULL MOBILE UI/UX ENHANCEMENTS (MAX-WIDTH 768PX)
   (모바일 환경에서 태평양 여백 제거 및 폰트 사이즈 극단적 압축)
========================================================= */
@media (max-width: 768px) {
    
    /* Global Container & Main Spacing */
    .container { padding: 0 15px !important; }
    main { padding-top: 10px !important; padding-bottom: 20px !important; }

    /* Header & Navigation (Tighter) */
    header { padding: 12px 0 8px !important; }
    .logo { font-size: 22px !important; }
    .subtag { font-size: 11px !important; }
    .navlink { padding: 6px 12px !important; font-size: 12px !important; }
    nav { gap: 6px !important; }

    /* Slim Ticker */
    .strip { padding: 8px 0 0 !important; }
    .label-long { display: none; }
    .label-short { display: inline; }
    .slim-meta { display: none; }
    .slim-wrapper { padding: 0 10px; }
    .ticker-text { font-size: 12px; }
    .slim-ticker-track { animation-duration: 5s !important; }

    /* Layout Resets */
    .topbar-inner { flex-direction: column; align-items: flex-start; padding-top: 12px !important; padding-bottom: 12px !important; gap: 8px !important; }
    .strip-label { display: none; }
    .header-inner { flex-direction: column; align-items: flex-start; gap: 12px !important; }
    .hide-on-mobile { display: none !important; }
    .show-on-mobile { display: block !important; }
    .grid, .grid2, .bottom-grid, .tile-grid, .stats { grid-template-columns: 1fr !important; gap: 16px !important; margin-top: 10px !important; }

    /* Common Panels & Sections */
    .panel, .preview-panel, .macro, .mkt, .ls-panel { padding: 16px !important; }
    .panel-title h2, .preview-head h3, .macro h3, .mkt h3, .ls-top h3 { font-size: 14px !important; }
    .section-divider { margin: 24px 0 !important; }

    /* Referral VIP Banner (Compact) */
    .referral { margin-top: 10px !important; padding: 16px !important; }
    .ref-inner { flex-direction: column; align-items: stretch; gap: 16px !important; }
    .ref-right { width: 100%; min-width: auto; gap: 10px !important; }
    .ref-brand { flex-direction: column; align-items: flex-start; gap: 10px !important; margin-bottom: 6px !important; }
    .ref-brand-logo { width: 28px !important; height: 28px !important; }
    .ref-title { font-size: 18px !important; margin-bottom: 6px !important; }
    .ref-desc { font-size: 13px !important; line-height: 1.4 !important; }
    .ref-verified { align-self: flex-start; padding: 5px 10px !important; font-size: 10px !important; }
    .ref-box { flex-direction: column; align-items: stretch; padding: 12px !important; gap: 12px !important; }
    .ref-code strong { font-size: 18px !important; }
    .ref-actions { justify-content: stretch; display: grid; grid-template-columns: 1fr 1fr; }
    .btn-primary, .btn-ghost { padding: 8px 0 !important; text-align: center; font-size: 12px !important; }

    /* AI News Cards (Tighter Spacing & Font) */
    .cards { gap: 12px !important; }
    .card { padding: 12px !important; }
    .card-top { flex-direction: column; align-items: flex-start; gap: 6px !important; margin-bottom: 8px !important; }
    .title { font-size: 14px !important; margin-top: 0 !important; margin-bottom: 8px !important; line-height: 1.35 !important; }
    .chips { flex-wrap: wrap; gap: 4px !important; }
    .chip { font-size: 9px !important; padding: 2px 6px !important; }
    
    /* AI Box & Sentiment Adjustments */
    .ai-box { padding: 10px 12px !important; margin-bottom: 10px !important; }
    .ai-line { display: block !important; }
    .ai-tag { display: inline-block !important; vertical-align: middle; margin-right: 6px; margin-bottom: 2px; font-size: 9px !important; padding: 2px 5px !important; top: -1px; position: relative; }
    .ai-text { font-size: 12px !important; line-height: 1.5 !important; }
    .sent-row { padding: 6px 10px !important; }
    .sent-label { font-size: 11px !important; min-width: 40px !important; }
    .card-bottom { padding-top: 10px !important; }

    /* Global Sentiment Note */
    .global-sentiment-note { margin-top: 12px !important; padding: 10px 14px !important; }
    .global-sentiment-note p { font-size: 12px !important; }

    /* Bottom Market Area (Macro / Stats) */
    .timer .big { font-size: 24px !important; gap: 4px !important; }
    .time-unit { font-size: 12px !important; }
    .macro .ev-name { font-size: 18px !important; margin-bottom: 2px !important; }
    .macro .ev-desc { font-size: 12px !important; margin-bottom: 16px !important; }
    .stat { padding: 12px !important; }
    .stat .val { font-size: 20px !important; }
    .stat .sub { font-size: 11px !important; }
    .ls-row { padding: 8px 12px !important; gap: 10px !important; }
    .coin b { font-size: 13px !important; }

    /* Board List Page (board.php) */
    .board-header { margin-top: 12px !important; padding-bottom: 10px !important; border-bottom-width: 1px !important; }
    .board-header h1 { font-size: 20px !important; }
    .board-list { margin-top: 12px !important; gap: 12px !important; }
    .board-list-item { padding: 12px !important; border-radius: 12px !important; }
    .board-item-inner { flex-direction: column; gap: 10px !important; }
    .board-item-thumb { width: 100% !important; height: 140px !important; border-radius: 8px !important; }
    .board-item-title { font-size: 16px !important; margin-bottom: 6px !important; line-height: 1.3 !important; }
    .board-item-desc { font-size: 13px !important; margin-bottom: 12px !important; line-height: 1.5 !important; -webkit-line-clamp: 2 !important; }
    .board-item-footer { flex-direction: column; align-items: flex-start; gap: 8px !important; font-size: 12px !important; }
    .board-item-meta { gap: 10px !important; }
    .board-origin-link { border-left: none !important; padding-left: 0 !important; }
    .board-pagination { margin: 20px 0 !important; }
    .board-pagination a { min-width: 32px !important; height: 32px !important; font-size: 12px !important; padding: 0 8px !important; }

    /* Post Detail Page (post.php) */
    .post-article { padding: 16px !important; border-radius: 12px !important; }
    .post-back-link { font-size: 13px !important; margin-bottom: 16px !important; }
    .post-title { font-size: 20px !important; margin-bottom: 12px !important; line-height: 1.35 !important; }
    .post-meta-bar { flex-direction: column; align-items: flex-start; gap: 8px !important; padding-bottom: 12px !important; margin-bottom: 16px !important; font-size: 12px !important; }
    .post-meta-left { gap: 10px !important; }
    .post-thumb { margin-bottom: 16px !important; border-radius: 10px !important; }
    .post-content { font-size: 14.5px !important; line-height: 1.6 !important; }
    .post-content p { margin-bottom: 16px !important; }
    .post-cta { padding: 20px 15px !important; margin-top: 30px !important; }
    .post-cta h4 { font-size: 16px !important; margin-bottom: 12px !important; }
    .post-cta-btn { width: 100% !important; padding: 12px 0 !important; font-size: 14px !important; box-sizing: border-box; text-align: center; }

    /* Trollbox Chat Panel */
    .chat-panel { width: calc(100% - 30px) !important; height: 65vh !important; bottom: 85px !important; right: 15px !important; }
    .chat-toggle-btn { width: 50px !important; height: 50px !important; bottom: 20px !important; right: 15px !important; }
}