/*
 * TachOps Child Theme — tachops.css v2.0
 * Design: Warm · Bold · High-energy · Lottery-native
 * Font: Nunito (900 weight for display, Nunito Sans for body)
 * All classes prefixed to-* to avoid Divi conflicts
 */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Nunito+Sans:wght@400;600;700&display=swap');

/* ── DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  --to-navy:         #1a1f4e;
  --to-navy2:        #252b6b;
  --to-navy3:        #2e3580;
  --to-navy-light:   rgba(26,31,78,0.06);
  --to-red:          #e63946;
  --to-red2:         #c1121f;
  --to-gold:         #ffb703;
  --to-gold2:        #fb8500;
  --to-gold-light:   rgba(255,183,3,0.13);
  --to-gold-border:  rgba(255,183,3,0.35);
  --to-white:        #ffffff;
  --to-offwhite:     #f8f9ff;
  --to-light:        #eef0ff;
  --to-border:       #e2e4f0;
  --to-border2:      #c8ccee;
  --to-text:         #1a1f4e;
  --to-muted:        #5c6294;
  --to-dim:          #9098c8;
  --to-green:        #2d9e5f;
  --to-pb-blue:      #1565c0;
  --to-mm-purple:    #6a1b9a;
  --to-cf-green:     #1b5e20;
  --to-font:        'Nunito', sans-serif;
  --to-font-body:   'Nunito Sans', sans-serif;
  --to-r:            16px;
  --to-r-sm:         10px;
  --to-r-pill:       50px;
  --to-r-card:       20px;
}

/* ── GLOBAL PAGE RESET ───────────────────────────────────────── */
.tachops-home body,
.tachops-tool body,
.tachops-blog body,
.tachops-single body,
.tachops-archive body {
  background: var(--to-offwhite) !important;
  color: var(--to-text) !important;
  font-family: var(--to-font-body) !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}
.tachops-home #page,
.tachops-tool #page,
.tachops-blog #page,
.tachops-single #page,
.tachops-archive #page {
  background: var(--to-offwhite) !important;
}

.tachops-skip-link {
  position: absolute;
  transform: translateY(-100%);
  background: var(--to-gold);
  color: var(--to-navy);
  padding: 10px 20px;
  font-family: var(--to-font);
  font-weight: 900;
  font-size: 14px;
  left: 24px;
  z-index: 9999;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
}
.tachops-skip-link:focus { transform: translateY(0); }

/* ── NAVIGATION ──────────────────────────────────────────────── */
.to-nav {
  background: var(--to-navy);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 500;
}
.to-logo {
  font-family: var(--to-font);
  font-size: 22px;
  font-weight: 900;
  color: var(--to-gold);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.to-logo-sep,
.to-logo-dot { color: var(--to-red); }
.to-nav-links { display: flex; align-items: center; gap: 4px; }
.to-nav-links a {
  color: rgba(255,255,255,0.68);
  font-family: var(--to-font);
  font-size: 14px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.to-nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}
.to-nav-cta {
  background: var(--to-gold) !important;
  color: var(--to-navy) !important;
  font-weight: 900 !important;
  padding: 9px 20px !important;
  border-radius: var(--to-r-pill) !important;
  margin-left: 8px !important;
}
.to-nav-cta:hover {
  background: #f0a800 !important;
  color: var(--to-navy) !important;
  background-color: #f0a800 !important;
}
@media (max-width: 640px) {
  .to-nav-links a:not(.to-nav-cta) { display: none; }
  .to-nav { padding: 0 20px; }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.to-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--to-font);
  font-weight: 800;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--to-r-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  line-height: 1;
}
.to-btn:active { transform: scale(0.97); }
.to-btn-gold  { background: var(--to-gold);  color: var(--to-navy); }
.to-btn-gold:hover  { background: #f0a800; text-decoration: none; color: var(--to-navy); }
.to-btn-red   { background: var(--to-red);   color: #fff; }
.to-btn-red:hover   { background: var(--to-red2); text-decoration: none; color: #fff; }
.to-btn-navy  { background: var(--to-navy);  color: #fff; }
.to-btn-navy:hover  { background: var(--to-navy2); text-decoration: none; color: #fff; }
.to-btn-outline {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.22);
}
.to-btn-outline:hover { background: rgba(255,255,255,0.18); text-decoration: none; color: #fff; }
.to-btn-sm { padding: 9px 18px; font-size: 13px; }
.to-btn-lg { padding: 16px 36px; font-size: 17px; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.to-wrap { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.to-section { padding: 56px 28px; }
.to-divider { border: none; border-top: 2px solid var(--to-border); margin: 0; }
.to-two-col { display: grid; grid-template-columns: 1fr 310px; gap: 24px; align-items: start; }
@media (max-width: 800px) { .to-two-col { grid-template-columns: 1fr; } }
.to-sidebar { display: flex; flex-direction: column; gap: 16px; }

.to-section-head { text-align: center; margin-bottom: 40px; }
.to-section-head h2 {
  font-family: var(--to-font);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--to-navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.to-section-head p { font-size: 16px; color: var(--to-muted); max-width: 500px; margin: 0 auto; line-height: 1.65; font-weight: 600; }
.to-section-head.light h2 { color: #fff; }
.to-section-head.light p  { color: rgba(255,255,255,0.55); }

.to-section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--to-light);
  color: var(--to-navy2);
  font-family: var(--to-font);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--to-r-pill);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.to-section-label.gold {
  background: var(--to-gold-light);
  color: var(--to-navy);
  border: 1px solid var(--to-gold-border);
}

.to-live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--to-green); display: inline-block; flex-shrink: 0; }
.to-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(45,158,95,0.12);
  color: var(--to-green);
  font-family: var(--to-font);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(45,158,95,0.25);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── HOMEPAGE HERO ───────────────────────────────────────────── */
.to-hero {
  background: var(--to-navy);
  padding: 72px 28px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.to-hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.to-hero-glow {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 350px;
  background: rgba(255,183,3,0.07);
  border-radius: 50%; pointer-events: none;
}
.to-hero-inner { position: relative; z-index: 1; }

.to-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,183,3,0.14);
  border: 1px solid rgba(255,183,3,0.3);
  color: var(--to-gold);
  font-family: var(--to-font);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--to-r-pill);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.to-hero h1 {
  font-family: var(--to-font);
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.to-hero h1 em { font-style: normal; color: var(--to-gold); }
.to-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
  font-weight: 600;
}
.to-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.to-hero-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 36px; }
.to-hstat { text-align: center; padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.1); }
.to-hstat:last-child { border-right: none; }
.to-hstat-n { font-family: var(--to-font); font-size: 30px; font-weight: 900; color: var(--to-gold); line-height: 1; }
.to-hstat-l { font-size: 12px; color: rgba(255,255,255,0.42); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 4px; font-weight: 700; }

/* ── TOOL PAGE HERO ──────────────────────────────────────────── */
.to-tool-hero { background: var(--to-navy); padding: 52px 28px 44px; position: relative; overflow: hidden; }
.to-tool-hero-wrap {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 28px; align-items: center; position: relative; z-index: 1;
}
@media (max-width: 680px) { .to-tool-hero-wrap { grid-template-columns: 1fr; } }
.to-game-badge { font-family: var(--to-font); font-size: 11px; font-weight: 800; letter-spacing: 0.14em; color: rgba(255,183,3,0.65); text-transform: uppercase; margin-bottom: 12px; }
.to-tool-hero h1 { font-family: var(--to-font); font-size: clamp(26px, 4vw, 42px); font-weight: 900; color: #fff; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 14px; }
.to-tool-hero h1 em { font-style: normal; color: var(--to-gold); }
.to-tool-hero-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.48); font-weight: 600; }
.to-tool-hero-meta span { display: flex; align-items: center; gap: 5px; }
.to-hero-stat-box { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--to-r); padding: 20px 24px; text-align: center; min-width: 140px; }
.to-hsb-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.42); margin-bottom: 6px; }
.to-hsb-value { font-family: var(--to-font); font-size: 32px; font-weight: 900; color: var(--to-gold); line-height: 1; }
.to-hsb-sub { font-size: 12px; color: rgba(255,255,255,0.32); margin-top: 4px; font-weight: 600; }

/* ── AD SLOTS ────────────────────────────────────────────────── */
.to-ad-bar {
  background: var(--to-white);
  border-bottom: 2px solid var(--to-border);
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.to-ad-tag { font-family: var(--to-font); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; color: var(--to-dim); text-transform: uppercase; flex-shrink: 0; }
.to-ad-728 { display: block; width: 100%; max-width: 728px; min-height: 90px; }
.to-ad-widget { display: flex; flex-direction: column; gap: 6px; }
.to-ad-widget .to-ad-tag { font-size: 9px; }

/* ── TOOL CARDS ──────────────────────────────────────────────── */
.to-tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.to-tool-card {
  background: var(--to-white);
  border-radius: var(--to-r-card);
  overflow: hidden;
  border: 2px solid var(--to-border);
  transition: border-color 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
}
.to-tool-card:hover { border-color: var(--to-gold); transform: translateY(-4px); }
.to-featured { border-color: var(--to-red); }

.to-tc-header { background: var(--to-navy); padding: 20px 22px 18px; position: relative; flex-shrink: 0; }
.to-tc-header-pb  { background: var(--to-pb-blue); }
.to-tc-header-mm  { background: var(--to-mm-purple); }
.to-tc-header-cf  { background: var(--to-cf-green); }

.to-tc-game { font-family: var(--to-font); font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.6); letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 5px; }
.to-tc-jackpot { font-family: var(--to-font); font-size: 30px; font-weight: 900; color: var(--to-gold); line-height: 1; }
.to-tc-jackpot-label { font-size: 11px; color: rgba(255,255,255,0.42); font-weight: 700; margin-top: 3px; }
.to-tc-dot { position: absolute; top: 18px; right: 18px; width: 9px; height: 9px; border-radius: 50%; background: #4caf50; border: 2px solid rgba(255,255,255,0.3); }
.to-tc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; }

.to-tc-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.to-tc-hot-label { font-family: var(--to-font); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--to-dim); }
.to-tc-name { font-family: var(--to-font); font-size: 17px; font-weight: 900; color: var(--to-navy); line-height: 1.2; }
.to-tc-desc { font-size: 13px; color: var(--to-muted); line-height: 1.55; font-weight: 600; }
.to-tc-last { font-size: 12px; color: var(--to-dim); font-weight: 600; }
.to-tc-last span { color: var(--to-muted); }

.to-tc-cta {
  display: block; width: 100%; padding: 13px 16px;
  background: var(--to-navy); color: #fff;
  font-family: var(--to-font); font-weight: 900; font-size: 14px;
  text-align: center; border-radius: var(--to-r-pill);
  text-decoration: none; transition: background 0.15s;
  margin-top: auto; border: none; cursor: pointer;
}
.to-tc-cta:hover { background: var(--to-navy2); text-decoration: none; color: #fff; }
.to-featured .to-tc-cta { background: var(--to-red); }
.to-featured .to-tc-cta:hover { background: var(--to-red2); }
.to-tc-cta.to-outline { background: transparent; color: var(--to-navy); border: 2px solid var(--to-border2); }
.to-tc-cta.to-outline:hover { border-color: var(--to-navy); background: var(--to-navy-light); }

/* ── LOTTERY BALLS ───────────────────────────────────────────── */
.to-bubbles,
.to-tc-balls { display: flex; flex-wrap: wrap; gap: 7px; }

.to-bubble,
.to-ball {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--to-font); font-size: 17px; font-weight: 900;
  flex-shrink: 0; line-height: 1;
}
.to-bubble.to-hot,
.to-ball-hot { background: var(--to-gold); color: var(--to-navy); }
.to-bubble.to-cold,
.to-ball-cold { background: var(--to-light); color: var(--to-navy2); border: 2px solid var(--to-border2); }
.to-bubble.to-bonus { background: var(--to-red); color: #fff; border-radius: var(--to-r-pill); width: auto; padding: 0 13px; font-size: 13px; border: none; }
.to-ball-bonus-pb { background: var(--to-pb-blue); color: #fff; font-size: 13px; }
.to-ball-bonus-mm { background: var(--to-mm-purple); color: #fff; font-size: 13px; }

.to-pick-ball {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--to-font); font-size: 20px; font-weight: 900;
  cursor: default; transition: transform 0.12s; line-height: 1;
}
.to-pick-ball:hover { transform: scale(1.1); }
.to-pick-ball.to-pb-main  { background: var(--to-gold); color: var(--to-navy); }
.to-pick-ball.to-pb-bonus { background: var(--to-red); color: #fff; }
.to-pick-ball.to-popped   { animation: to-pop 0.25s ease; }
@keyframes to-pop { 0% { transform: scale(0.6); } 65% { transform: scale(1.15); } 100% { transform: scale(1); } }

/* ── FREQUENCY CARD ──────────────────────────────────────────── */
.to-freq-card { background: var(--to-white); border-radius: var(--to-r-card); border: 2px solid var(--to-border); overflow: hidden; }
.to-freq-card-header { background: var(--to-navy); padding: 20px 24px; }
.to-freq-card-title { font-family: var(--to-font); font-size: 18px; font-weight: 900; color: #fff; }
.to-freq-card-sub { font-size: 12px; color: rgba(255,255,255,0.42); font-weight: 600; margin-top: 2px; }
.to-freq-meta { font-size: 12px; color: var(--to-muted); font-weight: 600; padding: 12px 24px; background: var(--to-offwhite); border-bottom: 2px solid var(--to-border); }
.to-freq-body { padding: 22px 24px; }
.to-freq-section-label { font-family: var(--to-font); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.to-freq-section-label.hot  { color: var(--to-gold2); }
.to-freq-section-label.cold { color: var(--to-dim); }
.to-freq-divider { border-top: 2px solid var(--to-border); margin: 18px 0; }

.to-freq-rows { display: flex; flex-direction: column; gap: 10px; }
.to-freq-row  { display: flex; align-items: center; gap: 10px; }
.to-freq-ball { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--to-font); font-size: 14px; font-weight: 900; flex-shrink: 0; }
.to-freq-ball.fhot  { background: var(--to-gold); color: var(--to-navy); }
.to-freq-ball.fcold { background: var(--to-light); color: var(--to-navy2); border: 2px solid var(--to-border2); }
.to-freq-bar-wrap { flex: 1; height: 12px; background: var(--to-light); border-radius: 50px; overflow: hidden; }
.to-freq-bar { height: 100%; border-radius: 50px; transition: width 0.5s ease; }
.to-freq-bar.fhot  { background: var(--to-gold); }
.to-freq-bar.fcold { background: var(--to-border2); }
.to-freq-num   { font-family: var(--to-font); font-size: 13px; font-weight: 800; color: var(--to-navy); width: 26px; text-align: right; flex-shrink: 0; }
.to-freq-pct   { font-family: var(--to-font); font-size: 14px; font-weight: 800; color: var(--to-muted); width: 36px; text-align: right; flex-shrink: 0; }
.to-freq-count { font-family: var(--to-font); font-size: 13px; font-weight: 700; color: var(--to-dim); width: 28px; text-align: right; flex-shrink: 0; }
.to-freq-badge { font-family: var(--to-font); font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 50px; flex-shrink: 0; text-transform: uppercase; letter-spacing: 0.06em; }
.to-freq-badge.to-scorching,
.to-freq-badge.to-hot  { background: rgba(255,183,3,0.15); color: #7a4a00; border: 1px solid rgba(255,183,3,0.4); }
.to-freq-badge.to-warm { background: rgba(251,133,0,0.12); color: #7a4000; border: 1px solid rgba(251,133,0,0.3); }
.to-freq-badge.to-cool,
.to-freq-badge.to-cold { background: var(--to-light); color: var(--to-navy2); border: 1px solid var(--to-border2); }

/* ── HEAT CLASSES ────────────────────────────────────────────── */
.to-scorching { background: rgba(255,183,3,0.18);  border-color: rgba(255,183,3,0.45)  !important; color: #7a4a00 !important; }
.to-hot       { background: rgba(255,183,3,0.12);  border-color: rgba(255,183,3,0.35)  !important; color: #7a4a00 !important; }
.to-warm      { background: rgba(251,133,0,0.09);  border-color: rgba(251,133,0,0.28)  !important; color: #7a4000 !important; }
.to-cool      { background: rgba(144,152,200,0.1); border-color: rgba(144,152,200,0.3) !important; color: var(--to-navy2) !important; }
.to-cold      { background: var(--to-light);       border-color: var(--to-border2)     !important; color: var(--to-dim) !important; }
.to-freq-bar.to-scorching,
.to-freq-bar.to-hot   { background: var(--to-gold); }
.to-freq-bar.to-warm  { background: var(--to-gold2); }
.to-freq-bar.to-cool,
.to-freq-bar.to-cold  { background: var(--to-border2); }

/* ── NUMBER GRID ─────────────────────────────────────────────── */
.to-num-grid { display: grid; gap: 6px; }
.to-num-cell { aspect-ratio: 1; border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px solid transparent; cursor: default; transition: transform 0.12s; }
.to-num-cell:hover { transform: scale(1.08); }
.to-nc-num { font-family: var(--to-font); font-weight: 900; line-height: 1; }
.to-nc-pct { font-size: 9px; opacity: 0.7; margin-top: 2px; font-family: var(--to-font); font-weight: 700; }
.to-bonus-grid-wrap { margin-top: 18px; border-top: 2px solid var(--to-border); padding-top: 16px; }
.to-bonus-grid-label { font-family: var(--to-font); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--to-dim); margin-bottom: 10px; }
.to-heat-legend { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.to-hl-item { display: flex; align-items: center; gap: 5px; font-size: 11px; font-family: var(--to-font); font-weight: 700; color: var(--to-muted); }
.to-hl-dot { width: 10px; height: 10px; border-radius: 50%; }
.to-hl-dot.to-scorching,
.to-hl-dot.to-hot   { background: var(--to-gold); }
.to-hl-dot.to-warm  { background: var(--to-gold2); }
.to-hl-dot.to-cool  { background: var(--to-border2); }
.to-hl-dot.to-cold  { background: var(--to-light); border: 2px solid var(--to-border2); }

/* ── CARD COMPONENT ──────────────────────────────────────────── */
.to-card { background: var(--to-white); border: 2px solid var(--to-border); border-radius: var(--to-r-card); overflow: hidden; }
.to-card-header { padding: 16px 22px; border-bottom: 2px solid var(--to-border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; background: var(--to-navy); }
.to-card-title  { font-family: var(--to-font); font-size: 16px; font-weight: 900; color: #fff; }
.to-card-meta   { font-family: var(--to-font); font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.42); text-transform: uppercase; letter-spacing: 0.08em; }
.to-card-body   { padding: 22px; }
.to-card-footer-link { padding: 12px 22px; border-top: 2px solid var(--to-border); background: var(--to-offwhite); font-size: 13px; font-weight: 700; }
.to-card-footer-link a { color: var(--to-navy); text-decoration: none; }
.to-card-footer-link a:hover { color: var(--to-red); }

/* ── PICK GENERATOR ──────────────────────────────────────────── */
.to-pick-section { background: var(--to-white); border: 2px solid var(--to-gold); border-radius: var(--to-r-card); overflow: hidden; }
.to-pick-header  { background: var(--to-navy); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.to-pick-title   { font-family: var(--to-font); font-size: 18px; font-weight: 900; color: #fff; }
.to-pick-subtitle { font-size: 13px; color: rgba(255,255,255,0.48); font-weight: 600; margin-top: 2px; }
.to-pick-body    { padding: 24px; }
.to-pick-label   { font-family: var(--to-font); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--to-dim); margin-bottom: 12px; }
.to-pick-bubbles { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 20px; }
.to-pick-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.to-pick-disclaimer { font-size: 11px; color: var(--to-dim); font-weight: 600; margin-top: 16px; line-height: 1.6; border-top: 2px solid var(--to-border); padding-top: 14px; }
.to-pick-disclaimer a { color: var(--to-muted); }
.to-mode-tabs { display: flex; border: 2px solid rgba(255,255,255,0.15); border-radius: 50px; overflow: hidden; }
.to-mode-tab { font-family: var(--to-font); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; padding: 7px 14px; cursor: pointer; color: rgba(255,255,255,0.48); background: transparent; border: none; transition: all 0.15s; }
.to-mode-tab.active { background: var(--to-gold); color: var(--to-navy); }
.to-mode-tab:hover:not(.active) { color: rgba(255,255,255,0.82); }
.to-slider-wrap { display: flex; align-items: center; gap: 12px; margin: 14px 0; }
.to-slider-label { font-size: 14px; color: var(--to-muted); font-weight: 600; white-space: nowrap; }
.to-slider-val { font-family: var(--to-font); font-size: 16px; font-weight: 900; color: var(--to-navy); min-width: 20px; }
input[type=range] { flex: 1; accent-color: var(--to-gold); }

/* ── STATS ROW ───────────────────────────────────────────────── */
.to-stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 2px; background: var(--to-border); border-radius: 16px; overflow: hidden; border: 2px solid var(--to-border); }
.to-stat-cell { background: var(--to-white); padding: 16px 14px; text-align: center; }
.to-sc-val { font-family: var(--to-font); font-size: 22px; font-weight: 900; color: var(--to-navy); line-height: 1; }
.to-sc-lbl { font-size: 11px; font-weight: 700; color: var(--to-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ── DRAW HISTORY TABLE ──────────────────────────────────────── */
.to-draw-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.to-draw-table th { text-align: left; padding: 10px 14px; font-family: var(--to-font); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.52); border-bottom: 2px solid rgba(255,255,255,0.1); background: var(--to-navy); }
.to-draw-table td { padding: 11px 14px; border-bottom: 2px solid var(--to-border); vertical-align: middle; }
.to-draw-table tr:last-child td { border-bottom: none; }
.to-draw-table tr:hover td { background: var(--to-offwhite); }
.to-draw-date { font-family: var(--to-font); color: var(--to-muted); font-size: 13px; font-weight: 700; }
.to-draw-balls { display: flex; gap: 5px; flex-wrap: wrap; }
.to-dball { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--to-font); font-size: 12px; font-weight: 900; }
.to-dball-main  { background: var(--to-gold); color: var(--to-navy); }
.to-dball-bonus { background: var(--to-red); color: #fff; border-radius: 50px; width: auto; padding: 0 8px; }

/* ── JACKPOCKET ──────────────────────────────────────────────── */
.to-jp-card { background: var(--to-navy); border-radius: var(--to-r-card); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.to-jp-top  { display: flex; align-items: center; gap: 12px; }
.to-jp-icon { width: 44px; height: 44px; background: rgba(255,183,3,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--to-font); font-size: 13px; color: var(--to-gold); font-weight: 900; border: 1px solid rgba(255,183,3,0.3); flex-shrink: 0; }
.to-jp-name    { font-family: var(--to-font); font-size: 16px; font-weight: 900; color: #fff; }
.to-jp-tagline { font-size: 12px; color: rgba(255,255,255,0.48); font-weight: 600; }
.to-jp-desc    { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; font-weight: 600; }
.to-jp-btn { display: block; width: 100%; padding: 13px; background: var(--to-gold); color: var(--to-navy); font-family: var(--to-font); font-weight: 900; font-size: 14px; text-align: center; border-radius: var(--to-r-pill); text-decoration: none; transition: background 0.15s; }
.to-jp-btn:hover { background: #f0a800; text-decoration: none; color: var(--to-navy); }
.to-jp-disclaimer { font-size: 10px; color: rgba(255,255,255,0.22); text-align: center; font-weight: 700; letter-spacing: 0.04em; }

/* ── SIDEBAR WIDGETS ─────────────────────────────────────────── */
.to-sidebar-widget { background: var(--to-white); border: 2px solid var(--to-border); border-radius: var(--to-r-card); padding: 18px; overflow: hidden; }
.to-sw-title { font-family: var(--to-font); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--to-dim); margin-bottom: 14px; }
.to-sw-tool { display: flex; align-items: center; gap: 8px; padding: 11px 0; border-bottom: 2px solid var(--to-border); text-decoration: none; transition: color 0.15s; }
.to-sw-tool:last-child { border-bottom: none; }
.to-sw-tool:hover { text-decoration: none; }
.to-sw-tool:hover .to-sw-tool-name { color: var(--to-red); }
.to-sw-tool-name  { font-family: var(--to-font); font-size: 14px; font-weight: 800; color: var(--to-navy); flex: 1; }
.to-sw-tool-meta  { font-size: 11px; font-weight: 700; color: var(--to-dim); }
.to-sw-tool-arrow { font-size: 12px; color: var(--to-dim); font-weight: 700; }

.to-game-nav-item { display: flex; align-items: center; justify-content: space-between; background: var(--to-offwhite); border: 2px solid var(--to-border); border-radius: 12px; padding: 12px 16px; font-family: var(--to-font); font-size: 14px; font-weight: 800; color: var(--to-muted); text-decoration: none; transition: all 0.15s; margin-bottom: 7px; }
.to-game-nav-item:last-child { margin-bottom: 0; }
.to-game-nav-item:hover { border-color: var(--to-gold); color: var(--to-navy); background: rgba(255,183,3,0.06); text-decoration: none; }
.to-game-nav-item.to-current { border-color: var(--to-gold); background: var(--to-gold-light); color: var(--to-navy); }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.to-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 3px; background: rgba(255,255,255,0.07); border-radius: var(--to-r-card); overflow: hidden; }
.to-step { background: var(--to-navy); padding: 36px 30px; }
.to-step-n { font-family: var(--to-font); font-size: 52px; font-weight: 900; color: rgba(255,183,3,0.18); line-height: 1; margin-bottom: 14px; }
.to-step-title { font-family: var(--to-font); font-size: 19px; font-weight: 900; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.to-step-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; font-weight: 600; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.to-faq-list { border-radius: var(--to-r-card); overflow: hidden; border: 2px solid var(--to-border); }
.to-faq-item { background: var(--to-white); border-bottom: 2px solid var(--to-border); padding: 24px 28px; }
.to-faq-item:last-child { border-bottom: none; }
.to-faq-q { font-family: var(--to-font); font-size: 17px; font-weight: 900; color: var(--to-navy); margin-bottom: 8px; line-height: 1.3; }
.to-faq-a { font-size: 15px; color: var(--to-muted); line-height: 1.7; font-weight: 600; }

/* ── EMAIL CAPTURE ───────────────────────────────────────────── */
.to-email-section { background: var(--to-red); padding: 64px 28px; text-align: center; }
.to-email-section h2 { font-family: var(--to-font); font-size: clamp(26px, 4vw, 42px); font-weight: 900; color: #fff; letter-spacing: -0.02em; margin-bottom: 10px; }
.to-email-section > .to-wrap > p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 28px; font-weight: 600; }
.to-email-form { display: flex; gap: 8px; max-width: 440px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.to-email-input { flex: 1; min-width: 200px; background: rgba(255,255,255,0.95); border: none; border-radius: var(--to-r-pill); padding: 14px 22px; font-size: 15px; font-family: var(--to-font-body); color: var(--to-navy); font-weight: 600; outline: none; }
.to-email-input:focus { background: #fff; }
.to-email-submit { background: var(--to-navy); color: #fff; font-family: var(--to-font); font-weight: 900; font-size: 15px; padding: 14px 26px; border-radius: var(--to-r-pill); border: none; cursor: pointer; transition: background 0.15s; white-space: nowrap; }
.to-email-submit:hover { background: var(--to-navy2); }
.to-email-note { font-size: 12px; color: rgba(255,255,255,0.42); margin-top: 12px; font-weight: 700; display: block; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.to-footer { background: var(--to-navy); padding: 52px 28px 28px; }
.to-footer-inner { max-width: 1080px; margin: 0 auto; }
.to-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 32px; margin-bottom: 36px; }
.to-footer-brand .to-logo { display: inline-block; margin-bottom: 10px; }
.to-footer-brand p { font-size: 13px; color: rgba(255,255,255,0.36); line-height: 1.65; max-width: 190px; font-weight: 600; }
.to-updated-badge { font-family: var(--to-font); font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 50px; display: inline-block; margin-top: 8px; }
.to-footer-col-title { font-family: var(--to-font); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.32); margin-bottom: 14px; }
.to-footer-link { display: block; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.48); padding: 4px 0; text-decoration: none; transition: color 0.15s; }
.to-footer-link:hover { color: var(--to-gold); text-decoration: none; }
.to-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.to-footer-copy { font-family: var(--to-font); font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.25); flex-shrink: 0; }
.to-footer-disclaimer { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.2); max-width: 620px; line-height: 1.65; }
.to-footer-disclaimer a { color: rgba(255,255,255,0.28); }
.to-footer-disclaimer a:hover { color: rgba(255,255,255,0.48); }
.to-tool-footer { background: var(--to-navy); border-top: 2px solid rgba(255,255,255,0.07); padding: 22px 28px; text-align: center; }
.to-tool-footer p { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.25); max-width: 700px; margin: 0 auto; line-height: 1.65; }
.to-tool-footer a { color: rgba(255,255,255,0.35); }

/* ── TOOL PAGE LAYOUT ────────────────────────────────────────── */
.to-page-body { display: grid; grid-template-columns: 1fr 310px; gap: 24px; align-items: start; padding: 36px 28px 60px; max-width: 1080px; margin: 0 auto; }
@media (max-width: 800px) { .to-page-body { grid-template-columns: 1fr; } }
.to-main-col { display: flex; flex-direction: column; gap: 20px; }

/* ── BLOG — ARCHIVE ──────────────────────────────────────────── */
.to-archive-hero { background: var(--to-navy); border-bottom: 2px solid rgba(255,255,255,0.07); padding: 60px 28px 52px; position: relative; overflow: hidden; text-align: center; }
.to-archive-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.to-archive-hero h1 { font-family: var(--to-font); font-size: clamp(24px, 4vw, 44px); font-weight: 900; color: #fff; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 14px; }
.to-archive-hero-sub { font-size: 16px; color: rgba(255,255,255,0.52); line-height: 1.7; margin-bottom: 20px; font-weight: 600; }
.to-archive-hero-stats { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.to-archive-stat { font-family: var(--to-font); font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.42); }
.to-archive-stat strong { color: var(--to-gold); }
.to-archive-sep { color: rgba(255,255,255,0.2); }

.to-blog-main { display: grid; grid-template-columns: 1fr 300px; gap: 32px; max-width: 1080px; margin: 0 auto; padding: 40px 28px 64px; align-items: start; }
@media (max-width: 840px) { .to-blog-main { grid-template-columns: 1fr; } }
.to-blog-wrap { min-width: 0; }

.to-post-featured { display: grid; grid-template-columns: 1fr 1fr; background: var(--to-white); border: 2px solid var(--to-border); border-radius: var(--to-r-card); overflow: hidden; margin-bottom: 28px; transition: border-color 0.2s, transform 0.15s; }
.to-post-featured:hover { border-color: var(--to-gold); transform: translateY(-3px); }
@media (max-width: 640px) { .to-post-featured { grid-template-columns: 1fr; } }
.to-pf-img-wrap { display: block; overflow: hidden; aspect-ratio: 16/10; }
.to-pf-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.to-post-featured:hover .to-pf-img { transform: scale(1.04); }
.to-pf-content { padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.to-pf-title { font-family: var(--to-font); font-size: clamp(17px, 2vw, 24px); font-weight: 900; color: var(--to-navy); line-height: 1.25; letter-spacing: -0.01em; }
.to-pf-title a { color: inherit; text-decoration: none; }
.to-pf-title a:hover { color: var(--to-red); }
.to-pf-excerpt { font-size: 14px; color: var(--to-muted); line-height: 1.65; font-weight: 600; }

.to-post-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.to-post-date { font-family: var(--to-font); font-size: 11px; font-weight: 700; color: var(--to-dim); text-transform: uppercase; letter-spacing: 0.07em; }
.to-post-cat { font-family: var(--to-font); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; background: var(--to-gold-light); color: #6b4a00; border: 1px solid var(--to-gold-border); padding: 3px 9px; border-radius: 50px; text-decoration: none; }
.to-post-cat:hover { background: rgba(255,183,3,0.25); text-decoration: none; }

.to-post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 40px; }
.to-post-card { background: var(--to-white); border: 2px solid var(--to-border); border-radius: var(--to-r-card); overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.15s; }
.to-post-card:hover { border-color: var(--to-gold); transform: translateY(-3px); }
.to-pc-img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; background: var(--to-light); }
.to-pc-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.to-post-card:hover .to-pc-img { transform: scale(1.04); }
.to-pc-img-placeholder { display: flex; align-items: center; justify-content: center; background: var(--to-light); }
.to-pc-placeholder-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--to-gold-light); border: 2px solid var(--to-gold-border); display: block; }
.to-pc-content { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.to-pc-title { font-family: var(--to-font); font-size: 15px; font-weight: 900; color: var(--to-navy); line-height: 1.3; }
.to-pc-title a { color: inherit; text-decoration: none; }
.to-pc-title a:hover { color: var(--to-red); }
.to-pc-excerpt { font-size: 13px; color: var(--to-muted); line-height: 1.6; flex: 1; font-weight: 600; }
.to-pc-read-more { font-family: var(--to-font); font-size: 12px; font-weight: 800; color: var(--to-red); text-decoration: none; margin-top: auto; }
.to-pc-read-more:hover { text-decoration: underline; }

.to-pagination { margin-top: 8px; }
.to-pagination .page-numbers { display: inline-flex; list-style: none; gap: 7px; flex-wrap: wrap; padding: 0; margin: 0; }
.to-pagination .page-numbers li { margin: 0; }
.to-pagination .page-numbers a,
.to-pagination .page-numbers span { display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; background: var(--to-white); border: 2px solid var(--to-border); border-radius: 50px; font-family: var(--to-font); font-size: 14px; font-weight: 800; color: var(--to-muted); text-decoration: none; transition: all 0.15s; }
.to-pagination .page-numbers a:hover { border-color: var(--to-gold); color: var(--to-navy); }
.to-pagination .page-numbers .current { background: var(--to-navy); border-color: var(--to-navy); color: #fff; }

.to-blog-sidebar { position: relative; }
.to-sidebar-sticky { position: sticky; top: 76px; display: flex; flex-direction: column; gap: 16px; }
.to-no-posts { padding: 56px 0; text-align: center; }
.to-no-posts p { font-family: var(--to-font); font-size: 17px; font-weight: 700; color: var(--to-muted); margin-bottom: 20px; }

/* ── BLOG — SINGLE POST ──────────────────────────────────────── */
.to-single-hero { background: var(--to-navy); border-bottom: 2px solid rgba(255,255,255,0.07); padding: 52px 28px 44px; position: relative; overflow: hidden; }
.to-single-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.to-breadcrumb { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.32); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.to-breadcrumb a { color: rgba(255,255,255,0.48); text-decoration: none; }
.to-breadcrumb a:hover { color: var(--to-gold); }
.to-single-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.to-single-title { font-family: var(--to-font); font-size: clamp(24px, 4vw, 42px); font-weight: 900; color: #fff; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 14px; }
.to-single-excerpt { font-size: 17px; color: rgba(255,255,255,0.52); line-height: 1.7; font-weight: 600; }
.to-single-thumb-wrap { max-width: 900px; margin: 0 auto; padding: 0 28px; }
.to-single-thumb { width: 100%; height: auto; display: block; border-radius: var(--to-r-card); margin-top: 32px; }
.to-single-main { max-width: 1080px; margin: 0 auto; padding: 36px 28px 64px; }
.to-single-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
@media (max-width: 840px) { .to-single-wrap { grid-template-columns: 1fr; } }
.to-single-sidebar { position: relative; }
.to-single-sidebar .to-sidebar-sticky { position: sticky; top: 76px; }

.to-article-body { color: #2c3060; font-size: 17px; line-height: 1.8; font-family: var(--to-font-body); font-weight: 400; }
.to-article-body h2 { font-family: var(--to-font); font-size: 26px; font-weight: 900; color: var(--to-navy); margin: 40px 0 16px; line-height: 1.2; letter-spacing: -0.01em; }
.to-article-body h3 { font-family: var(--to-font); font-size: 20px; font-weight: 800; color: var(--to-navy); margin: 30px 0 12px; line-height: 1.3; }
.to-article-body h4 { font-family: var(--to-font); font-size: 17px; font-weight: 800; color: var(--to-navy); margin: 24px 0 8px; }
.to-article-body p { margin-bottom: 20px; }
.to-article-body a { color: var(--to-red); font-weight: 600; }
.to-article-body a:hover { text-decoration: underline; }
.to-article-body ul,
.to-article-body ol { margin: 0 0 20px 22px; }
.to-article-body li { margin-bottom: 8px; line-height: 1.7; }
.to-article-body strong { color: var(--to-navy); font-weight: 700; }
.to-article-body blockquote { border-left: 4px solid var(--to-gold); margin: 28px 0; padding: 16px 22px; background: rgba(255,183,3,0.06); border-radius: 0 12px 12px 0; font-style: italic; color: var(--to-muted); }
.to-article-body img { max-width: 100%; height: auto; border-radius: 16px; margin: 24px 0; }
.to-article-body table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 24px 0; }
.to-article-body th { background: var(--to-navy); padding: 12px 16px; text-align: left; font-family: var(--to-font); font-size: 12px; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.58); font-weight: 800; }
.to-article-body td { padding: 12px 16px; border-bottom: 2px solid var(--to-border); color: var(--to-muted); font-weight: 600; }
.to-article-body code { background: var(--to-light); border: 1px solid var(--to-border2); border-radius: 6px; padding: 2px 7px; font-size: 14px; color: var(--to-navy); }
.to-article-body pre { background: var(--to-navy); border-radius: 14px; padding: 20px; overflow-x: auto; margin: 24px 0; }
.to-article-body pre code { background: none; border: none; padding: 0; color: rgba(255,255,255,0.82); }

.to-post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 28px 0; padding-top: 24px; border-top: 2px solid var(--to-border); }
.to-tag-pill { font-family: var(--to-font); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; background: var(--to-light); border: 2px solid var(--to-border); color: var(--to-muted); padding: 5px 13px; border-radius: 50px; text-decoration: none; transition: all 0.15s; }
.to-tag-pill:hover { border-color: var(--to-gold); color: var(--to-navy); background: var(--to-gold-light); text-decoration: none; }

.to-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 32px 0; padding: 24px 0; border-top: 2px solid var(--to-border); }
.to-post-nav-prev, .to-post-nav-next { display: flex; flex-direction: column; gap: 5px; }
.to-post-nav-next { text-align: right; }
.to-pn-label { font-family: var(--to-font); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--to-dim); }
.to-pn-title { font-family: var(--to-font); font-size: 14px; font-weight: 800; color: var(--to-muted); text-decoration: none; line-height: 1.4; }
.to-pn-title:hover { color: var(--to-red); }
.to-back-link { margin-top: 8px; }
.to-back-link a { font-family: var(--to-font); font-size: 14px; font-weight: 800; color: var(--to-muted); text-decoration: none; }
.to-back-link a:hover { color: var(--to-navy); }

.to-related-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 2px solid var(--to-border); text-decoration: none; transition: color 0.15s; }
.to-related-item:last-child { border-bottom: none; }
.to-related-thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.to-related-title { font-family: var(--to-font); font-size: 13px; font-weight: 800; color: var(--to-muted); line-height: 1.4; }
.to-related-item:hover .to-related-title { color: var(--to-red); }
