:root {
  --red: #7202fc;
  --black: #101010;
  --ink: #222222;
  --muted: #777777;
  --line: #e3e3e3;
  --soft: #f6f6f6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--white);
  color: var(--ink);
  font-family: "Roboto", Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

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

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

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.trending-bar {
  background: var(--black);
  color: var(--white);
}

.trending-inner {
  display: flex;
  align-items: center;
  min-height: 42px;
  overflow: hidden;
}

.trending-inner span {
  align-self: stretch;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 20px;
  margin-right: 18px;
  background: var(--red);
  font: 900 12px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.trending-list {
  position: relative;
  min-width: 0;
  flex: 1;
}

.trending-item {
  display: none;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}

.trending-item.active {
  display: block;
}

.live-pill {
  flex: 0 0 auto;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font: 900 12px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.live-pill:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.brand-band {
  background: #050213;
}

.brand-row {
  min-height: 152px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
}

.brand strong {
  color: #0b2239;
  font: 900 52px/0.9 "Barlow", Arial, sans-serif;
  letter-spacing: -1px;
}

.brand strong span {
  color: var(--red);
}

.brand img {
  max-height: 92px;
  width: auto;
}

.top-ad {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}

.publicidad-slot {
  max-width: 100%;
}

.publicidad-slot img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav {
  border-top: 4px solid var(--red);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
}

.nav-inner {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 52px;
}

.nav-inner > a {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 15px;
  font: 900 14px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.nav-inner > a:hover,
.nav-inner > a.active {
  background: var(--red);
  color: var(--white);
}

.search-form {
  margin-left: auto;
  display: flex;
  align-items: center;
  min-width: 230px;
  border-left: 1px solid var(--line);
}

.search-form input {
  width: 100%;
  min-width: 0;
  height: 38px;
  border: 0;
  padding: 0 10px;
  outline: none;
  font: 500 13px "Roboto", Arial, sans-serif;
}

.search-form button {
  height: 38px;
  border: 0;
  padding: 0 12px;
  background: var(--black);
  color: var(--white);
  font: 800 12px "Barlow", Arial, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.search-form-page {
  max-width: 520px;
  margin: 0;
  border: 1px solid var(--line);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  padding-top: 34px;
  padding-bottom: 42px;
}

.content-column {
  min-width: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.5fr 0.5fr;
  grid-template-rows: 280px 190px;
  gap: 4px;
  padding-top: 28px;
}

.hero-story {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #ddd;
}

.hero-story.lead {
  grid-row: 1 / span 2;
}

.hero-story:nth-child(2) {
  grid-column: 2 / span 2;
}

.hero-story a,
.story-image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-story img,
.story-image img,
.image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder {
  min-height: 160px;
  background:
    linear-gradient(135deg, rgba(114, 2, 252, 0.92), rgba(16, 16, 16, 0.96)),
    var(--soft);
}

.hero-story a::after,
.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.74));
}

.story-category {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  background: var(--black);
  color: var(--white);
  font: 900 12px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.hero-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--white);
}

.hero-copy h2 {
  margin: 0 0 8px;
  font: 800 21px/1.16 "Barlow", Arial, sans-serif;
}

.hero-story.lead .hero-copy h2 {
  max-width: 650px;
  font-size: 34px;
}

.hero-story:nth-child(2) .hero-copy h2 {
  max-width: 430px;
  font-size: 26px;
}

.hero-story:nth-child(3) .hero-copy h2,
.hero-story:nth-child(4) .hero-copy h2 {
  font-size: 19px;
  line-height: 1.18;
}

.hero-copy time {
  font-size: 12px;
  font-weight: 700;
}

.section-block,
.category-columns {
  margin-top: 34px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--black);
}

.section-title h1,
.section-title h2 {
  align-self: stretch;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 15px;
  background: var(--black);
  color: var(--white);
  font: 900 16px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.section-title h1::after,
.section-title h2::after {
  content: "";
  width: 12px;
  height: 100%;
  margin-right: -27px;
  margin-left: 15px;
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.section-title a {
  color: var(--red);
  font: 900 12px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.story-card {
  min-width: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.story-card .story-image {
  height: 210px;
  margin-bottom: 14px;
  overflow: hidden;
}

.story-card .story-body h2 {
  margin: 0 0 8px;
  font: 900 23px/1.12 "Barlow", Arial, sans-serif;
}

.story-card .story-body p {
  margin: 0 0 10px;
  color: #555555;
  font-size: 14px;
  line-height: 1.55;
}

.story-card time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.pagination-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.pagination-nav a {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--black);
  font: 900 13px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.pagination-nav a:hover,
.pagination-nav a.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.category-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.category-panel {
  min-width: 0;
}

.section-title.compact h2 {
  font-size: 14px;
}

.featured-card .story-image {
  height: 150px;
}

.featured-card .story-body h2 {
  font-size: 18px;
}

.mini-link {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.mini-link span {
  display: block;
  margin-bottom: 6px;
  font: 800 15px/1.25 "Barlow", Arial, sans-serif;
}

.mini-link time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.live-tv-section {
  margin: 0 0 34px;
  border-top: 4px solid var(--red);
  background: #101010;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.live-tv-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #171717;
  border-top: 0;
  background: #090909;
}

.live-tv-player video {
  display: block;
  width: 100%;
  height: 100%;
  background: #0f0f0f;
  object-fit: cover;
}

.live-tv-toolbar {
  display: inline-flex;
  align-items: center;
  gap: 0;
  max-width: 100%;
  padding: 16px;
  background: transparent;
  color: var(--white);
}

.live-tv-toolbar span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  background: var(--red);
  font: 900 11px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.live-tv-toolbar strong {
  overflow: hidden;
  padding: 0 12px;
  font: 900 14px/1 "Barlow", Arial, sans-serif;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-page {
  padding: 42px 0 56px;
  background: #f5f5f7;
}

.live-page-card {
  padding: 22px;
  border-top: 5px solid var(--red);
  background: #050213;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}

.live-page-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--white);
}

.live-page-header span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  background: var(--red);
  font: 900 11px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.live-page-header h1 {
  margin: 0;
  font: 900 30px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.live-page .live-tv-section {
  margin: 0;
}

.live-page .live-tv-player {
  max-height: calc(100vh - 250px);
  min-height: 420px;
  border-color: rgba(255, 255, 255, 0.14);
}

.live-unavailable {
  padding: 52px 24px;
  background: #101010;
  color: var(--white);
  text-align: center;
}

.live-unavailable strong {
  display: block;
  margin-bottom: 10px;
  font: 900 24px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.live-unavailable p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.sidebar {
  min-width: 0;
  position: sticky;
  top: 18px;
  align-self: start;
}

.widget {
  margin-bottom: 30px;
}

.widget h3 {
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--black);
  font: 900 17px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.follow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.follow-link {
  min-height: 48px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  background: var(--black);
  color: var(--white);
  font: 900 12px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.follow-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.follow-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font: 900 12px/1 "Barlow", Arial, sans-serif;
}

.follow-facebook .follow-icon::before {
  content: "f";
  font-size: 18px;
  text-transform: lowercase;
}

.follow-instagram {
  background: var(--red);
}

.follow-instagram .follow-icon::before {
  content: "ig";
}

.follow-twitter .follow-icon::before {
  content: "x";
  font-size: 16px;
}

.radio-player {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-top: 4px solid var(--red);
  background: #101010;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.radio-player-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.radio-player-head span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  background: var(--red);
  color: var(--white);
  font: 900 10px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.radio-player-head strong {
  overflow: hidden;
  color: var(--white);
  font: 900 15px/1.2 "Barlow", Arial, sans-serif;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.radio-player audio {
  width: 100%;
  height: 42px;
  filter: invert(1) grayscale(1);
}

.popular-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.popular-item img,
.popular-item .image-placeholder {
  width: 96px;
  height: 72px;
  object-fit: cover;
}

.popular-item span {
  font: 800 15px/1.22 "Barlow", Arial, sans-serif;
}

.ad-widget {
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.article-view {
  max-width: 820px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 16px;
  background: var(--red);
  color: var(--white);
  font: 900 12px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.article-view h1 {
  margin: 0 0 12px;
  font: 900 44px/1.04 "Barlow", Arial, sans-serif;
}

.article-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.article-share span {
  margin-right: 4px;
  color: var(--black);
  font: 900 12px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.article-share a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: var(--white);
  font: 900 12px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.share-facebook {
  background: #1877f2;
}

.share-twitter {
  background: #111111;
}

.share-whatsapp {
  background: #25d366;
}

.article-image {
  margin-bottom: 22px;
}

.article-image img,
.article-image .image-placeholder {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.lead {
  font: 500 19px/1.55 "Roboto", Arial, sans-serif;
  color: #444444;
}

.article-body {
  font-size: 17px;
  line-height: 1.72;
}

.article-body img {
  height: auto;
}

.post-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px 0 44px;
  overflow: hidden;
  border-radius: 5px;
  background: #eaf2fb;
}

.post-switch-card {
  min-height: 150px;
  padding: 28px 30px;
  border-right: 1px solid #d3deea;
}

.post-switch-card.next {
  border-right: 0;
  text-align: right;
}

.post-switch-card span {
  display: block;
  margin-bottom: 8px;
  color: #596679;
  font-size: 15px;
}

.post-switch-card a {
  display: block;
  color: #1c222b;
  font: 900 21px/1.25 "Barlow", Arial, sans-serif;
}

.related-notes {
  margin-top: 8px;
}

.related-notes h2 {
  margin: 0 0 24px;
  color: #1c222b;
  font: 900 32px/1.1 "Barlow", Arial, sans-serif;
}

.related-notes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.related-note-card {
  min-width: 0;
}

.related-note-image {
  position: relative;
  display: block;
  height: 210px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 7px;
}

.related-note-image img,
.related-note-image .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-note-image span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font: 900 12px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.related-note-card h3 {
  margin: 0;
  color: #1c222b;
  font: 900 22px/1.24 "Barlow", Arial, sans-serif;
}

.sports-watch-section {
  margin-top: 12px;
  padding: 58px 0 50px;
  background: #191919;
  color: var(--white);
}

.sports-watch-title {
  margin-bottom: 22px;
  font: 900 18px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.sports-watch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.95fr);
  border: 1px solid #333333;
}

.sports-watch-lead {
  min-width: 0;
  min-height: 430px;
  background: #242424;
}

.sports-watch-lead a {
  position: relative;
  display: block;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
}

.sports-watch-lead img,
.sports-watch-lead .image-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.sports-watch-lead a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.74));
}

.sports-lead-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
  z-index: 2;
}

.sports-lead-copy h2 {
  max-width: 780px;
  margin: 0;
  font: 500 25px/1.28 "Roboto", Arial, sans-serif;
}

.sports-watch-list {
  min-width: 0;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  background: #1a1a1a;
}

.sports-watch-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 142px;
  padding: 28px 30px;
  border-bottom: 1px solid #333333;
}

.sports-watch-item:last-child {
  border-bottom: 0;
}

.sports-watch-item img,
.sports-watch-item .image-placeholder {
  width: 110px;
  height: 84px;
  object-fit: cover;
}

.sports-watch-item span {
  font: 500 16px/1.55 "Roboto", Arial, sans-serif;
}

.more-reviews-section {
  padding: 44px 0 48px;
  background: var(--white);
}

.more-reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
}

.split-section-title {
  min-height: 36px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--black);
}

.split-section-title h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0;
  padding: 0 15px;
  background: var(--black);
  color: var(--white);
  font: 900 13px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.split-section-title h2::after {
  content: "";
  position: absolute;
  top: 0;
  right: -14px;
  width: 14px;
  height: 100%;
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.more-news-list {
  display: grid;
  gap: 22px;
}

.more-news-item {
  display: grid;
  grid-template-columns: minmax(220px, 272px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.more-news-image {
  display: block;
  height: 160px;
  overflow: hidden;
}

.more-news-image img,
.more-news-image .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-news-copy h3 {
  margin: 0 0 10px;
  font: 900 19px/1.22 "Barlow", Arial, sans-serif;
}

.more-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
  color: #777777;
  font-size: 12px;
}

.more-news-meta strong {
  color: var(--black);
  font: 900 12px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.more-news-copy p {
  margin: 0;
  color: #555555;
  font-size: 13px;
  line-height: 1.6;
}

.more-side-block {
  position: sticky;
  top: 18px;
  align-self: start;
}

.facebook-follow-block,
.politics-block {
  margin-bottom: 28px;
}

.facebook-page-frame {
  width: 100%;
  min-height: 132px;
  padding: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--white);
}

.facebook-page-frame .fb-page,
.facebook-page-frame iframe {
  max-width: 100%;
}

.politics-list {
  display: grid;
  gap: 18px;
}

.politics-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.politics-item img,
.politics-item .image-placeholder {
  width: 80px;
  height: 60px;
  object-fit: cover;
}

.politics-item strong {
  display: block;
  margin-bottom: 6px;
  font: 900 16px/1.25 "Barlow", Arial, sans-serif;
}

.politics-item time {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.more-side-ad {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  overflow: hidden;
}

.site-footer {
  margin-top: 40px;
  background: #0d0f12;
  border-top: 4px solid var(--red);
  color: rgba(255, 255, 255, 0.78);
}

.footer-area-top {
  padding: 48px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-box {
  min-width: 0;
}

.footer-box h2 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 13px;
  color: var(--white);
  font: 900 15px/1 "Barlow", Arial, sans-serif;
  text-transform: uppercase;
}

.footer-box h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--red);
}

.footer-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-most-viewed li {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-most-viewed li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-post {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
}

.footer-post img,
.footer-post .image-placeholder {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}

.footer-post strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font: 800 13px/1.35 "Barlow", Arial, sans-serif;
}

.footer-post time {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.footer-categories li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-categories li:last-child {
  border-bottom: 0;
}

.footer-categories a {
  min-height: 44px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
}

.footer-categories a:hover {
  color: var(--red);
}

.footer-categories span {
  min-width: 56px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 12px;
  text-align: center;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.footer-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}

.footer-gallery img,
.footer-gallery .image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.footer-gallery a:hover img {
  transform: scale(1.05);
}

.footer-area-bottom {
  padding: 28px 0 34px;
  background: #090a0c;
}

.footer-bottom-inner {
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.footer-logo img {
  display: block;
  max-height: 46px;
  width: auto;
  margin: 0 auto;
}

.footer-area-bottom p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-area-bottom a {
  color: inherit;
}

.footer-area-bottom p:last-child img {
  display: block;
  max-width: 100%;
  max-height: 58px;
  margin: 0 auto;
  opacity: 0.72;
}

#scrollUp {
  position: fixed;
  right: 20px;
  bottom: 16px;
  z-index: 99999;
  width: 44px;
  height: 44px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: rgba(114, 2, 252, 0.22);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 900 24px/1 "Barlow", Arial, sans-serif;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  animation: scrollUpBlink 10s linear infinite;
}

#scrollUp.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollUp:hover,
#scrollUp:focus {
  background: var(--red);
  color: var(--white);
  outline: none;
}

@keyframes scrollUpBlink {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(114, 2, 252, 0);
  }
  50% {
    box-shadow: 0 0 14px rgba(114, 2, 252, 0.55);
  }
}

@media (max-width: 1020px) {
  .page-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .ad-widget {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .trending-bar {
    display: none;
  }

  .home-flow {
    display: flex;
    flex-direction: column;
  }

  .home-flow .page-grid {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 18px;
  }

  .home-flow .hero-grid {
    order: 2;
  }

  .content-column,
  .sidebar {
    display: contents;
  }

  .live-tv-section {
    order: 1;
    margin: 0;
  }

  .radio-widget {
    order: 2;
    margin-bottom: 0;
  }

  .content-column > .section-block {
    order: 3;
    margin-top: 0;
  }

  .category-columns {
    order: 4;
  }

  .sidebar > .ad-widget {
    order: 5;
  }

  .sidebar > .widget:not(.radio-widget):not(.ad-widget) {
    order: 6;
  }

  .brand-row {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .brand {
    justify-content: center;
    flex-basis: auto;
    width: 100%;
  }

  .brand strong {
    font-size: 38px;
  }

  .brand img {
    max-height: 96px;
    margin: 0 auto;
  }

  .top-ad {
    width: 100%;
    justify-content: center;
  }

  .nav-shell {
    display: block;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    border: 0;
    background: transparent;
    color: var(--black);
    font: 900 13px/1 "Barlow", Arial, sans-serif;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-menu-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-menu-lines span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--black);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-menu-toggle strong {
    margin-left: 2px;
  }

  .main-nav.is-open .mobile-menu-lines span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .main-nav.is-open .mobile-menu-lines span:nth-child(2) {
    opacity: 0;
  }

  .main-nav.is-open .mobile-menu-lines span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-inner {
    display: none;
    align-items: stretch;
    flex-direction: column;
    min-height: 0;
    padding-bottom: 12px;
  }

  .main-nav.is-open .nav-inner {
    display: flex;
  }

  .nav-inner > a {
    align-self: stretch;
    min-height: 42px;
    border-top: 1px solid var(--line);
    padding: 0 0;
  }

  .search-form {
    margin-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    min-width: 0;
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .hero-story:nth-child(2) {
    grid-column: auto;
  }

  .hero-story,
  .hero-story.lead {
    grid-row: auto;
    height: 285px;
  }

  .hero-story.lead .hero-copy h2,
  .hero-copy h2 {
    font-size: 25px;
  }

  .story-grid,
  .category-columns,
  .sidebar {
    grid-template-columns: 1fr;
  }

  .article-view h1 {
    font-size: 34px;
  }

  .post-switcher,
  .related-notes-grid {
    grid-template-columns: 1fr;
  }

  .post-switch-card,
  .post-switch-card.next {
    min-height: auto;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid #d3deea;
  }

  .post-switch-card:last-child {
    border-bottom: 0;
  }

  .sports-watch-section {
    padding: 40px 0;
  }

  .sports-watch-grid {
    grid-template-columns: 1fr;
  }

  .sports-watch-lead {
    min-height: 350px;
  }

  .sports-watch-list {
    grid-template-rows: none;
  }

  .sports-watch-item {
    min-height: auto;
  }

  .more-reviews-grid {
    grid-template-columns: 1fr;
  }

  .more-side-block {
    position: static;
  }

  .live-tv-toolbar {
    padding: 12px;
  }

  .live-tv-toolbar strong {
    min-width: 0;
    font-size: 13px;
  }

  .live-page {
    padding: 24px 0 36px;
  }

  .live-page-card {
    padding: 12px;
  }

  .live-page-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .live-page-header h1 {
    font-size: 24px;
  }

  .live-page .live-tv-player {
    min-height: 260px;
    max-height: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 22px, 1140px);
  }

  .hero-story,
  .hero-story.lead {
    height: 250px;
  }

  .story-card .story-image {
    height: 190px;
  }

  .post-switch-card {
    padding: 22px 18px;
  }

  .post-switch-card a {
    font-size: 19px;
  }

  .related-notes h2 {
    font-size: 28px;
  }

  .related-note-image {
    height: 190px;
  }

  .popular-item {
    grid-template-columns: 84px 1fr;
  }

  .popular-item img,
  .popular-item .image-placeholder {
    width: 84px;
    height: 66px;
  }

  .sports-watch-title {
    font-size: 16px;
  }

  .sports-watch-lead {
    min-height: 300px;
  }

  .sports-lead-copy {
    left: 18px;
    right: 18px;
    bottom: 22px;
  }

  .sports-lead-copy h2 {
    font-size: 20px;
  }

  .sports-watch-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .sports-watch-item img,
  .sports-watch-item .image-placeholder {
    width: 92px;
    height: 70px;
  }

  .sports-watch-item span {
    font-size: 14px;
    line-height: 1.45;
  }

  .more-reviews-section {
    padding: 34px 0 38px;
  }

  .more-news-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .more-news-image {
    height: 190px;
  }

  .politics-item {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
  }

  .politics-item img,
  .politics-item .image-placeholder {
    width: 86px;
    height: 64px;
  }

  .footer-area-top {
    padding-top: 30px;
  }

.footer-gallery {
    gap: 8px;
  }
}

.not-found-page {
  background:
    linear-gradient(135deg, rgba(16, 16, 16, 0.04), rgba(114, 2, 252, 0.06)),
    var(--white);
  padding: 58px 0 70px;
}

.not-found-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 58px 28px;
  border-top: 5px solid var(--red);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(16, 16, 16, 0.08);
  text-align: center;
}

.not-found-panel::before {
  content: "404";
  position: absolute;
  right: -20px;
  bottom: -58px;
  color: rgba(16, 16, 16, 0.035);
  font-family: "Barlow", sans-serif;
  font-size: 220px;
  font-weight: 900;
  line-height: 1;
}

.not-found-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  background: var(--black);
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.not-found-number {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-family: "Barlow", sans-serif;
  font-size: clamp(82px, 13vw, 150px);
  font-weight: 900;
  line-height: 0.86;
  margin-bottom: 22px;
}

.not-found-panel h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Barlow", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  text-transform: uppercase;
}

.not-found-panel p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.not-found-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.not-found-link,
.not-found-secondary {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.not-found-link {
  background: var(--red);
  color: var(--white);
}

.not-found-secondary {
  border: 2px solid var(--black);
  color: var(--black);
}

.not-found-link:hover,
.not-found-secondary:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

@media (max-width: 640px) {
  .not-found-page {
    padding: 34px 0 46px;
  }

  .not-found-panel {
    min-height: 360px;
    padding: 42px 20px;
  }

  .not-found-panel::before {
    right: -28px;
    bottom: -36px;
    font-size: 140px;
  }

  .not-found-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 260px);
  }

  .not-found-link,
  .not-found-secondary {
    justify-content: center;
  }
}
