:root {
  --bg-main: #0b0d10;
  --bg-card: rgba(18, 18, 18, 0.75);
  --gold: #ffd76a;
  --gold-soft: rgba(255, 215, 106, 0.15);
  --text-main: #eaeaea;
  --text-muted: #a1a1a1;
  --border-soft: rgba(255, 255, 255, 0.06);
  --radius-md: 14px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #eaeaea;
  background: #050505;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ======================
   PREMIUM LOADER
====================== */

#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-logo {
  width: 140px;
  animation: logoFade 1.2s ease-in-out;
}

@keyframes logoFade {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

/* =====================
   NAVBAR
===================== */
/* ================= ELITE NAVBAR ================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(12, 12, 18, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255, 215, 106, 0.15);
  transition: all 0.4s ease;

  z-index: 9999;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Cinzel', serif;
  font-size: 34px;
  font-weight: 700;
  color: #ffe46a;

  letter-spacing: 2px;
  /* 🔥 add this */
  text-shadow: 0 0 12px rgba(255, 215, 106, 0.4);
  /* 🔥 update this */
}

.logo-sub {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #fff9;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  position: relative;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 14px;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 14px;
  /* match padding-left */
  width: calc(100% - 28px);
  /* remove left + right padding */
  height: 2px;
  background: linear-gradient(90deg, #FFD76A, #ff9f00);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  color: #FFD76A;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ffe46a;
  opacity: 1;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffe46a;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.9);
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding-bottom: 120px;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom,
      transparent,
      #0b0d10);
  pointer-events: none;
}

.hero-content-wrapper {
  text-align: center;
  transform: translate(-30px, 160px);
  /* 🔥 adjust this value */
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: #f5d26a;
}

.hero-sub {
  margin-top: 12px;
  color: #bdbdbd;
  letter-spacing: 1px;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 74px;
  font-weight: 700;
  color: #fff;
}

.hero-x {
  color: #ffe46a;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

.hero-sub {
  margin-top: 14px;
  font-size: 18px;
  opacity: 0.95;
}

.hero-btns {
  margin-top: 32px;
  display: flex;
  gap: 22px;
  justify-content: center;
}

/* Calm hero load animation */
.hero-content {
  text-align: center;
  color: #fff;
  z-index: 5;

  opacity: 0;
  animation: heroReveal 1.4s ease-out forwards;
  animation-delay: 0.25s;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-btns {
  opacity: 0;
  transform: translateY(10px);
  animation: heroBtns 1.2s ease-out forwards;
  animation-delay: 0.6s;
}

@keyframes heroBtns {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title span,
.hero-x {
  position: relative;
}

.hero-title span::after,
.hero-x::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 30%,
      rgba(255, 215, 106, 0.25),
      transparent 70%);
  opacity: 0;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  80%,
  100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

/* =====================
   BUTTONS
===================== */
.btn-gold {
  padding: 14px 42px;
  border-radius: 14px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  color: #000;
  background: linear-gradient(180deg, #ffe46a, #d1a325);
  border: 2px solid rgba(255, 215, 0, 0.7);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.7), inset 0 0 8px rgba(255, 255, 255, 0.6);
  transition: 0.25s;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(255, 215, 0, 1), inset 0 0 10px rgba(255, 255, 255, 0.9);
}

.btn-discord {
  padding: 14px 38px;
  border-radius: 14px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: #ffffff;

  /* PREMIUM BLUE STRIP GRADIENT */
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  border: 2px solid rgba(37, 99, 235, 0.6);

  box-shadow:
    0 0 18px rgba(37, 99, 235, 0.6),
    0 10px 25px rgba(0, 0, 0, 0.4);

  transition: all 0.3s ease;
}

/* Hover */
.btn-discord:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #1e40af, #1d4ed8);

  box-shadow:
    0 0 28px rgba(37, 99, 235, 0.9),
    0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Click */
.btn-discord:active {
  transform: scale(0.96);
}

.btn-discord img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

/* =====================
   SECTIONS
===================== */
section {
  text-align: center;
  position: relative;
}

/* =====================
   CONTENT SECTION SPACING
===================== */

.info-section,
.products-section,
.faq-section,
.support-section {
  padding: 40px 20px 120px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 34px;
  letter-spacing: 2.4px;
  color: var(--gold);
  text-align: center;
  text-shadow: 0 8px 30px rgba(255, 215, 106, 0.25);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 34px;
  letter-spacing: 2.4px;
  color: var(--gold);
  text-align: center;
  text-shadow: 0 8px 30px rgba(255, 215, 106, 0.25);

  /* FIX OVERLAP ISSUE */
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}

.price {
  color: var(--gold);
  font-size: 22px;
  font-weight: 600;
}

.section-sub {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
  /* pushes cards down */
}

.mt-60 {
  margin-top: 60px;
}

/* =====================
   PRODUCT CARDS
===================== */
.premium-card {
  background: linear-gradient(180deg,
      rgba(14, 14, 14, 0.95),
      rgba(5, 5, 5, 1));
  border-radius: 20px;
  padding: 34px 28px;
  border: 1px solid rgba(255, 215, 106, 0.12);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* =====================
   PACKS GRID – LAYOUT
===================== */

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.premium-card:hover {
  cursor: pointer;
}

/* =====================
   PREMIUM METALLIC SHINE
===================== */

.premium-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg,
      transparent 30%,
      rgba(255, 215, 122, 0.18),
      transparent 70%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.premium-card:hover::before {
  opacity: 1;
}

.premium-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 106, 0.35);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(255, 215, 106, 0.15);
}


.premium-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #f5d27a;
}

.premium-card ul {
  list-style: none;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 26px;
  color: #cfcfcf;
}

.premium-card ul li::before {
  content: "✔ ";
  color: #f5d27a;
}

.price {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: #f5d27a;
  margin: 18px 0 22px;
}

.premium-card .price {
  transition: transform 0.25s ease, text-shadow 0.25s ease;
}

.premium-card:hover .price {
  transform: translateY(-2px);
  text-shadow: 0 0 14px rgba(245, 210, 122, 0.6);
}

.buy-btn {
  display: inline-block;
  padding: 14px 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5d27a, #c99a2e);
  color: #000;
  font-weight: 700;
  letter-spacing: 0.6px;
  box-shadow: 0 12px 30px rgba(245, 210, 122, 0.35);
  transition: all 0.3s ease;
}

.buy-btn {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.buy-btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.buy-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 50px rgba(245, 210, 122, 0.55);
}

/* ======================
   PREMIUM FAQ SECTION
====================== */

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-section {
  position: relative;
  padding: 120px 20px;
  background: transparent;
}

/* Card */
.faq-item {
  background: linear-gradient(145deg,
      rgba(18, 18, 18, 0.9),
      rgba(10, 10, 10, 0.9));
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 26px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.faq-item:hover::before {
  opacity: 1;
}

/* Subtle gold edge glow */
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 215, 106, 0.04);
  pointer-events: none;
}

/* Hover */
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

.faq-item:hover::before {
  box-shadow:
    inset 0 0 0 1px rgba(255, 215, 106, 0.12),
    0 0 40px rgba(255, 215, 106, 0.08);
}

/* Question row */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cinzel', serif;
  font-size: 15.5px;
  letter-spacing: 0.9px;
  color: rgba(255, 255, 255, 0.95);
}


/* Arrow */
.faq-question::after {
  content: "⌄";
  font-size: 18px;
  color: var(--gold);
  transition: transform 0.35s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.35s ease;
}

/* OPEN STATE */
.faq-item.open {
  background: linear-gradient(145deg,
      rgba(255, 215, 106, 0.06),
      rgba(12, 12, 12, 0.95));
}

.faq-item.open .faq-answer {
  max-height: 160px;
  opacity: 1;
}

.faq-item.open .faq-question::after {
  transform: rotate(180deg);
}


/* =====================
   SUPPORT FOOTER
===================== */
.footer {
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  text-align: center;
  padding: 40px 0;
  margin-top: 80px;
  font-size: 14px;
  opacity: 0.85;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);

  transition: all 0.25s ease;
}

.social-btn img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}

.social-btn.discord:hover {
  background: #5865F2;
  border-color: #5865F2;
}

.social-btn.insta:hover {
  background: #d6249f;
  border-color: #d6249f;
}

.social-btn.yt:hover {
  background: #ff0000;
  border-color: #ff0000;
}

/* =====================
   LIVE SUPPORT BUBBLE
===================== */
#liveSupport {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #5865F2;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000001;
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.8);
  animation: bubbleBounce 2.4s ease-in-out infinite;
}

#liveSupport img {
  width: 32px;
  height: 32px;
  filter: invert(1);
}

@keyframes bubbleBounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ========================= */
/* PREMIUM CHECKOUT UI THEME */
/* ========================= */

.white-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.white-modal .modal-box {
  width: 1050px;
  max-width: 95%;
  border-radius: 22px;
  background: #ffffff;

  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.white-modal .left-section {
  padding: 50px 40px;
  background: #f9fafc;
  border-right: 1px solid #eee;
}

.white-modal h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.white-modal .price {
  font-size: 28px;
  font-weight: 700;
  color: #00b67a;
  margin-bottom: 25px;
}

/* INFO BOXES */
.white-modal .info-box {
  background: #f3f4f6;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 25px;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.white-modal .right-section {
  padding: 60px 60px;
  background: #ffffff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


/* INPUT FIELDS */
.white-modal input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 8px;
  border-radius: 10px;
  border: 1px solid #e3e6eb;
  background: #f9fafc;
  font-size: 14px;
  transition: all 0.2s ease;
}

.white-modal input:focus {
  border-color: #00b67a;
  box-shadow: 0 0 0 3px rgba(0, 182, 122, 0.15);
  background: #ffffff;
  outline: none;
}

/* BUTTON */
.white-modal .proceed-btn {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00b67a, #00a86b);
  color: white;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 10px 30px rgba(0, 182, 122, 0.3);
}

.white-modal .proceed-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 182, 122, 0.4);
}

/* TRUST FOOTER */
.white-modal .secure-text {
  font-size: 12px;
  text-align: center;
  color: #777;
  margin-top: 12px;
}

/* CLOSE */
.white-modal .close-btn {
  text-align: center;
  margin-top: 10px;
  color: #888;
  cursor: pointer;
  font-size: 13px;
}

/* PREMIUM TALL MODAL */
.premium-tall {
  width: 1000px;
  max-width: 95%;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* LEFT SIDE */
.pack-header h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #00b67a;
  margin-bottom: 25px;
}

/* DISCORD CARD */
.discord-card {
  background: #f4f6fb;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.discord-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.discord-logo {
  width: 40px;
  height: 40px;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #00d26a;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.discord-stats {
  margin-top: 12px;
  font-size: 13px;
  color: #444;
}

/* PERKS */
.perk-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.perk-box h4 {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 700;
}

.perk-box ul {
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.7;
}

/* BUTTON */
.proceed-btn {
  padding: 16px;
  font-size: 15px;
  border-radius: 14px;
}

/* =====================
   PRIMARY PAY BUTTON
===================== */

.pay-btn.primary {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00e0a4, #00b98a);
  color: #00130c;
  font-weight: 800;
  letter-spacing: 0.6px;
  border: none;
  cursor: pointer;
  box-shadow:
    0 18px 40px rgba(0, 224, 164, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pay-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 60px rgba(0, 224, 164, 0.6);
}

.secure {
  font-size: 12px;
  color: #666;
  text-align: center;
}

.close-btn {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  font-size: 13px;
  margin-top: 4px;
}

/* === FEATURE PREVIEW SECTION === */
.feature-preview {
  padding: 100px 30px;
  text-align: center;
  color: #fff;
}

.feature-title {
  font-family: 'Cinzel', serif;
  font-size: 34px;
  font-weight: 800;
  color: #ffe46a;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
  margin-bottom: 10px;
}

.feature-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 50px;
}

.feature-card-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  max-width: 1300px;
  margin: auto;
}

.fp-card {
  width: 280px;
  background: rgba(10, 10, 10, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
  text-align: center;
  transition: 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.fp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 22px rgba(255, 215, 0, 0.7);
}

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

.fp-heading {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffe46a;
}

.fp-text {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
}

/* Fade-in animation */
.reveal .fp-card {
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width: 768px) {
  .fp-card {
    width: 90%;
  }
}

.feature-section {
  min-height: 100vh;
  background: transparent;

  padding: 90px 20px 40px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;

  position: relative;
  z-index: 1;
  margin-top: 0px;
}

.feature-heading {
  font-family: 'Cinzel', serif;
  color: #ffe46a;
  font-size: 32px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-sub {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  background: rgba(10, 10, 10, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 22px rgba(255, 215, 0, 0.7);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.feature-item h3 {
  font-family: 'Cinzel', serif;
  color: #ffe46a;
  font-size: 20px;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

/* ============================
   FOOTER SOCIAL ICONS — CLEAN UI
=============================== */

.footer-socials a img {
  width: 32px;
  height: 32px;
  margin: 0 8px;
  vertical-align: middle;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  transition: 0.2s ease-in-out;
}

.footer-socials a img:hover {
  transform: scale(1.1);
}

/* =========================
   PAYMENT SUCCESS – FINAL POLISH
========================= */

#paymentSuccess {
  position: fixed;
  inset: 0;
  background: #f4f7fb;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.success-container.white {
  width: 420px;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Green tick */
.success-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: #16c784;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.success-container h1 {
  font-size: 24px;
  color: #111;
  margin-bottom: 6px;
}

.success-sub {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* Transaction box */
.success-box {
  background: #ecfdf3;
  border-left: 4px solid #16c784;
  padding: 14px 16px;
  border-radius: 10px;
  text-align: left;
  font-size: 14px;
  margin-bottom: 18px;
  color: #065f46;
}

.success-box span {
  font-weight: 600;
}

/* Order details */
.order-box {
  background: #f8fafc;
  padding: 18px;
  border-radius: 14px;
  text-align: left;
  font-size: 14px;
  color: #111;
  /* FORCE DARK TEXT */
  opacity: 1;
  /* FORCE VISIBILITY */
}

.order-box h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.order-box p {
  margin: 4px 0;
  color: #333;
}

.product-box {
  background: #ffffff;
  padding: 12px;
  border-radius: 10px;
  margin-top: 12px;
  border: 1px solid #e5e7eb;
  color: #111;
  /* 🔥 THIS FIXES psDesc */
}

.product-box p {
  color: #374151;
  /* readable gray */
  margin: 0;
}

/* Back button */
.back-btn {
  display: block;
  margin-top: 22px;
  padding: 14px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.back-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

/* FORCE FIX — OVERRIDE ANY INLINE OPACITY */
#paymentSuccess .order-box,
#paymentSuccess .order-box * {
  opacity: 1 !important;
  filter: none !important;
  color: #111 !important;
}

/* 🔥 FINAL FIX — FORCE READABLE TEXT */
#paymentSuccess .order-box,
#paymentSuccess .order-box p,
#paymentSuccess .order-box span,
#paymentSuccess .order-box h3 {
  color: #111 !important;
}

#paymentSuccess .product-box p {
  color: #374151 !important;
}

/* =====================
   PAYMENT STEPS
===================== */

.payment-steps {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

#manualPayment .payment-steps li {
  color: #cfcfcf;
}

#manualPayment .payment-steps li span {
  box-shadow: 0 0 10px rgba(0, 224, 164, 0.6);
}

.payment-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: #ddd;
  font-size: 14px;
}

.payment-steps li span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e0a4, #00b98a);
  color: #00130c;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

#manualPayment .qr-box img {
  width: 220px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}


.pay-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.copy-upi-btn {
  margin-top: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-upi-btn:hover {
  background: #f4f4f4;
}

/* Micro polish */
#manualPayment .secure {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

#manualPayment .order-box p {
  margin: 6px 0;
}

#manualPayment {
  z-index: 9999;
}

/* Fullscreen premium overlay */
#manualPayment {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 9999;
}


.qr-box img {
  display: block;
  margin: 16px auto 8px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* =========================
   DARK MODE – PORSCHE STYLE
========================= */

/* Dark overlay */
#manualPayment {
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* Main card */
.success-container.white {
  background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
  color: #f5f5f5;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Headings */
.success-container.white h1 {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.3px;
}

/* Order box */
.order-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  margin-top: 14px;
}

.order-box p {
  color: #d6d6d6;
}

/* QR section */
.qr-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.qr-box img {
  width: 200px;
  margin: 10px 0;
}

/* UPI ID text */
.qr-box p {
  margin-top: 10px;
  font-size: 13px;
  color: #bdbdbd;
  letter-spacing: 0.3px;
}

/* Copy UPI button */
.upi-copy {
  margin-top: 12px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.upi-copy:hover {
  background: #ffffff;
  color: #000;
}

/* Primary CTA */
.pay-btn.primary {
  margin-top: 22px;
  background: linear-gradient(135deg, #00e0a4, #00b98a);
  color: #00130c;
  font-weight: 800;
  letter-spacing: 0.6px;
  border-radius: 16px;
  box-shadow:
    0 18px 40px rgba(0, 224, 164, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.pay-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 60px rgba(0, 224, 164, 0.6);
}

/* Small text */
.secure {
  margin-top: 10px;
  font-size: 12px;
  color: #9b9b9b;
  letter-spacing: 0.4px;
}


.support-section {
  padding: 50px 20px 30px;
}

.support-section .section-title {
  margin-bottom: 10px;
}

.support-section .section-sub {
  margin-bottom: 0;
}

.footer {
  margin-top: 30px;
  /* was 80px */
}


/* =====================
   REMOVE PADDING FROM HERO LAYERS
===================== */
.hero,
.hero-extend,
.hero-third,
.section-blend {
  padding: 0 !important;
}

/* =====================
   HERO LAYER STACK FIX
===================== */
.hero-extend,
.hero-third {
  position: relative;
  z-index: 0;
}

/* === HERO STACK – FORCE VISIBILITY === */
.hero,
.hero-extend,
.hero-third {
  position: relative;
  z-index: 1;
  padding: 0 !important;
}

/* =====================
   MOST POPULAR BADGE
===================== */

.pack-badge {
  position: absolute;
  top: 18px;
  right: 18px;

  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;

  border-radius: 999px;
  background: linear-gradient(135deg, #f5d27a, #c99a2e);
  color: #000;

  box-shadow: 0 8px 20px rgba(245, 210, 122, 0.5);
  z-index: 2;
}

/* =====================
   FREE PACK – STARTER STYLE
===================== */

.free-pack {
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.9),
      rgba(0, 0, 0, 1));
  border: 1px dashed rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.free-pack:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.free-pack .price {
  color: #7cff7c;
}

.free-pack .buy-btn {
  background: linear-gradient(135deg, #7cff7c, #3fbf3f);
  color: #000;
  box-shadow: 0 10px 25px rgba(124, 255, 124, 0.35);
}

.free-pack .buy-btn:hover {
  box-shadow: 0 16px 40px rgba(124, 255, 124, 0.55);
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   DISCORD PACK ICON
===================== */
.pack-icon {
  font-size: 32px;
  margin-bottom: 10px;
  color: #f5d27a;
}

/* =====================
   CUSTOM QUOTE NOTE
===================== */
.quote-note {
  font-size: 13px;
  color: #aaa;
  margin-top: -8px;
}

/* =====================
   HIGHLIGHT FINEST PACK
===================== */
.premium-card.highlight {
  border: 2px solid #f5d27a;
  transform: scale(1.05);
}

/* =====================
   DISCORD REQUEST FORM
===================== */
.discord-form {
  max-width: 520px;
  margin: 60px auto 0;
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid rgba(255, 215, 106, 0.15);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
}

.form-title {
  text-align: center;
  color: #f5d27a;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #f5d27a;
  font-weight: 600;
}

.discord-form input,
.discord-form select,
.discord-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  color: #eee;
  font-size: 14px;
}

.discord-form input:focus,
.discord-form select:focus,
.discord-form textarea:focus {
  outline: none;
  border-color: rgba(255, 215, 106, 0.6);
}

.form-note {
  margin-top: 14px;
  font-size: 13px;
  color: #aaa;
  text-align: center;
}

/* =====================
   SUCCESS POPUP
===================== */

.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #0f0f0f;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(255, 215, 106, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
}

.popup-box h3 {
  color: #f5d27a;
  margin-bottom: 10px;
}

.popup-box button {
  margin-top: 18px;
  padding: 10px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #f5d27a, #c99a2e);
  border: none;
  font-weight: 700;
  cursor: pointer;
}

/* =====================
   QR CHECKOUT ANIMATION
===================== */

.checkout-card {
  opacity: 0;
  transform: translateY(30px);
  animation: qrEnter 0.6s ease-out forwards;
}

@keyframes qrEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================
   TRANSITIONS
===================== */

.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================
   CLOSE BUTTON (QR POPUP)
===================== */

.close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 22px;
  color: #aaa;
  cursor: pointer;
  z-index: 10;
}

.close-modal:hover {
  color: #fff;
}

/* =====================
   PREMIUM PAYMENT FORM
===================== */

#paymentFormSection {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.form-card {
  background: #0b0d10;
  color: #eaeaea;
  padding: 32px;
  border-radius: 22px;
  width: 92%;
  max-width: 420px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.form-card h2 {
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: #b5b5b5;
  margin-bottom: 20px;
}

.form-card label {
  font-size: 13px;
  color: #aaa;
  margin-top: 14px;
  display: block;
}

.form-card input {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #222;
  background: #121417;
  color: #fff;
}

.form-card input:focus {
  outline: none;
  border-color: #00e0a4;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.checkbox-group label {
  font-size: 13px;
  color: #ccc;
}

/* =====================
   DARK FORM CONTROLS
===================== */

.form-card select,
.form-card textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #222;
  background: #121417;
  color: #eaeaea;
}

.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: #00e0a4;
}

.checkbox-group input[type="checkbox"] {
  accent-color: #00e0a4;
}

/* =====================
   PAYMENT FORM – DARK PREMIUM
===================== */

.payment-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.payment-form-card {
  width: 780px;
  /* wider */
  max-width: 95%;
  background: #ffffff;
  border-radius: 18px;
  padding: 45px 60px;
  /* more side padding */
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.35);
  position: relative;
  max-height: none;
  /* remove scroll */
}

.payment-form-card h2 {
  text-align: center;
  margin-bottom: 6px;
}

.form-sub {
  text-align: center;
  color: #aaa;
  font-size: 14px;
  margin-bottom: 22px;
}

.payment-form-card label {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: #bbb;
}

.payment-form-card input,
.payment-form-card select {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #12161c;
  border: 1px solid #222;
  color: #eee;
  font-size: 14px;
}

.payment-form-card input:focus,
.payment-form-card select:focus {
  outline: none;
  border-color: #00e0a4;
}

.checkbox-line {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  font-size: 13px;
  color: #ccc;
}

.pay-btn.primary {
  width: 100%;
  margin-top: 22px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00e0a4, #00b98a);
  color: #00130c;
  font-weight: 800;
  letter-spacing: 0.6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 224, 164, 0.45);
}

.pay-btn.primary:hover {
  box-shadow: 0 26px 60px rgba(0, 224, 164, 0.6);
}

.secure-text {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: #888;
}

/* CLOSE BUTTON */
.close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 22px;
  color: #aaa;
  cursor: pointer;
}

.close-modal:hover {
  color: #fff;
}

.upload-progress {
  width: 100%;
  height: 8px;
  background: #1a1d22;
  border-radius: 10px;
  margin-top: 14px;
}

.upload-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00e0a4, #00b98a);
  transition: width 0.2s ease;
}

/* =====================
   FORM → FAQ SPACING FIX
===================== */
.discord-form {
  margin-bottom: 120px;
}

/* =====================
   PACK BADGE FIX (ALL PACKS)
===================== */
.premium-card {
  position: relative;
  padding-top: 55px;
  /* space for badge */
}

.pack-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* =====================
   DISCORD PACK BADGE TWEAK
===================== */
#discord-services .premium-card {
  padding-top: 60px;
}

#discord-services .pack-badge {
  top: 16px;
  right: 18px;
}

/* =====================
   FORM NOTE POLISH (OPTIONAL)
===================== */
.form-note {
  margin-top: 20px;
  opacity: 0.85;
}

/* =====================
   BASIC PACKS FINAL GRID
===================== */

.basic-row-1,
.basic-row-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 40px;
  justify-items: center;
}

/* Row 2 placement */
.basic-row-2>.premium-card:first-child {
  grid-column: 2;
}

.basic-row-2>.premium-card:last-child {
  grid-column: 3;
}

/* =========================
   FINEST SOLE GRID (CENTER FIX)
========================= */
.finest-sole-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
  /* 🔥 THIS IS THE KEY */
  gap: 60px;
}

/* =====================
   OTHER SERVICES – 4 CARD ROW FIX
===================== */
#other-services .packs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 40px;
  align-items: stretch;
}

/* Tablet */
@media (max-width: 1200px) {
  #other-services .packs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  #other-services .packs-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   OTHER SERVICES GRID FIX
===================== */
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 40px;
  align-items: stretch;
}

/* Tablet */
@media (max-width: 1200px) {
  .other-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .other-services-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   CARD SIZE & HEIGHT FIX
===================== */
#other-services .premium-card {
  max-width: 360px;
  /* wider cards */
  min-height: 520px;
  /* same height for all */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* =========================
   OTHER SERVICES – CLEAN FINAL LAYOUT
========================= */
#other-services .packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  justify-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Card sizing */
#other-services .premium-card {
  width: 100%;
  max-width: 330px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* =========================
   SECTION SPACING TUNE
========================= */
#finest-sole {
  margin-bottom: 60px;
}

#other-services {
  margin-top: 20px;
}

/* =========================
   REMOVE BIG GAP BEFORE OTHER SERVICES
========================= */

/* Reduce bottom space of previous section */
#finest-sole {
  margin-bottom: 30px !important;
  padding-bottom: 0 !important;
}

/* Reduce top space of Other Services section */
#other-services {
  margin-top: 0 !important;
  padding-top: 30px !important;
}

/* Tighten section title spacing */
#other-services .section-title {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

/* Tighten subtitle spacing */
#other-services .section-sub {
  margin-bottom: 30px !important;
}

/* =====================
   FAQ PREMIUM STYLING
===================== */

.faq-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ item box */
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  margin-bottom: 16px;
  padding: 18px 22px;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Hover effect */
.faq-item:hover {
  border-color: rgba(245, 199, 107, 0.35);
  transform: translateY(-2px);
}

/* Question row */
.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #f5c76b;
  /* gold tone */
}

/* Answer text */
.faq-answer {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: #d6d6d6;
  display: none;
}

/* When FAQ is open (your JS already adds .open) */
.faq-item.open .faq-answer {
  display: block;
  animation: faqFade 0.25s ease;
}

/* Smooth open animation */
@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* REMOVE GLOBAL BOTTOM GAP */
html,
body {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

/* FOOTER BASE */
.footer {
  position: relative;
  background: #000;
  padding: 55px 20px 35px;
  text-align: center;
  overflow: hidden;
}

/* PARTICLES (ONLY INSIDE FOOTER) */
.footer-particles {
  position: absolute;
  inset: 0;
  background: transparent;
  background-size: 80px 80px;
  animation: particles 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes particles {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 -800px;
  }
}

/* SOCIAL ICONS */
.footer-socials {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 22px;
}

.social-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.social-btn img {
  width: 26px;
  height: 26px;
}

/* HOVER */
.social-btn:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 0 25px rgba(255, 211, 106, 0.6);
}

.discord:hover {
  background: #5865F2;
}

.insta:hover {
  background: transparent;
}

.yt:hover {
  background: #ff0000;
}

.gmail:hover {
  background: #ffd36a;
}

/* GOLD DIVIDER */
.footer-divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, transparent, #ffd36a, transparent);
  margin: 20px auto;
}

.footer-copy {
  font-family: Arial, Helvetica, sans-serif;
  /* normal font */
  font-size: 13px;
  color: #777;
  letter-spacing: 0.3px;
  margin-top: 15px;
}

/* PARTICLE CONTAINER */
.footer {
  position: relative;
  overflow: hidden;
}

/* PARTICLES */
.footer-particles {
  position: absolute;
  inset: 0;
  background: transparent;
  background-size: 60px 60px, 120px 120px;
  animation: particleMove 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 2;
}

@keyframes particleMove {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 -600px, 0 -1200px;
  }
}

/* REMOVE GAP ABOVE FOOTER */
section:last-of-type {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* IF YOU USE .reveal CLASS */
.reveal:last-of-type {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* FORCE FOOTER TO TOUCH ABOVE SECTION */
.footer {
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  .hero {
    background-position: center 38%;
  }
}

.scroll-indicator span {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 6px;
  background: #ffe46a;
  border-radius: 10px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

.hero-btns a {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-btns a:hover {
  transform: translateY(-4px) scale(1.05);
}

.hero-btns a:active {
  transform: translateY(-1px) scale(0.98);
}

.scroll-indicator {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.premium-card,
.faq-item,
.feature-item {
  background: rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
}

/* ===============================
   GLOBAL BACKGROUND SLIDESHOW
================================ */

.bg-slideshow {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: bgFade 24s infinite;
}

/* images */
.s1 {
  background-image: url("assets/hero.jpg");
  animation-delay: 0s;
}

.s2 {
  background-image: url("assets/hero-extend1.jpg");
  animation-delay: 6s;
}

.s3 {
  background-image: url("assets/hero-extend2.png");
  animation-delay: 12s;
}

.s4 {
  background-image: url("assets/hero-extend3.jpg");
  animation-delay: 18s;
}

/* fade animation */
@keyframes bgFade {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  33% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.bg-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

html {
  scroll-behavior: smooth;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
}

/* ================= PREMIUM AI CHAT ================= */

.chat-toggle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #FFD76A, #ffae00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  z-index: 99999;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

.chat-toggle:hover {
  transform: scale(1.1);
}

.ai-chat {
  position: fixed;
  bottom: 110px;
  right: 25px;
  width: 480px;
  height: 650px;
  background: linear-gradient(180deg, #0e0f15, #13141c);
  border-radius: 20px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 99999;
  border: 1px solid rgba(255, 215, 106, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.ai-header {
  padding: 16px;
  background: #111218;
  color: #FFD76A;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.ai-header span {
  cursor: pointer;
}

.ai-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
}

.message {
  padding: 18px 22px;
  /* Bigger bubble */
  border-radius: 20px;
  max-width: 80%;
  line-height: 1.7;
  /* Better readability */
  font-size: 16px;
  /* Bigger text */
}

.user-msg {
  background: linear-gradient(135deg, #FFD76A, #ffae00);
  color: #000;
  align-self: flex-end;
}

.bot-msg {
  background: #1c1e27;
  color: #fff;
  align-self: flex-start;
}

.ai-input {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-input input {
  flex: 1;
  padding: 18px 20px;
  /* Bigger padding */
  border: none;
  background: #161823;
  color: #fff;
  outline: none;
  font-size: 16px;
  /* Bigger text */
  letter-spacing: 0.3px;
}

.ai-input button {
  background: #FFD76A;
  border: none;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 600;
}

/* Loading Animation */
.typing {
  display: flex;
  gap: 6px;
}

.typing span {
  width: 8px;
  height: 8px;
  background: #FFD76A;
  border-radius: 50%;
  animation: blink 1.4s infinite both;
}

.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0% {
    opacity: .2
  }

  20% {
    opacity: 1
  }

  100% {
    opacity: .2
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quick-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.quick-options button {
  background: #1c1e27;
  border: 1px solid rgba(255, 215, 106, 0.4);
  color: #FFD76A;
  padding: 6px 10px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 12px;
}

.quick-options button:hover {
  background: #FFD76A;
  color: #000;
}

/* ===== Extra Premium Add-ons ===== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.urgency {
  border: 1px solid rgba(255, 215, 106, 0.25);
  background: linear-gradient(180deg, #1b1d26, #171821);
}

.quick-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.quick-options button {
  background: #1c1e27;
  border: 1px solid rgba(255, 215, 106, 0.35);
  color: #FFD76A;
  padding: 7px 11px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 12px;
  transition: 0.2s;
}

.quick-options button:hover {
  background: #FFD76A;
  color: #000;
  transform: translateY(-1px);
}

.ai-header {
  position: relative;
}

.ai-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #FFD76A, transparent);
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ================= PREMIUM COMPARISON (LUXURY VERSION) ================= */

.comparison-section {
  padding: 150px 20px;
  text-align: center;
}

/* ===== LUXURY GOLD HEADING ===== */

.comparison-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 80px;

  background: linear-gradient(90deg, #f5d27a, #f5d27a, #f5d27a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 12px rgba(255, 215, 106, 0.4),
    0 0 25px rgba(255, 180, 0, 0.2);

  position: relative;
}

/* Optional luxury underline glow */

.comparison-section h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, #FFD76A, #ffb300);
  box-shadow: 0 0 12px rgba(255, 215, 106, 0.6);
}

/* ===== TABLE STRUCTURE ===== */

.comparison-table {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== ROW STYLE ===== */

.row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 24px;
  background: rgba(15, 16, 22, 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  align-items: center;
  transition: 0.4s ease;
  border: 1px solid rgba(255, 215, 106, 0.08);
}

/* Hover premium effect */

.row:hover {
  transform: translateY(-5px);
  border: 1px solid rgba(255, 215, 106, 0.5);
  box-shadow: 0 0 40px rgba(255, 215, 106, 0.25);
}

/* Header row */

.row.header {
  background: linear-gradient(90deg, #1a1c25, #111218);
  font-weight: 600;
  color: #FFD76A;
  letter-spacing: 1px;
  font-family: 'Cinzel', serif;
}

/* Highlight best column */

.row.highlight {
  border: 1px solid rgba(255, 215, 106, 0.6);
  box-shadow: 0 0 50px rgba(255, 215, 106, 0.3);
}

/* Cell text refinement */

.row div {
  font-size: 16px;
}

.row.header div {
  font-size: 17px;
  text-transform: uppercase;
}

.legal-links {
  margin-top: 25px;
  margin-bottom: 20px;
  /* 👈 space below legal links */
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 14px;
  opacity: 0.8;
}

.legal-links a {
  color: #999;
  font-size: 14px;
  text-decoration: none;
}

.legal-links a:hover {
  color: #FFD76A;
}

/* ================= TESTIMONIAL SLIDER ================= */

.trust-section {
  padding: 60px 20px;
  text-align: center;
  background: transparent;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: #FFD76A;
  margin-bottom: 40px;
}

.testimonial-box {
  position: relative;
  max-width: 520px;
  margin: auto;
  min-height: 140px;
}

.testimonial {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease;

  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 30px 25px;
  border-radius: 18px;
  border: 1px solid rgba(255, 215, 106, 0.2);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.testimonial span {
  display: block;
  margin-top: 15px;
  color: #FFD76A;
  font-size: 14px;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
}

@supports (backdrop-filter: blur(10px)) {
  .navbar.scrolled {
    backdrop-filter: blur(18px);
  }
}

/* ================= PREMIUM BUTTON LOADER ================= */

.loader {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.success-card {
  background: linear-gradient(145deg, #0f1115, #141821);
  padding: 40px;
  border-radius: 16px;
  width: 420px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  animation: fadeUp 0.4s ease;
}

.success-check {
  font-size: 40px;
  color: #00e0a4;
  margin-bottom: 15px;
}

.success-card h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.success-card p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 20px;
}

.success-card button {
  background: linear-gradient(135deg, #FFD76A, #ffb300);
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.success-card button:hover {
  transform: scale(1.05);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-pack-ui {
  margin-top: 10px;
}

.ai-pack {
  background: rgba(20, 20, 25, 0.85);
  border: 1px solid rgba(255, 215, 100, 0.2);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.ai-pack.highlight {
  border: 1px solid rgba(255, 215, 100, 0.6);
  box-shadow: 0 0 18px rgba(255, 215, 100, 0.2);
}

.ai-pack-title {
  font-weight: 600;
  color: #ffd76a;
  margin-bottom: 6px;
}

.ai-pack-desc {
  font-size: 13px;
  color: #cfcfcf;
  margin-bottom: 6px;
}

.ai-pack-price {
  font-weight: bold;
  color: #fff;
}

.pack-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.pack-card {
  background: linear-gradient(145deg, #0f1623, #1a2233);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 215, 106, 0.15);
  transition: 0.3s ease;
}

.pack-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 106, 0.6);
  box-shadow: 0 0 25px rgba(255, 215, 106, 0.15);
}

.pack-tag {
  font-size: 10px;
  background: rgba(255, 215, 106, 0.15);
  padding: 4px 8px;
  border-radius: 8px;
  color: #FFD76A;
  margin-bottom: 6px;
  display: inline-block;
}

.pack-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.pack-desc {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 6px;
}

.pack-price {
  font-weight: bold;
  color: #FFD76A;
  margin-bottom: 10px;
}

.pack-btn {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 215, 106, 0.1);
  color: #FFD76A;
  cursor: pointer;
  transition: 0.3s ease;
}

.pack-btn:hover {
  background: linear-gradient(135deg, #FFD76A, #ffb300);
  color: #000;
}

/* ===== ELITE AI AVATAR ===== */

.ai-avatar {
  width: 10px;
  height: 10px;
  background: #00ffcc;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
  animation: pulseAI 1.5s infinite;
}

@keyframes pulseAI {
  0% {
    box-shadow: 0 0 5px #00ffcc;
  }

  50% {
    box-shadow: 0 0 20px #00ffcc;
  }

  100% {
    box-shadow: 0 0 5px #00ffcc;
  }
}

.ai-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
}

.ai-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-avatar {
  width: 10px;
  height: 10px;
  background: #00ff99;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff99;
  animation: pulse 1.5s infinite;
}

.ai-name {
  font-weight: 600;
  font-size: 14px;
}

.ai-status {
  font-size: 11px;
  color: #aaa;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 4px #00ff99;
  }

  50% {
    box-shadow: 0 0 14px #00ff99;
  }

  100% {
    box-shadow: 0 0 4px #00ff99;
  }
}

.post-support-options {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.elite-btn {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: linear-gradient(45deg, #f5c34d, #ffdb70);
  font-weight: 600;
}

.elite-btn.secondary {
  background: #1e1e1e;
  color: #fff;
  border: 1px solid #444;
}

.navbar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 215, 106, 0.15),
      transparent);
  animation: navShine 8s infinite;
}

@keyframes navShine {
  0% {
    left: -120%;
  }

  100% {
    left: 200%;
  }
}

.nav-links a.active {
  color: #FFD76A;
  text-shadow: 0 0 12px rgba(255, 215, 106, 0.8);
}

.logo-main {
  letter-spacing: 2px;
  font-weight: 700;
  transition: 0.3s ease;
}

.logo-main:hover {
  text-shadow: 0 0 20px rgba(255, 215, 106, 0.9);
}

/* ===== WHITE PREMIUM CHECKOUT FIX ===== */

.checkout-box {
  background: #ffffff !important;
  color: #111 !important;
}

.checkout-left h2,
.checkout-left h3,
.checkout-left h4,
.checkout-left p,
.checkout-left li {
  color: #111 !important;
}

.checkout-price {
  font-size: 26px;
  font-weight: 700;
  color: #16a34a !important;
}

.checkout-left .pack-heading {
  font-size: 22px;
  font-weight: 800;
  color: #111 !important;
}

.checkout-left {
  padding: 40px;
}

.discord-card {
  background: #f8fafc;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.discord-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.verified-badge {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-dot {
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
  animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(22, 163, 74, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

.secure-shield {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
  animation: fadeShield 2s infinite alternate;
}

@keyframes fadeShield {
  from {
    opacity: 0.6;
  }

  to {
    opacity: 1;
  }
}

/* FORCE DARK TEXT INSIDE WHITE CHECKOUT */
.white-modal,
.white-modal * {
  color: #111 !important;
}

.white-modal h2,
.white-modal h3,
.white-modal h4 {
  color: #000 !important;
}

.white-modal p,
.white-modal span,
.white-modal label {
  color: #444 !important;
}

/* =========================
   CHECKOUT MODAL (FIX CENTER)
   Paste at END of style.css
========================= */
#checkoutModal.white-modal {
  position: fixed;
  inset: 0;
  display: none;
  /* JS sets display:flex */
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999;
}

/* Main card */
#checkoutModal .white-box {
  width: min(980px, 96vw);
  max-height: 90vh;
  display: flex;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .45);
}

/* Columns */
#checkoutModal .left-side {
  width: 38%;
  min-width: 320px;
  padding: 28px;
  border-right: 1px solid rgba(0, 0, 0, .06);
}

#checkoutModal .right-side {
  flex: 1;
  min-width: 0;
  /* IMPORTANT: stops overflow */
  padding: 28px;
}

/* Mobile stacking */
@media (max-width: 860px) {
  #checkoutModal .white-box {
    flex-direction: column;
    max-height: 92vh;
    overflow: auto;
  }

  #checkoutModal .left-side {
    width: 100%;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
  }
}

/* Razorpay-style steps */
.rp-steps {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.rp-step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .55;
}

.rp-step span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: #f3f4f6;
  border: 1px solid rgba(0, 0, 0, .08);
}

.rp-step p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.rp-step.active {
  opacity: 1;
}

.rp-step.active span {
  background: #10b981;
  color: #fff;
  border-color: rgba(0, 0, 0, 0);
}

.rp-line {
  flex: 1;
  height: 2px;
  background: rgba(0, 0, 0, .08);
  border-radius: 99px;
}

.trust-badge {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, .06);
}

.trust-badge strong {
  font-size: 13px;
}

.trust-badge span {
  font-size: 12px;
  color: #6b7280;
}

.trust-badge .shield {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, .55);
  animation: shieldPulse 1.4s infinite;
}

@keyframes shieldPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, .55);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@media (max-width: 768px) {
  .white-modal .modal-box {
    grid-template-columns: 1fr;
  }
}

.white-modal .left-section {
  padding: 60px 60px;
  background: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-right: 1px solid #eee;
}

.loader {
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.6s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.checkout-close {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #333;
  z-index: 10;
}

.checkout-close:hover {
  color: #000;
}

.modal-box {
  position: relative;
}

.checkout-x {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.checkout-x:hover {
  color: #000;
}

.step-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.rp-step {
  flex: 1;
  padding: 6px;
  font-size: 12px;
  text-align: center;
  border-radius: 20px;
  background: #e5e7eb;
  color: #666;
  transition: 0.3s;
}

.rp-step.active {
  background: #00b67a;
  color: white;
}

.checkout-error {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #ffe9e9;
  color: #d93025;
  font-size: 13px;
  text-align: center;
  display: none;
  animation: fadeSlide 0.3s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* red highlight effect */
.input-error {
  border: 1px solid #d93025 !important;
  background: #fff6f6 !important;
}

/* shake animation */
@keyframes shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  50% {
    transform: translateX(4px);
  }

  75% {
    transform: translateX(-4px);
  }

  100% {
    transform: translateX(0);
  }
}

.shake {
  animation: shake 0.3s ease;
}

#manualPayment {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.manual-card {
  width: 420px;
  max-width: 95%;
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.payment-info {
  background: #f7f9fc;
  border-radius: 16px;
  padding: 18px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.payment-info strong {
  font-weight: 600;
}

.premium-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  background: linear-gradient(135deg, #00b67a, #00d084);
  color: white;
  box-shadow: 0 10px 25px rgba(0, 182, 122, 0.3);
  transition: 0.3s;
}

.premium-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 182, 122, 0.4);
}

/* ====================================
   RAZORPAY STYLE FULL WHITE PAYMENT
==================================== */

#manualPayment {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

/* Main white rectangle */
#manualPayment .success-container {
  width: 1050px;
  max-width: 96%;
  background: #ffffff;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 60px 140px rgba(0, 0, 0, 0.25);
  animation: fadeUp .35s ease;
}

/* LEFT SIDE (Order Summary) */
#manualPayment .left-section {
  background: #f8fafc;
  padding: 50px 45px;
  border-right: 1px solid #eee;
  color: #111;
}

/* RIGHT SIDE (QR + Actions) */
#manualPayment .right-section {
  background: #ffffff;
  padding: 50px 45px;
  color: #111;
}

/* QR Box clean */
#manualPayment .qr-box {
  background: #f9fafb;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #eee;
}

#manualPayment .qr-box img {
  width: 220px;
  border-radius: 14px;
}

/* Copy Button */
.copy-upi-btn {
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.copy-upi-btn:hover {
  background: #f3f4f6;
}

/* Primary Button */
.pay-btn.primary {
  width: 100%;
  margin-top: 25px;
  padding: 16px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.pay-btn.primary:hover {
  background: #000;
  transform: translateY(-1px);
}

/* ================================
   CLEAN RAZORPAY STYLE FIX
================================ */

/* Main white container spacing */
#manualPayment .success-container {
  padding: 40px;
  gap: 40px;
}

/* LEFT PANEL */
#manualPayment .left-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Order info card */
#manualPayment .left-section p {
  margin: 8px 0;
  font-size: 14px;
  color: #333;
}

#manualPayment .left-section strong {
  color: #111;
  font-weight: 600;
}

/* Add premium info box under details */
.payment-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: 14px;
  background: #f5f7fa;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

/* QR CENTER FIX */
#manualPayment .right-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#manualPayment .qr-box {
  width: 100%;
  max-width: 320px;
  text-align: center;
}

#manualPayment .qr-box img {
  display: block;
  margin: 0 auto;
}

.payment-steps li span {
  background: #111;
  color: #fff;
  width: 22px;
  height: 22px;
  font-size: 12px;
  border-radius: 50%;
}

.payment-steps li {
  color: #555;
  font-size: 14px;
}

/* ===============================
   COMPACT RAZORPAY PAYMENT UI
================================ */

/* Make modal compact */
#manualPayment .success-container {
  width: 900px;
  max-width: 95%;
  padding: 30px 35px;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Remove extra vertical height */
#manualPayment {
  align-items: center;
}

/* LEFT PANEL TEXT FIX */
#manualPayment .left-section {
  padding: 25px;
  background: #f8fafc;
  border-radius: 16px;
  color: #111;
}

#manualPayment .left-section p {
  color: #222 !important;
  font-size: 14px;
  margin: 6px 0;
}

#manualPayment .left-section strong {
  color: #000;
}

/* RIGHT SECTION CLEAN */
#manualPayment .right-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

/* Compact QR box */
#manualPayment .qr-box {
  padding: 18px;
  border-radius: 16px;
  background: #f5f7fa;
  width: auto;
  text-align: center;
}

#manualPayment .qr-box img {
  width: 200px;
  display: block;
  margin: 0 auto;
}

/* CLEAN COMPACT BUTTON */
.pay-btn.primary {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #111, #1f1f1f);
  color: #ffffff !important;
  /* FORCE WHITE */
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 224, 164, 0.35);
  transition: 0.25s ease;
}

.pay-btn.primary:hover {
  transform: translateY(-2px);
}

.pay-btn.primary:active {
  transform: translateY(1px);
}

#manualPayment .success-container {
  align-items: center;
}

/* HEADER STRIP */
.payment-header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  margin-bottom: 25px;
  border-bottom: 1px solid #ececec;
}

.brand-left {
  font-weight: 600;
  font-size: 14px;
  color: #111;
}

.brand-dot {
  width: 8px;
  height: 8px;
  background: #16c784;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.payment-timer {
  background: #f5f7fa;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

/* COLUMN DIVIDER */
#manualPayment .success-container {
  position: relative;
}

#manualPayment .success-container::after {
  content: "";
  position: absolute;
  top: 80px;
  bottom: 25px;
  left: 50%;
  width: 1px;
  background: #eeeeee;
}

/* QR SHADOW */
#manualPayment .qr-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

#manualPayment .qr-box img {
  width: 200px;
  border-radius: 12px;
}

.secure-badge {
  margin-top: 15px;
  font-size: 12px;
  color: #555;
  text-align: center;
}

.payment-steps {
  margin-top: 20px;
  font-size: 13px;
}

.payment-steps li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #333;
}

.payment-steps li span {
  background: #111;
  color: #fff;
  width: 20px;
  height: 20px;
  font-size: 11px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.payment-footer-note {
  grid-column: 1 / -1;
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #666;
}

/* =====================================
   100% RAZORPAY STYLE PAYMENT CLONE
===================================== */

#manualPayment {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* Glass white rectangle */
.razorpay-layout {
  width: 880px;
  max-width: 95%;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.25);
  padding: 30px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  color: #111;
}

/* Header strip */
.rp-header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.rp-brand {
  font-size: 14px;
  font-weight: 600;
}

.rp-dot {
  width: 8px;
  height: 8px;
  background: #16c784;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.rp-timer {
  background: #f5f7fa;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Left column */
.rp-left h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.rp-order-box {
  background: #f6f7fb;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.rp-order-box p {
  margin: 6px 0;
  font-size: 14px;
}

/* Steps */
.rp-steps {
  margin-top: 10px;
  padding: 0;
}

.rp-steps li {
  list-style: none;
  font-size: 13px;
  color: #444;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.rp-steps li span {
  width: 18px;
  height: 18px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

/* Right column */
.rp-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* QR card */
.rp-qr-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.rp-qr-card img {
  width: 200px;
  display: block;
}

/* Secure text */
.rp-secure {
  font-size: 12px;
  color: #555;
  text-align: center;
}

/* Button */
.rp-pay-btn {
  width: 260px;
  padding: 12px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.rp-pay-btn:hover {
  background: #000;
}

/* ===== FORCE TEXT VISIBILITY FIX ===== */

#manualPayment,
#manualPayment * {
  color: #111 !important;
  opacity: 1 !important;
}

.rp-header,
.rp-left,
.rp-right {
  color: #111 !important;
}

.rp-steps li {
  color: #444 !important;
}

.rp-secure {
  color: #555 !important;
}

.copy-btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f8f8f8;
  font-size: 12px;
  cursor: pointer;
}

.copy-btn:hover {
  background: #eee;
}

/* Razorpay blue strip */
.razorpay-layout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #2563eb;
}

/* left */
.rp-left {
  padding: 25px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* right */
.rp-right {
  padding: 35px;
  text-align: center;
}

#liveSupport {
  position: fixed !important;
  right: 28px !important;
  bottom: 28px !important;
  z-index: 2147483647 !important;
}

.payment-steps {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.payment-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #444;
  margin-bottom: 12px;
}

.payment-steps li span {
  width: 10px;
  height: 10px;
  background: #111;
  border-radius: 50%;
  display: inline-block;
}

.qr-box {
  background: #f9fafb;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.qr-box img {
  width: 220px;
  border-radius: 14px;
}

.left-section h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

.verification-text {
  font-size: 13px;
  color: #555;
  margin-top: 15px;
}

/* === PREMIUM CHECKOUT UPGRADE === */

.premium-checkout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
}

.checkout-header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #16c784;
  border-radius: 50%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-timer {
  background: #f3f4f6;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  transition: 0.3s;
}

.header-timer.danger {
  background: #fee2e2;
  color: #dc2626;
}

/* CLOSE BUTTON */
.close-x {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  color: #777;
  transition: 0.2s;
}

.close-x:hover {
  color: #111;
  transform: scale(1.1);
}

/* INFO BOX */
.info-box {
  background: #f3f4f6;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-size: 14px;
  color: #333;
}

/* QR BOX HOVER GLOW */
.qr-box {
  background: #f9fafb;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.qr-box:hover {
  box-shadow: 0 20px 60px rgba(0, 224, 164, 0.25);
  transform: translateY(-3px);
}

.qr-box img {
  width: 220px;
  border-radius: 14px;
}

.copy-btn {
  margin-top: 12px;
  background: #f3f4f6;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}

/* SECURITY LINE */
.security-line {
  margin-top: 14px;
  font-size: 12px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* SHIELD PULSE */
.shield {
  width: 14px;
  height: 14px;
  background: #16c784;
  border-radius: 50%;
  position: relative;
}

.shield::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #16c784;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.4);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* ===========================
   PREMIUM MANUAL PAYMENT
=========================== */

.premium-checkout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
}

/* HEADER */
.checkout-header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #16c784;
  border-radius: 50%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-timer {
  background: #f3f4f6;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  transition: 0.3s;
}

.header-timer.danger {
  background: #fee2e2;
  color: #dc2626;
}

/* CLOSE BUTTON */
.close-x {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #777;
}

.close-x:hover {
  color: #000;
}

/* QR BOX */
.qr-box {
  background: #f9fafb;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.qr-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 60px rgba(0, 224, 164, 0.25);
}

.qr-box img {
  width: 220px;
  border-radius: 14px;
}

/* SECURITY LINE */
.security-line {
  margin-top: 14px;
  font-size: 12px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* SHIELD PULSE */
.shield {
  width: 14px;
  height: 14px;
  background: #16c784;
  border-radius: 50%;
  position: relative;
}

.shield::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #16c784;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.4);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.razor-strip {
  height: 6px;
  width: 200%;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.white-modal {
  animation: modalFade 0.35s ease forwards;
}

@keyframes modalFade {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);

  }

  to {
    opacity: 1;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

  }
}

.premium-checkout {
  animation: slideUp 0.35s ease forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(25px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-3px);
  }

  50% {
    transform: translateX(3px);
  }

  75% {
    transform: translateX(-3px);
  }

  100% {
    transform: translateX(0);
  }
}

.header-timer.urgent {
  animation: shake 0.4s infinite;
}

.right-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ===== FORCE WHITE TEXT ON PAYMENT BUTTON ===== */

.pay-btn.primary,
.pay-btn.primary *,
#manualPayment .pay-btn.primary,
#manualPayment .pay-btn.primary * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.pay-btn.primary {
  background: linear-gradient(135deg, #111111, #1c1c1c) !important;
  border: none !important;
  text-shadow: none !important;
}

/* ===== QR + SECURITY CENTER ALIGN FIX ===== */

.qr-security-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  /* controls space between QR and security */
}

/* Remove large margin from QR */
.qr-box {
  margin-bottom: 0 !important;
}

/* Center security content */
.security-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

/* Premium secure badge */
.secure-badge {
  background: linear-gradient(135deg, #16c784, #00b67a);
  color: #fff;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 600;
  animation: glowPulse 2s infinite;
}

/* Encryption line */
.encryption-text {
  font-size: 12px;
  color: #555;
}

/* Glow animation */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 rgba(22, 199, 132, 0.6);
  }

  50% {
    box-shadow: 0 0 14px rgba(22, 199, 132, 0.8);
  }

  100% {
    box-shadow: 0 0 0 rgba(22, 199, 132, 0.6);
  }
}

/* ===== QR + SECURITY PERFECT ALIGN ===== */

.right-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Wrap QR + security */
.qr-security-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  /* controls space between QR and secure */
}

/* Remove extra margin if exists */
.qr-box {
  margin-bottom: 0 !important;
}

/* Center security */
.security-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  margin-top: 4px;
}

/* Premium badge */
.secure-badge {
  background: linear-gradient(135deg, #16c784, #00b67a);
  color: #fff;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 600;
  animation: glowPulse 2s infinite;
}

/* Encryption text */
.encryption-text {
  font-size: 12px;
  color: #555;
}

/* Glow animation */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 rgba(22, 199, 132, 0.6);
  }

  50% {
    box-shadow: 0 0 14px rgba(22, 199, 132, 0.8);
  }

  100% {
    box-shadow: 0 0 0 rgba(22, 199, 132, 0.6);
  }
}

/* ===== BACK ARROW ===== */

.back-arrow {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  margin-right: 10px;
  color: #444;
  transition: 0.2s ease;
}

.back-arrow:hover {
  color: #000;
  transform: translateX(-2px);
}

/* ===== PREMIUM STEP BAR ===== */

.premium-steps {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

.step .circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 4px;
  transition: 0.3s ease;
}

.step.active .circle {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
}

.step.active {
  color: #111;
}

.step-line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  margin: 0 8px;
}

/* ===== RAZORPAY STYLE STEPS ===== */

.razor-steps {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

.razor-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
  min-width: 70px;
}

.razor-step .circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 6px;
  transition: 0.3s ease;
}

.razor-step.active {
  color: #2563eb;
}

.razor-step.active .circle {
  background: #2563eb;
  color: #fff;
}

.line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  margin: 0 10px;
}

/* ===== PREMIUM COMMUNITY CARD ===== */

.community-card {
  margin: 25px 0 30px 0;
  padding: 18px 22px;
  background: #f8fafc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f7;
}

.community-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.community-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-title {
  font-weight: 600;
  font-size: 14px;
  color: #111827;
}

.community-sub {
  font-size: 12px;
  color: #6b7280;
}

.community-divider {
  width: 1px;
  height: 32px;
  background: #e5e7eb;
  margin: 0 15px;
}

.verified-badge {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-dot {
  width: 8px;
  height: 8px;
  background: #16c784;
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 rgba(22, 199, 132, 0.5);
  }

  50% {
    box-shadow: 0 0 10px rgba(22, 199, 132, 0.8);
  }

  100% {
    box-shadow: 0 0 0 rgba(22, 199, 132, 0.5);
  }
}

.details-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111827;
}

.details-sub {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 20px;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin: 12px 0 20px 0;
}

/* ===== ULTRA PREMIUM DISCORD CARD ===== */

.discord-card {
  position: relative;
  margin: 28px 0;
  padding: 22px 26px;
  border-radius: 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* subtle gradient border */
  border: 1px solid transparent;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(135deg, #e5e7eb, #f3f4f6);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.discord-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* LEFT SIDE */
.discord-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* LOGO WITH GLOW RING */
.discord-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 6px;
  background: #5865F2;
  /* clean Discord color */
  box-shadow: none;
  /* REMOVE OUTER GLOW */
}

/* TITLE */
.discord-top strong {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  display: block;
}

/* DISCORD STYLE ACTIVE TAG */
.online-text {
  font-size: 12px;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #3ba55d;
  /* real Discord green */
  border-radius: 50%;
  animation: pulseOnline 2s infinite;
}

@keyframes pulseOnline {
  0% {
    box-shadow: 0 0 0 rgba(59, 165, 93, 0.5);
  }

  50% {
    box-shadow: 0 0 10px rgba(59, 165, 93, 0.8);
  }

  100% {
    box-shadow: 0 0 0 rgba(59, 165, 93, 0.5);
  }
}

/* BLUE VERIFIED BADGE */
.verified-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
}

.verified-icon {
  width: 16px;
  height: 16px;
  background: #2563eb;
  border-radius: 50%;
  padding: 2px;
}

/* ===== MEMBER COUNTER ===== */

.community-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.member-counter {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 500;
}

.member-counter span {
  color: #111827;
  font-weight: 600;
}

/* ===== CLEAN COMMUNITY META ALIGNMENT ===== */

.community-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  /* prevents line break */
}

.online-text {
  font-size: 12px;
  color: #6b7280;
}

.member-row {
  font-size: 12px;
  color: #6b7280;
}

.member-row span {
  font-weight: 600;
  color: #111827;
}

/* ===== PREMIUM BLACK PROCEED BUTTON ===== */

.proceed-btn {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  background: linear-gradient(135deg, #111111, #1f1f1f);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.proceed-btn:hover {
  transform: translateY(-2px);
}

.proceed-btn:active {
  transform: translateY(1px);
}

.discord-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #5865F2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discord-logo img {
  width: 24px;
  height: 24px;
}

/* ===== FORCE CLEAN DISCORD LOGO ===== */

.discord-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff !important;
  /* white clean base */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
  border: 1px solid #e5e7eb;
  /* subtle premium border */
}

.discord-logo img {
  width: 24px;
  height: 24px;
  box-shadow: none !important;
  filter: none !important;
  border-radius: 0 !important;
}

/* Kill any pseudo glow */
.discord-logo::before,
.discord-logo::after {
  display: none !important;
  content: none !important;
}

/* ===== CLEAN PREMIUM DISCORD CARD ===== */

.discord-card {
  margin: 25px 0;
  padding: 18px 22px;
  background: #ffffff;
  border-radius: 14px;
  /* less oval */
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* Left */
.discord-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Verified badge clean rectangular */
.verified-badge {
  background: #f3f4f6;
  color: #111827;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 10px;
  /* NOT 20px */
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-icon {
  width: 14px;
  height: 14px;
  background: #2563eb;
  border-radius: 50%;
}

.community-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* ===== FORCE PRICE VISIBILITY ===== */

.price,
.pack-price,
.pricing-price,
.card-price,
h3.price,
h2.price,
.plan-price,
[class*="price"] {
  color: #FFD76A !important;
  /* premium gold */
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

/* ===============================
   PAYMENT VERIFICATION – WHITE PREMIUM
================================ */

.payment-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.payment-form-card {
  width: 900px;
  /* Wide rectangle */
  max-width: 95%;
  background: #ffffff;
  border-radius: 18px;
  padding: 50px 70px;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.35);
  position: relative;
}

/* Blue Razorpay Strip */
.razor-strip {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  width: 100%;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}

/* Header */
.payment-form-card h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  color: #111827;
}

.form-sub {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 25px;
}

/* Labels */
#paidVerificationForm label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  display: block;
  margin-bottom: 6px;
}

/* Inputs */
#paidVerificationForm input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 14px;
}

#paidVerificationForm input:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Lock fields */
#paidVerificationForm input[readonly] {
  background: #f3f4f6;
  cursor: not-allowed;
  color: #374151;
}

/* Premium File Input */
#pfScreenshot {
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  padding: 12px;
}

/* Premium Checkbox */
.premium-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  margin: 15px 0;
}

.premium-checkbox input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 2px solid #d1d5db;
  position: relative;
  transition: 0.2s ease;
}

.premium-checkbox input:checked+.checkmark {
  background: #2563eb;
  border-color: #2563eb;
}

.premium-checkbox input:checked+.checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Premium Black Submit Button */
.payment-form-card .pay-btn.primary {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  background: linear-gradient(135deg, #111, #1f1f1f);
  color: #fff !important;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.payment-form-card .pay-btn.primary:hover {
  transform: translateY(-2px);
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #6b7280;
}

.close-modal:hover {
  color: #000;
}

/* ===== FULL RECTANGLE PREMIUM VERIFY MODAL ===== */

.payment-form-card {
  width: 1000px;
  max-width: 95%;
  height: 90vh;
  /* fixed height */
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 40px 60px;
  overflow: hidden;
  /* prevent outer overflow */
}

/* ===== PREMIUM BRANDED CHECKBOX ===== */

.premium-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin: 18px 0;
  cursor: pointer;
  color: #374151;
}

.premium-checkbox input {
  display: none;
}

.premium-checkbox .box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid #cbd5e1;
  transition: 0.2s ease;
  position: relative;
}

.premium-checkbox input:checked+.box {
  background: #2563eb;
  border-color: #2563eb;
}

.premium-checkbox input:checked+.box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* =========================
   PREMIUM DRAG & DROP UPLOAD
========================= */

.upload-box {
  border: 2px dashed #cbd5e1;
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  background: #f9fafb;
  transition: 0.25s ease;
  margin-bottom: 18px;
  position: relative;
}

.upload-box:hover {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.upload-box.dragover {
  border-color: #2563eb;
  background: #eef4ff;
}

.upload-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.upload-text {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.upload-sub {
  font-size: 12px;
  color: #6b7280;
}

.upload-preview {
  margin-top: 15px;
}

.upload-preview img {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 10px;
}

/* =========================
   PREMIUM DRAG & DROP UPGRADED
========================= */

.upload-box {
  border: 2px dashed #cbd5e1;
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  background: #f9fafb;
  transition: 0.25s ease;
  margin-bottom: 18px;
  position: relative;
}

.upload-box:hover {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.upload-box.dragover {
  border-color: #2563eb;
  background: #eef4ff;
}

.upload-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.upload-text {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.upload-sub {
  font-size: 12px;
  color: #6b7280;
}

.upload-preview img {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.upload-preview img.show {
  opacity: 1;
  transform: translateY(0);
}

/* Replace Button */
.replace-btn {
  margin-top: 12px;
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 8px;
  background: #2563eb;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.replace-btn:hover {
  background: #1e40af;
}

/* Error */
.upload-error {
  font-size: 12px;
  color: #dc2626;
  margin-top: 8px;
}

.upload-box {
  position: relative;
  transition: 0.3s ease;
}

.upload-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), transparent);
  pointer-events: none;
}

/* ===== VERIFY: BRANDED SUBMIT BUTTON (NOT FADED) ===== */
#paymentFormSection .pay-btn.primary {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #111, #1f2937);
  color: #fff !important;
  font-weight: 800;
  font-size: 14px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

#paymentFormSection .pay-btn.primary:hover {
  transform: translateY(-2px);
}

#paymentFormSection .pay-btn.primary:active {
  transform: translateY(1px);
}

/* ===== LOCKED INPUT LOOK ===== */
#paidVerificationForm input[readonly] {
  background: #f3f4f6 !important;
  color: #111827 !important;
  border: 1px solid #e5e7eb !important;
  cursor: not-allowed;
}

/* ===== WORKING PREMIUM CHECKBOX ===== */

.premium-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  margin: 20px 0;
}

.premium-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.premium-checkbox .box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid #cbd5e1;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.premium-checkbox input:checked+.box {
  background: #2563eb;
  border-color: #2563eb;
}

.premium-checkbox input:checked+.box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* ===== UPLOAD BOX ===== */
.upload-box {
  border: 2px dashed #cbd5e1;
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  background: #f9fafb;
  transition: .25s ease;
  margin-bottom: 10px;
  position: relative;
}

.upload-box:hover {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.upload-box.dragover {
  border-color: #2563eb;
  background: #eef4ff;
}

.upload-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.upload-text {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.upload-sub {
  font-size: 12px;
  color: #6b7280;
}

.upload-preview img {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: .35s ease;
}

.upload-preview img.show {
  opacity: 1;
  transform: translateY(0);
}

.replace-btn {
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #2563eb;
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.replace-btn:hover {
  background: #1e40af;
}

.upload-error {
  margin-top: 8px;
  font-size: 12px;
  color: #dc2626;
}

.premium-checkbox input {
  display: none !important;
}

.premium-checkbox .box {
  display: inline-block !important;
  background: #fff !important;
}

#paidVerificationForm {
  flex: 1;
  /* Take remaining height */
  overflow-y: auto;
  /* Scroll inside */
  padding-right: 10px;
  /* Prevent scrollbar overlap */
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#paidVerificationForm label {
  grid-column: span 2;
}

.upload-box,
.premium-checkbox,
.pay-btn.primary,
.secure-text {
  grid-column: span 2;
}

#paymentFormSection .pay-btn.primary {
  margin-top: auto;
  /* pushes button to bottom */
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #111, #000);
  color: #fff !important;
  font-weight: 800;
  border: none;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .4);
  position: relative;
  z-index: 10;
}

.premium-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
}

.premium-checkbox input {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}

.premium-checkbox input:checked {
  background: #2563eb;
  border-color: #2563eb;
}

.premium-checkbox input:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

#paymentFormSection .pay-btn.primary {
  position: sticky;
  bottom: 0;
  margin-top: 20px;
  background: #000 !important;
  color: #fff !important;
  padding: 16px;
  border-radius: 14px;
  font-weight: 800;
  z-index: 20;
}

.premium-checkbox {
  position: relative;
  z-index: 50;
}

.premium-checkbox input {
  cursor: pointer;
  pointer-events: auto;
}

/* ========= VERIFY MODAL FIX: NO DISAPPEARING BUTTON ========= */

.payment-form-card {
  width: 980px;
  max-width: 95%;
  height: 88vh;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* make only the body scroll */
#paidVerificationForm {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* scrolling part */
.verify-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 60px 18px;
}

/* sticky footer always visible */
.verify-footer {
  padding: 14px 60px 18px;
  background: #fff;
  border-top: 1px solid #eef2f7;
  position: sticky;
  bottom: 0;
  z-index: 50;
}

/* locked fields look */
#paidVerificationForm input[readonly] {
  background: #f3f4f6 !important;
  cursor: not-allowed;
  color: #111827;
}

/* FORCE checkbox to work + visible tick (SAFE VERSION) */

.confirm-line {
  display: flex;
  align-items: center;
  gap: 12px;
  /* proper spacing */
  font-size: 14px;
  color: #111827;
  margin-bottom: 14px;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Blue premium checkbox */
.confirm-line input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2563eb;
  /* Blue strip color */
  cursor: pointer;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow text selection inside inputs globally (safe fix) */
input,
textarea {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* FORCE button visible */
#paymentFormSection .pay-btn.primary {
  display: block !important;
  width: 100% !important;
  padding: 16px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #111, #000) !important;
  color: #fff !important;
  font-weight: 800 !important;
  border: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35) !important;
}

/* optional hover */
#paymentFormSection .pay-btn.primary:hover {
  transform: translateY(-2px);
}

/* ===== RAZORPAY STYLE BLUE STRIP ===== */

.razor-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #2563eb, #1e40af);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* ===== CHECKOUT PRICE COLOR FIX ===== */

.left-section .price,
.left-section h3,
.left-section .checkout-price,
.left-section .amount {
  color: #111111 !important;
  font-weight: 800;
}

/* ===== CHECKOUT PRIMARY BUTTON (BLUE) ===== */

.proceed-btn {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff !important;
  border: none;
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.proceed-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

/* =====================
   PREMIUM STEP SLIDER
===================== */

.premium-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 25px 0 30px;
}

.premium-steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
}

.premium-steps .circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 6px;
  transition: 0.3s ease;
}

/* Completed steps */
.premium-steps .completed .circle {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
}

.premium-steps .completed span {
  color: #2563eb;
}

/* Active step */
.premium-steps .active .circle {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.premium-steps .active span {
  color: #111827;
}

/* Connecting lines */
.premium-steps .line {
  width: 60px;
  height: 2px;
  background: #e5e7eb;
}

.premium-steps .line.completed {
  background: #2563eb;
}

.premium-steps .line.active {
  background: linear-gradient(90deg, #2563eb, #1e40af);
}

/* =====================
   BLACK PREMIUM BUTTON
===================== */

.proceed-btn {
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.proceed-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.proceed-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* =====================
   PREMIUM TOAST
===================== */

.toast {
  position: fixed;
  top: 30px;
  right: 30px;
  background: #111111;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 999999;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* =====================
   PREMIUM CHECKBOX ALIGN FIX
===================== */

.premium-checkbox {
  display: flex;
  align-items: center;
  /* vertical center */
  gap: 16px;
  /* more space between box and text */
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 14px;
  background: #f9fafb;
}

.premium-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Visible Box */
.premium-checkbox .custom-box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 6px;
  border: 2px solid #cbd5e1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

/* Blue when checked */
.premium-checkbox input:checked+.custom-box {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border-color: #2563eb;
}

/* Tick */
.premium-checkbox .custom-box::after {
  content: "";
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}

.premium-checkbox input:checked+.custom-box::after {
  transform: rotate(45deg) scale(1);
}

/* Text */
.checkbox-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.4;
}

/* =============================
   PREMIUM SUCCESS POPUP
============================= */

.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  animation: fadeIn 0.3s ease;
}

.popup-box {
  width: 420px;
  background: #0f1115;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  animation: scaleIn 0.4s ease;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

/* Animated Tick */
.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.success-icon svg {
  width: 80px;
  height: 80px;
}

.success-icon circle {
  stroke: #22c55e;
  stroke-width: 2;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle 0.6s ease forwards;
}

.success-icon path {
  stroke: #22c55e;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawTick 0.4s ease forwards;
  animation-delay: 0.6s;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0
  }
}

@keyframes drawTick {
  to {
    stroke-dashoffset: 0
  }
}

.success-text {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.success-highlight {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  padding: 14px;
  border-radius: 12px;
  font-size: 13px;
  margin-bottom: 25px;
}

/* Button */
.success-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
  margin-bottom: 12px;
}

.success-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.close-btn {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 13px;
  cursor: pointer;
}

.close-btn:hover {
  color: #ffffff;
}

/* =======================
   FORCE VERIFY FORM TEXT BLACK
======================= */

.payment-form-card input,
.payment-form-card select,
.payment-form-card textarea {
  color: #111 !important;
  background: #f8f9fb !important;
}

.payment-form-card input::placeholder {
  color: #888 !important;
}

.payment-form-card label {
  color: #222 !important;
}

/* ======================
   PREMIUM SUCCESS POPUP
====================== */

.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.success-popup.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.success-card {
  background: #ffffff;
  width: 480px;
  max-width: 95%;
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.4s ease;
}

.success-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border-radius: 16px 16px 0 0;
}

/* Animated Tick */

.success-icon {
  margin: 10px auto 20px;
  width: 70px;
  height: 70px;
}

.success-icon svg {
  width: 70px;
  height: 70px;
}

.success-circle {
  stroke: #22c55e;
  stroke-width: 4;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle 0.6s ease forwards;
}

.success-check {
  stroke: #22c55e;
  stroke-width: 4;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawCheck 0.4s ease 0.6s forwards;
}

/* Text */

.success-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.success-sub {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.success-status {
  background: #ecfdf5;
  color: #065f46;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 20px;
}

/* Summary */

.success-summary {
  text-align: left;
  background: #f9fafb;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.success-summary h4 {
  margin-bottom: 8px;
  font-size: 14px;
  color: #111;
}

.success-summary p {
  margin: 4px 0;
  font-size: 13px;
  color: #333;
}

/* Button */

.success-btn {
  display: block;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.success-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Animations */

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ======================
   PREMIUM SUCCESS
====================== */

.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.success-popup.active {
  display: flex;
}

.success-card {
  background: #ffffff;
  width: 500px;
  max-width: 95%;
  border-radius: 18px;
  padding: 50px 40px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
  animation: popIn 0.35s ease;
}

.success-strip {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

/* Close button */

.success-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none !important;
  border: none;
  font-size: 20px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: 0.2s ease;
}

.success-close:hover {
  color: #2563eb;
  transform: scale(1.1);
}

/* Animated Tick Fix */

.success-icon svg {
  width: 90px;
  height: 90px;
}

.success-circle {
  fill: none;
  /* REMOVE GREEN BACKGROUND */
  stroke: #22c55e;
  stroke-width: 4;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle 0.6s ease forwards;
}

.success-check {
  fill: none;
  stroke: #22c55e;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawCheck 0.4s ease 0.6s forwards;
}

/* Text */

.success-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.success-sub {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.success-status {
  background: #ecfdf5;
  color: #065f46;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 20px;
}

.success-summary {
  text-align: left;
  background: #f9fafb;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.success-summary h4 {
  margin-bottom: 8px;
  font-size: 14px;
}

.success-summary p {
  margin: 4px 0;
  font-size: 13px;
}

/* Button */

.success-btn {
  display: block;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.success-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

/* Animations */

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== FORCE SUCCESS BLUE STRIP ===== */

.success-popup .popup-box {
  position: relative !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  /* IMPORTANT for curved strip */
  background: #ffffff !important;
}

/* Blue strip forced */
.success-popup .popup-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #2563eb, #3b82f6) !important;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  z-index: 2;
}

/* ===== FORCE PREMIUM ANIMATED TICK ===== */

.success-icon {
  margin-bottom: 20px;
}

.success-icon svg {
  width: 90px;
  height: 90px;
}

.success-circle {
  fill: none !important;
  /* REMOVE GREEN BACKGROUND */
  stroke: #22c55e !important;
  stroke-width: 4;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle 0.6s ease forwards;
}

.success-check {
  fill: none !important;
  stroke: #22c55e !important;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawCheck 0.4s ease 0.6s forwards;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

/* ================================
   FORCE BLUE FOCUS (NO GREEN)
================================ */

input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  border-color: #2563eb !important;
  /* Razor blue */
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18) !important;
}

.right-section input:focus {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18) !important;
}

/* ================================
   PROCEED BUTTON → RAZOR BLUE
================================ */

.proceed-btn,
#coBtn {
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.35) !important;
  font-weight: 700;
}

.proceed-btn:hover,
#coBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.45) !important;
}

/* ================================
   SECURE BADGE → BLUE THEME
================================ */

.secure-badge,
.security-wrapper .secure-badge {
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35) !important;
}

.secure-badge::before {
  background: #ffffff !important;
}

/* ================================
   SUBMIT PROOF BUTTON → BLUE
================================ */

.pay-btn.primary,
button.pay-btn.primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.35) !important;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pay-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.45) !important;
}

/* ================================
   VERIFY PAGE SUBMIT BUTTON → BLUE
================================ */

.verify-footer .pay-btn,
#pfSubmitBtn,
button#pfSubmitBtn {
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.35) !important;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.verify-footer .pay-btn:hover,
#pfSubmitBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 65px rgba(37, 99, 235, 0.45) !important;
}

/* ================================
   PREMIUM BUTTON LOADER
================================ */

.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.9;
}

.btn-loading .btn-text {
  visibility: hidden;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  border-top: 2.5px solid #ffffff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================
   FORCE BLUE PRIMARY BUTTON
========================= */

.pay-btn.primary {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  cursor: pointer;

  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;

  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
  transition: all 0.2s ease;
}

.pay-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.5);
}

.pay-btn.primary:active {
  transform: scale(0.98);
}

.loader {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================
   FORCE BLUE PRIMARY BUTTON
========================= */

.pay-btn.primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35) !important;
}

.pay-btn.primary:hover {
  box-shadow: 0 25px 55px rgba(37, 99, 235, 0.55) !important;
}

/* FIX BUTTON SPINNER */
.btn-loading span {
  opacity: 0;
}

.btn-loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* =========================
   FORCE WHITE TEXT INSIDE BLUE BUTTON
========================= */

#coBtn,
#coBtn span,
.proceed-btn,
.proceed-btn span {
  color: #ffffff !important;
}

/* ================= PREMIUM COMPARISON (LUXURY VERSION) ================= */

.comparison-section {
  padding: 150px 20px;
  text-align: center;
}

/* ===== LUXURY GOLD HEADING ===== */

.comparison-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 80px;

  background: linear-gradient(90deg, #f5d27a, #f5d27a, #f5d27a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 12px rgba(255, 215, 106, 0.4),
    0 0 25px rgba(255, 180, 0, 0.2);

  position: relative;
}

/* ===========================
   PREMIUM GOLD COMPARISON
=========================== */

.compare-title {
  text-align: center;
  font-size: 30px;
  letter-spacing: 3px;
  color: #f5c76b;
  margin: 70px 0 35px;
  font-weight: 600;
  text-transform: uppercase;
}

.premium-compare {
  max-width: 1150px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.compare-table {
  background: linear-gradient(145deg,
      rgba(15, 15, 20, 0.95),
      rgba(25, 20, 10, 0.9));
  border: 1px solid rgba(245, 199, 107, 0.4);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 24px 35px;
  align-items: center;
  border-bottom: 1px solid rgba(245, 199, 107, 0.08);
  color: #e5e5e5;
  font-size: 15px;
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-head {
  background: rgba(245, 199, 107, 0.05);
  font-weight: 600;
  color: #f5c76b;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.compare-footer {
  background: rgba(245, 199, 107, 0.05);
  font-weight: 600;
  color: #f5c76b;
}

/* GOLD CHECK MARK */
.yes {
  color: #f5c76b;
  font-weight: 600;
}

/* Muted dash */
.no {
  color: #555;
}

/* Subtle hover */
.compare-row:not(.compare-head):hover {
  background: rgba(245, 199, 107, 0.04);
  transition: 0.3s ease;
}

/* =========================
   PREMIUM LOCK MODE (ERROR-FREE)
========================= */

/* Disable text selection */
* {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

/* Allow typing inside inputs */
input,
textarea {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* Remove blue highlight selection */
::selection {
  background: transparent !important;
  color: inherit !important;
}

/* Disable image drag (safe version) */
img {
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Blur page if DevTools detected */
body.devtools-open {
  filter: blur(8px);
  transition: filter 0.3s ease;
}

/* ===========================
   PREMIUM SUCCESS MODAL
=========================== */

.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 25, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.25s ease forwards;
}

.success-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  width: 420px;
  max-width: 92%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  animation: popUp 0.35s cubic-bezier(.2, .9, .3, 1.3);
}

.success-card h2 {
  font-size: 24px;
  margin-bottom: 14px;
  font-weight: 700;
  color: #111827;
}

.success-card p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* Premium Button */
.success-btn {
  background: linear-gradient(135deg, #5865F2, #7b88ff);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 12px 30px rgba(88, 101, 242, 0.35);
}

.success-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(88, 101, 242, 0.45);
}

/* ===========================
   ANIMATED CHECKMARK
=========================== */

.success-check {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}

.check-svg {
  width: 80px;
  height: 80px;
}

.check-circle {
  stroke: #22c55e;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle 0.6s ease forwards;
}

.check-mark {
  stroke: #22c55e;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawMark 0.4s ease forwards;
  animation-delay: 0.6s;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawMark {
  to {
    stroke-dashoffset: 0;
  }
}

/* Animations */
@keyframes popUp {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =========================
   PREMIUM SERVICE SUCCESS UI
========================= */

.premium-success {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.success-card {
  width: 420px;
  background: #ffffff;
  border-radius: 22px;
  padding: 40px 35px;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
  animation: successPop 0.35s ease;
}

@keyframes successPop {
  from {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.success-check {
  width: 70px;
  height: 70px;
  background: #16c784;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 10px 25px rgba(22, 199, 132, 0.5);
}

.success-card h2 {
  color: #111;
  font-size: 22px;
  margin-bottom: 8px;
}

.success-sub {
  color: #555;
  font-size: 14px;
  margin-bottom: 22px;
}

.success-divider {
  height: 1px;
  background: #eee;
  margin: 20px 0;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.discord-join-btn {
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #5865F2, #4752c4);
  color: #fff;
  box-shadow: 0 15px 35px rgba(88, 101, 242, 0.4);
  transition: all 0.2s ease;
}

.discord-join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(88, 101, 242, 0.6);
}

.success-close-btn {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #f1f1f1;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.success-close-btn:hover {
  background: #e3e3e3;
}

/* =========================
   PREMIUM SERVICE SUCCESS UI
========================= */

.premium-success {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.success-card {
  width: 420px;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
  animation: fadeUp 0.3s ease;
}

.success-check {
  width: 70px;
  height: 70px;
  background: #16c784;
  color: white;
  font-size: 34px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.discord-join-btn {
  display: block;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5865F2, #4752c4);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.discord-join-btn:hover {
  transform: translateY(-2px);
}

.success-close-btn {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #f1f1f1;
  font-weight: 600;
  cursor: pointer;
}
/* =====================
   PREMIUM PRELOADER
===================== */

body.preloading {
  overflow: hidden;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;

  /* extra dark + premium gradients */
  background:
    radial-gradient(900px 500px at 50% 35%, rgba(140, 100, 255, 0.18), transparent 60%),
    radial-gradient(700px 420px at 40% 60%, rgba(0, 180, 255, 0.10), transparent 60%),
    rgba(0, 0, 0, 0.78);

  /* blur behind */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  opacity: 1;
  visibility: visible;
  transition: opacity 450ms ease, visibility 450ms ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: translateY(-4px);
}

.preloader-logo {
  width: 92px;
  height: auto;
  filter: drop-shadow(0 0 22px rgba(88, 101, 242, 0.45));
  animation: logoFloat 1.8s ease-in-out infinite;
}

@keyframes logoFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0.92; }
  50%  { transform: translateY(-10px) scale(1.03); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0.92; }
}

.preloader-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
  border-top-color: rgba(255,255,255,0.72);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .preloader-logo { animation: none; }
  .preloader-ring { animation: none; }
  #preloader { transition: none; }
}
