:root{
  --bg: #070709;
  --panel: rgba(18, 18, 20, 0.82);
  --panel2: rgba(20, 20, 24, 0.88);
  --border: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.58);
  --blue: #63b6ff;
  --red: #e24052;
  --shadow: 0 18px 45px rgba(0,0,0,.55);
  --mono: "Share Tech Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  overflow-x: hidden;
}

/* Background streak + subtle noise look */
.bg{
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1000px 700px at 20% 40%, rgba(0, 255, 220, .10), transparent 55%),
    radial-gradient(900px 600px at 60% 30%, rgba(80, 120, 255, .10), transparent 58%),
    radial-gradient(900px 700px at 80% 70%, rgba(255, 70, 90, .08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 30%, rgba(0,0,0,.20));
}

.bg::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    repeating-linear-gradient(135deg,
      rgba(255, 70, 90, .18) 0px,
      rgba(255, 70, 90, .18) 2px,
      transparent 2px,
      transparent 28px
    ),
    repeating-linear-gradient(135deg,
      rgba(80, 120, 255, .16) 0px,
      rgba(80, 120, 255, .16) 1px,
      transparent 1px,
      transparent 22px
    );
  opacity: .16;
  filter: blur(0.6px);
  transform: rotate(-6deg) scale(1.05);
  mix-blend-mode: screen;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  padding: 18px 26px;
  background: rgba(0,0,0,.08);
  backdrop-filter: blur(2px);
}

.brand__logo{
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.65));
}

.nav{
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav__link{
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .3px;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
}
.nav__link:hover{
  border-bottom-color: rgba(255,255,255,.35);
}

/* Wrapper */
.wrap{
  max-width: 1600px;
  margin: 0 auto;
  padding: 34px 22px 24px;
}

/* Hero */
.hero{
  min-height: calc(100vh - 140px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 34px;
}

.hero__title{
  font-size: clamp(44px, 5vw, 66px);
  margin: 0 0 14px;
  letter-spacing: .5px;
}

.glow{
  color: #dffcff;
  text-shadow:
    0 0 8px rgba(0, 255, 220, .35),
    0 0 18px rgba(0, 255, 220, .30),
    0 0 34px rgba(0, 255, 220, .22);
}

.hero__text{
  max-width: 520px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 14px;
}

.hero__actions{
  display:flex;
  gap: 14px;
  align-items:center;
}

/* Screenshot frame */
.shot{
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: rgba(0,0,0,.15);
}
.shot__img{
  width: 100%;
  height: auto;
  display:block;
  opacity: .96;
}

/* Sections */
.section{
  padding: 44px 0 10px;
}

.section__title{
  text-align: center;
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: .6px;
}

.section__title--big{
  margin-top: 10px;
  font-size: 34px;
}

.section__subtitle{
  text-align:center;
  max-width: 640px;
  margin: 0 auto 26px;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.6;
  font-family: var(--mono);
}

/* Pricing grid */
.pricing{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}

.card{
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0,0,0,.45);
  padding: 18px 18px 16px;
}

.card--pricing{
  text-align: center;
}

.card__title{
  margin: 4px 0 10px;
  font-size: 18px;
}

.price{
  margin: 0 0 12px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
}

.ticks{
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.ticks li::before{
  content: "✓";
  margin-right: 8px;
  color: rgba(255,255,255,.75);
}

/* Highlight Join Telegram */
.nav__telegram {
  color: #ff8c00 !important;
  font-weight: 600;
  position: relative;
  padding: 6px 14px;
  border-radius: 18px;
  background: rgba(255, 140, 0, 0.12);
  border: 1px solid rgba(255, 140, 0, 0.35);
  box-shadow:
    0 0 10px rgba(255, 140, 0, 0.35),
    inset 0 0 10px rgba(255, 140, 0, 0.15);
  transition: all 0.3s ease;
}

/* Hover effect */
.nav__telegram:hover {
  background: #ff8c00;
  color: #000 !important;
  box-shadow:
    0 0 20px rgba(255, 140, 0, 0.85),
    0 0 40px rgba(255, 140, 0, 0.45);
  transform: translateY(-1px);
}


/* ================================
   BIG WHOLESALE & RESELLER SECTION
================================ */

.resellers-big {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Grid becomes wider */
.resellers {
  max-width: 1400px;          /* was smaller before */
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;                  /* more space between cards */
}

/* Bigger reseller card */
.reseller {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 22px;
  padding: 34px 28px;
  display: flex; 
  gap: 24px;
  align-items: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  transition: transform .35s ease, box-shadow .35s ease;
}

.reseller:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 90px rgba(0,0,0,0.75);
}

/* Bigger logo area */
.reseller__logoBox {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.reseller__logoBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bigger text */
.reseller__name {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #ffffff;
}

.reseller__meta {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}

.reseller__meta span {
  color: #ff6900;
  font-weight: 600;
}

/* Bigger icons */
.reseller__icons {
  display: flex;
  gap: 14px;
}

.reseller__icons .ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background .3s ease, transform .3s ease;
}

.reseller__icons .ico:hover {
  background: rgba(255,105,0,0.25);
  transform: scale(1.12);
}

/* =========================================
   RESLLER CARD – WIDER & SHORTER (FIX)
========================================= */

.resellers{
  max-width: 1800px;              /* allow more width */
  margin: 40px auto 0;
  gap: 40px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Card size correction */
.reseller{
  min-height: 145px;              /* ↓ reduce height */
  padding: 20px 30px;             /* ↓ less vertical, more horizontal */
  border-radius: 22px;
}

/* Make logo area slightly smaller vertically */
.reseller__logoBox{
  width: 110px;
  height: 110px;
  flex: 0 0 110px;
  border-radius: 18px;
}

/* Text tighter vertically */
.reseller__name{
  font-size: 19px;
  margin-bottom: 4px;
}

.reseller__meta{
  font-size: 12.5px;
  margin-bottom: 10px;
}

/* Icons inline & compact */
.reseller__icons{
  gap: 10px;
}

.reseller__icons .ico{
  width: 40px;
  height: 40px;
  font-size: 17px;
}

/* =======================
   Responsive adjustments
======================= */
@media (max-width: 1200px){
  .resellers{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 720px){
  .resellers{
    grid-template-columns: 1fr;
  }
  .reseller{
    min-height: auto;
    padding: 20px;
  }
}

/* =========================================
   RESELLERS GRID: SUPPORT 4 CARDS (NO BREAK)
========================================= */

.resellers{
  max-width: 1600px;
  margin: 40px auto 0;
  padding: 0 12px;

  /* This is the magic: auto-fit with min width */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}

/* Card must be flexible (no forced huge min-height) */
.reseller{
  width: 100%;
  min-height: 140px;
  padding: 20px 24px;
  border-radius: 20px;
  display: flex !important;
  align-items: center;
  gap: 18px;
}

/* Keep logo compact so 4 columns fit */
.reseller__logoBox{
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  border-radius: 16px;
}

/* Text won’t overflow */
.reseller__name{
  font-size: 17px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reseller__meta{
  font-size: 12px;
  margin-bottom: 10px;
}

/* icons stay inside */
.reseller__icons{
  gap: 10px;
  flex-wrap: wrap;
}

.reseller__icons .ico{
  width: 38px;
  height: 38px;
  font-size: 16px;
}

/* OPTIONAL: force 4 columns only on very wide screens */
@media (min-width: 1400px){
  .resellers{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* =========================================
   RESELLER SECTION — MATCH REFERENCE DESIGN
   (Grey glass cards, big logo, 3-col grid)
========================================= */

/* Grid like screenshot */
.resellerGrid{
  max-width: 1800px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

/* Card style */
.resellerCard{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 18px;
  border-radius: 18px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);

  backdrop-filter: blur(8px);
}

/* Big left logo box */
.resellerLogo{
  width: 120px;
  height: 120px;
  border-radius: 14px;
  background: rgba(255,255,255,0.90);
  overflow: hidden;
  flex: 0 0 120px;
  display: grid;
  place-items: center;
}

.resellerLogo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text block */
.resellerInfo{
  flex: 1 1 auto;
  min-width: 0;
}

.resellerName{
  margin: 0 0 6px;
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.resellerRole{
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.resellerRegion{
  margin: 4px 0 10px;
  font-size: 13px;
  color: #7fb1ff; /* blue like screenshot */
}

/* Icons (blue circles like screenshot) */
.resellerIcons{
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.rIco{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 18px;

  background: rgba(90,140,255,0.18);
  border: 1px solid rgba(90,140,255,0.28);
  color: rgba(200,220,255,0.95);

  transition: transform .2s ease, background .2s ease;
}

.rIco:hover{
  transform: translateY(-2px);
  background: rgba(90,140,255,0.28);
}

/* Responsive like reference */
@media (max-width: 1100px){
  .resellerGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px){
  .resellerGrid{ grid-template-columns: 1fr; }
  .resellerLogo{ width: 105px; height: 105px; flex-basis: 105px; }
}


/* =========================================
   RESELLERS: FORCE 4 CARDS + WIDER CONTAINER
========================================= */

/* Wider section container */
.resellers{
  max-width: 1600px !important;   /* increase more */
  margin: 50px auto 0 !important;
  padding: 0 18px;
  display: grid;
  gap: 28px;
}

/* Force 4 columns on large screens */
@media (min-width: 1200px){
  .resellers{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

/* 3 columns on medium */
@media (max-width: 1199px){
  .resellers{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* 2 columns on small tablets */
@media (max-width: 900px){
  .resellers{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* 1 column on mobile */
@media (max-width: 600px){
  .resellers{
    grid-template-columns: 1fr !important;
  }
}

/* Keep card width safe so it doesn't squish */
.reseller{
  width: 100%;
  min-width: 0;
}


/* =========================================
   ORANGE BORDER + SMOKY GLOW (NEW CARD CLASS)
========================================= */

.resellerCard{
  position: relative;
  overflow: hidden;
  border-radius: 18px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255, 105, 0, 0.45);  /* orange border */
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);

  backdrop-filter: blur(8px);
  transition: transform .25s ease, border-color .25s ease;
}

/* smoky glow behind */
.resellerCard::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,105,0,0.28), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(255,145,0,0.20), transparent 60%),
    radial-gradient(circle at 65% 25%, rgba(255,105,0,0.12), transparent 55%);
  filter: blur(60px);
  opacity: .75;
  z-index: 0;
  pointer-events:none;
  animation: orangeSmoke 10s ease-in-out infinite;
}

/* keep content above glow */
.resellerCard > *{
  position: relative;
  z-index: 1;
}

/* hover */
.resellerCard:hover{
  transform: translateY(-5px);
  border-color: rgba(255,105,0,0.75);
}

/* soft motion */
@keyframes orangeSmoke{
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(22px,-14px) scale(1.06); }
  100% { transform: translate(0,0) scale(1); }
}



/* ==============================
   Reseller Social Links (Icons)
============================== */

.reseller__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.dist-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #cfd3da;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.dist-link i {
  font-size: 14px;
}

/* Hover glow (orange neon theme) */
.dist-link:hover {
  color: #ff9f43;
  background: rgba(255, 159, 67, 0.15);
  box-shadow: 0 0 12px rgba(255, 159, 67, 0.35);
  transform: translateY(-1px);
}

/* Brand color hints */
.dist-link .fa-telegram { color: #2aa1ff; }
.dist-link .fa-whatsapp { color: #25d366; }
.dist-link .fa-facebook { color: #1877f2; }
.dist-link .fa-youtube  { color: #ff3b3b; }
.dist-link .fa-globe    { color: #ffa94d; }




/* =================================
   GLOW BORDER – RESELLER CARDS
================================= */

.reseller {
  position: relative;
  overflow: hidden;
}

/* Glow border layer */
.reseller::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,105,0,0.35),
    rgba(255,255,255,0.25),
    rgba(255,105,0,0.35),
    transparent 80%
  );
  opacity: 0.55;
  filter: blur(6px);
  pointer-events: none;
  animation: resellerGlow 6s linear infinite;
}

/* Inner glass layer (keeps border clean) */
.reseller::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 21px;
  background: rgba(0,0,0,0.45);
  z-index: 0;
}

/* Ensure content stays above glow */
.reseller > * {
  position: relative;
  z-index: 1;
}

/* Hover boost */
.reseller:hover::before {
  opacity: 0.9;
  filter: blur(8px);
}

/* Glow animation */
@keyframes resellerGlow {
  0%   { transform: translateX(-40%); }
  100% { transform: translateX(40%); }
}
.mainResellerCard {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: center;
  max-width: 900px;
  width: 100%;
  padding: 26px 30px;
  border-radius: 18px;

  background: linear-gradient(
    135deg,
    rgba(255,140,0,0.22),
    rgba(80,40,0,0.45)
  );

  border: 1px solid rgba(255,140,0,0.45);
  box-shadow:
    0 0 40px rgba(255,140,0,0.25),
    inset 0 0 30px rgba(255,140,0,0.15);

  z-index: 6;
}

/* ===== MAIN RESELLER HERO ===== */
.mainResellerWrap {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  margin: 80px 0 60px;
}

.mainResellerCard {
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;

  width: 100%;
  max-width: 1200px;
  padding: 40px 50px;

  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255,140,0,0.25),
    rgba(60,30,0,0.55)
  );

  border: 1px solid rgba(255,140,0,.45);
  box-shadow:
    0 0 80px rgba(255,140,0,.35),
    inset 0 0 40px rgba(255,140,0,.15);
  overflow: hidden;
}

/* smoky glow */
.mainResellerGlow {
  position: absolute;
  inset: -30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,140,0,.45), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255,90,0,.35), transparent 60%);
  filter: blur(50px);
  z-index: -1;
}

/* LEFT IMAGE */
.mainResellerLeft img {
  width: 240px;
  height: 240px;
  border-radius: 22px;
  object-fit: cover;
  background: #111;
  box-shadow: 0 0 40px rgba(255,140,0,.45);
}

/* RIGHT CONTENT */
.mainResellerRight h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
}

.mainRole {
  font-size: 18px;
  color: #ff9800;
  font-weight: 600;
}

.mainRegion {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 18px;
}

.mainDesc {
  font-size: 17px;
  line-height: 1.7;
  color: #ddd;
  max-width: 680px;
}

/* badge */
.mainBadge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  background: rgba(255,140,0,.25);
  color: #ffb347;
  border: 1px solid rgba(255,140,0,.45);
}

/* ICONS */
.mainResellerLinks {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.mainResellerLinks a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,140,0,.15);
  color: #ff9800;
  font-size: 18px;
  transition: .3s;
}

.mainResellerLinks a:hover {
  background: #ff9800;
  color: #000;
  box-shadow: 0 0 20px rgba(255,140,0,.8);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mainResellerCard {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mainResellerLeft img {
    margin: auto;
  }

  .mainResellerLinks {
    justify-content: center;
  }
}


/* glowing smoke */
.mainResellerGlow {
  position: absolute;
  inset: -20px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,140,0,.35), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(255,90,0,.25), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}

.mainResellerLogo img {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  background: #111;
}

.mainResellerInfo h2 {
  font-size: 22px;
  color: #fff;
}

.mainResellerInfo .role {
  color: #ff9800;
  font-weight: 600;
}

.mainResellerInfo .region {
  color: #aaa;
  font-size: 14px;
}

.mainResellerLinks {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.mainResellerLinks a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,140,0,.15);
  color: #ff9800;
  transition: .3s;
}

.mainResellerLinks a:hover {
  background: #ff9800;
  color: #000;
  box-shadow: 0 0 15px rgba(255,140,0,.7);
}


/* ===== FORCE CONTENT ABOVE CANVAS ===== */
section,
.section,
.resellers,
.mainResellerWrap {
  position: relative;
  z-index: 5;
}

.mainResellerWrap {
  display: flex;
  justify-content: center;
  margin: 60px 0 40px;
}


/* ===== FEATURED PARTNERS ===== */
.featuredPartners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 60px 0 80px;
}

.featuredCard {
  position: relative;
  display: flex;
  gap: 28px;
  padding: 34px;
  border-radius: 22px;
  background: linear-gradient(180deg, #161616, #0c0c0c);
  border: 1px solid rgba(255,140,0,.35);
  overflow: hidden;
}

.featuredGlow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255,140,0,.35), transparent 60%);
  filter: blur(80px);
  opacity: .6;
  pointer-events: none;
}

.featuredImage img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 18px;
  background: #111;
  padding: 12px;
}

.featuredContent h2 {
  font-size: 26px;
  margin: 6px 0;
  color: #fff;
}

.role {
  color: #ff8c00;
  font-weight: 600;
}

.region {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 12px;
}

.desc {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.badge-distributor {
  background: rgba(255,140,0,.15);
  color: #ff9c2a;
  border: 1px solid rgba(255,140,0,.4);
}

.badge-reseller {
  background: rgba(0,150,255,.15);
  color: #4db8ff;
  border: 1px solid rgba(0,150,255,.4);
}

.featuredLinks {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.featuredLinks a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #ff8c00;
  border: 1px solid rgba(255,140,0,.4);
  transition: .3s;
}

.featuredLinks a:hover {
  background: #ff8c00;
  color: #000;
  box-shadow: 0 0 18px rgba(255,140,0,.8);
}

/* Responsive */
@media (max-width: 900px) {
  .featuredPartners {
    grid-template-columns: 1fr;
  }
}


/* =========================================
   NEON ORANGE MOVING CORNER GLOW – RESELLER
========================================= */

.reseller {
  position: relative;
  overflow: hidden;
}

/* Neon corner glow */
.reseller::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;

  /* four glowing corners */
  background:
    radial-gradient(circle at top left,
      rgba(255,105,0,0.9) 0%,
      rgba(255,105,0,0.45) 18%,
      transparent 42%),
    radial-gradient(circle at top right,
      rgba(255,105,0,0.9) 0%,
      rgba(255,105,0,0.45) 18%,
      transparent 42%),
    radial-gradient(circle at bottom left,
      rgba(255,105,0,0.9) 0%,
      rgba(255,105,0,0.45) 18%,
      transparent 42%),
    radial-gradient(circle at bottom right,
      rgba(255,105,0,0.9) 0%,
      rgba(255,105,0,0.45) 18%,
      transparent 42%);

  filter: blur(8px);
  opacity: 0.65;

  animation: cornerNeonMove 7s linear infinite;
}

/* Inner glass so glow stays on edges */
.reseller::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  border-radius: 21px;
  background: rgba(0,0,0,0.45);
  z-index: 0;
}

/* Keep content above glow */
.reseller > * {
  position: relative;
  z-index: 1;
}

/* Hover boost */
.reseller:hover::before {
  opacity: 1;
  filter: blur(10px);
}

/* Smooth corner movement */
@keyframes cornerNeonMove {
  0%   { background-position:   0%   0%, 100%   0%,   0% 100%, 100% 100%; }
  50%  { background-position:  20%  20%,  80%  20%,  20%  80%,  80%  80%; }
  100% { background-position:   0%   0%, 100%   0%,   0% 100%, 100% 100%; }
}




/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .2px;
  cursor: pointer;
  user-select: none;
  transition: transform .12s ease, filter .12s ease;
}

.btn:hover{ transform: translateY(-1px); filter: brightness(1.03); }
.btn:active{ transform: translateY(0px); }

.btn--primary{
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 26px rgba(226, 64, 82, .25);
}

.btn--secondary{
  background: rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.12);
}

.btn--buy{
  background: var(--red);
  color: #fff;
  height: 34px;
  padding: 0 16px;
  margin-top: 2px;
}

.btn--login{
  background: var(--red);
  color: #fff;
  height: 34px;
  padding: 0 16px;
}

/* Footer */
.footer{
  text-align:center;
  padding: 18px 0 8px;
  color: rgba(255,255,255,.60);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 980px){
  .header{
    grid-template-columns: 70px 1fr 90px;
    padding: 14px 16px;
  }
  .nav{ gap: 16px; flex-wrap: wrap; }
  .hero{
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 18px;
  }
  .shot{ margin: 12px 0 0; }
  .pricing{ grid-template-columns: 1fr; max-width: 520px; }
  .resellers{ grid-template-columns: 1fr; }
}

/* ===== Fullscreen canvas background ===== */
#bgCanvas{
  position: fixed !important;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  pointer-events: none;
}

/* Scanline overlay (same idea) */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.012),
    rgba(255,255,255,0.012) 1px,
    transparent 2px,
    transparent 4px
  );
  z-index: 5;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: .7;
}

/* Keep your site content above canvas */
.header, .wrap{
  position: relative;
  z-index: 10;
}
#bgCanvas{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  pointer-events: none;
}
#bgCanvas{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  pointer-events: none;
}
#bgCanvas{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  pointer-events: none;
}

/* ================================
   XIAOMI ORANGE THEME (SECTION ONLY)
================================ */

.xiaomi-theme{
  --xiaomi: #ff6900;
  --xiaomi-soft: rgba(255,105,0,0.35);
  --xiaomi-glow: rgba(255,105,0,0.85);
}

/* Title glow */
.xiaomi-theme .glow-title,
.xiaomi-theme h1,
.xiaomi-theme h2{
  color: var(--xiaomi);
  text-shadow:
    0 0 6px var(--xiaomi),
    0 0 14px var(--xiaomi-soft),
    0 0 28px var(--xiaomi-soft);
}

/* Buttons */
.xiaomi-theme .btn,
.xiaomi-theme button{
  background: linear-gradient(135deg, #ff7a1a, #ff6900);
  color: #fff;
  border: none;
  box-shadow:
    0 0 12px var(--xiaomi-soft),
    0 0 24px rgba(255,105,0,0.25);
}

.xiaomi-theme .btn:hover{
  filter: brightness(1.1);
  box-shadow:
    0 0 16px var(--xiaomi),
    0 0 32px rgba(255,105,0,0.45);
}

/* Icons */
.xiaomi-theme i,
.xiaomi-theme svg{
  color: var(--xiaomi);
  filter: drop-shadow(0 0 6px rgba(255,105,0,0.6));
}

/* Accent borders / cards */
.xiaomi-theme .card,
.xiaomi-theme .panel,
.xiaomi-theme .box{
  border-color: rgba(255,105,0,0.4);
  box-shadow: 0 0 18px rgba(255,105,0,0.15);
}

/* Links */
.xiaomi-theme a{
  color: #ff8a33;
}
.xiaomi-theme a:hover{
  color: #ff6900;
}

/* =====================================
   XIAOMI HERO (ONLY "Xiaomi" ORANGE)
===================================== */

.xiaomi-hero{
  position: relative;
  z-index: 10;
  padding: 110px 22px 60px;
  background: transparent;
}

.xiaomi-hero__grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Title */
.xiaomi-hero__title{
  margin: 0 0 18px;
  font-family: 'Orbitron','Share Tech Mono', monospace;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 800;
  letter-spacing: .5px;
}

/* ONLY Xiaomi word orange */
.xiaomi-word{
  color: #ff6900;
  text-shadow:
    0 0 8px rgba(255,105,0,0.55),
    0 0 18px rgba(255,105,0,0.35),
    0 0 38px rgba(255,105,0,0.22);
  animation: xiaomiPulse 2.6s ease-in-out infinite;
}

/* Rest of title normal (not orange) */
.rest-word{
  color: rgba(255,255,255,0.92);
  text-shadow:
    0 0 8px rgba(0,255,220,0.18),
    0 0 16px rgba(0,255,220,0.12);
}

/* Xiaomi glow pulse */
@keyframes xiaomiPulse{
  0%,100%{
    text-shadow:
      0 0 6px rgba(255,105,0,0.40),
      0 0 14px rgba(255,105,0,0.25),
      0 0 28px rgba(255,105,0,0.18);
  }
  50%{
    text-shadow:
      0 0 14px rgba(255,105,0,0.90),
      0 0 28px rgba(255,105,0,0.55),
      0 0 56px rgba(255,105,0,0.40);
  }
}

/* Description */
.xiaomi-hero__desc{
  margin: 0 0 22px;
  max-width: 560px;
  font-family: 'Share Tech Mono', monospace;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  font-size: 14px;
}

/* Buttons */
.xiaomi-hero__buttons{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.xiaomi-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  user-select: none;
}

.xiaomi-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Primary orange button */
.xiaomi-btn.primary{
  background: linear-gradient(135deg, #ff7a1a, #ff6900);
  color: #fff;
  box-shadow:
    0 0 12px rgba(255,105,0,0.45),
    0 0 28px rgba(255,105,0,0.22);
}

/* Secondary neutral button (NOT orange background) */
.xiaomi-btn.secondary{
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.14);
}

.xiaomi-btn.secondary:hover{
  box-shadow: 0 0 18px rgba(255,255,255,0.10);
}

/* Tool screenshot frame */
.tool-shot{
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 45px rgba(0,0,0,0.55);
}

.tool-shot img{
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.96;
}

/* Responsive */
@media (max-width: 980px){
  .xiaomi-hero{
    padding: 90px 16px 40px;
  }
  .xiaomi-hero__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .tool-shot{
    margin: 10px auto 0;
  }
}
/* Register button (header) */
.btn--register{
  margin-left: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.18);
}

.btn--register:hover{
  background: rgba(255,255,255,0.14);
}

/* ================================
   HEADER LOGIN + REGISTER FIX
================================ */

/* Force right header area into clean row */
.header__right{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Make both buttons same height & alignment */
.header__right .btn{
  height: 34px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  border-radius: 999px;
  white-space: nowrap;
}

/* LOGIN button (primary red like before) */
.btn--login{
  background: #e53935;
  color: #fff;
}

.btn--login:hover{
  filter: brightness(1.1);
}

/* REGISTER button (secondary dark) */
.btn--register{
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.18);
}

.btn--register:hover{
  background: rgba(255,255,255,0.14);
}

/* ==========================================
   HEADER PATCH (FIX BROKEN LAYOUT + MOBILE)
   Put this at the BOTTOM of style.css
========================================== */

/* Force header layout clean */
.header{
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Left logo area */
.header__left{
  flex: 0 0 auto;
}

/* Center nav */
.nav{
  flex: 1 1 auto;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  min-width: 0;
}

/* Right buttons */
.header__right{
  flex: 0 0 auto;
  display: flex !important;
  align-items: center !important;
  gap: 10px;
}

/* make both buttons same height */
.header__right .btn{
  height: 34px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Register styling */
.btn--register{
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn--register:hover{ background: rgba(255,255,255,0.14); }

/* ------------------------------
   MOBILE (NO HAMBURGER YET)
   Just make it wrap cleanly
-------------------------------- */
@media (max-width: 900px){
  .header{
    flex-wrap: wrap;
    justify-content: center !important;
    padding: 12px 14px;
  }

  .header__left{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav{
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .nav__link{
    font-size: 12px;
    padding: 6px 4px;
  }

  .header__right{
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px){
  .nav{
    gap: 10px;
  }
  .nav__link{
    font-size: 11px;
  }
  .header__right .btn{
    height: 32px;
    padding: 0 12px;
    font-size: 11px;
  }
}
/* ===========================
   Live Status / Price Section
   (matches your dark design + font)
=========================== */

.live-wrap{
  padding: 40px 0 10px;
}

.live-card{
  max-width: 1000px;
  margin: 0 auto;
  padding: 34px 22px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.38);
  box-shadow: 0 22px 60px rgba(0,0,0,0.55);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle gradient glow behind, but still dark */
.live-card::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(700px 320px at 30% 20%, rgba(255,105,0,0.18), transparent 60%),
    radial-gradient(700px 320px at 70% 30%, rgba(90,140,255,0.14), transparent 62%),
    radial-gradient(700px 360px at 55% 80%, rgba(255,60,80,0.10), transparent 65%);
  opacity: .9;
  pointer-events:none;
}

.live-card > *{ position: relative; z-index: 1; }

.live-title{
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: .3px;
  color: rgba(255,255,255,0.95);
}

.live-subtitle{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
}

.live-badge{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

.live-note{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
}

/* Status bar */
.live-statusbar{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  margin: 18px auto 22px;
  max-width: 760px;
  flex-wrap: wrap;
}

.status-item{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.divider{
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.14);
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  box-shadow: 0 0 0 0 rgba(255,255,255,0.0);
}

.status-text{
  color: rgba(255,255,255,0.95);
}

.price-text{
  color: #ffd34a; /* nice readable gold like sample */
}

/* Buttons */
.live-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.live-btn{
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.live-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  background: rgba(255,255,255,0.10);
}

.live-btn--primary{
  background: linear-gradient(135deg, #ff7a1a, #ff6900);
  border-color: rgba(255,105,0,0.35);
  color: #fff;
  box-shadow: 0 0 18px rgba(255,105,0,0.22);
}

/* Mobile */
@media (max-width: 720px){
  .divider{ display:none; }
  .live-card{ padding: 26px 16px 22px; }
}
/* ===== Stats section styling (dark design) ===== */
.stats-wrap{ padding-top: 10px; }
.stats-grid{
  max-width: 900px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.stats-card{
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}
.stat-number{
  font-size: 28px;
  color: #ff6900;
  text-shadow: 0 0 10px rgba(255,105,0,0.35);
  margin-bottom: 6px;
}
.stat-label{
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}
@media (max-width: 980px){
  .stats-grid{ grid-template-columns: 1fr; }
}

/* ===== Footer Contact styling ===== */
.footer-contact{
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 20px;
}
.footer-grid{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 0 10px;
}
.footer-title{
  margin: 0 0 10px;
  color: #ff6900;
  font-size: 16px;
}
.footer-text{
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  margin: 0;
}
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer-links a{
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.footer-links a:hover{ text-decoration: underline; }
.footer-bottom{
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.60);
}
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr; }
}
/* FORCE CANVAS TO BE THE BACKGROUND */
.bg{ display:none !important; }
#bgCanvas{
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: -5 !important;
  pointer-events: none !important;
}
body::after{
  content:"" !important;
  position: fixed !important;
  inset: 0 !important;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.012),
    rgba(255,255,255,0.012) 1px,
    transparent 2px,
    transparent 4px
  ) !important;
  z-index: 5 !important;
  pointer-events: none !important;
  mix-blend-mode: overlay !important;
  opacity: .7 !important;
}


