/* SpaceGate Nova — portals, promotions, sports center and footer. */

html,
body,
* {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  background: transparent !important;
}

/* Content is stream-only: never expose movie or episode download controls. */
[data-download-title],
[data-download-episode],
[data-player-download],
.episode-download,
.sg-cinema-download,
.player-download-btn,
.download-page,
.download-item,
.download-actions {
  display: none !important;
}

/* Commercial compact type scale */
body.sgx-signature {
  font-size: 14px;
}

.sgx-signature .top-links a {
  font-size: 11px;
}

.sg3-hero h1 {
  font-size: clamp(2.7rem, 4.6vw, 5.1rem);
}

.sg3-hero__copy > p,
.sg3-detail__copy > p {
  font-size: clamp(12px, .95vw, 14px);
  line-height: 1.75;
}

.sg3-section__head h2 {
  font-size: clamp(17px, 1.3vw, 22px);
}

.sg3-library__head h1,
.sg3-browse__head h1 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.sg3-detail__copy h1 {
  font-size: clamp(2.7rem, 4.8vw, 5.2rem);
}

.sg3-editorial__copy h2,
.sg3-subscription-ad__copy h2,
.sg3-app-ad__copy h2 {
  font-size: clamp(1.65rem, 2.8vw, 3rem);
}

.sg3-sports__hero h1,
.sg3-topic__hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.sg3-apps > header h1 {
  font-size: clamp(3rem, 6vw, 6.2rem);
}

/* Compact episode library: denser like a commercial streaming service. */
.sg3-episode-grid {
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)) !important;
  gap: 12px !important;
}

.sg3-episode {
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.sg3-episode__visual {
  aspect-ratio: 16 / 8.8;
}

.sg3-episode__visual > span {
  width: 38px;
  height: 38px;
}

.sg3-episode__visual > span svg {
  width: 16px;
  height: 16px;
}

.sg3-episode__body {
  padding: 11px 12px 13px;
}

.sg3-episode__body small {
  font-size: 8px;
}

.sg3-episode__body h3 {
  margin-top: 4px;
  font-size: 12px;
}

.sg3-episode__body p {
  margin-top: 6px;
  font-size: 9px;
  line-height: 1.55;
  -webkit-line-clamp: 1;
}

.sg3-portals {
  margin: 55px 0 46px;
  padding: 0 var(--sg3-page);
}

.sg3-portals__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.sg3-portal {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: var(--sg3-radius-lg);
  background: #11131c;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
  transform: translateZ(0);
}

.sg3-portal > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--sg3-out), filter .4s var(--sg3-ease);
}

.sg3-portal__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 4, 9, .98), rgba(4, 4, 9, .1) 75%),
    linear-gradient(120deg, rgba(139, 66, 255, .13), transparent);
}

.sg3-portal.is-sports .sg3-portal__shade {
  background: linear-gradient(0deg, rgba(4, 4, 9, .98), rgba(6, 40, 31, .12) 78%);
}

.sg3-portal.is-anime .sg3-portal__shade {
  background: linear-gradient(0deg, rgba(4, 4, 9, .98), rgba(75, 25, 97, .1) 78%);
}

.sg3-portal__copy {
  position: absolute;
  z-index: 2;
  right: 19px;
  bottom: 18px;
  left: 19px;
}

.sg3-portal__copy small {
  color: var(--sg3-cyan);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .04em;
}

.sg3-portal__copy strong,
.sg3-portal__copy i {
  display: block;
}

.sg3-portal__copy strong {
  margin-top: 4px;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 780;
  line-height: 1.15;
}

.sg3-portal__copy i {
  min-height: 29px;
  margin-top: 7px;
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
  font-style: normal;
  line-height: 1.5;
}

.sg3-portal__copy b {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 13px;
  color: #fff;
  font-size: 10px;
  font-weight: 750;
}

.sg3-portal__copy b svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.sg3-portal:hover {
  border-color: rgba(255, 255, 255, .18);
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .48);
}

.sg3-portal:hover > img {
  filter: saturate(1.1) contrast(1.03);
  transform: scale(1.075);
}

.sg3-culture-grid {
  margin: 58px var(--sg3-page);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.sg3-culture-grid .sg3-portal {
  min-height: 225px;
}

.sg3-subscription-ad {
  position: relative;
  min-height: 260px;
  margin: 58px var(--sg3-page);
  padding: 42px clamp(26px, 5vw, 70px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--sg3-radius-lg);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 55px);
  background:
    radial-gradient(circle at 15% 30%, rgba(69, 215, 255, .16), transparent 20rem),
    radial-gradient(circle at 84% 65%, rgba(184, 102, 255, .28), transparent 24rem),
    linear-gradient(120deg, #0a0b15, #1a0c2e 74%, #0c1528);
  box-shadow: var(--sg3-shadow);
}

.sg3-subscription-ad::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000, transparent);
}

.sg3-subscription-ad__glow {
  position: absolute;
  right: -8%;
  top: -65%;
  width: 360px;
  height: 360px;
  border: 55px solid rgba(139, 66, 255, .11);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(69, 215, 255, .035);
}

.sg3-subscription-ad__mark,
.sg3-subscription-ad__copy,
.sg3-subscription-ad > a {
  position: relative;
  z-index: 2;
}

.sg3-subscription-ad__mark {
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 32px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 22px 48px rgba(0,0,0,.3);
  backdrop-filter: blur(18px);
}

.sg3-subscription-ad__mark svg {
  width: 38px;
  height: 38px;
  fill: var(--sg3-gold);
  filter: drop-shadow(0 0 18px rgba(245, 201, 107, .35));
}

.sg3-subscription-ad__mark span {
  font: 900 13px Manrope, Inter, sans-serif;
  letter-spacing: .12em;
}

.sg3-subscription-ad__copy small,
.sg3-app-ad__copy > small {
  color: var(--sg3-cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.sg3-subscription-ad__copy h2,
.sg3-app-ad__copy h2 {
  margin: 6px 0 9px;
  font-size: clamp(1.7rem, 3.2vw, 3.6rem);
  font-weight: 780;
  line-height: 1.15;
  letter-spacing: -.045em;
}

.sg3-subscription-ad__copy p,
.sg3-app-ad__copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.8;
}

.sg3-subscription-ad > a {
  min-width: 150px;
  height: 50px;
  padding: 0 20px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #08080d;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.sg3-subscription-ad > a:hover {
  background: var(--sg3-cyan);
  transform: translateY(-2px);
}

.sg3-subscription-ad > a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.sg3-app-ad {
  position: relative;
  min-height: 430px;
  margin: 65px var(--sg3-page);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--sg3-radius-lg);
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  background:
    radial-gradient(circle at 20% 50%, rgba(69, 215, 255, .13), transparent 23rem),
    linear-gradient(125deg, #07151b, #0a0b14 46%, #170d26);
  box-shadow: var(--sg3-shadow);
}

.sg3-app-ad__device {
  position: relative;
  height: 100%;
  min-height: 430px;
}

.sg3-app-ad__screen {
  position: absolute;
  z-index: 2;
  right: 14%;
  bottom: -52px;
  width: 190px;
  height: 385px;
  padding: 38px 17px 16px;
  border: 8px solid #1b1d26;
  border-radius: 38px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #141225, #07070d);
  box-shadow: 0 28px 65px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(255,255,255,.08);
  transform: rotate(7deg);
}

.sg3-app-ad__screen::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 50%;
  width: 55px;
  height: 16px;
  border-radius: 99px;
  background: #020204;
  transform: translateX(50%);
}

.sg3-app-ad__screen img {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.sg3-app-ad__screen i {
  display: block;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(115deg, rgba(139,66,255,.28), rgba(69,215,255,.08));
}

.sg3-app-ad__screen i:nth-of-type(2) {
  height: 92px;
  background: linear-gradient(115deg, rgba(69,215,255,.18), rgba(255,255,255,.04));
}

.sg3-app-ad__desktop {
  position: absolute;
  z-index: 1;
  left: -14%;
  bottom: 52px;
  width: 360px;
  height: 225px;
  border: 9px solid #1b1d26;
  border-radius: 18px;
  display: block;
  background:
    linear-gradient(0deg, rgba(3,3,8,.78), transparent),
    url("../img/hubs/world-cup.jpg") center/cover;
  box-shadow: 0 28px 65px rgba(0,0,0,.5);
  transform: perspective(800px) rotateY(-8deg);
}

.sg3-app-ad__desktop::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -42px;
  width: 100px;
  height: 34px;
  border-bottom: 7px solid #252731;
  background: linear-gradient(90deg, transparent 38%, #252731 38% 62%, transparent 62%);
  transform: translateX(50%);
}

.sg3-app-ad__desktop b {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 44%;
  height: 18px;
  border-radius: 9px;
  background: rgba(255,255,255,.9);
}

.sg3-app-ad__desktop i {
  position: absolute;
  right: 22px;
  bottom: 48px;
  width: 28%;
  height: 8px;
  border-radius: 7px;
  background: var(--sg3-cyan);
}

.sg3-app-ad__copy {
  position: relative;
  z-index: 3;
  padding: 50px clamp(28px, 5vw, 72px);
}

.sg3-app-ad__copy > div {
  display: flex;
  gap: 9px;
  margin-top: 24px;
}

.sg3-app-ad__copy > div a {
  min-width: 145px;
  min-height: 54px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
}

.sg3-app-ad__copy > div a:hover {
  border-color: rgba(69,215,255,.4);
  background: rgba(69,215,255,.1);
}

.sg3-app-ad__copy > div svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: #fff;
}

.sg3-app-ad__copy > div i,
.sg3-app-ad__copy > div b {
  display: block;
  font-style: normal;
  line-height: 1.15;
}

.sg3-app-ad__copy > div i {
  color: var(--sg3-muted);
  font-size: 8px;
}

.sg3-app-ad__copy > div b {
  margin-top: 3px;
  font: 800 12px Manrope, Inter, sans-serif;
}

/* Sports and content portals */
.sg3-sports,
.sg3-topic {
  min-height: 100vh;
  background: var(--sg3-bg);
}

.sg3-sports__hero,
.sg3-topic__hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.sg3-sports__hero > img,
.sg3-topic__hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sg3-sports__hero > span,
.sg3-topic__hero > span {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,3,8,.08), rgba(3,3,8,.45) 47%, rgba(3,3,8,.98)),
    linear-gradient(0deg, var(--sg3-bg), transparent 46%),
    linear-gradient(180deg, rgba(3,3,8,.58), transparent 25%);
}

.sg3-sports__hero > div,
.sg3-topic__hero > div {
  position: absolute;
  z-index: 2;
  right: var(--sg3-page);
  bottom: 22%;
  width: min(650px, 50vw);
}

.sg3-sports__hero small,
.sg3-topic__hero small {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--sg3-cyan);
  font: 800 10px Manrope, Inter, sans-serif;
  letter-spacing: .12em;
}

.sg3-topic__hero small svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.sg3-sports__hero h1,
.sg3-topic__hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(3rem, 6vw, 6.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.06em;
}

.sg3-sports__hero p,
.sg3-topic__hero p {
  max-width: 550px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.8;
}

.sg3-sports__hero > b {
  position: absolute;
  z-index: 2;
  left: 8%;
  bottom: 18%;
  width: 115px;
  height: 115px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(5,5,12,.5);
  backdrop-filter: blur(18px);
}

.sg3-sports__hero > b svg {
  width: 52px;
  height: 52px;
  fill: #fff;
}

.sg3-sports__body,
.sg3-topic__body {
  padding: 25px var(--sg3-page) 120px;
}

.sg3-topic__body {
  padding-inline: 0;
}

.sg3-topic__body > .sg3-sports__empty {
  margin-inline: var(--sg3-page);
}

.sg3-sports__days {
  width: fit-content;
  margin: -50px auto 24px;
  padding: 7px;
  border: 1px solid var(--sg3-line);
  border-radius: 99px;
  display: flex;
  gap: 3px;
  background: rgba(10,10,18,.86);
  box-shadow: 0 18px 55px rgba(0,0,0,.38);
  backdrop-filter: blur(24px);
}

.sg3-sports__days button,
.sg3-sports__leagues button {
  height: 39px;
  padding: 0 17px;
  border: 0;
  border-radius: 99px;
  flex: 0 0 auto;
  background: transparent;
  color: var(--sg3-muted);
  font-size: 11px;
  font-weight: 750;
}

.sg3-sports__days button.is-active {
  background: #fff;
  color: #08080d;
}

.sg3-sports__leagues {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 5px;
  overflow-x: auto;
}

.sg3-sports__leagues button {
  border: 1px solid var(--sg3-line-soft);
  background: rgba(255,255,255,.035);
}

.sg3-sports__leagues button.is-active {
  border-color: rgba(69,215,255,.38);
  background: rgba(69,215,255,.11);
  color: #fff;
}

.sg3-sports__section {
  margin: 0 0 52px;
}

.sg3-sports__section > .sg3-section__head > span {
  color: var(--sg3-muted);
  font-size: 11px;
}

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

.sg3-match {
  min-height: 185px;
  padding: 15px;
  border: 1px solid var(--sg3-line-soft);
  border-radius: var(--sg3-radius);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: 0 14px 40px rgba(0,0,0,.2);
  transition: transform .3s var(--sg3-out), border-color .3s var(--sg3-ease);
}

.sg3-match[data-external-url] {
  cursor: pointer;
}

.sg3-match:hover {
  border-color: rgba(255,255,255,.16);
  transform: translateY(-4px);
}

.sg3-match.is-live {
  border-color: rgba(255, 74, 91, .38);
  box-shadow: inset 0 0 0 1px rgba(255,74,91,.08), 0 15px 40px rgba(0,0,0,.25);
}

.sg3-match > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--sg3-muted);
  font-size: 9px;
  font-weight: 700;
}

.sg3-match > header b {
  padding: 5px 8px;
  border-radius: 99px;
  color: #fff;
  background: #ec3348;
  font-size: 8px;
}

.sg3-match__score {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  gap: 6px;
  text-align: center;
  direction: ltr;
}

.sg3-match__score > span,
.sg3-match__score > div {
  direction: rtl;
}

.sg3-match__score > span {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.sg3-match__score img,
.sg3-match__score i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  object-fit: contain;
  background: rgba(255,255,255,.92);
  font-size: 21px;
  font-style: normal;
}

.sg3-match__score strong {
  width: 100%;
  overflow: hidden;
  font-size: 10px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sg3-match__score > div b {
  display: block;
  color: #fff;
  font: 850 19px Manrope, Inter, sans-serif;
}

.sg3-match__score > div small {
  display: block;
  margin-top: 5px;
  color: var(--sg3-dim);
  font-size: 8px;
}

.sg3-sport-stories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.sg3-sport-story {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--sg3-line-soft);
  border-radius: var(--sg3-radius);
  background: var(--sg3-panel);
}

.sg3-sport-story[data-external-url] {
  cursor: pointer;
}

.sg3-sport-story__visual {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background-color: #141620;
  background-position: center;
  background-size: cover;
}

.sg3-sport-story__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3,3,8,.6), transparent);
}

.sg3-sport-story__visual i {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.94);
  color: #08080d;
}

.sg3-sport-story__visual i svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.sg3-sport-story > div {
  padding: 15px;
}

.sg3-sport-story small,
.sg3-sport-story strong,
.sg3-sport-story > div > span {
  display: block;
}

.sg3-sport-story small {
  color: var(--sg3-violet-hot);
  font-size: 8px;
  font-weight: 800;
}

.sg3-sport-story strong {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.sg3-sport-story > div > span {
  margin-top: 8px;
  color: var(--sg3-dim);
  font-size: 8px;
}

.sg3-sports__empty {
  min-height: 230px;
  padding: 30px;
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: var(--sg3-radius);
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  background: rgba(255,255,255,.025);
}

.sg3-sports__empty > svg {
  width: 44px;
  height: 44px;
  margin-bottom: 13px;
  fill: var(--sg3-violet-hot);
}

.sg3-sports__empty strong {
  font-size: 16px;
}

.sg3-sports__empty p {
  margin: 7px 0 0;
  color: var(--sg3-muted);
  font-size: 11px;
}

.sg3-sports__empty a {
  margin-top: 15px;
  color: var(--sg3-cyan);
  font-size: 11px;
  font-weight: 750;
}

.sg3-sports__external {
  width: fit-content;
  min-height: 48px;
  margin: 0 auto;
  padding: 0 20px;
  border: 1px solid var(--sg3-line);
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 11px;
  font-weight: 750;
}

.sg3-sports__external svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Apps page */
.sg3-apps {
  position: relative;
  min-height: 100vh;
  padding: 135px var(--sg3-page) 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -5%, rgba(139,66,255,.24), transparent 32rem),
    radial-gradient(circle at 8% 70%, rgba(69,215,255,.08), transparent 25rem),
    var(--sg3-bg);
}

.sg3-apps__glow {
  position: absolute;
  top: 100px;
  right: 50%;
  width: 530px;
  height: 530px;
  border: 1px solid rgba(255,255,255,.045);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(255,255,255,.015), 0 0 0 170px rgba(255,255,255,.009);
  transform: translateX(50%);
}

.sg3-apps > header {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.sg3-apps > header img {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(139,66,255,.36));
}

.sg3-apps > header small {
  display: block;
  color: var(--sg3-cyan);
  font: 800 9px Manrope, Inter, sans-serif;
  letter-spacing: .18em;
}

.sg3-apps > header h1 {
  margin: 12px 0 16px;
  font-size: clamp(3.3rem, 7vw, 7.5rem);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.065em;
}

.sg3-apps > header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--sg3-muted);
  font-size: 13px;
  line-height: 1.9;
}

.sg3-apps__downloads {
  position: relative;
  z-index: 2;
  margin: 36px auto 70px;
  display: flex;
  justify-content: center;
  gap: 11px;
}

.sg3-app-download {
  min-width: 190px;
  min-height: 66px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.07);
  color: #fff;
  text-align: right;
  backdrop-filter: blur(18px);
}

.sg3-app-download:hover {
  border-color: rgba(69,215,255,.42);
  background: rgba(69,215,255,.1);
  transform: translateY(-3px);
}

.sg3-app-download.is-soon {
  opacity: .72;
}

.sg3-app-download > svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  fill: #fff;
}

.sg3-app-download small,
.sg3-app-download strong {
  display: block;
}

.sg3-app-download small {
  color: var(--sg3-muted);
  font-size: 8px;
}

.sg3-app-download strong {
  margin-top: 3px;
  font: 800 15px Manrope, Inter, sans-serif;
}

.sg3-apps__features {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sg3-apps__features > span {
  min-height: 145px;
  padding: 23px;
  border: 1px solid var(--sg3-line-soft);
  border-radius: var(--sg3-radius);
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.035);
}

.sg3-apps__features b {
  color: var(--sg3-violet-hot);
  font: 800 10px Manrope, Inter, sans-serif;
}

.sg3-apps__features strong {
  margin-top: auto;
  font-size: 15px;
}

.sg3-apps__features small {
  margin-top: 6px;
  color: var(--sg3-muted);
  font-size: 10px;
}

/* Footer */
.sg3-footer {
  position: relative;
  padding: 75px var(--sg3-page) 28px;
  overflow: hidden;
  border-top: 1px solid var(--sg3-line-soft);
  background:
    radial-gradient(circle at 85% 0, rgba(139,66,255,.09), transparent 24rem),
    #05050b;
}

.sg3-footer::before {
  content: "NOVA";
  position: absolute;
  left: -20px;
  bottom: -80px;
  color: rgba(255,255,255,.018);
  font: 900 clamp(8rem, 20vw, 20rem) Manrope, Inter, sans-serif;
  letter-spacing: -.1em;
  pointer-events: none;
}

.sg3-footer__top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 1.7fr) repeat(3, minmax(130px, .7fr));
  gap: clamp(25px, 5vw, 70px);
}

.sg3-footer__brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.sg3-footer__brand h2 {
  margin: 14px 0 7px;
  font: 850 23px Manrope, Inter, sans-serif;
  letter-spacing: -.04em;
}

.sg3-footer__brand h2 span {
  color: var(--sg3-cyan);
}

.sg3-footer__brand p {
  max-width: 430px;
  margin: 0;
  color: var(--sg3-muted);
  font-size: 11px;
  line-height: 1.9;
}

.sg3-footer__column strong {
  display: block;
  margin-bottom: 15px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.sg3-footer__column a {
  width: fit-content;
  display: block;
  margin: 0 0 10px;
  color: var(--sg3-muted);
  font-size: 10px;
  font-weight: 650;
}

.sg3-footer__column a:hover {
  color: var(--sg3-cyan);
  transform: translateX(-3px);
}

.sg3-footer__bottom {
  position: relative;
  z-index: 2;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid var(--sg3-line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--sg3-dim);
  font-size: 9px;
}

.sg3-footer__bottom > div {
  display: flex;
  gap: 13px;
}

.sg3-footer__bottom a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .sg3-portals__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sg3-subscription-ad {
    grid-template-columns: auto 1fr;
  }

  .sg3-subscription-ad > a {
    grid-column: 2;
    width: fit-content;
  }

  .sg3-match-grid,
  .sg3-sport-stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sg3-footer__top {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .sg3-footer__column:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 820px) {
  .sg3-portals {
    margin-top: 38px;
  }

  .sg3-portals__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .sg3-portal {
    min-height: 225px;
    border-radius: 17px;
  }

  .sg3-portal__copy {
    right: 14px;
    bottom: 13px;
    left: 14px;
  }

  .sg3-portal__copy strong {
    font-size: 18px;
  }

  .sg3-portal__copy i {
    min-height: 27px;
    font-size: 8px;
  }

  .sg3-portal__copy b {
    margin-top: 8px;
    font-size: 8px;
  }

  .sg3-culture-grid {
    margin: 42px 18px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sg3-culture-grid .sg3-portal {
    min-height: 190px;
  }

  .sg3-subscription-ad {
    min-height: 0;
    margin: 42px 18px;
    padding: 28px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sg3-subscription-ad__mark {
    width: 76px;
    height: 76px;
    border-radius: 22px;
  }

  .sg3-subscription-ad__mark svg {
    width: 27px;
    height: 27px;
  }

  .sg3-subscription-ad__copy h2 {
    font-size: 2rem;
  }

  .sg3-subscription-ad > a {
    grid-column: 1;
  }

  .sg3-app-ad {
    min-height: 0;
    margin: 42px 18px;
    grid-template-columns: 1fr;
  }

  .sg3-app-ad__device {
    min-height: 330px;
    overflow: hidden;
  }

  .sg3-app-ad__screen {
    right: 50%;
    bottom: -95px;
    width: 155px;
    height: 330px;
    transform: translateX(25%) rotate(7deg);
  }

  .sg3-app-ad__desktop {
    left: 48%;
    bottom: 38px;
    width: 285px;
    height: 178px;
  }

  .sg3-app-ad__copy {
    padding: 28px;
  }

  .sg3-app-ad__copy h2 {
    font-size: 2.25rem;
  }

  .sg3-sports__hero,
  .sg3-topic__hero {
    min-height: 580px;
  }

  .sg3-sports__hero > span,
  .sg3-topic__hero > span {
    background:
      linear-gradient(0deg, var(--sg3-bg), rgba(3,3,8,.75) 40%, transparent 76%),
      linear-gradient(180deg, rgba(3,3,8,.55), transparent 25%);
  }

  .sg3-sports__hero > div,
  .sg3-topic__hero > div {
    right: 18px;
    bottom: 13%;
    width: calc(100% - 36px);
  }

  .sg3-sports__hero h1,
  .sg3-topic__hero h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .sg3-sports__hero > b {
    display: none;
  }

  .sg3-sports__body {
    padding: 20px 18px 100px;
  }

  .sg3-sports__days {
    margin-top: -42px;
  }

  .sg3-sports__days button {
    height: 36px;
    padding: 0 13px;
    font-size: 10px;
  }

  .sg3-sports__leagues {
    justify-content: flex-start;
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .sg3-match-grid,
  .sg3-sport-stories {
    grid-template-columns: 1fr;
  }

  .sg3-match {
    min-height: 170px;
  }

  .sg3-apps {
    padding-top: 105px;
  }

  .sg3-apps > header h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .sg3-apps__features {
    grid-template-columns: 1fr;
  }

  .sg3-footer {
    padding: 55px 18px 95px;
  }

  .sg3-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 34px 25px;
  }

  .sg3-footer__brand {
    grid-column: 1 / 3;
  }

  .sg3-footer__column:last-child {
    grid-column: auto;
  }

  .sg3-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .sg3-portals__grid {
    grid-template-columns: 1fr;
  }

  .sg3-portal {
    min-height: 210px;
  }

  .sg3-app-ad__copy > div {
    flex-direction: column;
  }

  .sg3-app-ad__copy > div a {
    width: 100%;
  }

  .sg3-apps__downloads {
    align-items: center;
    flex-direction: column;
  }

  .sg3-app-download {
    width: min(100%, 260px);
  }

  .sg3-footer__top {
    grid-template-columns: 1fr;
  }

  .sg3-footer__brand,
  .sg3-footer__column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .sg3-episode-grid {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  .sg3-episode {
    min-height: 104px;
    display: grid;
    grid-template-columns: 142px minmax(0, 1fr);
    align-items: stretch;
  }

  .sg3-episode__visual {
    height: 100%;
    min-height: 104px;
    aspect-ratio: auto;
  }

  .sg3-episode__body {
    min-width: 0;
    padding: 11px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .sg3-episode__body h3 {
    font-size: 11px;
  }

  .sg3-episode__body p {
    display: none;
  }
}
