: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://mayprime.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
.mp-final-cta {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #011a38 0%, #002a5a 100%);
  color: #ffffff;
  text-align: center;
  forced-color-adjust: none;
}

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

.mp-final-cta-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;
  text-transform: uppercase;
}

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

.mp-final-cta h2 span {
  color: #9ef01a;
}

.mp-final-cta p {
  max-width: 550px;
  margin: 0 auto 40px;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.8;
}

.mp-final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  border: 1px solid #9ef01a;
  border-radius: 3px;
  background: #9ef01a;
  color: #011a38;
  box-shadow: 0 12px 28px rgba(158, 240, 26, 0.22);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mp-final-cta-button:hover,
.mp-final-cta-button:focus-visible {
  transform: translateY(-2px);
  border-color: #ffffff;
  background: #ffffff;
  color: #011a38;
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.18);
}

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

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

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

  .mp-final-cta p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .mp-final-cta-button {
    width: 100%;
    padding: 15px 20px;
  }
}

/* Final CTA background repair */
body .mp-final-cta {
  background: linear-gradient(135deg, #011a38 0%, #002a5a 100%) !important;
  color: #ffffff !important;
}

body .mp-final-cta h2,
body .mp-final-cta p {
  color: #ffffff !important;
}

body .mp-final-cta h2 span {
  color: #9ef01a !important;
}

/* Final CTA layout polish */
body .mp-final-cta {
  padding: 86px 20px 96px !important;
  text-align: center !important;
}

body .mp-final-cta-inner {
  width: min(860px, 100%) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

body .mp-final-cta-badge {
  margin: 0 0 24px !important;
}

body .mp-final-cta h2 {
  max-width: 760px !important;
  margin: 0 auto 22px !important;
  text-align: center !important;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem) !important;
  line-height: 1.08 !important;
}

body .mp-final-cta p {
  max-width: 560px !important;
  margin: 0 auto 36px !important;
  text-align: center !important;
}

body .mp-final-cta-button {
  margin: 0 auto !important;
  min-width: 242px !important;
}

@media (max-width: 768px) {
  body .mp-final-cta {
    padding: 62px 18px 70px !important;
  }

  body .mp-final-cta h2 {
    max-width: 100% !important;
    font-size: clamp(1.85rem, 8vw, 2.45rem) !important;
  }

  body .mp-final-cta-button {
    width: min(100%, 340px) !important;
  }
}

.mp-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 70px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #011a38 0%, #002a5a 100%);
  color: #ffffff;
  forced-color-adjust: none;
}

.mp-footer::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(158, 240, 26, 0.62) 50%, transparent 100%);
  opacity: 0.8;
}

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

.mp-footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  text-align: center;
}

.mp-footer-logo {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0;
}

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

.mp-footer-support {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 35px;
}

.mp-footer-label {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mp-footer-email {
  color: #9ef01a;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.mp-footer-phone {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.mp-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.mp-footer-links a {
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.mp-footer-links a:hover {
  border-color: #9ef01a;
  background: #9ef01a;
  color: #011a38;
}

.mp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.mp-footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

.mp-footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.mp-footer-legal a {
  padding: 6px 10px;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.mp-footer-legal a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.mp-footer-legal span {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
}

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

  .mp-footer-bottom {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
  }

  .mp-footer-legal {
    justify-content: center;
  }

  .mp-footer-legal span {
    display: none;
  }
}

/* Section 3 guarantee/support box update */
body .mp-trust-guarantee {
  background: #9ef01a !important;
  border-color: #9ef01a !important;
  box-shadow: 0 18px 50px rgba(158, 240, 26, 0.22) !important;
}

body .mp-trust-guarantee h3,
body .mp-trust-guarantee p {
  color: #011a38 !important;
}

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

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

.mp-apps-header {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.mp-apps-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(158, 240, 26, 0.72);
  border-radius: 3px;
  background: rgba(158, 240, 26, 0.12);
  color: #9ef01a;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

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

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

.mp-apps-header p {
  margin: 0 auto;
  max-width: 640px;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.7;
}

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

.mp-app-card {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.mp-app-card img {
  width: min(100%, 112px);
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .mp-apps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

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

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

  .mp-app-card {
    padding: 18px;
  }
}

/* Apps section mobile polish */
@media (max-width: 640px) {
  .mp-apps-header {
    margin-bottom: 28px !important;
  }

  .mp-apps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  .mp-app-card {
    aspect-ratio: 1 !important;
    padding: 9px !important;
    border-radius: 5px !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2) !important;
  }

  .mp-app-card img {
    width: min(100%, 54px) !important;
    border-radius: 9px !important;
  }
}

@media (max-width: 390px) {
  .mp-apps-grid {
    gap: 8px !important;
  }

  .mp-app-card {
    padding: 8px !important;
  }

  .mp-app-card img {
    width: min(100%, 48px) !important;
  }
}

/* Apps section logo visibility boost */
.mp-app-card img {
  width: min(100%, 132px) !important;
}

@media (max-width: 640px) {
  .mp-app-card {
    padding: 7px !important;
  }

  .mp-app-card img {
    width: min(100%, 66px) !important;
    border-radius: 10px !important;
  }
}

@media (max-width: 390px) {
  .mp-app-card img {
    width: min(100%, 58px) !important;
  }
}

/* Apps section edge-to-edge logo cards */
.mp-app-card {
  padding: 1px !important;
  overflow: hidden !important;
}

.mp-app-card img {
  width: calc(100% - 2px) !important;
  height: calc(100% - 2px) !important;
  object-fit: contain !important;
  border-radius: 5px !important;
}

@media (max-width: 640px) {
  .mp-app-card {
    padding: 1px !important;
  }

  .mp-app-card img {
    width: calc(100% - 2px) !important;
    height: calc(100% - 2px) !important;
    border-radius: 5px !important;
  }
}

/* Apps section click/tap pop interaction */
.mp-app-card {
  cursor: pointer !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease !important;
}

.mp-app-card.is-selected {
  z-index: 5 !important;
  transform: translateY(-8px) scale(1.12) !important;
  border-color: #9ef01a !important;
  background: rgba(158, 240, 26, 0.12) !important;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34), 0 0 28px rgba(158, 240, 26, 0.28) !important;
}

.mp-app-card.is-selected img {
  transform: scale(1.04) !important;
}

@media (max-width: 640px) {
  .mp-app-card.is-selected {
    transform: translateY(-5px) scale(1.08) !important;
  }
}

/* Movie carousel: show 3 posters on tablet and mobile */
@media (max-width: 1024px) {
  .mp-movie-item {
    flex-basis: 33.333vw !important;
    padding: 0 5px !important;
  }
}

@media (max-width: 768px) {
  .mp-movie-item {
    flex-basis: 33.333vw !important;
    padding: 0 4px !important;
  }
}

/* New simplified devices section */
.mp-devices-flat {
  width: 100%;
  padding: 86px 0;
  background: #ffffff;
  color: #011a38;
  overflow: hidden;
  forced-color-adjust: none;
}

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

.mp-devices-flat-header {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.mp-devices-flat-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(1, 26, 56, 0.14);
  border-radius: 3px;
  background: rgba(158, 240, 26, 0.22);
  color: #011a38;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.mp-devices-flat h2 {
  margin: 0 0 14px;
  color: #011a38;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.mp-devices-flat p {
  max-width: 620px;
  margin: 0 auto;
  color: #223047;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.7;
}

.mp-devices-flat-picture {
  display: block;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.mp-devices-flat-picture img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 4px;
}

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

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

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

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

  .mp-devices-flat p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .mp-devices-flat-picture {
    width: min(100%, 430px);
  }
}

/* Apps section desktop/tablet size refinement */
@media (min-width: 641px) {
  .mp-apps-inner {
    width: min(980px, 100%) !important;
  }

  .mp-apps-grid {
    grid-template-columns: repeat(5, 104px) !important;
    justify-content: center !important;
    gap: 14px !important;
  }

  .mp-app-card {
    width: 104px !important;
    height: 104px !important;
    padding: 1px !important;
  }

  .mp-app-card img {
    width: calc(100% - 2px) !important;
    height: calc(100% - 2px) !important;
    object-fit: contain !important;
  }
}

@media (min-width: 901px) {
  .mp-apps-grid {
    grid-template-columns: repeat(10, 86px) !important;
    gap: 12px !important;
  }

  .mp-app-card {
    width: 86px !important;
    height: 86px !important;
  }
}

/* Global entrance animations */
html.mp-animations-enabled .mp-animate {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.985);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--mp-animate-delay, 0ms);
  will-change: opacity, transform;
}

html.mp-animations-enabled .mp-animate.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

html.mp-animations-enabled .mp-animate-soft {
  transform: translate3d(0, 18px, 0);
}

html.mp-animations-enabled .mp-animate-pop {
  transform: translate3d(0, 18px, 0) scale(0.96);
}

html.mp-animations-enabled .mp-animate-left {
  transform: translate3d(-28px, 0, 0);
}

html.mp-animations-enabled .mp-animate-right {
  transform: translate3d(28px, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  html.mp-animations-enabled .mp-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Section 02: grouped channel grid carousel */
.mp-channel-carousel {
  overflow: hidden;
}

.mp-channel-viewport {
  position: relative;
  width: min(100%, 1000px);
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

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

.mp-channel-viewport::-webkit-scrollbar {
  display: none;
}

.mp-channel-carousel .mp-channel-track {
  display: flex;
  gap: 0;
  width: auto;
  will-change: scroll-position;
  transform: none !important;
  animation: none !important;
}

.mp-channel-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 10px;
}

.mp-channel-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px 20px;
  align-items: center;
  justify-items: center;
}

.mp-channel-carousel .mp-channel-item {
  display: block;
  width: 100%;
  max-width: 96px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
}

.mp-channel-carousel .mp-channel-item img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.mp-channel-carousel .mp-channel-item img:hover {
  transform: translateY(-3px) scale(1.03);
}

@media (max-width: 768px) {
  .mp-channel-viewport {
    width: 100%;
  }

  .mp-channel-slide {
    padding: 0 8px;
  }

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

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

@media (max-width: 390px) {
  .mp-channel-grid {
    gap: 8px;
  }

  .mp-channel-carousel .mp-channel-item {
    max-width: 82px;
  }
}

/* Section 02: show channel logos without circular badge backgrounds */
.mp-channel-carousel .mp-channel-item {
  max-width: 112px;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
}

.mp-channel-carousel .mp-channel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.mp-channel-carousel .mp-channel-item img:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: none !important;
}

/* Hero sales offer emphasis */
.mp-hero-green {
  color: #7CFF3A;
}

/* TEMP TEST: Green sales theme */
:root {
  --mp-accent: #7CFF3A;
  --mp-accent-soft: rgba(124, 255, 58, 0.16);
  --mp-accent-border: rgba(124, 255, 58, 0.42);
}

.mp-hero-button,
.mp-pricing-cta,
.mp-final-cta-button {
  background: linear-gradient(135deg, #7CFF3A 0%, #4FD91E 100%) !important;
  color: #061006 !important;
  box-shadow: 0 18px 44px rgba(124, 255, 58, 0.28) !important;
}

.mp-hero-button:hover,
.mp-pricing-cta:hover,
.mp-final-cta-button:hover {
  box-shadow: 0 22px 54px rgba(124, 255, 58, 0.38) !important;
}

.mp-hero-price strong,
.mp-pricing-price,
.mp-final-cta h2 span,
.mp-channel-eyebrow,
.mp-hero-green {
  color: #7CFF3A !important;
}

.mp-hero-badge,
.mp-channel-eyebrow,
.mp-final-cta-badge {
  border-color: rgba(124, 255, 58, 0.46) !important;
  background: rgba(124, 255, 58, 0.10) !important;
  color: #7CFF3A !important;
}

/* Section 03: livelier green trust-card hover */
body .mp-trust-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}

body .mp-trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 255, 58, 0.20), transparent 42%),
    linear-gradient(135deg, rgba(124, 255, 58, 0.12), transparent 52%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

body .mp-trust-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -70%;
  width: 42%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.20), transparent);
  transform: rotate(18deg);
  opacity: 0;
  pointer-events: none;
}

body .mp-trust-card:hover {
  transform: translateY(-10px) scale(1.018);
  border-color: rgba(124, 255, 58, 0.62) !important;
  background: rgba(7, 21, 18, 0.92) !important;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(124, 255, 58, 0.18) !important;
}

body .mp-trust-card:hover::before {
  opacity: 1;
}

body .mp-trust-card:hover::after {
  opacity: 1;
  animation: mp-trust-shine 0.72s ease forwards;
}

body .mp-trust-card:hover .mp-trust-icon {
  background: #7CFF3A !important;
  border-color: #7CFF3A !important;
  box-shadow: 0 14px 34px rgba(124, 255, 58, 0.32) !important;
  transform: translateY(-2px) scale(1.06);
}

body .mp-trust-card:hover .mp-trust-icon svg {
  stroke: #061006 !important;
}

body .mp-trust-card:hover h3 {
  color: #7CFF3A !important;
}

@keyframes mp-trust-shine {
  from {
    left: -70%;
  }
  to {
    left: 130%;
  }
}

/* Section 03: softer green hover adjustment */
body .mp-trust-card:hover {
  transform: translateY(-6px) scale(1.01) !important;
  border-color: rgba(124, 255, 58, 0.42) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(124, 255, 58, 0.12) !important;
}

body .mp-trust-card::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 255, 58, 0.12), transparent 44%),
    linear-gradient(135deg, rgba(124, 255, 58, 0.07), transparent 56%) !important;
}

body .mp-trust-card:hover .mp-trust-icon {
  background: rgba(124, 255, 58, 0.16) !important;
  border-color: rgba(124, 255, 58, 0.48) !important;
  box-shadow: 0 10px 24px rgba(124, 255, 58, 0.18) !important;
  transform: translateY(-1px) scale(1.035) !important;
}

body .mp-trust-card:hover .mp-trust-icon svg {
  stroke: #7CFF3A !important;
}

body .mp-trust-card:hover h3 {
  color: #7CFF3A !important;
}

/* Section 03: make catch-up box match normal trust cards */
body .mp-trust-guarantee {
  background: rgba(255, 255, 255, 0.045) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  box-shadow: none !important;
  text-align: center;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

body .mp-trust-guarantee:hover {
  transform: translateY(-6px) scale(1.01);
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(124, 255, 58, 0.38) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.20) !important;
}

body .mp-trust-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: #7CFF3A;
  color: #061006;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(124, 255, 58, 0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

body .mp-trust-cta:hover,
body .mp-trust-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(124, 255, 58, 0.30);
}

/* Section 03: guarantee CTA visibility fix */
body .mp-trust-guarantee,
body .mp-trust-guarantee:hover {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.045) !important;
}

body .mp-trust-guarantee h3,
body .mp-trust-guarantee p {
  color: #FFFFFF !important;
}

body .mp-trust-guarantee p {
  opacity: 0.86;
}

body .mp-trust-guarantee .mp-trust-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: #7CFF3A !important;
  color: #061006 !important;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(124, 255, 58, 0.22);
}

body .mp-trust-guarantee .mp-trust-cta:hover,
body .mp-trust-guarantee .mp-trust-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(124, 255, 58, 0.30);
}

/* Section 03: match trust CTA with site button style */
body .mp-trust-guarantee .mp-trust-cta {
  min-height: 56px !important;
  padding: 0 28px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #7CFF3A 0%, #4FD91E 100%) !important;
  color: #061006 !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  box-shadow: 0 18px 44px rgba(124, 255, 58, 0.28) !important;
}

body .mp-trust-guarantee .mp-trust-cta:hover,
body .mp-trust-guarantee .mp-trust-cta:focus-visible {
  transform: translateY(-3px) !important;
  box-shadow: 0 22px 54px rgba(124, 255, 58, 0.38) !important;
}

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

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

/* Remove green glow from CTA buttons site-wide */
body .mp-hero-button,
body .mp-pricing-cta,
body .mp-final-cta-button,
body .mp-trust-guarantee .mp-trust-cta {
  background: #7CFF3A !important;
  border-color: #7CFF3A !important;
  color: #011a38 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body .mp-hero-button:hover,
body .mp-hero-button:focus-visible,
body .mp-pricing-cta:hover,
body .mp-pricing-cta:focus-visible,
body .mp-final-cta-button:hover,
body .mp-final-cta-button:focus-visible,
body .mp-trust-guarantee .mp-trust-cta:hover,
body .mp-trust-guarantee .mp-trust-cta:focus-visible {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #011a38 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

/* Section 04: remove green glow from movies badge and IPTV word */
body .mp-movies-badge {
  color: #7CFF3A !important;
  border-color: #7CFF3A !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body .mp-movies-header h2 span {
  color: #7CFF3A !important;
  text-shadow: none !important;
  filter: none !important;
}

/* Section 05: remove green glow from TV shows badge and title accent */
body .mp-tvshows-badge {
  color: #7CFF3A !important;
  border-color: #7CFF3A !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body .mp-tvshows-header h2 span {
  color: #7CFF3A !important;
  text-shadow: none !important;
  filter: none !important;
}

/* Pricing: flat green accents and no green glow */
body .mp-pricing-label {
  color: #7CFF3A !important;
  border-color: #7CFF3A !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body .mp-pricing-tab {
  box-shadow: none !important;
}

body .mp-pricing-tab:hover,
body .mp-pricing-tab.is-active {
  border-color: #7CFF3A !important;
  background: rgba(124, 255, 58, 0.10) !important;
  color: #7CFF3A !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body .mp-pricing-card.is-popular {
  border-color: rgba(124, 255, 58, 0.42) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28) !important;
}

body .mp-pricing-popular {
  background: #7CFF3A !important;
  color: #011a38 !important;
  box-shadow: none !important;
}

body .mp-pricing-card.is-popular h3,
body .mp-pricing-price span {
  color: #7CFF3A !important;
  text-shadow: none !important;
  filter: none !important;
}

body .mp-pricing-cta {
  background: #7CFF3A !important;
  border-color: #7CFF3A !important;
  color: #011a38 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body .mp-pricing-cta:hover,
body .mp-pricing-cta:focus-visible {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #011a38 !important;
  box-shadow: none !important;
}

/* Hero: new background image and blue limited-time badge */
body .mp-hero {
  background-image: url('https://mayprime.com/wp-content/uploads/2026/06/Herosec.webp') !important;
}

body .mp-hero-badge {
  background-color: #0065e1 !important;
  border-color: #0065e1 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

/* Section 03: keep green state constant, hover only lifts + light sweep */
body .mp-trust-card {
  border-color: rgba(124, 255, 58, 0.42) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22) !important;
}

body .mp-trust-card::before {
  opacity: 1 !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 255, 58, 0.10), transparent 44%),
    linear-gradient(135deg, rgba(124, 255, 58, 0.055), transparent 56%) !important;
}

body .mp-trust-icon,
body .mp-trust-card:hover .mp-trust-icon {
  color: #7CFF3A !important;
  background: rgba(124, 255, 58, 0.14) !important;
  border-color: rgba(124, 255, 58, 0.46) !important;
  box-shadow: none !important;
  transform: none !important;
}

body .mp-trust-icon svg,
body .mp-trust-card:hover .mp-trust-icon svg {
  stroke: #7CFF3A !important;
}

body .mp-trust-card h3,
body .mp-trust-card:hover h3 {
  color: #7CFF3A !important;
}

body .mp-trust-card:hover {
  transform: translateY(-6px) scale(1.012) !important;
  border-color: rgba(124, 255, 58, 0.42) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22) !important;
}

body .mp-trust-card:hover::before {
  opacity: 1 !important;
}

body .mp-trust-card:hover::after {
  opacity: 1 !important;
  animation: mp-trust-shine 0.72s ease forwards !important;
}

/* Public copy protection */
html.mp-copy-protected body {
  -webkit-user-select: none;
  user-select: none;
}

html.mp-copy-protected input,
html.mp-copy-protected textarea,
html.mp-copy-protected select,
html.mp-copy-protected [contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}

html.mp-copy-protected img,
html.mp-copy-protected video {
  -webkit-user-drag: none;
}

/* Legal pages */
.mp-legal-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #011a38 0%, #002a5a 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.mp-legal-hero {
  position: relative;
  padding: 26px 0 54px;
  overflow: hidden;
}

.mp-legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 26, 56, 0.20), rgba(1, 26, 56, 0.92)),
    url('https://mayprime.com/wp-content/uploads/2026/06/Herosec.webp') center/cover no-repeat;
  opacity: 0.42;
}

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

.mp-legal-logo {
  display: inline-flex;
  margin-bottom: 54px;
  color: #ffffff;
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.mp-legal-logo span {
  color: #7CFF3A;
}

.mp-legal-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 18px;
  border: 1px solid #7CFF3A;
  border-radius: 3px;
  color: #7CFF3A;
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.mp-legal-hero h1 {
  max-width: 880px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.mp-legal-content-section {
  padding: 0 0 76px;
}

.mp-legal-content {
  width: min(920px, calc(100% - 36px));
  margin: -24px auto 0;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.mp-legal-content h1 {
  display: none;
}

.mp-legal-content h2 {
  margin: 34px 0 12px;
  color: #7CFF3A;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.3;
}

.mp-legal-content h2:first-child {
  margin-top: 0;
}

.mp-legal-content p,
.mp-legal-content li {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.mp-legal-content p {
  margin: 0 0 16px;
}

.mp-legal-content ul,
.mp-legal-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.mp-legal-content a {
  color: #7CFF3A;
  font-weight: 800;
  text-decoration: none;
}

.mp-legal-content a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .mp-legal-hero {
    padding: 22px 0 42px;
  }

  .mp-legal-logo {
    margin-bottom: 42px;
  }

  .mp-legal-content {
    width: calc(100% - 28px);
    padding: 28px 20px;
  }
}

/* Legal page final CTA */
.mp-legal-final-cta {
  margin-top: 42px;
  padding: 34px 28px;
  border: 1px solid rgba(124, 255, 58, 0.34);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.055);
  text-align: center;
}

.mp-legal-final-cta h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.12;
}

.mp-legal-final-cta p {
  max-width: 680px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.86);
}

.mp-legal-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 24px;
  border: 1px solid #7CFF3A;
  border-radius: 3px;
  background: #7CFF3A;
  color: #011a38 !important;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  text-decoration: none !important;
  text-transform: uppercase;
}

.mp-legal-cta-button:hover,
.mp-legal-cta-button:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #011a38 !important;
}

/* TEMP TEST: Section 07 green glow card style */
body .mp-step-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(124, 255, 58, 0.42) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22) !important;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}

body .mp-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 1;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 255, 58, 0.10), transparent 44%),
    linear-gradient(135deg, rgba(124, 255, 58, 0.055), transparent 56%);
}

body .mp-step-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -70%;
  width: 42%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.20), transparent);
  transform: rotate(18deg);
  opacity: 0;
  pointer-events: none;
}

body .mp-step-number {
  background: rgba(124, 255, 58, 0.14) !important;
  border-color: rgba(124, 255, 58, 0.46) !important;
  color: #7CFF3A !important;
  box-shadow: none !important;
}

body .mp-step-card h3 {
  color: #7CFF3A !important;
}

body .mp-step-card:hover {
  transform: translateY(-6px) scale(1.012) !important;
  border-color: rgba(124, 255, 58, 0.42) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22) !important;
}

body .mp-step-card:hover::after {
  opacity: 1 !important;
  animation: mp-trust-shine 0.72s ease forwards !important;
}

/* Hero logo image */
body .mp-hero-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

body .mp-hero-logo img {
  display: block;
  width: 235px;
  max-width: 64vw;
  height: auto;
  max-height: 68px;
  object-fit: contain;
}

@media (max-width: 768px) {
  body .mp-hero-logo img {
    width: 200px;
    max-height: 58px;
  }
}

/* Hero logo top-left position */
body .mp-hero-nav {
  position: absolute;
  top: 22px;
  left: 28px;
  right: auto;
  width: auto;
  margin: 0;
  padding: 0;
  z-index: 5;
}

@media (max-width: 768px) {
  body .mp-hero-nav {
    top: 16px;
    left: 16px;
  }
}

/* Force hero logo position on mobile */
@media (max-width: 768px) {
  body .mp-hero .mp-hero-nav {
    position: absolute !important;
    top: 16px !important;
    right: auto !important;
    bottom: auto !important;
    left: 16px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    z-index: 5 !important;
  }

  body .mp-hero .mp-hero-logo {
    display: inline-flex !important;
    align-items: center !important;
  }
}

/* Hero logo exact mobile top-left */
@media (max-width: 768px) {
  body .mp-hero {
    position: relative;
  }

  body .mp-hero .mp-hero-nav {
    position: absolute !important;
    top: max(8px, env(safe-area-inset-top)) !important;
    left: 12px !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    z-index: 20 !important;
  }
}


/* Hero channel-list navigation */
body .mp-hero .mp-hero-nav {
  position: absolute !important;
  top: 22px !important;
  right: 28px !important;
  left: 28px !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 20 !important;
}

body .mp-channel-list-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 15px;
  border: 1px solid #7CFF3A;
  border-radius: 3px;
  background: #7CFF3A;
  color: #011a38;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

body .mp-channel-list-link:hover,
body .mp-channel-list-link:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #011a38;
}

@media (max-width: 768px) {
  body .mp-hero .mp-hero-nav {
    top: max(8px, env(safe-area-inset-top)) !important;
    right: 12px !important;
    left: 12px !important;
    gap: 10px;
  }

  body .mp-hero-logo img {
    width: 148px !important;
    max-width: calc(100vw - 164px) !important;
    max-height: 44px !important;
  }

  body .mp-channel-list-link {
    min-height: 36px;
    padding: 9px 10px;
    font-size: 11px;
  }
}

/* Channel section updated copy */
body .mp-channel-header h2 {
  margin-bottom: 12px;
}

body .mp-channel-description {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

body .mp-channel-carousel .mp-channel-item {
  border: 0 !important;
  outline: 0 !important;
}

@media (max-width: 768px) {
  body .mp-channel-description {
    font-size: 15px;
    line-height: 1.5;
  }
}

/* Pricing card stronger edges */
body .mp-pricing-card {
  border-width: 2px !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
}

body .mp-pricing-card.is-popular {
  border-color: rgba(124, 255, 58, 0.82) !important;
}


/* Site-wide Hanken Grotesk font */
body,
body button,
body input,
body select,
body textarea,
body * {
  font-family: "Hanken Grotesk", Arial, sans-serif !important;
  font-optical-sizing: auto;
}

/* Slight global type scale */
html {
  font-size: 106.25%;
}


/* Device compatibility carousel and checker */
.mp-device-compatibility {
  padding: 86px 0;
  overflow: hidden;
  background: #ffffff;
  color: #011a38;
}

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

.mp-device-compatibility-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.mp-device-compatibility-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(1, 26, 56, 0.16);
  border-radius: 3px;
  background: rgba(124, 255, 58, 0.22);
  color: #011a38;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  line-height: 1;
  text-transform: uppercase;
}

.mp-device-compatibility-header h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
}

.mp-device-compatibility-header p {
  margin: 0;
  color: #4e6173;
  font-size: 1.05rem;
  line-height: 1.65;
}

.mp-device-carousel {
  overflow: hidden;
  margin: 0 -24px 40px;
  padding: 8px 0;
}

.mp-device-carousel-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

.mp-device-carousel-item {
  flex: 0 0 116px;
  width: 116px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #d8e0e8;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(1, 26, 56, 0.10);
}

.mp-device-carousel-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mp-device-checker {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid #d8e0e8;
  border-radius: 8px;
  background: #f7faf8;
  text-align: center;
}

.mp-device-checker h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 900;
}

.mp-device-checker > p {
  margin: 0;
  color: #4e6173;
  line-height: 1.55;
}

.mp-device-checker-form {
  margin-top: 22px;
}

.mp-device-checker-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.mp-device-checker-controls {
  display: flex;
  gap: 10px;
}

.mp-device-checker-controls input {
  min-width: 0;
  flex: 1;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #becbd7;
  border-radius: 4px;
  background: #ffffff;
  color: #011a38;
  outline: 0;
}

.mp-device-checker-controls input:focus {
  border-color: #22a45a;
  box-shadow: 0 0 0 3px rgba(34, 164, 90, 0.16);
}

.mp-device-checker-controls button {
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid #22a45a;
  border-radius: 4px;
  background: #22a45a;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.mp-device-checker-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #95d8ae;
  border-radius: 6px;
  background: #eaf8ef;
  color: #176b39;
  text-align: left;
}

.mp-device-checker-result span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #22a45a;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
}

.mp-device-checker-result p {
  margin: 0;
  font-weight: 800;
  line-height: 1.45;
}

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

  .mp-device-compatibility-inner {
    padding: 0 16px;
  }

  .mp-device-carousel {
    margin-right: -16px;
    margin-left: -16px;
  }

  .mp-device-carousel-track {
    gap: 10px;
  }

  .mp-device-carousel-item {
    flex-basis: 88px;
    width: 88px;
  }

  .mp-device-checker {
    padding: 22px 16px;
  }

  .mp-device-checker-controls {
    flex-direction: column;
  }

  .mp-device-checker-controls button {
    width: 100%;
  }
}


/* Animated paged channel wall */
.mp-channel-wall {
  padding: 76px 0;
  overflow: hidden;
  background: #011a38;
  color: #ffffff;
}

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

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

.mp-channel-wall-showcase {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #00224a;
  box-shadow:
    inset 0 20px 44px rgba(0, 0, 0, 0.28),
    0 24px 48px rgba(0, 0, 0, 0.24);
}

.mp-channel-wall-track {
  display: flex;
  width: 100%;
  transition: transform 560ms ease;
  will-change: transform;
}

.mp-channel-wall-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
}

.mp-channel-wall-item {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(1, 26, 56, 0.16);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.20);
}

.mp-channel-wall-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mp-channel-wall-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.mp-channel-wall-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.mp-channel-wall-dot.is-active {
  border-color: #7CFF3A;
  background: #7CFF3A;
}

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

  .mp-channel-wall-inner {
    padding: 0 14px;
  }

  .mp-channel-wall-showcase {
    padding: 14px;
    border-radius: 6px;
  }

  .mp-channel-wall-page {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .mp-channel-wall-dots {
    margin-top: 14px;
  }
}


/* Double direction channel carousel */
.mp-channel-double-carousel {
  overflow: hidden;
  padding: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #00224a;
  box-shadow:
    inset 0 20px 44px rgba(0, 0, 0, 0.28),
    0 24px 48px rgba(0, 0, 0, 0.24);
}

.mp-channel-double-row {
  overflow: hidden;
  padding: 8px 0;
}

.mp-channel-double-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

.mp-channel-double-row .mp-channel-wall-item {
  flex: 0 0 94px;
  width: 94px;
}

@media (max-width: 768px) {
  .mp-channel-double-carousel {
    padding: 12px 0;
    border-radius: 6px;
  }

  .mp-channel-double-row {
    padding: 5px 0;
  }

  .mp-channel-double-track {
    gap: 10px;
  }

  .mp-channel-double-row .mp-channel-wall-item {
    flex-basis: 72px;
    width: 72px;
  }
}


/* Infinite draggable channel rows */
.mp-channel-double-row {
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.mp-channel-double-row.is-dragging {
  cursor: grabbing;
}

@media (max-width: 768px) {
  .mp-channel-double-row .mp-channel-wall-item {
    flex-basis: 82px;
    width: 82px;
  }
}

/* Slightly larger movie posters */
body .mp-movie-item {
  flex-basis: 27vw !important;
}

@media (max-width: 1024px) {
  body .mp-movie-item {
    flex-basis: 38vw !important;
  }
}

@media (max-width: 768px) {
  body .mp-movie-item {
    flex-basis: 38vw !important;
  }
}

/* Temporarily hide Channel List header button */
body .mp-channel-list-link {
  display: none !important;
}

/* Tighter homepage section spacing */
body :is(
  .mp-channel-wall,
  .mp-trust,
  .mp-movies,
  .mp-tvshows,
  .mp-sports,
  .mp-steps,
  .mp-pricing,
  .mp-highlight-features,
  .mp-apps,
  .mp-device-compatibility,
  .mp-channel-list-section,
  .mp-final-cta
) {
  padding-top: 68px !important;
  padding-bottom: 68px !important;
}

@media (max-width: 768px) {
  body :is(
    .mp-channel-wall,
    .mp-trust,
    .mp-movies,
    .mp-tvshows,
    .mp-sports,
    .mp-steps,
    .mp-pricing,
    .mp-highlight-features,
    .mp-apps,
    .mp-device-compatibility,
    .mp-channel-list-section,
    .mp-final-cta
  ) {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }
}

/* Channel section supporting note */
body .mp-channel-note {
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 768px) {
  body .mp-channel-note {
    margin-top: 8px;
    font-size: 0.76rem;
  }
}


/* Two-row device carousel layout */
.mp-device-carousels {
  display: grid;
  gap: 12px;
  margin: 0 -24px 40px;
}

.mp-device-carousels .mp-device-carousel {
  margin: 0 -0px;
}

@media (max-width: 768px) {
  .mp-device-carousels {
    gap: 10px;
    margin-right: -16px;
    margin-left: -16px;
  }
}

/* Device compatibility result above form */
body .mp-device-checker {
  display: flex;
  flex-direction: column;
}

body .mp-device-checker h3 {
  order: 1;
}

body .mp-device-checker > p {
  order: 2;
}

body .mp-device-checker-result {
  order: 3;
}

body .mp-device-checker-form {
  order: 4;
}

/* Sports section CTA */
body .mp-sports-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 22px;
  padding: 12px 20px;
  border: 1px solid #7CFF3A;
  border-radius: 3px;
  background: #7CFF3A;
  color: #011a38;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

body .mp-sports-cta:hover,
body .mp-sports-cta:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #011a38;
}

@media (max-width: 900px) {
  body .mp-sports-cta {
    margin-top: 18px;
  }
}

/* Movie section subheadline */
body .mp-movies-header h2 {
  margin-bottom: 14px;
}

body .mp-movies-description {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 768px) {
  body .mp-movies-description {
    font-size: 0.96rem;
  }
}

/* Temporarily hide the supported apps section on the homepage */
body .mp-apps {
  display: none !important;
}


/* Pricing trust line */
body .mp-pricing-trust {
  max-width: 760px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 768px) {
  body .mp-pricing-trust {
    max-width: 330px;
    font-size: 0.88rem;
  }
}

/* Channel list whitespace fix */
body .mp-channel-list-section {
  background: #011a38 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body .mp-channel-list-section .cl-box {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  body .mp-channel-list-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}


/* Homepage FAQ section */
body .mp-faq {
  padding: 68px 20px;
  background: #ffffff;
  color: #111827;
}

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

body .mp-faq-header {
  margin-bottom: 28px;
  text-align: center;
}

body .mp-faq-header h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
}

body .mp-faq-list {
  display: grid;
  gap: 10px;
}

body .mp-faq-item {
  overflow: hidden;
  border: 1px solid #d7dee8;
  border-radius: 6px;
  background: #ffffff;
}

body .mp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 18px 20px;
  color: #111827;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

body .mp-faq-item summary::-webkit-details-marker {
  display: none;
}

body .mp-faq-item summary::after {
  flex: 0 0 auto;
  color: #7CFF3A;
  content: "+";
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
}

body .mp-faq-item[open] summary {
  border-bottom: 1px solid #e5e7eb;
}

body .mp-faq-item[open] summary::after {
  content: "-";
}

body .mp-faq-answer {
  padding: 0 20px 19px;
}

body .mp-faq-answer p {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

@media (max-width: 768px) {
  body .mp-faq {
    padding: 46px 16px;
  }

  body .mp-faq-header {
    margin-bottom: 22px;
  }

  body .mp-faq-item summary {
    min-height: 58px;
    padding: 16px;
    font-size: 0.98rem;
  }

  body .mp-faq-answer {
    padding: 0 16px 17px;
  }

  body .mp-faq-answer p {
    font-size: 0.94rem;
  }
}

/* Larger pricing tab labels */
body .mp-pricing-tab {
  font-size: 1.1rem;
  font-weight: 800;
}

@media (max-width: 768px) {
  body .mp-pricing-tab {
    font-size: 1.02rem;
  }
}


/* Restored MayPrimeTV text hero logo */
body .mp-hero .mp-hero-logo {
  display: inline-block;
  color: #ffffff;
  font-family: inherit;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

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

@media (max-width: 768px) {
  body .mp-hero .mp-hero-logo {
    font-size: 1.4rem;
  }
}


/* MayPrimeTV hero wordmark */
body .mp-hero .mp-hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: inherit;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

body .mp-hero .mp-hero-logo-mark {
  position: relative;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 6px;
  background: rgba(0, 42, 90, 0.82);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 900;
}

body .mp-hero .mp-hero-logo-mark::after {
  position: absolute;
  right: 6px;
  bottom: 5px;
  left: 6px;
  height: 3px;
  background: #9ef01a;
  content: "";
}

body .mp-hero .mp-hero-logo-name {
  color: #ffffff;
  font-size: 1.56rem;
  font-weight: 900;
}

body .mp-hero .mp-hero-logo-tv {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 6px;
  border: 1px solid #9ef01a;
  border-radius: 4px;
  background: #9ef01a;
  color: #011a38;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 768px) {
  body .mp-hero .mp-hero-logo {
    gap: 6px;
  }

  body .mp-hero .mp-hero-logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    font-size: 1rem;
  }

  body .mp-hero .mp-hero-logo-name {
    font-size: 1.28rem;
  }

  body .mp-hero .mp-hero-logo-tv {
    min-height: 19px;
    padding: 3px 5px;
    font-size: 0.62rem;
  }
}


/* Subtle MayPrimeTV text-logo decoration */
body .mp-hero .mp-hero-logo {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  box-shadow: none;
  color: #ffffff;
  font-family: inherit;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

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

body .mp-hero .mp-hero-logo::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 2px;
  background: #9ef01a;
  content: "";
}

body .mp-hero .mp-hero-logo::before {
  position: absolute;
  bottom: 0;
  left: 50px;
  width: 15px;
  height: 2px;
  background: rgba(255, 255, 255, 0.62);
  content: "";
}

@media (max-width: 768px) {
  body .mp-hero .mp-hero-logo {
    padding-bottom: 7px;
    font-size: 1.4rem;
  }

  body .mp-hero .mp-hero-logo::after {
    width: 37px;
  }

  body .mp-hero .mp-hero-logo::before {
    left: 43px;
    width: 12px;
  }
}

/* Subtle TV-shaped MayPrime logo accent */
body .mp-hero .mp-hero-logo {
  padding-bottom: 18px;
}

body .mp-hero .mp-hero-logo::after {
  bottom: 0;
  left: 2px;
  width: 42px;
  height: 11px;
  border: 1px solid rgba(158, 240, 26, 0.88);
  border-radius: 3px;
  background: transparent;
}

body .mp-hero .mp-hero-logo::before {
  bottom: 12px;
  left: 17px;
  width: 12px;
  height: 6px;
  border-top: 1px solid rgba(158, 240, 26, 0.78);
  border-left: 1px solid rgba(158, 240, 26, 0.78);
  background: transparent;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  body .mp-hero .mp-hero-logo {
    padding-bottom: 16px;
  }

  body .mp-hero .mp-hero-logo::after {
    width: 36px;
    height: 9px;
  }

  body .mp-hero .mp-hero-logo::before {
    bottom: 10px;
    left: 14px;
    width: 10px;
    height: 5px;
  }
}

/* Rounded M logo accent */
body .mp-hero .mp-hero-logo {
  padding-bottom: 0;
}

body .mp-hero .mp-hero-logo::before {
  content: none;
}

body .mp-hero .mp-hero-logo::after {
  top: -5px;
  right: auto;
  bottom: auto;
  left: -7px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(158, 240, 26, 0.82);
  border-right-color: transparent;
  border-radius: 50%;
  background: transparent;
  content: "";
}

@media (max-width: 768px) {
  body .mp-hero .mp-hero-logo::after {
    top: -4px;
    left: -6px;
    width: 24px;
    height: 24px;
  }
}


/* Lighthouse contrast fix */
.mp-device-checker-controls button {
  background: #087a3a;
  border-color: #087a3a;
  color: #ffffff;
}
