* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050505;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  backdrop-filter: blur(14px);

  background: rgba(0,0,0,0.45);

  border-bottom: 1px solid rgba(255,255,255,0.05);

  box-shadow:
    0 0 30px rgba(255,0,110,0.08);
}

nav {
  max-width: 1450px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 50px;
}

.logo {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -4px;

  font-style: italic;

  color: white;

  text-transform: uppercase;

  transform: skew(-12deg);

  text-shadow:
    0 0 14px rgba(255,255,255,0.18);
}

.logo span {
  color: #ff006e;

  text-shadow:
    0 0 20px rgba(255,0,110,0.9),
    0 0 40px rgba(255,0,110,0.6);
}

nav ul {
  display: flex;
  align-items: center;

  gap: 46px;

  list-style: none;

  margin: 0;
  padding: 0;
}
nav ul li {
  display: flex;
  align-items: center;
}

nav ul li a {
  color: rgba(255,255,255,0.88);

  text-decoration: none;

  font-size: 18px;
  font-weight: 600;

  transition: 0.3s ease;
}

nav ul li a:hover {
  color: #ff006e;

  text-shadow:
    0 0 16px rgba(255,0,110,0.7);
}

.contact-btn {
  padding: 15px 34px;

  border-radius: 999px;

  border: 1px solid rgba(255,0,110,0.8);

  box-shadow:
    0 0 22px rgba(255,0,110,0.22);

  transition: 0.35s ease;
}

.contact-btn:hover {
  background: #ff006e;

  color: white !important;

  box-shadow:
    0 0 34px rgba(255,0,110,0.8);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 7%;
  position: relative;
  background:
    radial-gradient(circle at 70% 40%, rgba(255, 0, 110, 0.25), transparent 35%),
    linear-gradient(120deg, #050505 20%, #12000a 100%);
}

.glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: #ff006e;
  filter: blur(150px);
  opacity: 0.25;
  right: 10%;
  animation: pulse 4s infinite alternate;
}

.hero-content {
  max-width: 760px;
  z-index: 2;
}

.eyebrow {
  color: #ff4fa3;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(54px, 9vw, 120px);
  line-height: 0.9;
  margin-bottom: 28px;
}

h1 span {
  color: #ff006e;
  text-shadow: 0 0 35px rgba(255, 0, 110, 0.9);
}

.hero-text {
  color: #cfcfcf;
  font-size: 20px;
  line-height: 1.6;
  max-width: 640px;
}

.hero-buttons {
  margin-top: 36px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
}

.primary {
  background: #ff006e;
  box-shadow: 0 0 35px rgba(255, 0, 110, 0.6);
}

.secondary {
  border: 1px solid #555;
  background: rgba(255,255,255,0.05);
}

.section {
  padding: 100px 7%;
  text-align: center;
}

.section h2,
.device-section h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 40px;
}

.cards,
.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card,
.price-card,
details {
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 0 40px rgba(255, 0, 110, 0.08);
}

.card h3,
.price-card h3 {
  color: #ff4fa3;
  margin-bottom: 14px;
}

.card p,
.price-card p,
.device-section p,
details p {
  color: #bdbdbd;
  line-height: 1.6;
}

.device-section {
  padding: 100px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #090909;
}

.device-box {
  height: 330px;
  border-radius: 32px;
  padding: 18px;
  background: linear-gradient(145deg, #181818, #050505);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 70px rgba(255, 0, 110, 0.22);
}

.screen {
  height: 100%;
  border-radius: 22px;
  background:
    radial-gradient(circle, rgba(255,0,110,0.28), transparent 45%),
    #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 58px;
  font-weight: 900;
  letter-spacing: 3px;
}

.screen span {
  color: #ff006e;
}

.pricing {
  grid-template-columns: repeat(3, 1fr);
}

.price {
  font-size: 48px;
  color: white !important;
  margin: 18px 0;
}

.featured {
  border-color: #ff006e;
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(255, 0, 110, 0.35);
}

.faq {
  max-width: 900px;
  margin: auto;
}

details {
  margin-bottom: 16px;
  cursor: pointer;
}

summary {
  font-weight: 700;
  color: white;
}

footer {
  padding: 60px 7%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
}

footer a {
  color: #ff4fa3;
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 0.2;
  }
  to {
    transform: scale(1.2);
    opacity: 0.38;
  }
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .cards,
  .pricing,
  .device-section {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }

  .hero {
    padding-top: 150px;
  }
}

On Mon, 8 June 2026, 6:42 pm Matt Chadwick, <chadfit1@gmail.com> wrote:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Xtra+ 12 Months Access</title>
    <script src="https://tailwindcss.com"></script>
</head>
<body class="bg-slate-900 text-slate-100 font-sans antialiased min-h-screen flex flex-col justify-center items-center px-4 py-12">

    <!-- Main Container -->
    <div class="max-w-xl w-full bg-slate-800 border border-slate-700 rounded-3xl shadow-2xl overflow-hidden p-8 md:p-10 text-center">
        
        <!-- Badge -->
        <span class="inline-block text-xs font-bold tracking-widest text-cyan-400 uppercase bg-cyan-950/50 border border-cyan-800 px-4 py-1.5 rounded-full mb-6">
            Instant Digital Access
        </span>
        
        <!-- Heading -->
        <h1 class="text-4xl font-black tracking-tight text-white mb-3">Xtra+</h1>
        <p class="text-xl font-semibold text-slate-300 mb-6">12 Months Full Access Pass</p>
        
        <!-- Divider -->
        <div class="w-12 h-1 bg-cyan-500 mx-auto rounded-full mb-8"></div>
        
        <!-- Features List -->
        <ul class="text-left space-y-4 max-w-sm mx-auto mb-10 text-slate-400 text-sm">
            <li class="flex items-start gap-3">
                <span class="text-cyan-400 font-bold">✓</span> Full premium feature unlocked for 365 days
            </li>
            <li class="flex items-start gap-3">
                <span class="text-cyan-400 font-bold">✓</span> No hidden fees or automatic re-billing
            </li>
            <li class="flex items-start gap-3">
                <span class="text-cyan-400 font-bold">✓</span> Details will be sent to your email after purchase
            </li>
        </ul>

        <!-- Price Tier Box -->
        <div class="bg-slate-900/60 border border-slate-700/60 rounded-2xl p-6 mb-8">
            <div class="flex justify-between items-center">
                <span class="text-slate-400 font-medium text-sm">One-time payment</span>
                <div class="text-right">
                    <span class="text-3xl font-black text-white">$110</span>
                    <span class="text-xs font-bold text-slate-500 block">USD</span>
                </div>
            </div>
        </div>
        
        <!-- PAYMENT BUTTON -->
        <a href="https://stripe.com" class="block w-full bg-cyan-500 hover:bg-cyan-400 text-slate-950 font-extrabold py-4 px-6 rounded-xl transition duration-200 shadow-lg shadow-cyan-500/20 text-center text-lg tracking-wide uppercase">
            Get Access Instantly
        </a>
        
        <!-- Trust Footer -->
        <p class="text-xs text-slate-500 mt-6 flex items-center justify-center gap-1.5">
            🔒 Secured via Stripe Checkout • Global Payments Accepted
        </p>
    </div>

</body>
</html>
.single-plan {
  display: flex;
  justify-content: center;
}

.plan-features {
  list-style: none;
  margin: 28px 0;
  padding: 0;
}

.plan-features li {
  margin-bottom: 12px;
  color: #d5d5d5;
}
.price-card {
  min-height: 620px;
}

.price-card .btn {
  display: inline-block;
  margin-top: 25px;
}

.plan-features li {
  line-height: 1.5;
}
.hero-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 7% 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 0, 110, 0.18), transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(255, 0, 110, 0.14), transparent 30%),
    linear-gradient(135deg, #020202 0%, #090006 55%, #000 100%);
}

.hero-panel {
  width: min(1100px, 100%);
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 80px 7%;
  position: relative;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(0,0,0,0.75)),
    radial-gradient(circle at 30% 55%, rgba(255,0,110,0.2), transparent 35%);
  box-shadow:
    0 0 80px rgba(255, 0, 110, 0.18),
    inset 0 0 80px rgba(255, 255, 255, 0.03);
}

.chrome-logo {
  font-size: clamp(76px, 13vw, 170px);
  line-height: 0.85;
  letter-spacing: -6px;
  font-weight: 900;
  background: linear-gradient(180deg, #ffffff 0%, #d9d9d9 35%, #777 55%, #ffffff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 12px rgba(255,255,255,0.35),
    0 0 40px rgba(255,0,110,0.25);
}

.chrome-logo span {
  background: linear-gradient(180deg, #ff4fb0, #ff006e, #ff8ac8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(255,0,110,0.9));
}

.hero-tagline {
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  font-size: 14px;
  color: #f3f3f3;
}

.hero-tagline span {
  color: #ff006e;
  margin: 0 14px;
}

.hero-v2 .hero-text {
  margin: 28px auto 0;
  max-width: 720px;
  color: #d2d2d2;
}

.neon-line {
  position: absolute;
  height: 3px;
  width: 720px;
  background: linear-gradient(90deg, transparent, #ff006e, transparent);
  filter: blur(1px);
  opacity: 0.8;
  z-index: 1;
}

.line-one {
  top: 52%;
  left: -15%;
  transform: rotate(-12deg);
  animation: sweepOne 6s ease-in-out infinite alternate;
}

.line-two {
  bottom: 20%;
  right: -15%;
  transform: rotate(8deg);
  animation: sweepTwo 7s ease-in-out infinite alternate;
}

.hero-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 2px solid rgba(255, 0, 110, 0.65);
  border-radius: 50%;
  right: 12%;
  top: 22%;
  box-shadow:
    0 0 35px rgba(255,0,110,0.8),
    inset 0 0 35px rgba(255,0,110,0.35);
  opacity: 0.35;
  animation: orbPulse 5s ease-in-out infinite alternate;
}

@keyframes sweepOne {
  from { transform: translateX(-80px) rotate(-12deg); }
  to { transform: translateX(140px) rotate(-12deg); }
}

@keyframes sweepTwo {
  from { transform: translateX(100px) rotate(8deg); }
  to { transform: translateX(-120px) rotate(8deg); }
}

@keyframes orbPulse {
  from { transform: scale(0.95); opacity: 0.25; }
  to { transform: scale(1.08); opacity: 0.5; }
}

@media (max-width: 700px) {
  .hero-panel {
    padding: 60px 24px;
  }

  .hero-tagline {
    font-size: 11px;
    line-height: 1.9;
  }

  .hero-tagline span {
    margin: 0 6px;
  }

  .hero-orb {
    width: 260px;
    height: 260px;
    right: -60px;
  }
}
.hero-tv {
  min-height: 100vh;
  position: relative;
  padding: 140px 7% 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background:
    linear-gradient(90deg, rgba(0,0,0,0.85), rgba(0,0,0,0.15), rgba(0,0,0,0.9)),
    url("assets/xtra-hero.png");
  background-size: cover;
  background-position: center;
}

.hero-tv::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 45%, rgba(255,0,110,0.22), transparent 35%),
    radial-gradient(circle at 40% 75%, rgba(255,0,110,0.18), transparent 35%);
  animation: heroGlow 5s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-tv::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.85)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.025) 0px,
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 5px
    );
  z-index: 2;
}

.hero-tv-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1000px;
  margin-top: -20px;
}

.hero-tv-title {
  font-size: clamp(74px, 14vw, 190px);
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -7px;
  background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 30%, #6f6f6f 52%, #ffffff 78%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.25));
}

.hero-tv-title span {
  background: linear-gradient(180deg, #ff7bc4, #ff006e, #ff2f95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 26px rgba(255,0,110,0.95));
}

.hero-tv-tagline {
  margin-top: 28px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 900;
  font-size: 14px;
  text-shadow: 0 0 16px rgba(0,0,0,0.9);
}

.hero-tv-tagline span {
  color: #ff006e;
  margin: 0 16px;
}

.hero-tv .hero-buttons {
  justify-content: center;
  margin-top: 42px;
}

@keyframes heroGlow {
  from {
    opacity: 0.45;
    transform: scale(1);
  }
  to {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@media (max-width: 700px) {
  .hero-tv {
    min-height: 90vh;
    background-position: center;
    padding: 130px 24px 70px;
  }

  .hero-tv-content {
    margin-top: 80px;
  }

  .hero-tv-tagline {
    font-size: 10px;
    line-height: 2;
    letter-spacing: 2px;
  }

  .hero-tv-tagline span {
    margin: 0 6px;
  }
}
.hero-tv {
  animation: heroFloat 8s ease-in-out infinite alternate;
}

.btn.primary {
  animation: pulseGlow 2.5s infinite alternate;
}

@keyframes heroFloat {
  from {
    background-position: center;
  }

  to {
    background-position: center 8px;
  }
}

@keyframes pulseGlow {
  from {
    box-shadow:
      0 0 15px rgba(255,0,110,0.45),
      0 0 35px rgba(255,0,110,0.25);
  }

  to {
    box-shadow:
      0 0 28px rgba(255,0,110,0.85),
      0 0 60px rgba(255,0,110,0.45);
  }
}
.hero-tv {
  isolation: isolate;
}

.hero-tv .particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ff006e;
  border-radius: 50%;
  box-shadow: 0 0 18px #ff006e;
  opacity: 0.6;
  animation: floatParticle 9s linear infinite;
}

.particle:nth-child(1) { left: 10%; top: 80%; animation-delay: 0s; }
.particle:nth-child(2) { left: 22%; top: 72%; animation-delay: 1s; }
.particle:nth-child(3) { left: 38%; top: 86%; animation-delay: 2s; }
.particle:nth-child(4) { left: 55%; top: 78%; animation-delay: 3s; }
.particle:nth-child(5) { left: 70%; top: 84%; animation-delay: 4s; }
.particle:nth-child(6) { left: 84%; top: 76%; animation-delay: 5s; }

@keyframes floatParticle {
  from {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  20% {
    opacity: 0.7;
  }

  to {
    transform: translateY(-360px) scale(1.8);
    opacity: 0;
  }
}
.nav-right {
  display: flex;
  align-items: center;
}
/* FUTURISTIC HERO */

.hero-tv {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.75)),
        url('assets/xtra-hero.png') center center/cover no-repeat;
    overflow: hidden;
}

.hero-tv-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center,
        rgba(255,0,110,.15),
        transparent 60%);
}

.hero-tv-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 140px;
    max-width: 1200px;
    margin: auto;
}

.eyebrow {
    color: #ff1f8f;
    letter-spacing: 6px;
    font-size: 18px;
    margin-bottom: 20px;
}

.futuristic-logo {
    font-size: 180px;
    font-weight: 900;
    letter-spacing: -10px;
    line-height: .9;

    background: linear-gradient(
        to bottom,
        #ffffff,
        #d8d8d8 45%,
        #7f7f7f 50%,
        #ffffff 80%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 15px rgba(255,255,255,.15),
        0 0 35px rgba(255,0,110,.25);

    transform: skewX(-10deg);
}

.futuristic-logo span {
    color: #ff0a7a;
    -webkit-text-fill-color: #ff0a7a;

    text-shadow:
        0 0 10px #ff0a7a,
        0 0 25px #ff0a7a,
        0 0 50px #ff0a7a;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.btn {
    padding: 20px 42px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: .3s ease;
}

.btn.primary {
    background: #ff0a7a;
    color: white;
    box-shadow:
        0 0 20px rgba(255,0,110,.7),
        0 0 40px rgba(255,0,110,.35);
}

.btn.primary:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 30px rgba(255,0,110,.9),
        0 0 60px rgba(255,0,110,.45);
}

.btn.secondary {
    border: 2px solid rgba(255,255,255,.2);
    color: white;
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(10px);
}

.btn.secondary:hover {
    border-color: #ff0a7a;
    box-shadow: 0 0 20px rgba(255,0,110,.4);
}

.feature-strip {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 70px;
    flex-wrap: wrap;
}

.feature-item {
    color: white;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.feature-item span {
    color: #ff0a7a;
    margin-right: 10px;
}

/* MOBILE */

@media(max-width:900px){

.futuristic-logo{
    font-size:90px;
    letter-spacing:-4px;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.feature-strip{
    gap:25px;
}

.feature-item{
    font-size:18px;
}

}
/* BRIGHTER CINEMATIC HERO FIX */

.hero-tv {
  background:
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.35)),
    url("assets/xtra-hero.png") center center/cover no-repeat !important;
  animation: heroFloat 6s ease-in-out infinite alternate;
}

.hero-tv-overlay {
  background:
    radial-gradient(circle at 65% 45%, rgba(255,0,110,.32), transparent 40%),
    radial-gradient(circle at 35% 60%, rgba(255,0,110,.22), transparent 45%) !important;
  animation: heroGlow 3.5s ease-in-out infinite alternate;
}

.hero-tv::after {
  opacity: 0.25;
}

.futuristic-logo,
.hero-tv-title {
  opacity: 1 !important;
  filter:
    drop-shadow(0 0 18px rgba(255,255,255,.35))
    drop-shadow(0 0 28px rgba(255,0,110,.25));
}

.btn.primary {
  color: white !important;
  animation: pulseGlow 2s infinite alternate;
}

.btn.secondary {
  color: white !important;
}

.feature-strip {
  position: relative;
  z-index: 5;
  opacity: 1 !important;
}

.feature-item {
  color: white !important;
  text-shadow: 0 0 15px rgba(255,255,255,.25);
}

@keyframes heroFloat {
  from {
    background-position: center center;
  }
  to {
    background-position: center 12px;
  }
}

@keyframes heroGlow {
  from {
    opacity: 0.65;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulseGlow {
  from {
    box-shadow:
      0 0 18px rgba(255,0,110,.55),
      0 0 40px rgba(255,0,110,.3);
  }
  to {
    box-shadow:
      0 0 35px rgba(255,0,110,.95),
      0 0 75px rgba(255,0,110,.55);
  }
}
/* HERO MATCHING PREMIUM GENERATED IMAGE */

.hero-tv {
  min-height: 100vh;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.15)),
    url("assets/xtra-hero-final.png") center center / cover no-repeat !important;
}

.hero-tv::before,
.hero-tv::after,
.hero-tv-overlay,
.futuristic-logo,
.hero-tv-title,
.eyebrow,
.feature-strip {
  display: none !important;
}

.hero-image-buttons {
  position: absolute;
  left: 50%;
  bottom: 22%;
  transform: translateX(-50%);

  display: flex;
  gap: 32px;
  z-index: 5;
}

.hero-image-buttons .btn {
  font-size: 22px;
  font-weight: 800;
  padding: 22px 52px;
  border-radius: 999px;
}

.hero-image-buttons .primary {
  background: linear-gradient(135deg, #ff006e, #ff3fa2);
  color: white;
  box-shadow:
    0 0 25px rgba(255,0,110,0.9),
    0 0 65px rgba(255,0,110,0.45);
}

.hero-image-buttons .secondary {
  background: rgba(0,0,0,0.45);
  color: white;
  border: 2px solid rgba(255,0,110,0.8);
  box-shadow:
    0 0 25px rgba(255,0,110,0.25);
}

@media (max-width: 800px) {
  .hero-tv {
    min-height: 85vh;
    background-position: center;
  }

  .hero-image-buttons {
    bottom: 14%;
    flex-direction: column;
    gap: 18px;
  }

  .hero-image-buttons .btn {
    font-size: 18px;
    padding: 18px 34px;
  }
}
.hero-tv {
  min-height: 100vh;
  background: url("assets/xtra-premium-hero.png") center center / cover no-repeat !important;
}

.hero-tv * {
  display: none !important;
}
.hero-tv {
  min-height: 100vh !important;
  background-image: url("assets/xtra-hero-final.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero-tv * {
  display: none !important;
}