/* ============================================================
   coin.css  —  Coin Detail Page Styles
   Usage: <link rel="stylesheet" href="/assets/coin.css">
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #0a0c12;
  --surface: #111420;
  --border:  #1e2235;
  --border2: #252840;
  --text:    #e8eaf6;
  --muted:   #6b7280;
  --accent:  #5b6ef5;
  --green:   #00d4aa;
  --red:     #ff4d6d;
  --yellow:  #f5c842;
  --mono:    'Space Mono', monospace;
  --sans:    'Syne', sans-serif;
  --radius:  12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(91,110,245,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,110,245,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.wrapper {
  position: relative; z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
  overflow-x: hidden;
}

/* ── Global Stats Bar ────────────────────────────────────────────────────── */
.ticker-bar {
  position: relative; z-index: 10;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Arrow scroll buttons — hidden by default, shown by JS only when content overflows */
.gb-arrow {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: #fff;
  font-size: 13px;
  display: none;           /* JS sets to "flex" when needed */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 6px;
  transition: background .2s, transform .15s;
  z-index: 2;
  line-height: 1;
  user-select: none;
}
.gb-arrow:hover  { background: #4a5de0; transform: scale(1.1); }
.gb-arrow:active { transform: scale(.95); }

.global-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 4px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  scroll-behavior: smooth;
}
.global-bar-inner::-webkit-scrollbar { display: none; }

.gb-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--muted);
  white-space: nowrap;
  padding: 0 16px;
  flex-shrink: 0;
}

.gb-item strong {
  color: var(--text);
  font-weight: 700;
}

.gb-sep {
  color: var(--border2);
  font-size: 14px;
  flex-shrink: 0;
}

.gb-pct {
  font-size: 11px;
  font-weight: 700;
  margin-left: 4px;
}
.gb-pct.up   { color: var(--green); }
.gb-pct.down { color: var(--red); }

.ticker-loading { padding: 0 20px; font-size: 12px; color: var(--muted); font-family: var(--mono); }

/* ── Header ───────────────────────────────────────────────────────────────── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 24px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }

.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--accent), var(--green));
  border-radius: 9px;
  display: grid; place-items: center;
  font-size: 16px;
}

.logo-text { font-size: 20px; font-weight: 800; }
.logo-text span { color: var(--accent); }

.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted); font-family: var(--mono);
}
.breadcrumb a         { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover   { color: var(--accent); }
.breadcrumb .sep      { opacity: .4; }
.breadcrumb .current  { color: var(--text); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}

.coin-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }

.coin-logo   { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.coin-title  { display: flex; flex-direction: column; gap: 3px; }
.coin-title h1 { font-size: 26px; font-weight: 800; }
.coin-meta   { display: flex; align-items: center; gap: 8px; }

.sym-badge {
  background: var(--border2); border-radius: 6px; padding: 2px 8px;
  font-size: 12px; font-family: var(--mono); color: var(--muted); text-transform: uppercase;
}
.rank-badge {
  background: rgba(91,110,245,.15); color: var(--accent);
  border-radius: 6px; padding: 2px 8px; font-size: 12px; font-family: var(--mono);
}

.price-block { margin-bottom: 20px; }

.main-price {
  font-size: 42px; font-weight: 800; font-family: var(--mono); line-height: 1; margin-bottom: 8px;
}

.price-changes { display: flex; gap: 10px; flex-wrap: wrap; }

.pct-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 6px;
  font-size: 12px; font-family: var(--mono); font-weight: 700;
}
.pct-chip.up      { background: rgba(0,212,170,.12); color: var(--green); }
.pct-chip.down    { background: rgba(255,77,109,.12); color: var(--red); }
.pct-chip.neutral { background: var(--border); color: var(--muted); }
.pct-chip .label  { font-weight: 400; opacity: .7; font-size: 11px; }

.buy-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; background: var(--accent); color: #fff;
  border: none; border-radius: 10px; font-size: 14px; font-weight: 700;
  font-family: var(--sans); cursor: pointer; transition: background .2s, transform .15s;
}
.buy-btn:hover { background: #4a5de0; transform: translateY(-1px); }

.links-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }

.ext-link {
  display: inline-flex; align-items: center; gap: 5px; padding: 6px 12px;
  border: 1px solid var(--border2); border-radius: 8px; font-size: 12px;
  color: var(--muted); text-decoration: none; background: var(--surface);
  transition: border-color .2s, color .2s;
}
.ext-link:hover { border-color: var(--accent); color: var(--accent); }

/* ── Chart ────────────────────────────────────────────────────────────────── */
.chart-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  display: flex; flex-direction: column; height: 360px;
}

.chart-svg-wrap { flex: 1; min-height: 0; width: 100%; height: 100%; }

.chart-tabs {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 12px; flex-wrap: wrap;
}

.chart-type-tabs {
  display: flex; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden; flex-shrink: 0;
}

.chart-tab-btn {
  padding: 6px 14px; font-size: 13px; font-weight: 600; font-family: var(--sans);
  background: none; border: none; color: var(--text); cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.chart-tab-btn:hover  { color: #fff; }
.chart-tab-btn.active {
  background: var(--surface); color: #fff;
  box-shadow: inset 0 0 0 1px var(--border2); border-radius: 7px;
}

.chart-range-tabs { display: flex; gap: 2px; }

.chart-range-btn {
  padding: 5px 10px; font-size: 12px; font-weight: 600; font-family: var(--mono);
  background: none; border: none; color: var(--text); cursor: pointer;
  border-radius: 6px; transition: all .2s;
}
.chart-range-btn:hover  { color: #fff; background: var(--border); }
.chart-range-btn.active { background: var(--accent); color: #fff; }

.chart-body { flex: 1; position: relative; min-height: 0; }

.chart-loading {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
}

.chart-spinner {
  width: 28px; height: 28px; border: 3px solid var(--border2);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

#tvWrap { border-radius: 8px; overflow: hidden; }

/* ── Stats Grid ───────────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px; margin-bottom: 24px;
}

.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
}

.stat-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); margin-bottom: 6px;
}

.stat-value {
  font-weight: 700; font-family: var(--mono);
  font-size: clamp(11px, 2vw, 16px);
  word-break: break-all; overflow-wrap: break-word;
}
.stat-value.up   { color: var(--green); }
.stat-value.down { color: var(--red); }

.supply-bar-wrap { margin-top: 6px; }
.supply-bar-bg   { height: 4px; background: var(--border2); border-radius: 2px; overflow: hidden; margin-top: 6px; }
.supply-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--green)); border-radius: 2px; }

/* ── Description ──────────────────────────────────────────────────────────── */
.desc-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px; margin-bottom: 24px;
}
.desc-title {
  font-size: 14px; font-weight: 700; margin-bottom: 10px;
  color: var(--muted); text-transform: uppercase; letter-spacing: .06em;
}
.desc-text { font-size: 14px; line-height: 1.75; color: rgba(232,234,246,.75); }

.desc-html p            { margin-bottom: 14px; }
.desc-html p:last-child { margin-bottom: 0; }
.desc-html ul, .desc-html ol { margin: 10px 0 14px 20px; }
.desc-html li           { margin-bottom: 6px; line-height: 1.7; }
.desc-html h1, .desc-html h2, .desc-html h3, .desc-html h4
                        { font-weight: 700; color: var(--text); margin: 20px 0 8px; font-size: 15px; }
.desc-html a            { color: var(--accent); text-decoration: none; }
.desc-html a:hover      { text-decoration: underline; }
.desc-html strong, .desc-html b { color: var(--text); font-weight: 700; }

.desc-structured h2, .desc-structured h3 {
  font-size: 16px; font-weight: 700; color: var(--text);
  margin: 24px 0 10px; padding-bottom: 6px; border-bottom: 1px solid var(--border);
}
.desc-structured h2:first-child, .desc-structured h3:first-child { margin-top: 0; }
.desc-structured p  { margin-bottom: 12px; color: rgba(232,234,246,.8); line-height: 1.75; }
.desc-structured ul { margin: 8px 0 14px 20px; }
.desc-structured li { margin-bottom: 6px; color: rgba(232,234,246,.8); line-height: 1.7; }

/* ── Performance ──────────────────────────────────────────────────────────── */
.perf-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px; margin-bottom: 24px;
}
.perf-title {
  font-size: 14px; font-weight: 700; margin-bottom: 14px;
  color: var(--muted); text-transform: uppercase; letter-spacing: .06em;
}
.perf-grid   { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
.perf-col    { text-align: center; }
.perf-period {
  font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em;
  padding: 8px 0; border-bottom: 1px solid var(--border); margin-bottom: 8px;
}
.perf-val         { font-family: var(--mono); font-size: 14px; font-weight: 700; }
.perf-val.up      { color: var(--green); }
.perf-val.down    { color: var(--red); }
.perf-val.neutral { color: var(--muted); }

/* ── ATH / ATL ────────────────────────────────────────────────────────────── */
.ath-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }

.ath-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
}
.ath-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 6px; }
.ath-price { font-size: 20px; font-weight: 700; font-family: var(--mono); margin-bottom: 3px; }
.ath-date  { font-size: 11px; color: var(--muted); font-family: var(--mono); }

/* ── Error ────────────────────────────────────────────────────────────────── */
.error-box     { text-align: center; padding: 80px 20px; }
.error-box h2  { font-size: 24px; margin-bottom: 10px; color: var(--red); }
.error-box p   { color: var(--muted); }

/* ── Buy Modal ────────────────────────────────────────────────────────────── */
.buy-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.buy-modal-overlay.open { opacity: 1; pointer-events: auto; }

.buy-modal {
  background: var(--surface); border: 1px solid var(--border2); border-radius: 16px;
  width: 420px; max-width: calc(100vw - 32px); max-height: 80vh;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
  transform: translateY(16px) scale(.97); transition: transform .25s; overflow: hidden;
}
.buy-modal-overlay.open .buy-modal { transform: none; }

.buy-modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 20px 20px 16px; border-bottom: 1px solid var(--border);
}
.buy-modal-title { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.buy-modal-coin  { font-size: 13px; color: var(--accent); font-family: var(--mono); }

.buy-modal-close {
  background: none; border: none; color: var(--muted); font-size: 16px; cursor: pointer;
  padding: 2px 6px; border-radius: 6px; transition: color .2s, background .2s; line-height: 1;
}
.buy-modal-close:hover { color: var(--text); background: var(--border); }

.buy-modal-list { overflow-y: auto; padding: 12px; display: flex; flex-direction: column; gap: 6px; }

.exchange-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg);
  cursor: pointer; text-decoration: none; color: var(--text);
  transition: border-color .2s, background .2s, transform .15s;
}
.exchange-item:hover {
  border-color: var(--accent); background: rgba(91,110,245,.08); transform: translateX(3px);
}
.exchange-logo {
  width: 32px; height: 32px; border-radius: 8px; background: var(--border2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--accent); overflow: hidden;
}
.exchange-logo img  { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.exchange-name      { flex: 1; font-size: 14px; font-weight: 600; }
.exchange-arrow     { color: var(--muted); font-size: 12px; transition: color .2s; }
.exchange-item:hover .exchange-arrow { color: var(--accent); }

.buy-modal-footer {
  padding: 12px 20px; font-size: 11px; color: var(--muted);
  border-top: 1px solid var(--border); text-align: center; font-family: var(--mono);
}

/* ── Lang Switcher ────────────────────────────────────────────────────────── */
.lang-switcher {
  display: flex; align-items: center; background: var(--surface);
  border: 1px solid var(--border2); border-radius: 8px; overflow: hidden;
  font-size: 12px; font-family: var(--mono);
}
.lang-current { padding: 6px 12px; background: var(--accent); color: #fff; font-weight: 700; }
.lang-option  { padding: 6px 12px; color: var(--muted); text-decoration: none; transition: color .2s, background .2s; }
.lang-option:hover { color: var(--text); background: var(--border); }

/* ── Where to Buy ─────────────────────────────────────────────────────────── */
.where-buy-card  { margin-top: 0; }
.where-buy-intro { font-size: 14px; line-height: 1.75; color: rgba(232,234,246,.8); margin-bottom: 18px; }

.exchange-list-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; margin-bottom: 20px;
}
.exchange-grid-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  text-decoration: none; color: var(--text); transition: border-color .2s, background .2s, transform .15s;
}
.exchange-grid-item:hover {
  border-color: var(--accent); background: rgba(91,110,245,.07); transform: translateY(-2px);
}
.exchange-grid-logo {
  width: 36px; height: 36px; border-radius: 10px; background: var(--border2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  font-size: 14px; font-weight: 700; color: var(--accent);
}
.exchange-grid-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; }
.exchange-grid-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.exchange-grid-url  { font-size: 11px; color: var(--accent); font-family: var(--mono); }

.where-buy-note {
  display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted);
  padding-top: 14px; border-top: 1px solid var(--border); flex-wrap: wrap;
}
.buy-btn-inline {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px;
  background: var(--accent); color: #fff; border: none; border-radius: 8px;
  font-size: 13px; font-weight: 700; font-family: var(--sans); cursor: pointer; transition: background .2s;
}
.buy-btn-inline:hover { background: #4a5de0; }

/* ── Header Nav ───────────────────────────────────────────────────────────── */
.header-nav {
  display: flex; align-items: center; gap: 2px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 3px;
}
.nav-item {
  display: flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 7px;
  font-size: 13px; font-weight: 600; color: var(--muted); text-decoration: none;
  transition: all .2s; white-space: nowrap;
}
.nav-item:hover  { color: var(--text); background: var(--border); }
.nav-item.active { background: var(--accent); color: #fff; }
.nav-icon        { font-size: 14px; }
.header-right    { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ── Live Price Flash ─────────────────────────────────────────────────────── */
.price-meta  { display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.update-dot  {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  display: inline-block; animation: pulse 2s infinite;
}
.update-time { font-size: 11px; color: var(--muted); font-family: var(--mono); }

@keyframes priceFlashUp   { 0% { color: var(--green); } 100% { color: inherit; } }
@keyframes priceFlashDown { 0% { color: var(--red);   } 100% { color: inherit; } }
.flash-up   { animation: priceFlashUp   .8s ease; }
.flash-down { animation: priceFlashDown .8s ease; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer     { margin-top: 48px; padding: 28px 0 40px; border-top: 1px solid var(--border); }
.footer-copyright { font-size: 13px; color: var(--text); font-family: var(--mono); margin-bottom: 20px; }

.footer-disclaimer {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
}
.disclaimer-title {
  font-size: 12px; font-weight: 700; color: var(--text); font-family: var(--mono);
  letter-spacing: .06em; margin-bottom: 10px;
}
.footer-disclaimer p { font-size: 12px; line-height: 1.75; color: var(--muted); font-family: var(--mono); }

/* ── Back to Top ──────────────────────────────────────────────────────────── */
#backToTop {
  position: fixed; right: 24px; bottom: 32px; z-index: 999;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border2); color: var(--text);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,.4); transition: background .2s, border-color .2s;
}
#backToTop:hover              { background: var(--accent); border-color: var(--accent); }
#backToTop .btt-line          { width: 14px; height: 2px; background: currentColor; border-radius: 2px; margin-bottom: 2px; }
#backToTop svg                { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  header { gap: 10px; padding: 16px 0 18px; }
  .header-nav .nav-item span.nav-icon { display: none; }
  .nav-item     { padding: 6px 10px; font-size: 12px; }
  .header-right { gap: 8px; }
  .breadcrumb   { font-size: 12px; }
}

@media (max-width: 768px) {
  .wrapper      { padding: 0 14px 60px; }
  header        { flex-wrap: wrap; gap: 10px; }
  .logo         { flex: 1; }
  .header-nav   { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  .header-nav .nav-item { flex: 1; justify-content: center; min-width: 80px; font-size: 12px; padding: 6px 8px; }
  .header-right { order: 2; margin-left: auto; }
  .hero         { grid-template-columns: 1fr; gap: 16px; }
  .main-price   { font-size: 28px; }
  .price-changes { gap: 6px; }
  .pct-chip     { padding: 3px 8px; font-size: 11px; }
  .chart-card   { height: 280px; }
  .chart-tabs   { flex-direction: column; align-items: flex-start; gap: 8px; }
  .chart-type-tabs { width: 100%; }
  .chart-tab-btn   { flex: 1; text-align: center; padding: 6px 8px; font-size: 12px; white-space: nowrap; }
  .chart-range-tabs { flex-wrap: wrap; }
  .stats-grid   { grid-template-columns: 1fr; }
  .ath-grid     { grid-template-columns: 1fr 1fr; gap: 10px; }
  .perf-grid    { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .perf-period  { font-size: 10px; }
  .perf-val     { font-size: 12px; }
  .desc-card    { padding: 16px; }
  .desc-title   { font-size: 12px; }
  .exchange-list-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .exchange-grid-item { padding: 10px; }
  .buy-btn      { width: 100%; justify-content: center; margin-top: 4px; }
  .links-row    { flex-wrap: wrap; gap: 6px; }
  .coin-logo    { width: 40px; height: 40px; }
  .coin-title h1 { font-size: 20px; }
  .footer-disclaimer { padding: 16px; }
  .footer-disclaimer p { font-size: 11px; }
}

@media (max-width: 480px) {
  .main-price   { font-size: 24px; }
  .stats-grid   { grid-template-columns: 1fr; }
  .ath-grid     { grid-template-columns: 1fr; }
  .perf-grid    { grid-template-columns: repeat(2, 1fr); }
  .exchange-list-grid { grid-template-columns: 1fr; }
  .header-nav .nav-item { padding: 5px 8px; font-size: 11px; }
  .lang-switcher { font-size: 11px; }
  .chart-card   { height: 240px; }
  body          { overflow-x: hidden; }
  .wrapper      { overflow-x: hidden; }
  *             { max-width: 100%; }
  img           { max-width: 100%; height: auto; }
  .ticker-bar   { height: 32px; }
  
}
