@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  color-scheme: only light;
  --mp-ink: #011a38;
  --mp-blue: #0065e1;
  --mp-green: #9ef01a;
  --mp-white: #ffffff;
  --mp-muted-white: rgba(255, 255, 255, 0.72);
  --mp-line: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: only light;
  scroll-behavior: smooth;
  background: #ffffff;
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff;
  color: #111827;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  forced-color-adjust: none;
}

body,
button,
input,
textarea,
select {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.mp-hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6rem 5%;
  background-color: #011a38;
  background-image: url('https://live.sorascreen.com/wp-content/uploads/2026/06/Herosec.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  isolation: isolate;
}

.mp-hero-nav {
  position: absolute;
  top: 20px;
  left: 5%;
  right: 5%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.mp-hero-logo {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.mp-hero-logo span {
  color: #9ef01a;
}

.mp-hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(1, 26, 56, 0.95) 0%,
    rgba(1, 26, 56, 0.7) 40%,
    rgba(1, 26, 56, 0.1) 100%
  );
}

.mp-hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  text-align: left;
}

.mp-hero-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.mp-hero-subtitle {
  max-width: 500px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 500;
  line-height: 1.6;
}

.mp-hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: 0.2rem;
}

.mp-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-height: 42px;
  padding: 12px 24px;
  border: 1px solid #9ef01a;
  border-radius: 3px;
  background: #9ef01a;
  color: #011a38;
  box-shadow: 0 4px 20px rgba(158, 240, 26, 0.32);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mp-hero-button:hover,
.mp-hero-button:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #011a38;
  box-shadow: 0 4px 25px rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.mp-hero-offer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0.6rem;
  font-weight: 500;
}

.mp-hero-badge {
  display: inline-block;
  margin-bottom: 0.3rem;
  padding: 4px 8px;
  border-radius: 3px;
  background-color: #0065e1;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 101, 225, 0.3);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.mp-hero-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #ffffff;
}

.mp-hero-price del {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.mp-hero-price del::after {
  content: "";
  position: absolute;
  left: -0.1rem;
  right: -0.1rem;
  top: 50%;
  height: 2px;
  background-color: #ffffff;
  opacity: 0.8;
  transform: translateY(-50%);
}

.mp-hero-price strong {
  color: #9ef01a;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 15px rgba(158, 240, 26, 0.25);
}

.mp-hero-price span {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.mp-hero-offer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.mp-section {
  width: 100%;
  padding: clamp(56px, 8vw, 112px) 20px;
  background: #ffffff;
  color: #111827;
}

.mp-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.mp-placeholder {
  min-height: 280px;
  border: 1px solid rgba(17, 24, 39, 0.16);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
}

.mp-placeholder h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.mp-placeholder p {
  margin: 0;
  color: #4b5563;
  font-size: clamp(16px, 2vw, 20px);
}

@media (max-width: 768px) {
  .mp-hero {
    min-height: 80vh;
    padding: 6rem 1.25rem 3rem;
  }

  .mp-hero-fade {
    background: linear-gradient(
      to top right,
      rgba(1, 26, 56, 0.95) 0%,
      rgba(1, 26, 56, 0.8) 40%,
      rgba(1, 26, 56, 0.2) 100%
    );
  }

  .mp-hero-nav {
    top: 16px;
    left: 1.25rem;
    right: 1.25rem;
  }

  .mp-hero-logo {
    font-size: 1.4rem;
  }

  .mp-hero-content {
    margin-top: 2.5rem;
  }

  .mp-hero-title {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
    line-height: 1.15;
  }

  .mp-hero-offer {
    margin-top: 0.8rem;
  }

  .mp-hero-price {
    flex-wrap: wrap;
  }

  .mp-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .mp-hero-button {
    padding: 10px 22px;
    font-size: 0.8rem;
  }
}

@media (max-width: 420px) {
  .mp-hero-title {
    font-size: clamp(1.6rem, 8vw, 1.9rem);
  }
}

.mp-channel-carousel {
  width: 100%;
  overflow: hidden;
  padding: 72px 0;
  background: linear-gradient(135deg, #011a38 0%, #002a5a 100%);
  color: #ffffff;
  position: relative;
}

.mp-channel-header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 28px;
  padding: 0 20px;
  text-align: center;
}

.mp-channel-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid #9ef01a;
  border-radius: 3px;
  background: rgba(158, 240, 26, 0.12);
  color: #9ef01a;
  box-shadow: 0 0 20px rgba(158, 240, 26, 0.15);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.mp-channel-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: 2.8rem;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.mp-channel-row {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  margin-top: 16px;
  padding: 4px 0;
}

.mp-channel-row:active {
  cursor: grabbing;
}

.mp-channel-row::before,
.mp-channel-row::after {
  content: "";
  position: absolute;
  top: 0;
  width: min(120px, 16vw);
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.mp-channel-row::before {
  left: 0;
  background: linear-gradient(to right, #011a38 0%, rgba(1, 26, 56, 0) 100%);
}

.mp-channel-row::after {
  right: 0;
  background: linear-gradient(to left, #002a5a 0%, rgba(0, 42, 90, 0) 100%);
}

.mp-channel-track {
  display: flex;
  align-items: center;
  gap: 15px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.mp-channel-item {
  flex: 0 0 auto;
  width: 122px;
  height: 122px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.mp-channel-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

@media (max-width: 768px) {
  .mp-channel-carousel {
    padding: 56px 0;
  }

  .mp-channel-header {
    margin-bottom: 20px;
  }

  .mp-channel-header h2 {
    font-size: 2.1rem;
  }

  .mp-channel-track {
    gap: 13px;
  }

  .mp-channel-item {
    width: 94px;
    height: 94px;
  }
}

@media (max-width: 420px) {
  .mp-channel-carousel {
    padding: 48px 0;
  }

  .mp-channel-header h2 {
    font-size: 1.8rem;
  }

  .mp-channel-track {
    gap: 12px;
  }

  .mp-channel-item {
    width: 88px;
    height: 88px;
  }
}

.mp-trust {
  width: 100%;
  overflow: hidden;
  padding: 90px 0;
  background: linear-gradient(135deg, #011a38 0%, #002a5a 100%);
  color: #ffffff;
  forced-color-adjust: none;
}

.mp-trust-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.mp-trust-header {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.mp-trust-title {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.mp-trust-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
}

.mp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.mp-trust-card {
  min-height: 230px;
  padding: 28px 24px;
  border: 1px solid rgba(158, 240, 26, 0.35);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.mp-trust-card:hover {
  transform: translateY(-8px);
  border-color: rgba(158, 240, 26, 0.75);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(158, 240, 26, 0.5);
}

.mp-trust-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  background: rgba(0, 101, 225, 0.18);
  color: #9ef01a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.mp-trust-card:hover .mp-trust-icon {
  color: #ffffff;
  background: rgba(158, 240, 26, 0.3);
  border-color: rgba(158, 240, 26, 0.6);
  transform: scale(1.08);
}

.mp-trust-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mp-trust-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

.mp-trust-card p {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

.mp-trust-guarantee {
  padding: 28px;
  border: 2px solid #9ef01a;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.mp-trust-guarantee h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

.mp-trust-guarantee p {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .mp-trust {
    padding: 72px 0;
  }

  .mp-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mp-trust-card {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .mp-trust {
    padding: 58px 0;
  }

  .mp-trust-inner {
    padding: 0 18px;
  }

  .mp-trust-header {
    margin-bottom: 36px;
  }

  .mp-trust-title {
    font-size: 1.8rem;
  }

  .mp-trust-subtitle {
    font-size: 1rem;
  }

  .mp-trust-grid {
    grid-template-columns: 1fr;
  }

  .mp-trust-card {
    padding: 24px 18px;
  }

  .mp-trust-card h3 {
    font-size: 1.16rem;
  }

  .mp-trust-card p,
  .mp-trust-guarantee p {
    font-size: 0.98rem;
  }

  .mp-trust-guarantee {
    padding: 22px 18px;
  }

  .mp-trust-guarantee h3 {
    font-size: 1.15rem;
  }
}

.mp-movies {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 6rem 0;
  background: linear-gradient(135deg, #011a38 0%, #002a5a 100%);
  color: #ffffff;
  forced-color-adjust: none;
}

.mp-movies-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
  text-align: center;
}

.mp-movies-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 6px 16px;
  border: 1px solid #9ef01a;
  border-radius: 3px;
  background: rgba(158, 240, 26, 0.12);
  color: #9ef01a;
  box-shadow: 0 0 20px rgba(158, 240, 26, 0.15);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.mp-movies-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.mp-movies-header h2 span {
  color: #9ef01a;
}

.mp-movie-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.mp-movie-marquee:active {
  cursor: grabbing;
}

.mp-movie-marquee-bottom {
  margin-top: 16px;
}

.mp-movie-track,
.mp-movie-set {
  display: flex;
  width: max-content;
  align-items: center;
}

.mp-movie-track {
  will-change: transform;
}

.mp-movie-set {
  flex-shrink: 0;
}

.mp-movie-item {
  flex: 0 0 16.666vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

.mp-movie-card {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 3px;
  background: #011a38;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.mp-movie-card img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.mp-movie-fade {
  position: absolute;
  bottom: 0;
  z-index: 5;
  width: 10vw;
  height: calc(100% - 150px);
  pointer-events: none;
}

.mp-movie-fade-left {
  left: 0;
  background: linear-gradient(to right, #011a38 0%, rgba(1, 26, 56, 0) 100%);
}

.mp-movie-fade-right {
  right: 0;
  background: linear-gradient(to left, #002a5a 0%, rgba(0, 42, 90, 0) 100%);
}

@media (max-width: 1024px) {
  .mp-movie-item {
    flex-basis: 25vw;
    padding: 0 6px;
  }
}

@media (max-width: 768px) {
  .mp-movies {
    padding: 4rem 0;
  }

  .mp-movies-header {
    margin-bottom: 3rem;
  }

  .mp-movie-item {
    flex-basis: 50vw;
    padding: 0 5px;
  }

  .mp-movie-fade {
    width: 12vw;
  }
}

.mp-tvshows {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 6rem 0;
  background: linear-gradient(135deg, #011a38 0%, #002a5a 100%);
  color: #ffffff;
  forced-color-adjust: none;
}

.mp-tvshows-header {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
  text-align: center;
}

.mp-tvshows-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 6px 16px;
  border: 1px solid #9ef01a;
  border-radius: 3px;
  background: rgba(158, 240, 26, 0.12);
  color: #9ef01a;
  box-shadow: 0 0 20px rgba(158, 240, 26, 0.15);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.mp-tvshows-header h2 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

.mp-tvshows-header h2 span {
  color: #9ef01a;
}

.mp-tvshows-header p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.6;
}

.mp-tvshows-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.mp-tvshows-marquee:active {
  cursor: grabbing;
}

.mp-tvshows-track,
.mp-tvshows-set {
  display: flex;
  width: max-content;
  align-items: center;
}

.mp-tvshows-track {
  will-change: transform;
}

.mp-tvshows-set {
  flex-shrink: 0;
}

.mp-tvshows-item {
  flex: 0 0 25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.mp-tvshows-card {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: #011a38;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.mp-tvshows-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.mp-tvshows-fade {
  position: absolute;
  bottom: 0;
  z-index: 5;
  width: 10vw;
  height: calc(100% - 150px);
  pointer-events: none;
}

.mp-tvshows-fade-left {
  left: 0;
  background: linear-gradient(to right, #011a38 0%, rgba(1, 26, 56, 0) 100%);
}

.mp-tvshows-fade-right {
  right: 0;
  background: linear-gradient(to left, #002a5a 0%, rgba(0, 42, 90, 0) 100%);
}

@media (max-width: 1024px) {
  .mp-tvshows-item {
    flex-basis: 35vw;
    padding: 0 8px;
  }
}

@media (max-width: 768px) {
  .mp-tvshows {
    padding: 4rem 0;
  }

  .mp-tvshows-header {
    margin-bottom: 2.5rem;
  }

  .mp-tvshows-item {
    flex-basis: 75vw;
    padding: 0 6px;
  }

  .mp-tvshows-fade {
    width: 12vw;
  }
}

.mp-sports {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 6rem;
  background: linear-gradient(135deg, #011a38 0%, #002a5a 100%);
  color: #ffffff;
  forced-color-adjust: none;
}

.mp-sports-hero {
  position: relative;
  z-index: 2;
  width: min(1400px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 5% 12px;
}

.mp-sports-copy {
  width: 45%;
  padding-right: 20px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.mp-sports-copy h2 {
  margin: 0 0 1rem;
  color: #9ef01a;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mp-sports-copy p {
  max-width: 600px;
  margin: 0 0 1.5rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
}

.mp-sports-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mp-sports-copy li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.mp-sports-copy li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #9ef01a;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.mp-sports-image {
  width: 55%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.mp-sports-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 3px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.mp-sports-carousel {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 0;
}

.mp-sports-viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.mp-sports-viewport.is-dragging {
  cursor: grabbing;
}

.mp-sports-track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.mp-sports-set {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  flex-shrink: 0;
}

.mp-sports-slide {
  width: calc(16.666vw - 18px);
  min-width: 180px;
  aspect-ratio: 600 / 314;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.mp-sports-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

@media (max-width: 900px) {
  .mp-sports-hero {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    padding: 0;
  }

  .mp-sports-image {
    width: 100%;
    order: 1;
    justify-content: center;
  }

  .mp-sports-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #011a38 90%);
    pointer-events: none;
  }

  .mp-sports-image img {
    width: 100%;
  }

  .mp-sports-copy {
    width: 100%;
    order: 2;
    margin-top: -80px;
    padding: 0 20px 6px;
    z-index: 10;
    text-align: center;
  }

  .mp-sports-copy h2 {
    font-size: 2.2rem;
  }

  .mp-sports-copy ul {
    display: inline-block;
    text-align: left;
    margin-bottom: 4px;
  }

  .mp-sports-set {
    gap: 14px;
    padding-right: 14px;
  }

  .mp-sports-slide {
    width: calc(33.333vw - 14px);
  }
}

@media (max-width: 600px) {
  .mp-sports {
    padding-bottom: 3.5rem;
  }

  .mp-sports-copy p {
    margin-bottom: 1rem;
  }

  .mp-sports-copy li {
    margin-bottom: 6px;
  }

  .mp-sports-set {
    gap: 10px;
    padding-right: 10px;
  }

  .mp-sports-slide {
    width: calc((100vw - 34px) / 2);
    border-radius: 3px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  }
}

.mp-steps {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, #011a38 0%, #002a5a 100%);
  color: #ffffff;
  forced-color-adjust: none;
}

.mp-steps-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.mp-steps-header {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.mp-steps-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

.mp-steps-header h2 span {
  color: #9ef01a;
}

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

.mp-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 220px;
  padding: 35px 30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.mp-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(158, 240, 26, 0.3);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3), 0 0 25px rgba(158, 240, 26, 0.08);
}

.mp-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border: 1px solid rgba(158, 240, 26, 0.4);
  border-radius: 50%;
  background: rgba(158, 240, 26, 0.15);
  color: #9ef01a;
  box-shadow: inset 0 0 10px rgba(158, 240, 26, 0.1), 0 0 15px rgba(158, 240, 26, 0.15);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.mp-step-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.mp-step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .mp-steps-grid {
    grid-template-columns: 1fr;
  }

  .mp-step-card {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .mp-steps {
    padding: 60px 0;
  }

  .mp-steps-header {
    margin-bottom: 35px;
  }

  .mp-steps-header h2 {
    font-size: clamp(1.85rem, 8vw, 2.2rem);
  }

  .mp-steps-grid {
    gap: 16px;
  }

  .mp-step-card {
    padding: 30px 24px;
  }

  .mp-step-number {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    font-size: 1.3rem;
  }

  .mp-step-card h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
  }
}

.mp-pricing {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 90px 0;
  scroll-margin-top: 50px;
  background: linear-gradient(135deg, #011a38 0%, #002a5a 100%);
  color: #ffffff;
  forced-color-adjust: none;
}

.mp-pricing-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.mp-pricing-header {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px 46px;
  text-align: center;
}

.mp-pricing-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  padding: 10px 22px;
  border: 1px solid rgba(158, 240, 26, 0.72);
  border-radius: 3px;
  background: rgba(158, 240, 26, 0.12);
  color: #9ef01a;
  box-shadow: 0 0 24px rgba(158, 240, 26, 0.18);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.9px;
  line-height: 1;
  text-transform: uppercase;
}

.mp-pricing-header h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.mp-pricing-header p {
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.8;
}

.mp-pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.mp-pricing-tab {
  flex: 0 1 180px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  background: rgba(0, 101, 225, 0.18);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(0, 101, 225, 0.12);
  cursor: pointer;
  font-weight: 800;
  text-transform: capitalize;
}

.mp-pricing-tab:hover,
.mp-pricing-tab.is-active {
  border-color: #9ef01a;
  background: rgba(158, 240, 26, 0.12);
  color: #9ef01a;
}

.mp-pricing-content {
  margin-top: 45px;
}

.mp-pricing-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
}

.mp-pricing-card {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  max-width: calc((100% - 36px) / 3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mp-pricing-card.is-popular {
  border-color: rgba(158, 240, 26, 0.36);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28), 0 0 30px rgba(158, 240, 26, 0.08);
}

.mp-pricing-popular {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 15px;
  border-bottom-left-radius: 3px;
  background: #9ef01a;
  color: #011a38;
  font-size: 0.9rem;
  font-weight: 900;
}

.mp-pricing-card-header,
.mp-pricing-card-body,
.mp-pricing-card-footer {
  padding: 20px 28px;
}

.mp-pricing-card-header {
  padding-top: 36px;
}

.mp-pricing-card-body {
  flex-grow: 1;
  padding-top: 0;
  padding-bottom: 0;
}

.mp-pricing-card-footer {
  padding-bottom: 36px;
}

.mp-pricing-card h3 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}

.mp-pricing-card.is-popular h3 {
  color: #9ef01a;
}

.mp-pricing-ready {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.mp-pricing-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 30px 0;
  color: #ffffff;
  font-size: 38px;
  font-weight: 900;
  white-space: nowrap;
}

.mp-pricing-price span {
  color: #9ef01a;
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
}

.mp-pricing-features {
  list-style: none;
  margin: 0;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.mp-pricing-features li {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

.mp-pricing-features li:last-child {
  margin-bottom: 0;
}

.mp-pricing-cta {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 15px 10px;
  border-radius: 3px;
  background: #9ef01a;
  color: #011a38;
  box-shadow: 0 12px 28px rgba(158, 240, 26, 0.22);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.mp-pricing-cta:hover {
  background: #ffffff;
  color: #011a38;
}

.mp-pricing-moneyback {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.mp-pricing-badges img {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 15px auto 0;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .mp-pricing {
    padding: 58px 0;
  }

  .mp-pricing-inner {
    padding: 0 18px;
  }

  .mp-pricing-header {
    padding: 0 0 32px;
  }

  .mp-pricing-tabs {
    flex-direction: column;
    gap: 8px;
  }

  .mp-pricing-tab {
    flex-basis: auto;
    width: 100%;
  }

  .mp-pricing-content {
    display: none;
  }

  .mp-pricing-row {
    flex-direction: column;
    gap: 18px;
    margin-top: 15px;
  }

  .mp-pricing-card {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }
}

.mp-highlight-features {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 90px 0;
  background: linear-gradient(135deg, #011a38 0%, #002a5a 100%);
  color: #ffffff;
  forced-color-adjust: none;
}

.mp-highlight-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.mp-highlight-header {
  max-width: 860px;
  margin: 0 auto 46px;
  text-align: center;
}

.mp-highlight-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  background: rgba(0, 101, 225, 0.18);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(0, 101, 225, 0.12);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.9px;
  line-height: 1.2;
  text-transform: uppercase;
}

.mp-highlight-header h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.mp-highlight-header h2 span {
  color: #9ef01a;
}

.mp-highlight-header p {
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.8;
}

.mp-highlight-row {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-bottom: 8rem;
}

.mp-highlight-row:last-child {
  margin-bottom: 0;
}

.mp-highlight-copy,
.mp-highlight-visual {
  flex: 1;
}

.mp-highlight-copy {
  position: relative;
  padding-left: 10px;
}

.mp-highlight-row-reverse .mp-highlight-copy {
  padding-left: 0;
  padding-right: 10px;
}

.mp-highlight-copy h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.mp-highlight-copy p {
  margin: 0;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.8;
}

.mp-highlight-connector {
  position: relative;
  width: 3px;
  min-height: 155px;
  flex: 0 0 3px;
  border-radius: 99px;
  background: linear-gradient(to bottom, rgba(158, 240, 26, 0), rgba(158, 240, 26, 1), rgba(158, 240, 26, 0));
  box-shadow: 0 0 22px rgba(158, 240, 26, 0.45);
}

.mp-highlight-connector::before,
.mp-highlight-connector::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #9ef01a;
  box-shadow: 0 0 18px rgba(158, 240, 26, 0.65);
  transform: translateX(-50%);
}

.mp-highlight-connector::before {
  top: 18px;
}

.mp-highlight-connector::after {
  bottom: 18px;
}

.mp-highlight-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.mp-highlight-video-wrap:hover {
  border-color: rgba(158, 240, 26, 0.3);
}

.mp-highlight-video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
  pointer-events: none;
}

@media (max-width: 992px) {
  .mp-highlight-features {
    padding: 72px 0;
  }

  .mp-highlight-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 6rem;
  }

  .mp-highlight-row-reverse {
    flex-direction: column-reverse;
  }

  .mp-highlight-copy,
  .mp-highlight-visual {
    width: 100%;
  }

  .mp-highlight-copy,
  .mp-highlight-row-reverse .mp-highlight-copy {
    padding-left: 18px;
    padding-right: 0;
    border-left: 3px solid #9ef01a;
    text-align: left;
  }

  .mp-highlight-copy h3 {
    font-size: 2rem;
  }

  .mp-highlight-connector {
    width: 88px;
    min-height: 3px;
    height: 3px;
    flex: 0 0 3px;
    margin-left: 18px;
    background: linear-gradient(to right, rgba(158, 240, 26, 1), rgba(158, 240, 26, 0));
  }

  .mp-highlight-connector::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .mp-highlight-connector::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .mp-highlight-features {
    padding: 58px 0;
  }

  .mp-highlight-inner {
    padding: 0 18px;
  }

  .mp-highlight-badge {
    padding: 7px 13px;
    font-size: 0.8rem;
  }

  .mp-highlight-header h2 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .mp-highlight-header p,
  .mp-highlight-copy p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .mp-highlight-copy h3 {
    font-size: 1.85rem;
  }
}

.mp-devices {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 90px 0;
  background: linear-gradient(135deg, #011a38 0%, #002a5a 100%);
  color: #ffffff;
  forced-color-adjust: none;
}

.mp-devices-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.mp-devices-header {
  max-width: 860px;
  margin: 0 auto 46px;
}

.mp-devices-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  background: rgba(0, 101, 225, 0.18);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(0, 101, 225, 0.12);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.9px;
  line-height: 1;
  text-transform: uppercase;
}

.mp-devices-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.mp-devices-header h2 span {
  color: #9ef01a;
}

.mp-devices-header p {
  max-width: 800px;
  margin: 18px auto 0;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.8;
}

.mp-devices-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.mp-device-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.mp-devices.is-enhanced .mp-device-card {
  opacity: 0;
  transform: translateY(24px);
}

.mp-devices.is-enhanced .mp-device-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--device-delay, 0ms);
}

.mp-device-card:hover {
  transform: translateY(-4px);
  border-color: rgba(158, 240, 26, 0.3);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.34), 0 0 24px rgba(158, 240, 26, 0.08);
}

.mp-device-icon {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.mp-device-icon.is-large {
  width: 126px;
}

.mp-device-icon.is-onn {
  width: 150px;
}

.mp-device-icon img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  filter: brightness(0) invert(1) grayscale(1) contrast(10000%);
  opacity: 0.94;
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.mp-device-icon svg {
  width: 150px;
  height: auto;
  color: #ffffff;
  overflow: visible;
  opacity: 0.94;
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.mp-device-icon svg text {
  font-family: Arial Black, Arial, Helvetica, sans-serif;
}

.mp-device-card:hover .mp-device-icon img,
.mp-device-card:hover .mp-device-icon svg {
  opacity: 1;
  transform: scale(1.08);
  filter: drop-shadow(0 0 13px rgba(158, 240, 26, 0.62));
}

.mp-device-card h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  transition: color 180ms ease;
}

.mp-device-card:hover h3 {
  color: #9ef01a;
}

.mp-device-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.mp-devices-note {
  max-width: 760px;
  margin: 34px auto 0;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .mp-devices {
    padding: 76px 0;
  }

  .mp-devices-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .mp-device-card {
    min-height: 178px;
  }
}

@media (max-width: 820px) {
  .mp-devices {
    padding: 58px 0;
  }

  .mp-devices-inner {
    padding: 0 18px;
  }

  .mp-devices-header {
    margin-bottom: 34px;
  }

  .mp-devices-header h2 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .mp-devices-header p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .mp-devices-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .mp-device-card {
    min-height: 168px;
    padding: 22px 10px;
  }

  .mp-device-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
  }

  .mp-device-icon.is-large {
    width: 112px;
  }

  .mp-device-icon.is-onn,
  .mp-device-icon.is-onn svg {
    width: 132px;
  }

  .mp-device-card h3 {
    font-size: 1rem;
  }

  .mp-device-card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 420px) {
  .mp-devices-grid {
    gap: 10px;
  }

  .mp-device-card {
    min-height: 154px;
    padding: 18px 8px;
  }

  .mp-device-icon {
    width: 52px;
    height: 52px;
  }

  .mp-device-icon.is-large {
    width: 104px;
  }

  .mp-device-icon.is-onn,
  .mp-device-icon.is-onn svg {
    width: 120px;
  }

  .mp-device-card p {
    font-size: 0.76rem;
  }
}
\n\n/* Section 11: Channel List */\n/* ========== SORASCREEN CHANNEL LIST ========== */
#cl-box,
#cl-box * {
  box-sizing: border-box;
}

#cl-box {
  --sora-bg: linear-gradient(135deg, #011a38 0%, #002a5a 100%);
  --sora-panel: rgba(255, 255, 255, 0.06);
  --sora-panel-strong: rgba(0, 101, 225, 0.16);
  --sora-border: rgba(255, 255, 255, 0.14);
  --sora-border-strong: rgba(158, 240, 26, 0.36);
  --sora-text: #ffffff;
  --sora-muted: rgba(255, 255, 255, 0.76);
  --sora-green: #9EF01A;
  --sora-blue: #0065E1;
  --sora-dark: #011a38;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  padding: 72px 20px;
  background: var(--sora-bg);
  color: var(--sora-text);
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

#cl-box::after {
  right: -130px;
  bottom: -120px;
  background: rgba(0, 101, 225, 0.2);
}

#cl-box .cl-title {
  margin: 0;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.05rem, 4vw, 3.15rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

#cl-box .cl-title::after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sora-blue), var(--sora-green));
  box-shadow: 0 0 24px rgba(158, 240, 26, 0.34);
}

#cl-box .cl-sub {
  max-width: 620px;
  margin: 16px auto 34px;
  color: var(--sora-muted);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}

/* ---------- Tabs ---------- */
#cl-box .cl-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1080px;
  margin: 0 auto 30px;
}

#cl-box .cl-tabs button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

#cl-box .cl-tabs button:hover {
  transform: translateY(-2px);
  border-color: rgba(158, 240, 26, 0.46);
  background: rgba(158, 240, 26, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

#cl-box .cl-tabs button[aria-selected="true"] {
  background: var(--sora-green);
  color: var(--sora-dark);
  border-color: var(--sora-green);
  box-shadow: 0 12px 30px rgba(158, 240, 26, 0.28);
}

#cl-box .cl-tabs-content {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
}

/* ---------- Panes ---------- */
#cl-box .cl-pane {
  display: none;
}

#cl-box .cl-pane.cl-active {
  display: block;
  animation: clPaneEnter 0.35s ease both;
}

/* ---------- Layout ---------- */
#cl-box .cl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  text-align: left;
}

/* ---------- Accordion ---------- */
#cl-box details {
  overflow: hidden;
  margin: 0 0 12px;
  border: 1px solid var(--sora-border);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.045));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  text-align: left;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

#cl-box details:hover {
  border-color: rgba(158, 240, 26, 0.28);
  background: linear-gradient(180deg, rgba(0, 101, 225, 0.16), rgba(255, 255, 255, 0.045));
}

#cl-box details[open] {
  border-color: var(--sora-border-strong);
  background: linear-gradient(180deg, rgba(0, 101, 225, 0.22), rgba(255, 255, 255, 0.055));
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22), 0 0 24px rgba(158, 240, 26, 0.08);
}

#cl-box summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 15px 52px 15px 18px;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

#cl-box summary::-webkit-details-marker {
  display: none;
}

#cl-box summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background-color: rgba(158, 240, 26, 0.14);
  
  /* Draws a mathematically perfect + sign using geometry */
  background-image: 
    linear-gradient(var(--sora-green), var(--sora-green)), 
    linear-gradient(var(--sora-green), var(--sora-green));
  background-position: center;
  background-size: 12px 2px, 2px 12px; /* Width and height of the lines */
  background-repeat: no-repeat;
  
  transform: translateY(-50%);
  transition: background-color 0.22s ease, transform 0.3s ease;
}

#cl-box details[open] summary::after {
  background-color: var(--sora-green);
  
  /* Draws a mathematically perfect - sign using geometry */
  background-image: linear-gradient(var(--sora-dark), var(--sora-dark));
  background-position: center;
  background-size: 12px 2px;
  background-repeat: no-repeat;
  
  transform: translateY(-50%) rotate(180deg);
}

#cl-box details ul {
  max-height: 50vh;
  overflow: auto;
  margin: 0;
  padding: 0 18px 18px;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(158, 240, 26, 0.65) rgba(255, 255, 255, 0.08);
}

#cl-box details ul::-webkit-scrollbar {
  width: 8px;
}

#cl-box details ul::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

#cl-box details ul::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--sora-green), var(--sora-blue));
  border-radius: 999px;
}

#cl-box details ul li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
  margin: 4px 0;
}

#cl-box details ul li b {
  display: inline-block;
  margin-top: 10px;
  color: #ffffff;
  font-weight: 900;
}

#cl-box details ul li i {
  color: rgba(255, 255, 255, 0.66);
}

#cl-box .cl-mobile-content {
  width: 100%;
  margin-top: 4px;
  animation: clPaneEnter 0.35s ease both;
}

@keyframes clPaneEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1024px) {
  #cl-box {
    padding: 82px 28px;
  }

  #cl-box .cl-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  #cl-box {
    padding: 58px 16px;
  }

  #cl-box .cl-sub {
    margin-bottom: 26px;
    font-size: 1rem;
  }

  #cl-box .cl-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    margin-bottom: 0;
  }

  #cl-box .cl-tabs button {
    width: 100%;
    min-height: 50px;
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  #cl-box .cl-tabs-content {
    display: none !important;
  }

  #cl-box .cl-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  #cl-box summary {
    min-height: 52px;
    padding: 14px 50px 14px 16px;
    font-size: 0.95rem;
  }

  #cl-box details ul {
    max-height: 58vh;
    padding: 0 16px 16px;
  }

  #cl-box details ul li {
    font-size: 0.88rem;
  }
}

@media (max-width: 420px) {
  #cl-box {
    padding: 50px 14px;
  }

  #cl-box .cl-title {
    font-size: 2rem;
  }

  #cl-box .cl-sub {
    font-size: 0.95rem;
  }

  #cl-box .cl-tabs button {
    font-size: 0.82rem;
  }
}\n