:root {
  --tv-red: #d90000;
  --tv-red-dark: #aa0000;
  --tv-dark: #151515;
  --tv-text: #171717;
  --tv-muted: #5f6368;
  --tv-line: #e7e7e7;
  --tv-soft: #f7f7f7;
  --tv-green: #098c45;
  --tv-shadow: 0 16px 40px rgba(18, 18, 18, 0.08);
  --tv-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--tv-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.tv-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.tv-header {
  background: #fff;
  border-bottom: 1px solid var(--tv-line);
}

.tv-brandbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  gap: 24px;
}

.tv-logo {
  display: inline-flex;
  align-items: baseline;
  color: #111;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 1000;
  font-style: italic;
  letter-spacing: -3px;
  line-height: 1;
}

.tv-logo span:last-child {
  color: var(--tv-red);
}

.tv-logo::after {
  content: "";
  width: 68px;
  height: 10px;
  margin-left: -8px;
  border-bottom: 5px solid var(--tv-red);
  border-radius: 999px;
  transform: skewX(-24deg) translateY(6px);
}

.tv-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border: 1px solid var(--tv-dark);
  border-radius: 6px;
  background: #fff;
  color: var(--tv-dark);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.tv-btn:hover {
  transform: translateY(-1px);
}

.tv-btn-red {
  border-color: var(--tv-red);
  background: var(--tv-red);
  color: #fff;
  box-shadow: 0 12px 22px rgba(217, 0, 0, 0.2);
}

.tv-btn-outline {
  border-color: var(--tv-red);
  color: var(--tv-red);
}

.tv-navwrap {
  background: linear-gradient(180deg, #e60000 0%, #c90000 100%);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.16);
}

.tv-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  gap: clamp(22px, 4vw, 70px);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.tv-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 66px;
  border-bottom: 4px solid transparent;
}

.tv-nav a:hover,
.tv-nav a.is-active {
  border-color: #fff;
}

.tv-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--tv-line);
  background:
    radial-gradient(circle at 78% 50%, rgba(217, 0, 0, 0.06), transparent 34%),
    linear-gradient(90deg, #fff 0%, #fff 56%, #f5f5f5 100%);
}

.tv-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  min-height: 590px;
  gap: 24px;
}

.tv-hero-copy {
  position: relative;
  z-index: 2;
  padding: 60px 0 58px;
}

.tv-hero h1 {
  margin: 0;
  max-width: 560px;
  color: #0e0e0e;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 1000;
  letter-spacing: -1px;
  line-height: 1.08;
}

.tv-hero h1 strong {
  color: var(--tv-red);
}

.tv-hero p {
  max-width: 490px;
  margin: 28px 0 30px;
  color: #555;
  font-size: 18px;
  font-weight: 500;
}

.tv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tv-hero-media {
  position: relative;
  display: flex;
  min-height: 460px;
  align-items: center;
  margin-right: 0;
}

.tv-hero-media::before {
  content: "";
  position: absolute;
  inset: 8% 0 8% 13%;
  background: linear-gradient(135deg, rgba(217, 0, 0, 0.16), rgba(217, 0, 0, 0));
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 1;
}

.tv-hero-media img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  object-position: right center;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
}

.tv-section {
  padding: 44px 0;
}

.tv-section-title {
  margin: 0 0 18px;
  color: #111;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 1000;
  line-height: 1.14;
  text-align: center;
}

.tv-section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 99px;
  background: var(--tv-red);
}

.tv-lead {
  max-width: 850px;
  margin: 0 auto 32px;
  color: var(--tv-muted);
  font-size: 17px;
  text-align: center;
}

.tv-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tv-feature {
  min-height: 205px;
  padding: 34px 24px;
  border: 1px solid var(--tv-line);
  border-radius: var(--tv-radius);
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 32px rgba(20, 20, 20, 0.04);
}

.tv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  margin-bottom: 16px;
  color: var(--tv-red);
  font-size: 34px;
  font-weight: 1000;
  line-height: 1;
}

.tv-feature h3,
.tv-cat span,
.tv-step h3,
.tv-news-card h3 {
  margin: 0;
  color: #161616;
}

.tv-feature h3 {
  font-size: 19px;
  font-weight: 900;
}

.tv-feature p {
  margin: 10px 0 0;
  color: var(--tv-muted);
  font-size: 15px;
}

.tv-cat-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 30px;
  border: 1px solid var(--tv-line);
  border-radius: var(--tv-radius);
  background: #fff;
  overflow: hidden;
}

.tv-cat {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--tv-line);
  color: var(--tv-red);
  font-weight: 900;
}

.tv-cat:last-child {
  border-right: 0;
}

.tv-cat i {
  font-style: normal;
  font-size: 36px;
  font-weight: 1000;
  line-height: 1;
}

.tv-cat span {
  color: #111;
  font-size: 17px;
  font-weight: 900;
}

.tv-card {
  border: 1px solid var(--tv-line);
  border-radius: var(--tv-radius);
  background: #fff;
  box-shadow: var(--tv-shadow);
}

.tv-steps {
  padding: 34px 48px 42px;
}

.tv-step-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.tv-step {
  position: relative;
  text-align: center;
}

.tv-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -26px;
  width: 18px;
  height: 18px;
  border-top: 4px solid #cfcfcf;
  border-right: 4px solid #cfcfcf;
  transform: rotate(45deg);
}

.tv-num {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  border-radius: 999px;
  background: var(--tv-red);
  color: #fff;
  font-size: 16px;
  font-weight: 1000;
}

.tv-step-icon {
  display: block;
  color: var(--tv-red);
  font-size: 34px;
  font-weight: 1000;
}

.tv-step h3 {
  margin-top: 8px;
  font-size: 21px;
  font-weight: 1000;
}

.tv-step p {
  margin: 9px auto 0;
  max-width: 190px;
  color: var(--tv-muted);
  font-size: 15px;
}

.tv-news {
  padding: 34px 18px 40px;
}

.tv-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 34px;
  margin-top: 30px;
}

.tv-news-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.tv-thumb {
  position: relative;
  min-height: 132px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(217, 0, 0, 0.25), transparent 48%),
    radial-gradient(circle at 70% 36%, rgba(255, 255, 255, 0.76), transparent 18%),
    linear-gradient(145deg, #111 0%, #2b2b2b 48%, #8d0000 100%);
  overflow: hidden;
}

.tv-thumb::after {
  content: attr(data-label);
  position: absolute;
  left: 13px;
  bottom: 12px;
  color: #fff;
  font-size: 24px;
  font-weight: 1000;
}

.tv-thumb-ball {
  background:
    radial-gradient(circle at 42% 48%, #fff 0 11%, #111 12% 17%, #fff 18% 28%, transparent 29%),
    linear-gradient(145deg, #123 0%, #0a642e 56%, #090909 100%);
}

.tv-thumb-slot {
  background:
    linear-gradient(145deg, rgba(255, 215, 0, 0.4), transparent 45%),
    linear-gradient(145deg, #1b1100 0%, #b01313 58%, #090909 100%);
}

.tv-news-card h3 {
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.3;
}

.tv-news-card p {
  margin: 9px 0 0;
  color: var(--tv-muted);
  font-size: 15px;
}

.tv-date {
  display: block;
  margin-top: 9px;
  color: #555;
  font-size: 14px;
  font-weight: 700;
}

.tv-center {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.tv-footer {
  margin-top: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #e00000 0%, #b60000 100%);
  color: #fff;
}

.tv-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr 1fr;
  gap: 54px;
  padding: 58px 0 46px;
}

.tv-footer .tv-logo {
  color: #fff;
  font-size: 55px;
  letter-spacing: -2px;
}

.tv-footer .tv-logo span:last-child {
  color: #fff;
}

.tv-footer p,
.tv-footer li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.tv-footer h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 1000;
}

.tv-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tv-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.tv-social span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--tv-red);
  font-size: 13px;
  font-weight: 900;
}

.tv-copy {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(80, 0, 0, 0.18);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.tv-article-hero {
  position: relative;
  overflow: hidden;
  background: #0f0f0f;
  color: #fff;
}

.tv-article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42)), url("/assets/tv88-hero.png") center/cover no-repeat;
}

.tv-article-hero .tv-shell {
  position: relative;
  z-index: 1;
  padding: 86px 0;
}

.tv-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.tv-article-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 1000;
  line-height: 1.08;
}

.tv-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
}

.tv-article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  padding: 58px 0 70px;
}

.tv-article-main {
  padding: 42px;
}

.tv-article-main h2 {
  margin: 30px 0 12px;
  color: var(--tv-red);
  font-size: 30px;
  line-height: 1.22;
}

.tv-article-main p,
.tv-article-main li {
  color: #2f2f2f;
  font-size: 18px;
}

.tv-article-main img {
  width: 100%;
  margin: 26px 0;
  border-radius: 7px;
  border: 1px solid var(--tv-line);
}

.tv-side {
  padding: 30px;
  align-self: start;
  position: sticky;
  top: 20px;
}

.tv-side h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 1000;
}

.tv-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tv-side li {
  border-bottom: 1px solid var(--tv-line);
}

.tv-side a {
  display: block;
  padding: 14px 0;
  color: #222;
  font-weight: 800;
}

.tv-pagination {
  margin-top: 28px;
}

.tv-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tv-nextprev {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--tv-line);
  color: var(--tv-red);
  font-weight: 900;
}

.tv-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.tv-actions-row a {
  padding: 9px 13px;
  border: 1px solid var(--tv-line);
  border-radius: 6px;
  color: var(--tv-muted);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .tv-shell {
    width: min(100% - 28px, 720px);
  }

  .tv-brandbar {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .tv-actions,
  .tv-hero-actions {
    width: 100%;
  }

  .tv-actions .tv-btn,
  .tv-hero-actions .tv-btn {
    flex: 1;
    min-width: 0;
    padding-inline: 14px;
  }

  .tv-nav {
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    padding: 0 14px;
  }

  .tv-nav a {
    flex: 0 0 auto;
    padding: 0 16px;
  }

  .tv-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tv-hero-copy {
    padding: 44px 0 20px;
  }

  .tv-hero-media {
    min-height: 0;
    margin: 0 0 30px;
  }

  .tv-hero-media::before {
    display: none;
  }

  .tv-hero-media img {
    height: auto;
    min-height: 220px;
    border-radius: 8px;
    clip-path: none;
    object-position: center;
  }

  .tv-feature-grid,
  .tv-cat-strip,
  .tv-step-row,
  .tv-news-grid,
  .tv-footer-grid,
  .tv-article-wrap {
    grid-template-columns: 1fr;
  }

  .tv-feature {
    min-height: auto;
  }

  .tv-cat {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--tv-line);
  }

  .tv-cat:last-child {
    border-bottom: 0;
  }

  .tv-steps {
    padding: 28px 20px;
  }

  .tv-step:not(:last-child)::after {
    display: none;
  }

  .tv-news {
    padding-inline: 14px;
  }

  .tv-news-card {
    grid-template-columns: 112px 1fr;
  }

  .tv-thumb {
    min-height: 116px;
  }

  .tv-side {
    position: static;
  }
}

@media (max-width: 540px) {
  .tv-logo {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .tv-logo::after {
    width: 46px;
  }

  .tv-hero h1 {
    font-size: 38px;
  }

  .tv-hero p {
    font-size: 16px;
  }

  .tv-btn {
    min-height: 44px;
    font-size: 14px;
  }

  .tv-section {
    padding: 34px 0;
  }

  .tv-section-title {
    font-size: 28px;
  }

  .tv-news-card {
    grid-template-columns: 96px 1fr;
    gap: 14px;
  }

  .tv-news-card h3 {
    font-size: 16px;
  }

  .tv-news-card p {
    font-size: 14px;
  }

  .tv-article-main {
    padding: 26px 20px;
  }

  .tv-article-main p,
  .tv-article-main li {
    font-size: 16px;
  }
}
