/* build: beijing-fix-20260615-0030 */
:root {
  --bg: #050807;
  --bg-2: #09130e;
  --panel: rgba(7, 21, 16, 0.76);
  --panel-strong: rgba(9, 30, 23, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.25);
  --text: #f8f6eb;
  --muted: #aab7a6;
  --muted-2: #78877c;
  --gold: #f8c947;
  --gold-2: #ffdf7a;
  --grass: #32d56f;
  --grass-dark: #0b5d38;
  --cyan: #74e7ff;
  --red: #ff5252;
  --blue: #7aa7ff;
  --orange: #ff8a3d;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  --shadow-soft: 0 16px 45px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --display: "Black Ops One", "Bebas Neue", "Noto Sans SC", system-ui, sans-serif;
  --condensed: "Bebas Neue", "Rajdhani", "Noto Sans SC", system-ui, sans-serif;
  --body: "Rajdhani", "Noto Sans SC", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: var(--body);
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 255, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 16% 14%, rgba(248, 201, 71, 0.22), transparent 24rem),
    radial-gradient(circle at 90% 7%, rgba(116, 231, 255, 0.16), transparent 26rem),
    linear-gradient(135deg, #030806 0%, #07150f 42%, #08291c 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(100deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(90deg, rgba(15,94,55,0.38) 0 90px, rgba(14,72,46,0.42) 90px 180px);
  opacity: 0.55;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
}

.stadium-light {
  position: fixed;
  top: -16vh;
  width: 50vw;
  height: 55vh;
  z-index: -4;
  pointer-events: none;
  filter: blur(16px);
  opacity: 0.42;
  background: conic-gradient(from 180deg, transparent, rgba(255,255,255,0.52), transparent 55%);
}

.light-left { left: -22vw; transform: rotate(16deg); }
.light-right { right: -22vw; transform: rotate(-16deg); }

.pitch-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.12;
  background:
    radial-gradient(ellipse at center, transparent 0 13%, #fff 13.2% 13.5%, transparent 13.75%),
    linear-gradient(90deg, transparent 49.85%, #fff 50%, transparent 50.15%),
    linear-gradient(transparent 10%, #fff 10.2%, transparent 10.4%),
    linear-gradient(transparent 89.5%, #fff 89.7%, transparent 89.9%);
}

h1, h2, h3, p { margin-top: 0; }
button, a { font: inherit; }
a { color: inherit; }

.hero, .layout, .footer {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.hero { padding: 26px 0 10px; }

.topbar, .panel, .meta-strip {
  border: 0;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.018)), rgba(6, 18, 14, 0.64);
}


.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #06110d;
  background:
    radial-gradient(circle at 35% 30%, #fff 0 13%, transparent 14%),
    linear-gradient(135deg, var(--gold), var(--grass));
  box-shadow: 0 0 0 7px rgba(248,201,71,0.08), 0 12px 34px rgba(0,0,0,0.4);
}

.brand-copy {
  font-family: var(--display);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
.brand-copy em { color: var(--gold); font-style: normal; font-size: 0.78em; }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}
.nav-link:hover { color: var(--text); border-color: var(--line); background: rgba(255,255,255,0.06); }

.live-pill, .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(248, 201, 71, 0.36);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--gold-2);
  background: rgba(248, 201, 71, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.badge.hot { color: #ffd2cc; border-color: rgba(255,82,82,0.35); background: rgba(255,82,82,0.12); }

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.78);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(255,82,82,0); } 100% { box-shadow: 0 0 0 0 rgba(255,82,82,0); } }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: center;
  padding: 34px 0 20px;
}

.hero-copy {
  position: relative;
  padding: 30px 0 36px;
}

.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 100%;
  margin-bottom: 12px;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(30px, 4.1vw, 50px);
  line-height: 0.96;
  letter-spacing: 0.005em;
  text-shadow: 0 12px 40px rgba(0,0,0,0.42);
}

.subtitle {
  max-width: 760px;
  color: #d9ded2;
  font-size: clamp(16px, 1.75vw, 21px);
  line-height: 1.55;
}


.hero-emblems {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}
.trophy-mark,
.host-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248,201,71,0.18), rgba(255,255,255,0.055));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 14px 34px rgba(0,0,0,0.24);
}
.trophy-cup { font-size: 24px; filter: drop-shadow(0 8px 16px rgba(248,201,71,0.28)); }
.trophy-text,
.host-text {
  font-family: var(--condensed);
  font-weight: 900;
  letter-spacing: .12em;
  color: #fff3c4;
  font-size: 15px;
}
.host-logo { background: linear-gradient(135deg, rgba(116,231,255,0.14), rgba(50,213,111,0.14)); }
.wc26 {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #06110d;
  background: linear-gradient(135deg, var(--gold), #fff, var(--grass));
  font-family: var(--display);
  font-size: 16px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.button.primary { color: #06110d; border-color: transparent; background: linear-gradient(135deg, var(--gold), var(--grass)); box-shadow: 0 18px 40px rgba(50,213,111,0.16); }
.button.ghost { background: rgba(255,255,255,0.07); }
.button:hover { transform: translateY(-1px); }

.score-tower { position: relative; display: grid; gap: 14px; }
.score-card {
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255,255,255,0.12), transparent 34%),
    linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.025)),
    var(--panel-strong);
  box-shadow: var(--shadow-soft);
}

.panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.018)), rgba(6, 18, 14, 0.64);
}

.score-card .label {
  display: block;
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.score-card strong {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--display);
  font-size: 86px;
  line-height: 0.88;
}
.score-card small { color: var(--muted); font-weight: 900; }
.score-card.ray { border-color: rgba(248,201,71,0.45); }
.score-card.gpt { border-color: rgba(116,231,255,0.34); }
.versus {
  position: absolute;
  left: 50%; top: 50%;
  display: grid; place-items: center;
  width: 62px; height: 62px;
  transform: translate(-50%, -50%);
  border: 4px solid rgba(5,8,7,0.7);
  border-radius: 50%;
  color: #06110d;
  background: linear-gradient(135deg, #fff, var(--gold-2));
  font-family: var(--display);
  font-size: 18px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.42);
}

.meta-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 24px;
}
.meta-strip > div { padding: 18px 20px; background: rgba(255,255,255,0.035); }
.meta-label { display: block; color: var(--muted); font-size: 12px; font-weight: 800; }
.meta-strip strong { font-family: var(--condensed); font-size: 20px; letter-spacing: 0.04em; }

.layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding: 8px 0 46px; }
.panel { border-radius: var(--radius); padding: 24px; }
.panel.wide { grid-column: 1 / -1; }

.headline-panel {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(120deg, rgba(248,201,71,0.19), transparent 44%),
    linear-gradient(300deg, rgba(50,213,111,0.18), transparent 62%),
    var(--panel);
}
.headline-panel::after {
  content: "90+";
  position: absolute;
  right: 24px;
  bottom: -20px;
  color: rgba(255,255,255,0.06);
  font-family: var(--display);
  font-size: 150px;
  line-height: 1;
}
.headline-panel h2 { max-width: 940px; margin-bottom: 12px; font-size: clamp(30px, 4.3vw, 58px); line-height: 1.02; letter-spacing: -0.05em; }
.headline-panel p { max-width: 880px; color: #d0d8cd; font-size: 18px; line-height: 1.7; }

.section-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.section-head h2 { margin-bottom: 0; font-size: 30px; line-height: 1.05; letter-spacing: -0.05em; }

.day-tabs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin-bottom: 18px; }
.day-tab {
  width: 100%;
  min-height: 116px;
  cursor: pointer;
  border: 0;
  border-radius: 22px;
  padding: 14px;
  color: var(--text);
  text-align: left;
  background: rgba(255,255,255,0.055);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.day-tab:hover, .day-tab.active { transform: translateY(-2px); border-color: rgba(248,201,71,0.55); background: rgba(248,201,71,0.10); }
.day-tab span { display: block; color: var(--gold); font-family: var(--condensed); font-size: 22px; font-weight: 900; }
.day-tab strong { display: block; margin: 4px 0 6px; font-family: var(--display); font-size: 34px; line-height: 1; }
.day-tab em { display: block; color: var(--muted); font-style: normal; line-height: 1.35; }
.day-detail { border: 0; border-radius: 24px; padding: 18px; background: rgba(0,0,0,0.17); }
.day-detail-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; margin-bottom: 14px; }
.day-detail-head h3 { margin-bottom: 8px; font-size: 30px; letter-spacing: -0.04em; }
.day-score { min-width: 144px; border: 1px solid rgba(248,201,71,0.35); border-radius: 20px; padding: 12px 14px; background: rgba(248,201,71,0.10); text-align: right; }
.day-score span { display: block; color: var(--muted); font-size: 12px; font-weight: 900; }
.day-score strong { font-family: var(--display); font-size: 34px; color: var(--gold); }
.day-match-grid { display: grid; gap: 12px; }

.award-grid, .group-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.award-card, .group-card, .match-card, .review-card {
  border: 0;
  border-radius: 22px;
  background: var(--panel-soft);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.award-card, .group-card { padding: 18px; }
.award-name { display: block; margin-bottom: 12px; color: var(--gold); font-family: var(--condensed); font-size: 18px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.duel { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; }
.duel strong { font-size: 22px; line-height: 1.2; }
.duel strong:last-child { text-align: right; }
.vs-mini { color: var(--muted); font-family: var(--display); font-size: 13px; }
.card-note { margin: 12px 0 0; color: var(--muted); line-height: 1.6; }

.group-title { margin-bottom: 14px; font-family: var(--display); color: var(--gold-2); letter-spacing: 0.03em; }
.group-pick { display: grid; grid-template-columns: 54px 1fr; gap: 10px; align-items: flex-start; margin: 10px 0; }
.group-name { color: var(--muted); font-weight: 900; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.team-chip { display: inline-flex; align-items: center; min-height: 30px; padding: 4px 9px; border-radius: 999px; font-weight: 800; }
.ray-chip { background: rgba(248,201,71,0.13); color: #ffecb0; border: 1px solid rgba(248,201,71,0.24); }
.gpt-chip { background: rgba(116,231,255,0.12); color: #ccf6ff; border: 1px solid rgba(116,231,255,0.22); }

.match-list { display: grid; gap: 14px; }
.match-card { padding: 18px; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.match-card:hover { transform: translateY(-2px); border-color: rgba(248,201,71,0.38); background: rgba(255,255,255,0.075); }
.match-card.compact { padding: 14px; }
.match-top, .teams { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.time { color: var(--muted); font-weight: 900; letter-spacing: 0.04em; }
.status { border-radius: 999px; padding: 6px 10px; font-size: 12px; font-weight: 900; letter-spacing: .06em; }
.status.pending { color: var(--cyan); background: rgba(116,231,255,0.13); }
.status.finished { color: #bdf7cf; background: rgba(50,213,111,0.13); }
.teams {
  margin: 16px 0;
  padding: 18px;
  border: 0;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(50,213,111,0.13), transparent 34%),
    linear-gradient(270deg, rgba(116,231,255,0.12), transparent 34%),
    rgba(0,0,0,0.2);
}
.team { display: flex; flex: 1; align-items: baseline; justify-content: space-between; gap: 12px; min-width: 0; }
.team.away { text-align: right; }
.team-name { font-size: clamp(21px, 2.4vw, 34px); font-weight: 950; letter-spacing: -0.04em; }
.score { font-family: var(--display); font-size: clamp(40px, 5vw, 68px); line-height: 1; color: var(--gold-2); }
.center-dot { color: var(--gold); font-family: var(--display); font-size: 36px; }
.prediction-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.prediction-card { min-height: 130px; border: 0; border-radius: 18px; padding: 14px; background: rgba(0,0,0,0.19); }
.predictor { display: block; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.pred-score { display: block; margin: 8px 0; color: var(--gold); font-family: var(--display); font-size: 34px; line-height: 1; }
.prediction-card p, .review-card p, .microcopy, .inline-review p { color: var(--muted); line-height: 1.65; }
.inline-review { margin-top: 12px; border-top: 1px solid var(--line); padding-top: 12px; }
.points-line { color: var(--text) !important; font-weight: 900; }

.review-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
.review-day {
  border: 0;
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  overflow: hidden;
}
.review-day-summary {
  cursor: pointer;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  list-style: none;
}
.review-day-summary::-webkit-details-marker { display: none; }
.review-day-summary span { color: var(--gold); font-family: var(--condensed); font-size: 22px; font-weight: 900; }
.review-day-summary strong { font-size: 20px; letter-spacing: -0.02em; }
.review-day-summary em {
  min-width: 70px;
  text-align: center;
  font-family: var(--display);
  font-style: normal;
  color: var(--gold-2);
}
.review-day-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  padding: 0 14px 14px;
}

.review-card { padding: 18px; }
.review-card h3 { margin-bottom: 8px; }
.review-result { color: var(--gold-2) !important; font-weight: 900; }

.leaderboard { display: grid; gap: 10px; }
.leader-row { display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); border-radius: 18px; padding: 16px; background: rgba(255,255,255,0.055); }
.leader-row span { color: var(--muted); font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.leader-row strong { font-family: var(--display); font-size: 48px; color: var(--gold); line-height: 1; }
.ray-row { border-color: rgba(248,201,71,0.34); }
.gpt-row { border-color: rgba(116,231,255,0.25); }

.rules-list { padding-left: 1.25rem; color: var(--muted); line-height: 1.75; }
.rules-list li { margin: 8px 0; }
code { border: 1px solid var(--line); border-radius: 8px; padding: 2px 6px; color: var(--cyan); background: rgba(0,0,0,0.25); }
.timeline { display: grid; gap: 12px; }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 16px; border-left: 2px solid rgba(248,201,71,0.45); padding-left: 16px; }
.timeline-time { color: var(--gold); font-weight: 900; }
.timeline-item p { margin-bottom: 0; color: var(--muted); line-height: 1.65; }
.empty { margin: 0; color: var(--muted); line-height: 1.7; }
.footer { padding: 0 0 42px; color: var(--muted); }

@media (max-width: 960px) {
  .hero-grid, .layout, .award-grid, .group-grid, .review-list, .prediction-grid, .review-day-body { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 12px; }
  .score-tower { grid-template-columns: 1fr 1fr; }
  .score-card { min-height: 140px; }
  .score-card strong { font-size: 62px; }
  .day-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .meta-strip { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero, .layout, .footer { width: min(100% - 28px, 1220px); }
  .topbar { border-radius: 22px; align-items: flex-start; }
  .topbar-actions { justify-content: flex-start; }
  .nav-link { display: none; }
  h1 { font-size: clamp(24px, 8vw, 34px); white-space: nowrap; letter-spacing: 0; }
  .panel { padding: 18px; border-radius: 22px; }
  .section-head { display: block; }
  .badge { margin-top: 10px; }
  .day-tabs { grid-template-columns: 1fr; }
  .day-detail-head { display: block; }
  .day-score { margin-top: 12px; text-align: left; }
  .teams { display: grid; grid-template-columns: 1fr; }
  .team, .team.away { text-align: left; }
  .team.away { flex-direction: row-reverse; }
  .center-dot { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 4px; }
  .brand-copy { font-size: 14px; }
  .review-day-summary { grid-template-columns: 1fr; gap: 4px; }
}

/* Live score ticker */
.live-ticker {
  margin: 12px 0 6px;
}

.live-ticker-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)), rgba(2, 12, 9, 0.72);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.live-ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.live-ticker-track {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.live-ticker-track::-webkit-scrollbar { display: none; }

.live-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.live-ticker-item b {
  border-radius: 999px;
  padding: 3px 7px;
  font-size: 10px;
  letter-spacing: 0.09em;
}

.live-ticker-item b.live { color: #06110d; background: var(--grass); }
.live-ticker-item b.next { color: #06110d; background: var(--gold); }
.live-ticker-item b.final { color: #e9f0e8; background: rgba(255,255,255,0.16); }
.live-ticker-item em { color: var(--muted); font-style: normal; }
.live-ticker-item.muted { color: var(--muted); }

@media (max-width: 720px) {
  .live-ticker-inner {
    align-items: flex-start;
    border-radius: 22px;
    flex-direction: column;
  }
  .live-ticker-track { width: 100%; }
}
