/* ============================================================
   BITTIMES 仮想通貨ティッカー CSS
   - SWELLテーマの既存スタイルを上書きしないよう bt- プレフィックス
   - アニメーションはCSS transformのみ（GPU処理・軽量）
   ============================================================ */
.bt-ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 36px;
  display: flex;
  align-items: center;
}
.bt-ticker__track {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.bt-ticker__inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: bt-ticker-scroll 40s linear infinite;
  flex-shrink: 0;
}
@keyframes bt-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.bt-ticker:hover .bt-ticker__inner {
  animation-play-state: paused;
}
.bt-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  font-size: 12px;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.bt-ticker__symbol {
  color: #888;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 11px;
}
.bt-ticker__price {
  color: #e8e8e8;
  font-weight: 500;
}
.bt-ticker__up {
  color: #00c896;
  font-size: 11px;
}
.bt-ticker__down {
  color: #ff4d4d;
  font-size: 11px;
}
@media (max-width: 768px) {
  .bt-ticker-wrap {
    height: 32px;
  }
  .bt-ticker__item {
    font-size: 11px;
    padding: 0 14px;
  }
}
.bt-ticker-wrap--footer {
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
}
#bt-ticker-footer,
.bt-ticker-wrap--footer {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
}
.w-beforeFooter {
  padding: 0 !important;
  margin: 0 !important;
}



/* ヘッダー下ティッカーとメインビジュアルの間隔調整 */
#bt-ticker-header {
  margin-bottom: -20px;
}