/* ===== Custom Properties ===== */
:root {
  --color-primary: #fb900f;
  --color-accent: #ff9700;
  --color-highlight: #ff9a00;
  --color-bg-dark-1: #0a0b0e;
  --color-bg-dark-2: #131315;
  --color-bg-dark-3: #232326;
  --color-bg-card: #181818;
  --color-text: #fff;
  --font-body: 1.4375rem;
  --font-sub: 1.875rem;
  --font-small: 1.25rem;
  --weight-bold: 700;
  --weight-light: 300;
  --space-section: 6.6875rem;
  --space-side: 8%;
  --max-width: 63rem;
  --color-gold: #ff9a00;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: clamp(13px, 0.914vw, 23.5px);
}

body {
  font-family:
    'Pretendard Variable',
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: var(--max-width);
  margin: 0 auto;
}

h1 {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  margin: 0;
}

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-primary);
  color: var(--color-text);
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-size: 1rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* ===== Footer ===== */
footer {
  background: var(--color-bg-dark-1);
  text-align: center;
  padding: 1.875rem 1.25rem;
  font-size: 0.875rem;
  color: #888;
}

/* ===== CTA Button ===== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-text);
  font-weight: var(--weight-bold);
  font-size: 2.26rem;
  text-align: center;
  padding: 0.9375rem 3.125rem;
  white-space: nowrap;
  border-radius: 0.625rem;
  box-shadow: 0 0 11.5px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  line-height: normal;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(251, 144, 15, 0.4);
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.section-header h2 {
  font-size: clamp(2.25rem, 1.247rem + 2.81vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.75rem;
  line-height: normal;
}

.section-subtext {
  font-size: clamp(1.125rem, 0.708rem + 1.17vw, 1.75rem);
  color: var(--color-primary);
  line-height: normal;
}

.section-subtext p {
  margin-bottom: 0.4375rem;
}

.section-subtext .light {
  font-weight: 300;
}

.section-subtext strong {
  font-weight: 700;
}

.section-subtext-single {
  font-size: var(--font-sub);
  font-weight: var(--weight-light);
  color: var(--color-primary);
  line-height: normal;
}

/* ===== Top Banner ===== */
.top-banner {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 9.5vw;
}

.top-banner-inner {
  display: flex;
  width: 100%;
  height: 100%;
}

.banner-half {
  display: block;
  width: 50%;
  position: relative;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
}

.banner-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 19, 21, 0.8);
}

.banner-border {
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-highlight);
  border-radius: 0 2.1vw 0 0;
  pointer-events: none;
}

.banner-left .banner-border {
  border-radius: 0 2.1vw 0 0;
}

.banner-logo-row {
  position: absolute;
  top: 1.05vw;
  left: 2.1vw;
  padding: 0.71vw 0;
}

.banner-logo {
  height: 3.23vw;
  width: 8vw;
  object-fit: cover;
}

.banner-title-row {
  position: absolute;
  top: 4.98vw;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.68vw;
}

.banner-subtitle {
  font-size: 1.75rem;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  line-height: normal;
  white-space: nowrap;
}

.banner-channel {
  height: 3.75rem;
  width: auto;
}

.banner-icon {
  width: 3.44vw;
  height: 3.44vw;
}

.banner-title-logo {
  display: none;
}

/* ===== Hero (PC Only) ===== */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 65.8vw;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  align-items: flex-start;
  padding: 0 var(--space-side);
}

.hero-logo {
  width: 20.25rem;
  height: 8.125rem;
  object-fit: cover;
}

.hero-text-bold {
  font-size: 2.6875rem;
  font-weight: 700;
  color: #fff;
  line-height: normal;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.hero-text-bold p {
  margin-bottom: 0.4375rem;
}

.hero-text-light {
  font-size: 1.75rem;
  font-weight: 300;
  color: #fff;
  line-height: normal;
}

.hero-text-light p {
  margin-bottom: 0.4375rem;
}

/* ===== Intro ===== */
.intro {
  position: relative;
  isolation: isolate;
  min-height: 66.37vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-section) var(--space-side) 3.4375rem;
}

.intro-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-top {
  text-align: center;
  padding-top: 8.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  align-items: center;
}

.intro-label {
  font-size: clamp(1.875rem, 1.248rem + 1.76vw, 2.8125rem);
  font-weight: 400;
  color: #fff;
  line-height: normal;
}

.intro-brand {
  font-size: clamp(3.125rem, 1.871rem + 3.51vw, 5rem);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  line-height: normal;
}

.intro-box {
  margin-top: 3.25rem;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid var(--color-primary);
  border-radius: 1.25rem;
  box-shadow: 0px 4px 12.3px rgba(0, 0, 0, 0.25);
  padding: 3.0625rem 5.0625rem 3.0625rem 4.9375rem;
  width: 100%;
}

.intro-box-inner {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  align-items: center;
  text-align: center;
  max-width: 50.125rem;
  margin: 0 auto;
}

.intro-box-highlight {
  font-size: 1.75rem;
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  line-height: 2.5rem;
  text-align: center;
}

.intro-box-highlight .light {
  font-weight: 300;
}

.intro-box-highlight p {
  margin-bottom: 0.4375rem;
}

.intro-box-desc {
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  line-height: 2.0625rem;
  text-align: center;
}

.intro-cta {
  margin-top: 5.125rem;
}

/* ===== Free Broadcast ===== */
.free-broadcast {
  position: relative;
  isolation: isolate;
  min-height: 53.23vw;
  overflow: hidden;
}

.section-bg-dark {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-bg-dark-1);
}

.free-broadcast-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  mix-blend-mode: luminosity;
}

.free-broadcast-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-section) var(--space-side) 3.4375rem;
}

.free-broadcast-content .section-header,
.analysis-content .section-header,
.hd-stream-content .section-header,
.sports-categories-content .section-header {
  padding: 0.75rem 0;
  margin-bottom: 0;
}

.sports-logos-bar {
  background: var(--color-primary);
  border: 1px solid #000;
  border-radius: 0.9375rem;
  padding: 1.5625rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.875rem 0;
}

.sports-logos-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.sport-logo-icon {
  display: block;
  height: 3.75rem;
  width: auto;
}

.free-broadcast-columns {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  width: 100%;
}

.free-broadcast-col {
  flex: 1;
  font-size: var(--font-body);
  font-weight: var(--weight-light);
  color: var(--color-text);
  line-height: normal;
  text-align: justify;
}

.free-broadcast-col p + p {
  margin-top: 0.375rem;
}

/* ===== Live Sports ===== */
.live-sports {
  position: relative;
  isolation: isolate;
  min-height: 50.28vw;
  overflow: hidden;
}

.live-sports-inner {
  min-height: 50.28vw;
}

.live-sports-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.live-sports-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.live-sports-section-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.live-sports-content {
  position: absolute;
  right: 3%;
  bottom: 5rem;
  width: 58%;
  display: flex;
  gap: 0.3125rem;
  align-items: center;
}

.live-sports-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  padding: 3.125rem 0;
  max-width: 90%;
}

.live-sports-text h2 {
  font-size: clamp(2.25rem, 1.247rem + 2.81vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: normal;
}

.live-sports-sub {
  font-size: 1.75rem;
  color: var(--color-primary);
  line-height: normal;
}

.live-sports-sub .light {
  font-weight: 300;
}

.live-sports-sub strong {
  font-weight: 700;
}

.live-sports-sub p {
  margin-bottom: 0.4375rem;
}

.live-sports-desc {
  font-size: var(--font-body);
  font-weight: var(--weight-light);
  color: var(--color-text);
  line-height: normal;
  text-align: justify;
}

.live-sports-desc p + p {
  margin-top: 0.375rem;
}

.live-sports-arrows {
  display: flex;
  flex-direction: column;
  gap: 25rem;
  align-items: flex-end;
  padding: 3.125rem 0;
  width: 3.8125rem;
}

.live-sports-desc-mo {
  display: none;
}

.arrow-icon {
  width: 3.8125rem;
  height: 3.8125rem;
}

/* ===== Realtime Stream ===== */
.realtime-stream {
  position: relative;
  isolation: isolate;
  min-height: 69.26vw;
  overflow: hidden;
}

.realtime-stream-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.realtime-stream-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.realtime-stream-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-section) var(--space-side) 2.625rem;
  min-height: 69.26vw;
}

.realtime-stream-content .section-header {
  padding: 0.75rem 0;
  margin-bottom: auto;
}

.realtime-stream-content .section-subtext {
  font-size: var(--font-sub);
}

.realtime-stream-desc {
  font-size: var(--font-body);
  font-weight: var(--weight-light);
  color: var(--color-text);
  text-align: center;
  line-height: normal;
}

.realtime-stream-desc p {
  margin-bottom: 0.375rem;
}

.realtime-stream-content .cta-button {
  margin: 1.875rem 0;
}

/* ===== Analysis ===== */
.analysis {
  position: relative;
  isolation: isolate;
  min-height: 57.81vw;
  overflow: hidden;
}

.analysis-bg-dark {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-bg-dark-2);
}

.analysis-bg-img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
}

.analysis-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4.375rem var(--space-side) 0;
  gap: 2.5rem;
}

.analysis-content .section-subtext {
  font-size: var(--font-sub);
}

.analysis-icon {
  width: 28.625rem;
  max-width: 100%;
  padding: 1.875rem 0;
}

.analysis-icon-img {
  width: 100%;
}

.analysis-desc {
  font-size: var(--font-body);
  font-weight: var(--weight-light);
  color: var(--color-text);
  text-align: center;
  line-height: normal;
}

.analysis-desc p {
  margin-bottom: 0.375rem;
}

.analysis-desc strong {
  font-weight: 700;
}

/* ===== HD Stream ===== */
.hd-stream {
  position: relative;
  isolation: isolate;
  min-height: 67.62vw;
  overflow: hidden;
}

.hd-stream-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-stream-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6.5625rem var(--space-side) 0;
}

.hd-stream-content .section-subtext {
  font-size: var(--font-sub);
}

.hd-stream-video {
  margin-top: 3.4375rem;
  width: 100%;
  overflow: hidden;
  box-shadow: 0px 4px 11.2px 4px rgba(0, 0, 0, 0.25);
}

.hd-stream-video-img {
  width: 100%;
  height: auto;
}

.hd-stream-desc {
  font-size: var(--font-body);
  font-weight: var(--weight-light);
  color: var(--color-text);
  text-align: center;
  line-height: normal;
  background: rgba(41, 39, 39, 0.9);
  padding: 2.0625rem 5rem;
  width: 100%;
}

.hd-stream-desc p {
  margin-bottom: 0.375rem;
}

.hd-stream-desc strong {
  font-weight: 700;
}

/* ===== Sports Categories ===== */
.sports-categories {
  background: #010101;
  padding: var(--space-section) 0 3.875rem;
}

.sports-categories-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.125rem;
}

.categories-desc {
  font-size: var(--font-body);
  font-weight: var(--weight-light);
  color: var(--color-text);
  text-align: center;
  line-height: normal;
}

.categories-desc p {
  margin-bottom: 0.375rem;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0px 0px 11.5px 3px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  height: 4.5rem;
  width: min(27.0625rem, 90%);
  border: none;
}

.search-text {
  flex: 1;
  font-family: inherit;
  font-size: var(--font-sub);
  font-weight: var(--weight-bold);
  color: #636363;
  padding-left: 1.9375rem;
  line-height: normal;
  border: none;
  background: transparent;
  outline: none;
  min-width: 0;
}

.search-button {
  font-family: inherit;
  background: var(--color-accent);
  color: var(--color-text);
  font-size: var(--font-sub);
  font-weight: var(--weight-bold);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.6875rem;
  border: none;
  border-radius: 0 0.625rem 0.625rem 0;
  box-shadow: 0px 0px 11.5px 3px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  line-height: normal;
}

/* ===== Football Guide ===== */
.football-guide {
  position: relative;
  isolation: isolate;
  min-height: 84.49vw;
  overflow: hidden;
  background: var(--color-bg-dark-3);
  border-radius: 0 7.43vw 0 0;
}

.football-guide-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: luminosity;
}

.football-guide-content {
  padding: 8.375rem var(--space-side) calc(5rem + 7.43vw);
}

.light-header h2 {
  color: #fff;
  margin-bottom: 1.875rem;
}

.section-subtitle-light {
  font-size: var(--font-body);
  font-weight: var(--weight-light);
  color: var(--color-text);
  text-align: center;
  line-height: normal;
}

.football-leagues {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  column-gap: 3.125rem;
  row-gap: 2.4375rem;
  margin-top: 1.625rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.football-guide-content > .section-header,
.baseball-content > .section-header {
  margin-bottom: 0;
}

.football-leagues .league-card.left-card {
  grid-column: 1;
  justify-self: end;
}

.football-leagues .league-card.right-card {
  grid-column: 3;
  transform: translateY(4.3125rem);
  justify-self: start;
}

.league-divider {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    #fff 7.21%,
    #fff 50%,
    #fff 95.67%,
    rgba(255, 255, 255, 0) 100%
  );
  min-height: 53rem;
}

.league-card {
  position: relative;
}

.league-bubble {
  display: flex;
  align-items: flex-start;
}

.league-bubble.right {
  flex-direction: row;
  text-align: left;
  justify-content: flex-end;
}

.league-dot {
  width: 1.0625rem;
  height: 1.0625rem;
  border-radius: 50%;
  background: #fff5f5;
  border: 3px solid var(--color-accent);
  position: absolute;
  top: 0;
  box-sizing: border-box;
}

.left-card .league-dot {
  right: -3.6875rem;
}

.right-card .league-dot {
  left: -3.6875rem;
}

.league-info {
  background: var(--color-bg-card);
  border-radius: 0.625rem 0 0.625rem 0.625rem;
  padding: 1.75rem 1.875rem;
  max-width: 30.875rem;
  position: relative;
}

.league-info::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1.8125rem;
  width: 5.125rem;
  height: 1.0625rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='82' height='17' viewBox='0 0 82 17' fill='none'%3E%3Cpath d='M2.74391e-05 -0.000191597L81.7046 16.4545L81.7046 0L2.74391e-05 -0.000191597Z' fill='%23181818'/%3E%3C/svg%3E")
    no-repeat;
  background-size: 100% 100%;
  transform: scaleX(-1);
}

.league-bubble.right .league-info {
  border-radius: 0 0.625rem 0.625rem 0.625rem;
}

.league-bubble.right .league-info::after {
  right: auto;
  left: -1.8125rem;
  transform: none;
}

.league-title {
  font-size: 2.0625rem;
  font-weight: var(--weight-bold);
  color: var(--color-highlight);
  margin-bottom: 1rem;
  line-height: normal;
}

.league-desc {
  font-size: var(--font-small);
  font-weight: var(--weight-light);
  color: var(--color-text);
  line-height: 1.6;
}

/* ===== Baseball ===== */
.baseball {
  position: relative;
  isolation: isolate;
  min-height: 71.4vw;
  overflow: hidden;
  margin-top: -7.43vw;
  border-radius: 7.43vw 0 0 0;
}

.baseball-bg-layers {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.baseball-bg-base {
  position: absolute;
  inset: 0;
  background: var(--color-bg-dark-3);
}

.baseball-bg-dark {
  position: absolute;
  inset: 0;
  background: var(--color-bg-dark-2);
  border-radius: 7.43vw 0 0 0;
}

.baseball-content {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  align-items: center;
  padding: 8.75rem var(--space-side) 2.75rem;
}

.baseball-subtitle {
  font-size: var(--font-body);
  font-weight: var(--weight-light);
  color: var(--color-text);
  text-align: center;
  line-height: normal;
}

.baseball-subtitle p {
  margin-bottom: 0.375rem;
}

.baseball-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 97%;
}

.baseball-row {
  display: flex;
  gap: 1.875rem;
  align-items: center;
}

.baseball-row.reverse {
  flex-direction: row-reverse;
}

.baseball-text {
  flex: 1;
}

.sport-label {
  font-size: 2.0625rem;
  font-weight: var(--weight-bold);
  color: var(--color-highlight);
  margin-bottom: 1.25rem;
  line-height: normal;
}

.sport-desc-light {
  font-size: var(--font-small);
  font-weight: var(--weight-light);
  color: var(--color-text);
  line-height: 1.6;
}

.baseball-circle {
  flex-shrink: 0;
  width: 13rem;
  height: 13rem;
}

.baseball-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: -1.0625rem 0.375rem 0 0 var(--color-highlight);
}

.baseball-deco {
  position: absolute;
}

.baseball-deco-right {
  left: 68.1%;
  top: -12.3%;
  width: 52.9%;
  aspect-ratio: 1;
  background: url('images/baseball-deco-right.png') no-repeat center/cover;
}

.baseball-deco-left {
  left: -32.3%;
  top: -3.9%;
  width: 68%;
  aspect-ratio: 1;
  background: url('images/baseball-deco-left.png') no-repeat center/cover;
}

.baseball-cta {
  padding: 0.9375rem 5rem;
  margin: 2.0625rem 0;
}

/* ===== NBA + Sports Rows ===== */
.nba-sports {
  position: relative;
  isolation: isolate;
  min-height: 79.8vw;
  overflow: hidden;
}

.nba-sports-bg-layers {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.nba-sports-bg-base {
  position: absolute;
  inset: 0;
  background: var(--color-bg-dark-2);
}

.nba-sports-bg-img {
  position: absolute;
  top: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 55.25rem;
  max-width: 80%;
  height: auto;
  object-fit: cover;
}

.nba-sports-bg-dark {
  position: absolute;
  inset: 0;
  background: #000;
  border-radius: 0 7.43vw 0 0;
}

.nba-sports-content {
  padding: 13.4375rem var(--space-side) 5rem;
}

.nba-header {
  margin-bottom: 9rem;
}

.nba-subtitle {
  font-size: var(--font-body);
  font-weight: var(--weight-light);
  color: var(--color-text);
  text-align: center;
  line-height: normal;
}

.nba-subtitle p {
  margin-bottom: 0.375rem;
}

.sport-rows {
  display: flex;
  flex-direction: column;
  gap: 3.1875rem;
  align-items: center;
}

.sport-row-item {
  display: flex;
  gap: 2.875rem;
  align-items: center;
  width: 100%;
}

.sport-row-item.reverse {
  flex-direction: row-reverse;
}

.sport-image-bar {
  display: grid;
  flex-shrink: 0;
}

.sport-accent-bar,
.sport-rect-image {
  grid-area: 1 / 1;
}

.sport-accent-bar {
  width: 4rem;
  height: 13.875rem;
  background: var(--color-accent);
  border-radius: 0.9375rem 0 0 0.9375rem;
}

.sport-rect-image {
  width: 16.9375rem;
  height: 12.6875rem;
  overflow: hidden;
  border-radius: 0 0.625rem 0.625rem 0;
  margin-left: 0.625rem;
  margin-top: 0.5625rem;
  z-index: 1;
}

.sport-rect-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sport-text-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.8125rem;
  justify-content: center;
}

.sport-row-title {
  font-size: clamp(2.25rem, 1.247rem + 2.81vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  line-height: normal;
}

.sport-row-desc {
  font-size: var(--font-body);
  font-weight: var(--weight-light);
  color: var(--color-text);
  line-height: normal;
}

.sport-row-desc p {
  margin-bottom: 0.375rem;
}

/* ===== How to Use ===== */
.how-to-use {
  position: relative;
  isolation: isolate;
  min-height: 47.54vw;
  overflow: hidden;
  background: #1d1d21;
}

.how-to-use-inner {
  min-height: inherit;
}

.how-to-use-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.how-to-use-bg-rect {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background: #181821;
}

.how-to-use-bg-ellipse {
  position: absolute;
  left: -12.5625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 71.625rem;
  height: 62.375rem;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
}

.how-to-use-bg-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 63%;
  height: 51.25rem;
  object-fit: cover;
}

.how-to-use-content {
  display: flex;
  flex-direction: column;
  gap: 2.875rem;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 8.5625rem 0 6.25rem var(--space-side);
  max-width: 74%;
  height: 100%;
}

.how-to-use-content h2 {
  font-size: clamp(2.25rem, 1.247rem + 2.81vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  line-height: normal;
}

.how-to-use-desc {
  font-size: var(--font-body);
  font-weight: var(--weight-light);
  color: var(--color-text);
  line-height: normal;
}

.how-to-use-desc p {
  margin-bottom: 0.375rem;
}

.how-to-use-closing {
  font-size: clamp(1.25rem, 0.832rem + 1.17vw, 1.875rem);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  line-height: normal;
}

.how-to-use-closing p {
  margin-bottom: 0.375rem;
}

/* ===== Site Navigation ===== */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--color-bg-dark-1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 2%;
  height: 5.5rem;
  margin-bottom: 1.25rem;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.nav-logo img {
  height: 3.25rem;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  height: 100%;
  margin-left: auto;
}

.nav-menu li:last-child {
  margin-left: 3rem;
}

.nav-link {
  display: flex;
  align-items: center;
  height: 5.5rem;
  padding: 0 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
  position: relative;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: var(--color-primary);
}

.nav-cs {
  background: var(--color-primary);
  color: #fff !important;
  border-radius: 0.5rem;
  padding: 0 1.5rem;
  font-weight: 700;
  height: 3.25rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ===== Analysis Cards (analysis.html) ===== */
.analysis-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
}

.analysis-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  transition:
    transform 0.2s,
    border-color 0.2s;
}

.analysis-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.analysis-card-icon {
  height: 3.75rem;
  width: auto;
}

.analysis-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: normal;
}

.analysis-card p {
  font-size: var(--font-small);
  font-weight: var(--weight-light);
  color: var(--color-text);
  line-height: 1.6;
}

.analysis-screenshot {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.analysis-screenshot-img {
  width: 100%;
  height: auto;
}

.analysis-extra-text {
  max-width: 52rem;
  margin: 0 auto;
  font-size: var(--font-body);
  font-weight: var(--weight-light);
  color: var(--color-text);
  text-align: center;
  line-height: normal;
}

.analysis-extra-text p {
  margin-bottom: 0.375rem;
}

/* ===== Analysis Categories Section ===== */
.analysis-categories-section {
  position: relative;
  padding: var(--space-section) var(--space-side) 5rem;
  background: var(--color-bg-dark-1);
}

.analysis-categories-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.analysis-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.analysis-tab {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border-radius: 2rem;
  font-size: var(--font-body);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
  text-decoration: none;
}

.analysis-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.analysis-tab.active {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  font-weight: 600;
}

.analysis-match-list {
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.analysis-match-header {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  padding: 0.875rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.analysis-match-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: var(--color-text);
  transition: background 0.2s;
  align-items: center;
}

.analysis-match-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.match-team {
  font-size: var(--font-body);
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.match-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.match-league {
  font-size: 0.8125rem;
  color: var(--color-primary);
  font-weight: 500;
}

.match-vs {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}

.match-date {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Internal Links Section ===== */
.internal-links-section {
  padding: 4rem var(--space-side);
  background: var(--color-bg-dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.internal-links-content {
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.internal-link-card {
  flex: 1;
  max-width: 20rem;
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
}

.internal-link-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
}

.internal-link-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.625rem;
}

.internal-link-card p {
  font-size: var(--font-body);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ===== Download Page ===== */
.download-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-section) var(--space-side) 5rem;
  background: var(--color-bg-dark-2);
}

.download-hero h1 {
  font-size: clamp(2.25rem, 1.247rem + 2.81vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.75rem;
  line-height: normal;
}

.download-hero .download-desc {
  font-size: var(--font-body);
  font-weight: var(--weight-light);
  color: var(--color-text);
  line-height: normal;
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.download-hero .download-desc p {
  margin-bottom: 0.375rem;
}

.download-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.download-card {
  display: block;
  border-radius: 1.25rem;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  max-width: 18rem;
}

.download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(251, 144, 15, 0.3);
}

.download-card-img {
  width: 100%;
  height: auto;
}

.steps-section {
  background: var(--color-bg-dark-1);
  padding: var(--space-section) var(--space-side);
}

.steps-section h2 {
  font-size: clamp(2.25rem, 1.247rem + 2.81vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
  line-height: normal;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 52rem;
  margin: 0 auto;
}

.step-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 12px rgba(251, 144, 15, 0.3);
}

.step-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: normal;
}

.step-card p {
  font-size: var(--font-small);
  font-weight: var(--weight-light);
  color: var(--color-text);
  line-height: 1.6;
}

/* ===== Service Features (index.html) ===== */
.service-features {
  background: var(--color-bg-dark-2);
  padding: var(--space-section) var(--space-side);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: var(--font-medium);
  font-weight: var(--weight-bold);
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.feature-item p {
  font-size: var(--font-small);
  font-weight: var(--weight-light);
  color: var(--color-text);
  line-height: 1.7;
}

.service-sports-list {
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
}

.service-sports-list > h3 {
  font-size: var(--font-medium);
  font-weight: var(--weight-bold);
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
}

.sports-list-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.sports-list-col h4 {
  font-size: var(--font-body);
  font-weight: var(--weight-bold);
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.sports-list-col p {
  font-size: var(--font-small);
  font-weight: var(--weight-light);
  color: var(--color-text);
  line-height: 1.6;
}

/* ===== App Features (download.html) ===== */
.app-features-section {
  background: var(--color-bg-dark-1);
  padding: var(--space-section) var(--space-side);
}

.app-features-content h2 {
  font-size: clamp(2.25rem, 1.247rem + 2.81vw, 3.75rem);
  font-weight: var(--weight-bold);
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.app-feature-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
}

.app-feature-item .feature-icon {
  width: 3rem;
  height: 3rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.app-feature-item h3 {
  font-size: var(--font-medium);
  font-weight: var(--weight-bold);
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.app-feature-item p {
  font-size: var(--font-small);
  font-weight: var(--weight-light);
  color: var(--color-text);
  line-height: 1.7;
}

/* ===== FAQ Section ===== */
.faq-section {
  background: var(--color-bg-dark-2);
  padding: var(--space-section) var(--space-side);
}

.faq-section h2 {
  font-size: clamp(2.25rem, 1.247rem + 2.81vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
  line-height: normal;
}

.faq-list {
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.625rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1.5rem 2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  line-height: normal;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question::after {
  content: '+';
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 2rem 1.5rem;
  font-size: var(--font-small);
  font-weight: var(--weight-light);
  color: var(--color-text);
  line-height: 1.6;
}

/* ===== Mobile (847px 기준, rem 비례 스케일링) ===== */
@media (max-width: 900px) {
  html {
    font-size: clamp(9px, 1.889vw, 16px);
  }

  .top-banner {
    height: auto;
  }

  .top-banner-inner {
    flex-direction: column;
  }

  .banner-half {
    width: 100%;
    height: 15.35vw;
    position: relative;
    overflow: hidden;
  }

  .banner-border {
    border-radius: 0 3.54vw 0 0;
  }

  .banner-left .banner-border {
    border-radius: 0 3.54vw 0 0;
  }

  .banner-logo-row {
    display: none;
  }

  .banner-title-row {
    top: 2.72vw;
    left: 4.13vw;
    right: 4.13vw;
    gap: 1rem;
    height: 10.04vw;
  }

  .banner-title-logo {
    display: block;
    width: 16.76vw;
    height: 6.73vw;
    object-fit: cover;
  }

  .banner-subtitle {
    font-size: 4.72vw;
  }

  .banner-channel {
    height: 9.68vw;
    width: auto;
  }

  .banner-icon {
    width: 6.97vw;
    height: 6.97vw;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .section-header h2 {
    font-size: 3.75rem;
    margin-bottom: 1.75rem;
  }

  .section-subtext {
    font-size: 1.875rem;
  }

  .section-subtext p {
    margin-bottom: 0.4375rem;
  }

  .cta-button {
    font-size: 2.1875rem;
    padding: 0.75rem 1.875rem;
    border-radius: 0.625rem;
  }

  .intro-label {
    font-size: 2.8125rem;
  }

  .intro-brand {
    font-size: 5rem;
  }

  .hero {
    display: none;
  }

  .intro {
    height: 59.25rem;
    padding: 0 3.1875rem;
  }

  .intro-top {
    padding-top: 3.75rem;
    gap: 1.125rem;
  }

  .intro-box {
    margin-top: 3.375rem;
    padding: 1.875rem 1.25rem;
    max-width: 46.5rem;
    border-radius: 1.25rem;
  }

  .intro-box-inner {
    max-width: 36.625rem;
    gap: 1.875rem;
  }

  .intro-box-highlight {
    font-size: 1.75rem;
    line-height: 1.45;
  }

  .intro-box-highlight p {
    margin-bottom: 0.4375rem;
  }

  .intro-box-desc {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .intro-cta {
    margin-top: 2.625rem;
  }

  .free-broadcast {
    min-height: 58.9375rem;
  }

  .free-broadcast-content {
    padding: 4.375rem 2.375rem;
  }

  .free-broadcast-content .section-header,
  .analysis-content .section-header,
  .hd-stream-content .section-header,
  .sports-categories-content .section-header {
    padding: 0.75rem 0;
    margin-bottom: 0;
  }

  .free-broadcast-bg {
    opacity: 0.4;
  }

  .sports-logos-bar {
    width: 100%;
    max-width: 100%;
    min-height: 11.625rem;
    border-radius: 0.9375rem;
    margin: 4.4375rem 0 2rem;
    padding: 1.25rem;
  }

  .sports-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, auto);
    justify-content: center;
    align-items: center;
    gap: 0.875rem 2.625rem;
  }

  .sport-logo-icon {
    height: 3.75rem;
    width: auto;
  }

  .free-broadcast-columns {
    flex-direction: column;
    gap: 0.375rem;
    width: 100%;
  }

  .free-broadcast-col {
    text-align: justify;
  }

  .free-broadcast-col p + p {
    margin-top: 0.375rem;
  }

  .live-sports {
    min-height: 60.9375rem;
  }

  .live-sports-inner {
    min-height: 60.9375rem;
  }

  .live-sports-overlay {
    top: 10.75rem;
    bottom: 13.6875rem;
  }

  .live-sports-content {
    width: 24.375rem;
    right: 2.0625rem;
    top: 10.75rem;
    bottom: auto;
    height: 36.5rem;
    padding: 3.125rem 0;
  }

  .live-sports-text {
    max-width: 19.3125rem;
    gap: 1.8125rem;
    padding: 0;
    align-self: stretch;
    justify-content: center;
  }

  .live-sports-text h2 {
    font-size: 3.75rem;
  }

  .live-sports-sub {
    font-size: 1.875rem;
  }

  .live-sports-sub p {
    display: inline;
    margin-bottom: 0;
  }

  .live-sports-arrows {
    gap: 24.5rem;
    padding: 0;
    width: 3.8125rem;
  }

  .arrow-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .live-sports::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 13.6875rem;
    background: #111117;
    z-index: 0;
  }

  .live-sports-desc {
    display: none;
  }

  .live-sports-desc-mo {
    display: block;
    position: absolute;
    left: 1.75rem;
    right: 2.1875rem;
    bottom: 5.1875rem;
    z-index: 2;
    font-size: 1.4375rem;
    font-weight: 300;
    color: #fff;
    text-align: justify;
    line-height: normal;
  }

  .live-sports-desc-mo p + p {
    margin-top: 0.375rem;
  }

  .realtime-stream {
    min-height: 67.5rem;
  }

  .realtime-stream-content {
    padding: 3.75rem 1.25rem;
    gap: 0;
    min-height: 67.5rem;
  }

  .realtime-stream-content .section-header {
    padding: 0.75rem 0;
    margin-bottom: auto;
  }

  .realtime-stream-content .cta-button {
    margin: 2.5rem 0 1.875rem 0;
  }

  .realtime-stream-desc {
    text-align: center;
  }

  .realtime-stream-desc p {
    margin-bottom: 0.375rem;
  }

  .analysis {
    min-height: 51.8125rem;
  }

  .analysis-content {
    padding: 2.5rem 1.25rem;
    gap: 2.5rem;
  }

  .analysis-icon {
    width: 28.625rem;
    max-width: 100%;
    padding: 1.875rem 0 0.625rem;
  }

  .analysis-desc p {
    margin-bottom: 0.375rem;
  }

  .hd-stream {
    min-height: 67.5625rem;
  }

  .hd-stream-content {
    padding: 3.75rem 1.25rem;
  }

  .hd-stream-video {
    width: 39.9375rem;
    margin-top: 3.5rem;
  }

  .hd-stream-desc {
    width: 39.875rem;
    padding: 2.0625rem 3.125rem;
  }

  .hd-stream-desc p {
    margin-bottom: 0.375rem;
  }

  .sports-categories {
    padding: 3.75rem 0.9375rem;
  }

  .sports-categories-content {
    gap: 2.125rem;
  }

  .categories-desc p {
    margin-bottom: 0.375rem;
  }

  .search-bar {
    width: min(27.0625rem, 90%);
    height: 3.5rem;
    border-radius: 0.625rem;
  }

  .search-text {
    padding-left: 1.9375rem;
  }

  .search-button {
    padding: 0 1.6875rem;
    border-radius: 0 0.625rem 0.625rem 0;
  }

  .football-guide {
    min-height: 113.8125rem;
    border-radius: 0 3.75rem 0 0;
  }

  .football-guide-content {
    padding: 5rem 0.9375rem 3.75rem 0.9375rem;
  }

  .light-header h2 {
    margin-bottom: 1.875rem;
  }

  .section-subtitle-light {
    font-size: 1.4375rem;
  }

  .football-leagues {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.4375rem;
    margin-top: 3.5625rem;
    position: relative;
    padding-left: 2.5rem;
  }

  .league-divider {
    display: none;
  }

  .football-leagues .league-card.left-card,
  .football-leagues .league-card.right-card {
    grid-column: auto;
    transform: none;
  }

  .football-leagues::before {
    content: '';
    position: absolute;
    left: 0.4375rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      #fff 7.21%,
      #fff 50%,
      #fff 95.67%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .league-bubble,
  .league-bubble.right {
    flex-direction: row;
    text-align: left;
  }

  .league-dot {
    display: block;
    width: 1.0625rem;
    height: 1.0625rem;
    border-width: 0.1875rem;
    top: 1.125rem;
    z-index: 2;
  }

  .left-card .league-dot,
  .right-card .league-dot {
    right: auto;
    left: -2.5rem;
  }

  .league-info,
  .league-bubble.right .league-info {
    max-width: 100%;
    border-radius: 0 0.625rem 0.625rem 0.625rem;
    padding: 1.25rem 1.875rem;
    margin-left: 1.25rem;
  }

  .league-info::after,
  .league-bubble.right .league-info::after {
    right: auto;
    left: -2rem;
    top: 1.25rem;
    width: 4rem;
    height: 0.875rem;
    transform: none;
  }

  .league-title {
    font-size: 2.0625rem;
    margin-bottom: 1.25rem;
  }

  .league-desc {
    font-size: 1.25rem;
  }

  .baseball {
    min-height: auto;
    border-radius: 8.125rem 0 0 0;
    margin-top: -6.75rem;
  }

  .baseball-bg-dark {
    border-radius: 8.125rem 0 0 0;
  }

  .baseball-content {
    padding: 5rem 1.25rem 3.75rem;
    gap: 1.875rem;
  }

  .baseball-subtitle p {
    margin-bottom: 0.375rem;
  }

  .baseball-rows {
    width: 100%;
    gap: 3rem;
  }

  .baseball-row {
    gap: 1.875rem;
  }

  .sport-label {
    margin-bottom: 1.25rem;
  }

  .baseball-circle {
    width: 8.75rem;
    height: 8.75rem;
  }

  .baseball-circle-img {
    box-shadow: -0.6875rem 0.25rem 0 0 #ff9a00;
  }

  .baseball-cta {
    padding: 0.9375rem 5rem;
    margin: 2.0625rem 0;
  }

  .nba-sports {
    min-height: auto;
  }

  .nba-sports-bg-img {
    display: none;
  }

  .nba-sports-bg-dark {
    border-radius: 0 8.125rem 0 0;
  }

  .nba-sports-content {
    padding: 6.25rem 1.25rem 3.75rem;
  }

  .nba-header {
    margin-bottom: 10.0625rem;
  }

  .nba-subtitle p {
    margin-bottom: 0.375rem;
  }

  .sport-rows {
    gap: 3.625rem;
  }

  .sport-row-item {
    gap: 2.5rem;
  }

  .sport-accent-bar {
    width: 4.5625rem;
    height: 17.8125rem;
    border-radius: 0.9375rem 0 0 0.9375rem;
  }

  .sport-rect-image {
    width: 19.4375rem;
    height: 16.3125rem;
    margin-left: 0.71rem;
    margin-top: 0.8rem;
    border-radius: 0 0.625rem 0.625rem 0;
  }

  .sport-text-area {
    gap: 1.8125rem;
  }

  .sport-row-title {
    font-size: 3.75rem;
  }

  .sport-row-desc {
    font-size: 1.4375rem;
  }

  .sport-row-desc p {
    margin-bottom: 0.375rem;
  }

  .how-to-use {
    min-height: 82.875rem;
  }

  .how-to-use-content {
    max-width: 38.625rem;
    padding: 3.75rem 1.25rem;
    align-items: center;
    text-align: center;
    gap: 1.875rem;
    min-height: 82.875rem;
    margin: 0 auto;
  }

  .how-to-use-bg-ellipse {
    left: -12.5625rem;
    width: 71.625rem;
    height: 62.375rem;
  }

  .how-to-use-bg-image {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 73.875rem;
  }

  .how-to-use-bg-rect {
    width: 100%;
  }

  .how-to-use-content h2 {
    font-size: 3.75rem;
  }

  .how-to-use-desc {
    text-align: center;
  }

  .how-to-use-desc p {
    margin-bottom: 0.375rem;
  }

  .how-to-use-closing {
    font-size: 1.875rem;
    text-align: center;
    margin-top: auto;
  }

  .how-to-use-closing p {
    margin-bottom: 0.375rem;
  }

  /* Navigation mobile */
  .site-nav {
    height: 6.5rem;
    padding: 0 1.75rem;
  }

  .nav-logo img {
    height: 3.75rem;
  }

  .nav-toggle {
    display: block;
    font-size: 2.75rem;
    padding: 0.5rem;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-dark-1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0;
    gap: 0;
    height: auto;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    height: auto;
    padding: 1rem 1.75rem;
    font-size: 1.5rem;
  }

  .nav-link.active::after {
    display: none;
  }

  /* Analysis categories mobile */
  .analysis-category-tabs {
    gap: 0.375rem;
  }

  .analysis-tab {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .analysis-match-header {
    display: none;
  }

  .analysis-match-row {
    grid-template-columns: 1fr auto 1fr;
    padding: 0.875rem 1rem;
    gap: 0.5rem;
  }

  .match-team {
    font-size: 0.875rem;
  }

  .match-league {
    font-size: 0.6875rem;
  }

  .match-vs {
    font-size: 0.75rem;
  }

  .match-date {
    font-size: 0.6875rem;
  }

  /* Analysis cards mobile */
  .analysis-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Internal links mobile */
  .internal-links-content {
    flex-direction: column;
    align-items: center;
  }

  .internal-link-card {
    max-width: 100%;
    width: 100%;
  }

  /* Service features mobile */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sports-list-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* App features mobile */
  .app-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Download page mobile */
  .download-hero {
    padding: 4rem 1.25rem 3rem;
  }

  .steps-section {
    padding: 3.75rem 1.25rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-section {
    padding: 3.75rem 1.25rem;
  }

  .faq-question {
    font-size: 1.375rem;
    padding: 1.25rem 1.5rem;
  }

  .faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
  }
}
