/* ============================
   MTB ULTIMATE — DESKTOP THEME
   Blue / White / Clean Tech
============================ */

/* ============================
   ROOT
============================ */
:root{
  --mtb-blue: #1fb6ff;
  --mtb-blue-2: #12a8ff;
  --mtb-blue-3: #0f8fe0;
  --mtb-cyan: #5fd7ff;
  --mtb-dark: #111827;
  --mtb-text: #1f2937;
  --mtb-muted: #667085;
  --mtb-line: rgba(15, 23, 42, 0.08);
  --mtb-card: rgba(255,255,255,0.88);
  --mtb-soft: #f7fbff;
  --mtb-soft-2: #eef8ff;
  --mtb-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --mtb-shadow-hover: 0 22px 50px rgba(15, 23, 42, 0.12);
  --mtb-radius: 24px;
}

/* ============================
   GLOBAL
============================ */
html{
  scroll-behavior: smooth;
}

body{
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  color: var(--mtb-text) !important;
}

/* fond léger techno, pas de marbre */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 380px at 8% 0%, rgba(31,182,255,.10), transparent 60%),
    radial-gradient(800px 340px at 92% 6%, rgba(95,215,255,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0));
  z-index: -1;
  pointer-events: none;
}

img{
  max-width: 100%;
  height: auto;
}

.lp-container{
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.elite-center{
  text-align: center;
  margin-top: 18px;
}

/* ============================
   NAVBAR
============================ */
.elite-nav{
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mtb-line);
  padding: 14px 0;
}

.elite-nav-container{
  display: flex;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.elite-brand{
  display: flex;
  align-items: center;
  margin-right: 22px;
}

.elite-logo{
  height: 54px;
  width: auto;
  display: block;
}

.elite-menu .nav-link{
  color: #273244;
  font-weight: 600;
  margin: 0 12px;
  transition: color .2s ease, opacity .2s ease;
}

.elite-menu .nav-link:hover,
.elite-menu .nav-link.active{
  color: var(--mtb-blue-3);
}

.elite-dropdown{
  border-radius: 14px;
  border: 1px solid var(--mtb-line);
  box-shadow: 0 14px 30px rgba(15,23,42,.08);
}

.elite-dropdown .dropdown-item{
  padding: 10px 14px;
  color: #223047;
}

.elite-dropdown .dropdown-item:hover{
  background: var(--mtb-soft);
  color: var(--mtb-blue-3);
}

.elite-right{
  display: flex;
  align-items: center;
  gap: 10px;
}

.elite-icon-btn{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--mtb-line);
  color: #273244;
  text-decoration: none;
  transition: .2s;
}

.elite-icon-btn:hover{
  background: #fff;
  color: var(--mtb-blue-3);
  border-color: rgba(31,182,255,.28);
  box-shadow: 0 8px 18px rgba(31,182,255,.12);
}

.elite-icon-btn i{
  font-size: 18px;
}

.elite-badge{
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mtb-cyan), var(--mtb-blue-2));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.96);
}

.elite-lang{
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--mtb-line);
  color: #273244;
  font-weight: 650;
  letter-spacing: .2px;
  outline: none;
}

.elite-lang:hover{
  border-color: rgba(31,182,255,.28);
}

.elite-lang:focus{
  box-shadow: 0 0 0 4px rgba(31,182,255,.15);
  border-color: rgba(31,182,255,.34);
}

.elite-support-btn{
  background: linear-gradient(180deg, var(--mtb-blue), var(--mtb-blue-3));
  color: #fff;
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 700;
  height: 42px;
  display: inline-flex;
  align-items: center;
  border: none;
  box-shadow: 0 10px 22px rgba(31,182,255,.18);
}

.elite-support-btn:hover{
  background: linear-gradient(180deg, var(--mtb-cyan), var(--mtb-blue-2));
  color: #fff;
}

.elite-account-btn{
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--mtb-line);
  color: #273244;
  font-weight: 650;
  letter-spacing: .2px;
  transition: .2s;
}

.elite-account-btn:hover{
  background: #fff;
  color: var(--mtb-blue-3);
  border-color: rgba(31,182,255,.28);
  box-shadow: 0 8px 18px rgba(31,182,255,.10);
}

.elite-account-menu .dropdown-item{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
}

/* ============================
   BUTTONS
============================ */
.elite-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  transition: .2s;
  border: 1px solid transparent;
}

.elite-btn-primary{
  background: linear-gradient(180deg, var(--mtb-blue), var(--mtb-blue-3));
  color: #fff;
  box-shadow: 0 12px 26px rgba(31,182,255,.18);
}

.elite-btn-primary:hover{
  background: linear-gradient(180deg, var(--mtb-cyan), var(--mtb-blue-2));
  color: #fff;
  transform: translateY(-1px);
}

.elite-btn-ghost{
  background: rgba(255,255,255,.92);
  color: #233047;
  border-color: var(--mtb-line);
}

.elite-btn-ghost:hover{
  background: #fff;
  color: var(--mtb-blue-3);
  border-color: rgba(31,182,255,.28);
}

/* ============================
   HERO
============================ */
.elite-hero{
  padding: 52px 0 30px;
}

.elite-hero-inner{
  display: flex;
  align-items: stretch;
  gap: 32px;
}

.elite-hero-left{
  flex: 1 1 62%;
  padding: 18px 0;
}

.elite-kicker{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(31,182,255,.15);
  box-shadow: 0 8px 22px rgba(31,182,255,.06);
  font-size: 13px;
  color: #42526b;
}

.elite-title{
  margin: 14px 0 12px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -1px;
  color: #0f172a;
}

.elite-sub{
  font-size: 18px;
  line-height: 1.7;
  max-width: 62ch;
  color: #4b5565;
}

.elite-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.elite-proof{
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #667085;
  font-size: 14px;
}

.elite-proof-icon{
  font-size: 15px;
}

.vip-mini-card{
  flex: 0 0 280px;
  align-self: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(239,249,255,.94));
  border: 1px solid rgba(31,182,255,.14);
  border-radius: 26px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 20px 42px rgba(15,23,42,.07);
}

.vip-icon{
  font-size: 36px;
  margin-bottom: 12px;
}

.vip-title{
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #243248;
  margin-bottom: 10px;
  font-weight: 700;
}

.vip-offer{
  font-size: 22px;
  font-weight: 800;
  color: var(--mtb-blue-3);
  margin-bottom: 22px;
  line-height: 1.3;
}

.vip-btn{
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(180deg, var(--mtb-blue), var(--mtb-blue-3));
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(31,182,255,.18);
}

.vip-btn:hover{
  background: linear-gradient(180deg, var(--mtb-cyan), var(--mtb-blue-2));
  color: #fff;
}

.mtb-trial-card{
  position: relative;
  overflow: hidden;
}

.mtb-trial-card::before{
  content:"";
  position:absolute;
  inset:-20% auto auto -20%;
  width:180px;
  height:180px;
  background: radial-gradient(circle, rgba(31,182,255,.10), transparent 70%);
  pointer-events:none;
}

.mtb-trial-card::after{
  content:"";
  position:absolute;
  right:-40px;
  bottom:-40px;
  width:150px;
  height:150px;
  background: radial-gradient(circle, rgba(95,215,255,.12), transparent 70%);
  pointer-events:none;
}

/* ============================
   BANNER STRIP
============================ */
.elite-banner-strip{
  margin: 10px 0 14px;
  width: 100%;
}

.elite-banner-strip .lp-container{
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--mtb-shadow);
}

.elite-banner-strip .container,
.elite-banner-strip .container-fluid,
.elite-banner-strip .row{
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.elite-banner-strip .lp-container img{
  height: 320px;
  object-fit: cover;
}

.elite-banner-strip button,
.elite-banner-strip .slider-controls,
.elite-banner-strip .banner-controls{
  display: none !important;
}

.hero-slide{
  position: relative;
}

.hero-slide-link{
  position: relative;
  z-index: 50;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  text-decoration: none;
  color: inherit;
}

.hero-slide img,
.hero-slide-link img{
  display: block;
  width: 100%;
  height: auto;
}

.hero-slider-container *{
  pointer-events: auto;
}

.hero-slide-caption{
  pointer-events: none;
}

.elite-banner-strip .hero-slide-caption,
.elite-banner-strip .hero-slider-container figcaption,
.elite-banner-strip .hero-slider-container .caption,
.elite-banner-strip .hero-slider-container .legend,
.elite-banner-strip .hero-slider-container .title{
  display: none !important;
}

/* ============================
   SECTION HEADERS
============================ */
.elite-section-head{
  text-align: center;
  margin: 22px 0 20px;
}

.elite-h2{
  font-size: 38px;
  margin: 0 0 10px;
  letter-spacing: -.5px;
  color: #0f172a;
}

.elite-lead{
  margin: 0 auto;
  max-width: 74ch;
  color: #667085;
  font-size: 17px;
  line-height: 1.65;
}

/* ============================
   PLANS GRID
============================ */
.elite-plans{
  padding: 28px 0 38px;
}

.elite-grid-4{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.elite-plan-card{
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--mtb-radius);
  background: var(--mtb-card);
  border: 1px solid rgba(31,182,255,.10);
  box-shadow: var(--mtb-shadow);
  padding: 15px;
  transition: .22s;
}

.elite-plan-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--mtb-shadow-hover);
  border-color: rgba(31,182,255,.22);
}

.elite-plan-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.elite-plan-title{
  font-weight: 800;
  letter-spacing: -.2px;
  color: #182233;
}

.elite-plan-pill{
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31,182,255,.10);
  color: var(--mtb-blue-3);
  border: 1px solid rgba(31,182,255,.16);
  font-weight: 700;
}

.elite-plan-media{
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbff, #eef8ff);
  border: 1px solid rgba(15,23,42,.06);
  height: 245px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.elite-plan-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.elite-plan-desc{
  margin-top: 10px;
  min-height: 46px;
  color: #667085;
  font-size: 14px;
  line-height: 1.5;
}

.elite-plan-price{
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
}

.elite-price-old{
  text-decoration: line-through;
  color: rgba(31,41,55,.42);
  font-size: 13px;
}

.elite-price-new{
  font-weight: 900;
  color: #0f172a;
  font-size: 21px;
}

.elite-plan-cta{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(15,23,42,.06);
  color: var(--mtb-blue-3);
  font-weight: 800;
}

.elite-empty{
  text-align: center;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px dashed rgba(31,182,255,.22);
  padding: 22px;
  color: #667085;
  box-shadow: 0 10px 24px rgba(15,23,42,.04);
}

/* ============================
   SHOWCASE (2 photos)
============================ */
.mtb-showcase{
  padding: 18px 0 38px;
}

.mtb-showcase-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mtb-showcase-card{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(31,182,255,.10);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--mtb-shadow);
  transition: .22s;
}

.mtb-showcase-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--mtb-shadow-hover);
}

.mtb-showcase-media{
  background: linear-gradient(180deg, #f7fbff, #eef8ff);
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.mtb-showcase-media img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.mtb-showcase-body{
  padding: 20px 22px 22px;
}

.mtb-showcase-body h3{
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -.4px;
  color: #0f172a;
}

.mtb-showcase-body p{
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.65;
}

/* ============================
   WHY / TRUST
============================ */
.elite-why{
  padding: 34px 0 44px;
}

.elite-why-head{
  text-align: center;
  margin-bottom: 18px;
}

.elite-why-kicker{
  font-size: 12px;
  letter-spacing: .2em;
  color: #8b98aa;
}

.elite-why-title{
  margin: 12px 0 10px;
  font-size: 42px;
  letter-spacing: -.7px;
  color: #0f172a;
}

.elite-why-accent{
  color: var(--mtb-blue-3);
  margin-left: 8px;
}

.elite-why-sub{
  margin: 0 auto;
  max-width: 76ch;
  color: #667085;
  font-size: 18px;
  line-height: 1.65;
}

.elite-why-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.elite-why-card{
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(31,182,255,.08);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(15,23,42,.05);
}

.elite-why-card-top{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.elite-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mtb-blue);
  box-shadow: 0 0 0 6px rgba(31,182,255,.12);
}

.elite-why-card-title{
  font-size: 18px;
  margin: 0;
  font-weight: 800;
  color: #172235;
}

.elite-why-card-desc{
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.65;
}

/* ============================
   SEO BLOCK
============================ */
.elite-seo{
  padding: 18px 0 42px;
}

.elite-seo-card{
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,250,255,.94));
  border: 1px solid rgba(31,182,255,.08);
  padding: 18px 20px;
  box-shadow: 0 12px 28px rgba(15,23,42,.05);
  color: #516072;
}

.elite-seo-card h2{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
}

.elite-seo-card p{
  margin: 0;
  line-height: 1.75;
  font-size: 15px;
}

/* ============================
   CATEGORY PAGE
============================ */
.hero-home-bg.hero-streaming{
  position: relative;
  padding: 54px 0 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  overflow: hidden;
}

.hero-home-bg.hero-streaming::before,
.hero-home-bg.hero-streaming::after{
  display: none !important;
  content: none !important;
}

.hero-home-bg.hero-streaming .hero-wrapper{
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 36px;
  align-items: start;
  margin-bottom: 22px;
}

.hero-home-bg.hero-streaming .hero-copy h1{
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 850;
  letter-spacing: -0.02em;
  margin: 0;
  color: #0f172a;
}

.hero-home-bg.hero-streaming .hero-copy p{
  margin: 10px 0 0;
  color: #667085;
  font-size: 17px;
  line-height: 1.65;
}

/* pas de PHP dans CSS, donc on garde simple */
.hero-home-bg.hero-streaming .hero-wrapper::after{
  content: "";
  display: block;
  width: 100%;
  height: 440px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(31,182,255,.18), rgba(95,215,255,.08)),
    radial-gradient(600px 240px at 20% 10%, rgba(31,182,255,.18), transparent 60%),
    #eef8ff;
  border: 1px solid rgba(31,182,255,.10);
  box-shadow: 0 18px 40px rgba(15,23,42,.10);
}

.categories-overlay{
  padding-top: 10px;
}

.service-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
}

.service-card{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(31,182,255,.10);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-card img{
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: linear-gradient(180deg, #f7fbff, #eef8ff);
  padding: 18px;
}


.service-card span{
  display: block;
  padding: 14px 16px 16px;
  font-weight: 800;
  color: #162033;
  font-size: 18px;
}

.hero-categories .hero-wrapper::after{
  display: none !important;
}

.products-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.product-card{
  background: rgba(255,255,255,.94);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  padding: 14px;
  border: 1px solid rgba(31,182,255,.08);
}

.product-img-wrapper{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbff, #eef8ff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.product-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-title{
  margin: 12px 0 6px;
  font-size: 18px;
  line-height: 1.25;
  color: #172235;
}

.product-desc{
  margin: 0 0 10px;
  color: #667085;
  font-size: 14px;
  line-height: 1.45;
}

.product-price .old-price{
  text-decoration: line-through;
  opacity: .55;
  margin-right: 8px;
}

.product-price .promo-price{
  font-weight: 800;
  color: #0f172a;
}

/* ============================
   PRODUCT PAGE
============================ */
.elite-product{
  padding: 32px 0 54px;
}

.elite-product-card{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(31,182,255,.08);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  overflow: hidden;
}

.elite-product-head{
  padding: 26px 26px 10px;
  text-align: center;
}

.elite-product-title{
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.02em;
  font-weight: 850;
  color: #0f172a;
}

.elite-product-top{
  padding: 18px 26px 10px;
  display: grid;
  grid-template-columns: 380px 1fr 190px;
  gap: 18px;
  align-items: center;
}

.elite-buy-info{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.elite-price .mb-4{
  margin-bottom: 0 !important;
}

.elite-price .h5{
  font-size: 18px;
  color: #516072;
}

.elite-price .h4,
.product-price,
.price,
.price-new{
  color: #0f172a !important;
}

.elite-price .h4,
.elite-product .price-main{
  display: inline-block;
  padding: 8px 15px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f7fbff, #eaf7ff);
  border: 1px solid rgba(31,182,255,.16);
  font-weight: 900;
  color: #0f172a !important;
  box-shadow: 0 8px 18px rgba(31,182,255,.10);
}

.elite-points{
  border-radius: 16px;
  border: 1px solid rgba(31,182,255,.10);
  background: rgba(247,251,255,.94);
  padding: 12px 14px;
}

.elite-points-title{
  font-size: 14px;
  color: #1e2c40;
  margin-bottom: 6px;
}

.elite-points-main{
  font-size: 14px;
  color: #516072;
}

.elite-points-green{
  color: #0aa96b;
}

.elite-points-sub,
.elite-points-foot{
  margin-top: 4px;
  font-size: 12px;
  color: #7b8796;
}

.elite-points-warn{
  font-size: 13px;
  color: #c2410c;
}

.elite-media{
  width: 100%;
}

.elite-media-main{
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(31,182,255,.10);
  background: linear-gradient(180deg, #f7fbff, #eef8ff);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}

.elite-media-main img{
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: rgba(0,0,0,.02);
  display: block;
  cursor: zoom-in;
}

.elite-media-side{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.elite-zoom-hint{
  border-radius: 18px;
  border: 1px solid rgba(31,182,255,.10);
  background: rgba(255,255,255,.96);
  padding: 10px;
  text-align: center;
}

.elite-zoom-thumb{
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbff, #eef8ff);
  border: 1px solid rgba(31,182,255,.08);
}

.elite-zoom-thumb img{
  width: 100%;
  height: 86px;
  object-fit: contain;
  background: rgba(0,0,0,.02);
  display: block;
}

.elite-zoom-text{
  margin-top: 8px;
  font-size: 13px;
  color: #667085;
}

.elite-thumbs{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.elite-thumb{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid rgba(31,182,255,.12);
  background: rgba(255,255,255,.96);
  transition: .15s;
}

.elite-thumb.active{
  outline: 3px solid rgba(31,182,255,.16);
  border-color: rgba(31,182,255,.34);
}

.elite-divider{
  margin: 12px 0 0;
  border: none;
  height: 1px;
  background: rgba(15,23,42,.08);
}

.elite-product-bottom{
  padding: 22px 26px 26px;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 22px;
  align-items: start;
}

.elite-details-kicker{
  font-size: 12px;
  letter-spacing: .18em;
  color: #8b98aa;
  font-weight: 800;
}

.elite-details-title{
  margin: 10px 0 10px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.elite-details-text{
  color: #556476;
  line-height: 1.8;
  font-size: 15.5px;
}

.elite-form{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(31,182,255,.10);
  border-radius: 24px;
  padding: 18px;
}

.elite-field{
  margin-bottom: 14px;
}

.elite-label{
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
  color: #223047;
}

.elite-control{
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.98);
  padding: 0 14px;
  outline: none;
}

.elite-control:focus{
  box-shadow: 0 0 0 4px rgba(31,182,255,.15);
  border-color: rgba(31,182,255,.34);
}

.elite-mac-help{
  color: #7b8796;
  font-size: 13px;
  margin-bottom: 8px;
}

.elite-mac-row{
  display: flex;
  align-items: center;
  gap: 10px;
}

.elite-mac-prefix{
  font-family: monospace;
  font-weight: 900;
  color: #0f172a;
}

.elite-mac-inputs{
  display: flex;
  gap: 8px;
}

.elite-mac-field{
  width: 56px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.98);
  text-align: center;
  font-weight: 800;
  letter-spacing: .08em;
}

.elite-cta-btn{
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--mtb-blue), var(--mtb-blue-3));
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(31,182,255,.22);
}

.elite-cta-btn:hover{
  filter: brightness(1.02);
}

.elite-safe{
  margin-top: 12px;
  text-align: center;
  color: #7b8796;
  font-size: 13px;
}

/* ============================
   DEVICES
============================ */
.hero-devices{
  padding: 46px 0 44px;
}

.hero-devices-inner{
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 26px;
  align-items: start;
}

.hero-devices-content h1{
  margin: 0 0 16px;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.devices-stack{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.device-card{
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(31,182,255,.10);
  box-shadow: 0 14px 34px rgba(15,23,42,.08);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.device-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(15,23,42,.12);
  border-color: rgba(31,182,255,.22);
}

.device-card img{
  width: 92px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(15,23,42,.06);
  display: block;
}

.device-card span{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #172235;
}

.hero-devices-preview{
  position: sticky;
  top: 110px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(31,182,255,.10);
  box-shadow: 0 18px 52px rgba(15,23,42,.10);
  min-height: 360px;
}

.hero-devices-preview-img{
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-devices-preview-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 20% 10%, rgba(31,182,255,.16), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.01), rgba(0,0,0,.08));
  pointer-events: none;
}

/* ============================
   CART
============================ */
.cart-page{
  padding-top: 46px !important;
}

.cart-page h2{
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin-bottom: 28px;
  position: relative;
}

.cart-page h2::after{
  content:"";
  display:block;
  width:48px;
  height:2px;
  background: linear-gradient(90deg, rgba(31,182,255,.85), rgba(31,182,255,.18));
  margin-top: 10px;
  border-radius: 4px;
}

.cart-page .table-dark{
  --bs-table-bg: rgba(255,255,255,.80) !important;
  --bs-table-color: #1f2937 !important;
  --bs-table-border-color: rgba(15,23,42,.08) !important;
  --bs-table-striped-bg: rgba(0,0,0,.02) !important;
  --bs-table-striped-color: #1f2937 !important;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15,23,42,.04);
}

.cart-page .table-dark thead th{
  background: rgba(248,251,255,.95) !important;
  color: #223047 !important;
  border-color: rgba(15,23,42,.10) !important;
  font-weight: 800;
}

.cart-page .table-dark td,
.cart-page .table-dark th{
  border-color: rgba(15,23,42,.08) !important;
}

.cart-page .card.bg-dark{
  background: rgba(255,255,255,.92) !important;
  border: 1px solid rgba(31,182,255,.10) !important;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
  color: #1f2937 !important;
}

.cart-page .card.bg-dark .table-dark{
  background: transparent !important;
}

.cart-page .cart-total-row th{
  font-size: 18px;
  font-weight: 900;
  color: #0f172a !important;
}

.cart-page .form-control{
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.98);
}

.cart-page .form-control:focus{
  box-shadow: 0 0 0 4px rgba(31,182,255,.15);
  border-color: rgba(31,182,255,.34);
}

.cart-page .btn-primary{
  background: linear-gradient(180deg, var(--mtb-blue), var(--mtb-blue-3)) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 800;
  border-radius: 16px;
}

.cart-page .btn-primary:hover{
  background: linear-gradient(180deg, var(--mtb-cyan), var(--mtb-blue-2)) !important;
}

.cart-page .btn-secondary{
  background: rgba(255,255,255,.96) !important;
  border-color: rgba(15,23,42,.10) !important;
  color: #2c3a4f !important;
  font-weight: 750;
  border-radius: 12px;
}

.cart-page .btn-danger{
  border-radius: 12px;
}

.cart-page .btn.btn-sm.btn-primary{
  background: rgba(31,182,255,.10) !important;
  border: 1px solid rgba(31,182,255,.24) !important;
  color: var(--mtb-blue-3) !important;
  font-weight: 850;
  border-radius: 12px;
  padding: 6px 10px;
  box-shadow: none !important;
}

.cart-page .btn.btn-sm.btn-primary:hover{
  background: rgba(31,182,255,.16) !important;
}

.cart-page .btn.btn-sm.btn-danger{
  background: rgba(220,38,38,.10) !important;
  border: 1px solid rgba(220,38,38,.22) !important;
  color: #b91c1c !important;
  border-radius: 12px;
  box-shadow: none !important;
}

.cart-page .btn.btn-sm.btn-danger:hover{
  background: rgba(220,38,38,.14) !important;
}

.cart-page .points-available-box,
.cart-page .points-earned-box{
  background: rgba(31,182,255,.08);
  border: 1px solid rgba(31,182,255,.18);
  border-radius: 16px;
  color: #1f2937;
}

.cart-page .points-earned-sub{
  margin-top: 6px;
  font-size: 12px;
  opacity: .82;
}

/* ============================
   LOGIN
============================ */
.container.py-5.text-light[style*="max-width:480px"]{
  color: #1f2937 !important;
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}

.container.py-5.text-light[style*="max-width:480px"] h2{
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a !important;
  margin-bottom: 22px !important;
  text-align: center;
}

.container.py-5.text-light[style*="max-width:480px"] .card.bg-dark{
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(31,182,255,.10) !important;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
}

.container.py-5.text-light[style*="max-width:480px"] .form-label{
  color: #334155 !important;
  font-weight: 750;
}

.container.py-5.text-light[style*="max-width:480px"] .form-control{
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.98);
  color: #1f2937;
}

.container.py-5.text-light[style*="max-width:480px"] .form-control:focus{
  box-shadow: 0 0 0 4px rgba(31,182,255,.15);
  border-color: rgba(31,182,255,.34);
}

.container.py-5.text-light[style*="max-width:480px"] .btn.btn-primary{
  background: linear-gradient(180deg, var(--mtb-blue), var(--mtb-blue-3)) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 900;
  height: 52px;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(31,182,255,.20);
}

.container.py-5.text-light[style*="max-width:480px"] .btn.btn-primary:hover{
  filter: brightness(1.02);
}

.container.py-5.text-light[style*="max-width:480px"] a.text-info{
  color: var(--mtb-blue-3) !important;
  font-weight: 800;
  text-decoration: none;
}

.container.py-5.text-light[style*="max-width:480px"] a.text-info:hover{
  text-decoration: underline;
}

.container.py-5.text-light[style*="max-width:480px"] a.text-light{
  color: #667085 !important;
  text-decoration: none;
}

.container.py-5.text-light[style*="max-width:480px"] a.text-light:hover{
  color: #344054 !important;
  text-decoration: underline;
}

/* ============================
   ORDERS
============================ */
.elite-orders-page{
  color: #1f2937;
}

.elite-orders-title{
  margin: 0 0 12px;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.elite-orders-note{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(31,182,255,.08);
  border-radius: 18px;
  padding: 14px 16px;
  color: #667085;
  box-shadow: 0 10px 28px rgba(15,23,42,.05);
}

.elite-orders-card{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(31,182,255,.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(15,23,42,.06);
}

.elite-orders-table thead th{
  background: rgba(247,251,255,.94);
  color: #223047;
  font-weight: 800;
  border-bottom: 1px solid rgba(15,23,42,.06);
  padding: 14px;
}

.elite-orders-table td{
  padding: 14px;
  color: #4b5565;
  border-top: 1px solid rgba(15,23,42,.06);
}

.elite-orders-table tbody tr:hover{
  background: rgba(31,182,255,.04);
}

.elite-link{
  color: var(--mtb-blue-3);
  text-decoration: none;
  font-weight: 800;
}

.elite-link:hover{
  text-decoration: underline;
}

.elite-badge-pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid transparent;
}

.elite-pill-paid{
  background: rgba(16,185,129,.12);
  color: #0f766e;
  border-color: rgba(16,185,129,.22);
}

.elite-pill-unpaid{
  background: rgba(245,158,11,.14);
  color: #92400e;
  border-color: rgba(245,158,11,.25);
}

.elite-orders-page .btn.btn-primary{
  background: linear-gradient(180deg, var(--mtb-blue), var(--mtb-blue-3)) !important;
  border: none !important;
  font-weight: 800;
}

/* ============================
   ORDER VIEW
============================ */
.elite-order-view{
  color: #1a1a1a;
}

.elite-order-view h2{
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.account-card{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(31,182,255,.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(15,23,42,.06);
}

.account-card-title{
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.account-card p strong{
  font-weight: 700;
  color: #1f2937;
}

.account-card .badge{
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

.account-card .badge.bg-success{
  background: rgba(16,185,129,.15)!important;
  color: #0f766e!important;
}

.account-card .badge.bg-danger{
  background: rgba(245,158,11,.15)!important;
  color: #92400e!important;
}

.elite-order-view .btn-primary{
  background: linear-gradient(180deg, var(--mtb-blue), var(--mtb-blue-3)) !important;
  border: none !important;
  font-weight: 700;
}

.elite-order-view .btn-secondary{
  background: rgba(0,0,0,.04) !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  color: #111 !important;
}

.elite-order-item{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(31,182,255,.08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15,23,42,.05);
}

.elite-order-item h5{
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f172a;
}

.elite-order-item div{
  color: #556476;
  margin-bottom: 4px;
}

.elite-order-item .mt-3{
  margin-top: 12px !important;
  font-size: 14px;
  color: #667085 !important;
}

.elite-order-item:hover{
  background: rgba(31,182,255,.04);
}

/* ============================
   SIGNUP
============================ */
.elite-signup-card{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(31,182,255,.08);
  box-shadow: 0 20px 50px rgba(15,23,42,.06);
  color: #1a1a1a;
}

.elite-signup-card h3{
  color: #0f172a !important;
  font-weight: 700;
}

.elite-signup-card .form-label{
  color: #475467;
  font-weight: 600;
}

.elite-input{
  background: #ffffff !important;
  border: 1px solid rgba(15,23,42,.12) !important;
  color: #111 !important;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all .2s ease;
}

.elite-input:focus{
  border-color: rgba(31,182,255,.34) !important;
  box-shadow: 0 0 0 3px rgba(31,182,255,.14) !important;
}

.elite-signup-card .form-check-label{
  color: #475467;
}

.elite-signup-card .btn-primary{
  background: linear-gradient(180deg, var(--mtb-blue), var(--mtb-blue-3)) !important;
  border: none !important;
  font-weight: 700;
}

input[type="file"].elite-input{
  padding: 8px 12px;
}

input[type="file"].elite-input::file-selector-button{
  background: linear-gradient(180deg, var(--mtb-blue), var(--mtb-blue-3));
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  margin-right: 10px;
  cursor: pointer;
}

/* ============================
   RESELLER
============================ */
.reseller-hero{
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 48px 0 56px;
}

.reseller-head{
  margin: 0 0 22px;
}

.reseller-title{
  font-size: clamp(30px, 3.2vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 10px;
  color: #0f172a;
}

.reseller-subtitle{
  margin: 0;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.55;
  color: #667085;
  max-width: 860px;
}

.reseller-card{
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(31,182,255,.08);
  box-shadow: 0 18px 50px rgba(15,23,42,.08);
  overflow: hidden;
}

.reseller-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
}

.reseller-media{
  position: relative;
  background: rgba(255,255,255,.6);
}

.reseller-media img{
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.reseller-media:after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(1200px 400px at 30% 20%, rgba(31,182,255,.18), rgba(0,0,0,0));
  pointer-events:none;
}

.reseller-content{
  padding: 30px 30px 28px;
}

.reseller-h2{
  font-size: 20px;
  margin: 0 0 14px;
  color: #0f172a;
}

.reseller-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.reseller-list li{
  position: relative;
  padding-left: 28px;
  color: #556476;
  line-height: 1.5;
}

.reseller-list li:before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  background: rgba(31,182,255,.14);
  border: 1px solid rgba(31,182,255,.20);
}

.reseller-note{
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(31,182,255,.08);
  border: 1px solid rgba(31,182,255,.16);
  color: #516072;
  font-size: 14px;
  line-height: 1.45;
}

.reseller-cta{
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.reseller-cta .d-btn-primary{
  background: linear-gradient(180deg, var(--mtb-blue), var(--mtb-blue-3));
  border: none;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 12px 26px rgba(31,182,255,.22);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.reseller-cta .d-btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(31,182,255,.26);
  filter: brightness(1.02);
}

/* ============================
   SPORTS SCHEDULE PAGE
============================ */
.mtb-sports-page{
  padding-bottom: 42px;
}

.mtb-sports-hero{
  padding: 20px 0 18px;
}

.mtb-sports-hero-card{
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: stretch;
  border-radius: 30px;
  background:
    radial-gradient(1200px 420px at 15% 10%, rgba(31,182,255,.18), transparent 60%),
    radial-gradient(1000px 380px at 88% 12%, rgba(95,215,255,.14), transparent 58%),
    linear-gradient(135deg, #071427 0%, #0a1c36 48%, #0c2447 100%);
  border: 1px solid rgba(95,215,255,.12);
  box-shadow: 0 24px 60px rgba(15,23,42,.16);
  padding: 34px;
}

.mtb-sports-hero-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.10), transparent 8%),
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.08), transparent 7%),
    radial-gradient(circle at 82% 72%, rgba(255,255,255,.05), transparent 7%);
  pointer-events:none;
}

.mtb-sports-copy{
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mtb-sports-kicker{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mtb-sports-title{
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.mtb-sports-tagline{
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.5;
  color: #dff5ff;
  font-weight: 700;
}

.mtb-sports-text{
  margin: 0;
  max-width: 62ch;
  color: rgba(232,244,255,.84);
  font-size: 16px;
  line-height: 1.8;
}

.mtb-sports-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mtb-sports-badges span{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.10);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.mtb-sports-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mtb-sports-visual{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  min-height: 460px;
}

.mtb-sport-card{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 34px rgba(2,10,25,.24);
  min-height: 210px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background-size: cover;
  background-position: center;
}

.mtb-sport-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(2,10,20,.04), rgba(2,10,20,.34)),
    radial-gradient(700px 260px at 70% 0%, rgba(31,182,255,.16), transparent 55%);
}

.mtb-sport-card span{
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7,20,39,.72);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .01em;
}

.mtb-sport-ufc{
  background-image:
    linear-gradient(135deg, rgba(0,0,0,.0), rgba(0,0,0,.0)),
    url('/themes/mtbultimate/assets/img/sports/ufc-boxing.jpg');
}

.mtb-sport-soccer{
  background-image:
    linear-gradient(135deg, rgba(0,0,0,.0), rgba(0,0,0,.0)),
    url('/themes/mtbultimate/assets/img/sports/soccer.jpg');
}

.mtb-sport-hockey{
  background-image:
    linear-gradient(135deg, rgba(0,0,0,.0), rgba(0,0,0,.0)),
    url('/themes/mtbultimate/assets/img/sports/hockey.jpg');
}

.mtb-sport-rugby{
  background-image:
    linear-gradient(135deg, rgba(0,0,0,.0), rgba(0,0,0,.0)),
    url('/themes/mtbultimate/assets/img/sports/rugby.jpg');
}

.mtb-sports-highlights{
  padding: 16px 0 8px;
}

.mtb-sports-highlights-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mtb-highlight-card{
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(31,182,255,.10);
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
  padding: 18px;
}

.mtb-highlight-card strong{
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.mtb-highlight-card span{
  color: #667085;
  font-size: 14px;
  line-height: 1.65;
}

.mtb-schedules-stage{
  padding: 18px 0 18px;
}

.mtb-schedules-stage-inner{
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(4,15,28,.06), rgba(4,15,28,.14)),
    radial-gradient(1200px 420px at 20% 0%, rgba(31,182,255,.10), transparent 58%),
    url('/themes/mtbultimate/assets/img/sports/sports-stage-bg.jpg');
  background-size: cover;
  background-position: center center;
  border: 1px solid rgba(95,215,255,.12);
  box-shadow: 0 24px 60px rgba(15,23,42,.14);
}

.mtb-schedules-stage-inner::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
    radial-gradient(800px 260px at 50% 100%, rgba(40,140,60,.10), transparent 55%);
  pointer-events:none;
}

.mtb-schedules-head{
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.mtb-schedules-head .elite-h2,
.mtb-schedules-head .elite-lead{
  color: #fff;
}

.mtb-schedules-head .elite-lead{
  color: rgba(228,242,255,.82);
}

.mtb-schedule-grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mtb-schedule-card{
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(4,12,25,.22);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mtb-schedule-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(4,12,25,.28);
  border-color: rgba(95,215,255,.22);
}

.mtb-schedule-media{
  position: relative;
  overflow: hidden;
  height: 190px;
  background: linear-gradient(180deg, #dfe8f3, #cfd9e6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mtb-schedule-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #dfe8f3;
}

.mtb-schedule-media-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,14,28,.04), rgba(5,14,28,.42)),
    radial-gradient(600px 200px at 50% 0%, rgba(31,182,255,.16), transparent 55%);
  pointer-events: none;
}

.mtb-schedule-media-empty{
  display: flex;
  align-items: center;
  justify-content: center;
}

.mtb-schedule-media-empty span{
  color: rgba(255,255,255,.86);
  font-weight: 800;
  letter-spacing: .02em;
}

.mtb-schedule-body{
  padding: 16px 16px 18px;
}

.mtb-schedule-topline{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.mtb-schedule-pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31,182,255,.10);
  border: 1px solid rgba(31,182,255,.16);
  color: #0f8fe0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.mtb-schedule-number{
  color: #8a97a9;
  font-size: 12px;
  font-weight: 800;
}

.mtb-schedule-date{
  color: #516072;
  font-size: 14px;
  line-height: 1.55;
}

.mtb-schedule-link{
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--mtb-blue-3);
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
}

.mtb-schedule-link:hover{
  text-decoration: underline;
}

.mtb-schedules-bottom{
  position: relative;
  z-index: 2;
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.mtb-showcase-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mtb-showcase-link:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-2px);
}

.mtb-showcase-btn {
  display: inline-block;
  margin-top: 12px;
  pointer-events: none;
}
.elite-check-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:8px;
}

.elite-check-card{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border:1px solid #cfe8f7;
  border-radius:12px;
  background:#eef8ff;
  color:#1e3a5f;
  cursor:pointer;
  transition:all .2s ease;
  min-height:48px;
}

.elite-check-card:hover{
  border-color:#8fd0f2;
  background:#e3f4ff;
}

.elite-check-input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.elite-check-box{
  width:18px;
  height:18px;
  border:2px solid #7db8d6;
  border-radius:5px;
  background:#ffffff;
  flex:0 0 18px;
  position:relative;
}

.elite-check-text{
  font-size:14px;
  line-height:1.2;
  font-weight:600;
  color:#1e3a5f;
}

.elite-check-input:checked + .elite-check-box{
  border-color:#2ea8df;
  background:#2ea8df;
}

.elite-check-input:checked + .elite-check-box::after{
  content:"";
  position:absolute;
  left:4px;
  top:1px;
  width:5px;
  height:9px;
  border:solid #ffffff;
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}

.elite-check-input:checked + .elite-check-box + .elite-check-text{
  color:#0f2f4d;
}

.elite-check-card:has(.elite-check-input:checked){
  border-color:#5dbce8;
  background:#cfeeff;
  box-shadow:0 0 0 1px rgba(93,188,232,0.25) inset;
}

