/* ==========================================================================
   IKO - ICO & Cryptocurrency Token Landing Page Stylesheet
   Faithful recreation of https://ikocoin.app/
   ========================================================================== */

/* --------------------------------------------------
   1. CSS Variables & Design Tokens
-------------------------------------------------- */
:root {
  --primary-purple: #7942fa;
  --secondary-purple: #9b51e0;
  --accent-cyan: #00f2fe;
  --accent-blue: #4facfe;
  --bg-dark-1: #0b071b;
  --bg-dark-2: #120c29;
  --bg-black-2: #080514;
  --card-bg: rgba(26, 17, 56, 0.7);
  --card-border: rgba(121, 66, 250, 0.25);
  --card-hover-border: rgba(0, 242, 254, 0.5);
  
  --text-white: #ffffff;
  --text-muted: #a3a0b5;
  --text-dim: #706b88;
  --text-bright-cyan: #38ef7d;
  
  --gradient-btn: linear-gradient(90deg, #7942fa 0%, #00f2fe 100%);
  --gradient-btn-hover: linear-gradient(90deg, #00f2fe 0%, #7942fa 100%);
  --gradient-btn-two: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  --gradient-hero: radial-gradient(circle at top center, #2e1065 0%, #110827 50%, #080514 100%);
  --gradient-accent: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  --transition-fast: 0.25s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 25px rgba(121, 66, 250, 0.4);
  --box-shadow-glow: 0 10px 30px rgba(121, 66, 250, 0.35);
  --box-shadow-cyan: 0 10px 30px rgba(0, 242, 254, 0.25);
}

/* Blurry Balance Effect when logged out */
.balance-blurry {
  filter: blur(7px) !important;
  user-select: none !important;
  pointer-events: none !important;
  opacity: 0.65 !important;
  transition: filter 0.4s ease, opacity 0.4s ease !important;
}

.balance-lock-badge {
  font-size: 10px !important;
  font-weight: 800 !important;
  color: #00f2fe !important;
  background: rgba(121, 66, 250, 0.4) !important;
  border: 1px solid rgba(0, 242, 254, 0.6) !important;
  padding: 2px 8px !important;
  border-radius: 12px !important;
  margin-left: 6px !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

/* Product Format Badge Styling */
.service-format-badge {
  background: rgba(121, 66, 250, 0.12);
  border: 1px dashed rgba(0, 242, 254, 0.35);
  border-radius: 8px;
  padding: 8px 12px;
  margin: 10px 0 14px 0;
  font-size: 11.5px;
  color: #a4b0be;
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  word-break: break-word;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.service-clean-card:hover .service-format-badge {
  background: rgba(0, 242, 254, 0.08);
  border-color: rgba(0, 242, 254, 0.6);
}

.service-format-badge .format-label {
  color: #00f2fe;
  font-weight: 800;
  margin-right: 4px;
}

/* Purple Tooltip Box for Format Badge */
.format-info-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  color: #22c55e;
  font-size: 13.5px;
  cursor: pointer;
  vertical-align: middle;
  transition: transform 0.2s ease, color 0.2s ease;
}

.format-info-tooltip:hover {
  color: #4ade80;
  transform: scale(1.25);
}

.format-info-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 135%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(20, 10, 48, 0.96);
  color: #e9d5ff;
  border: 1.5px solid rgba(168, 85, 247, 0.75);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  white-space: normal;
  width: 220px;
  text-align: center;
  line-height: 1.45;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.85), 0 0 20px rgba(168, 85, 247, 0.4);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 99;
}

.format-info-tooltip:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.format-info-tooltip::before {
  content: '';
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(168, 85, 247, 0.8) transparent transparent transparent;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 100;
}

.format-info-tooltip:hover::before {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------
   2. Reset & Global Base
-------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-1);
  color: var(--text-muted);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body.home-purple-gradient {
  background: var(--bg-dark-1);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img, svg {
  max-width: 100%;
  display: block;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.custom-container {
  max-width: 1320px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-sm-auto { flex: 0 0 auto; width: auto; }
}

@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
  .flex-row-reverse { flex-direction: row-reverse; }
}

@media (min-width: 1200px) {
  .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
  .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}

@media (min-width: 1400px) {
  .col-xxl-6 { flex: 0 0 50%; max-width: 50%; }
  .col-xxl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
}

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.text-center { text-align: center; }
.position-relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-100 { width: 100%; }
.mb-0 { margin-bottom: 0 !important; }
.mb-25 { margin-bottom: 25px; }
.mb-45 { margin-bottom: 45px; }
.mb-50 { margin-bottom: 50px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }
.pt-130 { padding-top: 130px; }
.pb-100 { padding-bottom: 100px; }
.pb-130 { padding-bottom: 130px; }
.pb-140 { padding-bottom: 140px; }
.pt-140 { padding-top: 140px; }
.bg-black2 { background-color: var(--bg-black-2); }
.z-index-common { z-index: 2; }

/* --------------------------------------------------
   3. Preloader & Scroll Top
-------------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark-1);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  animation: autoHidePreloader 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

#preloader.fade-out {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@keyframes autoHidePreloader {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}

.spinner {
  display: flex;
  gap: 6px;
  height: 45px;
}

.spinner > div {
  background: linear-gradient(180deg, var(--accent-cyan), var(--primary-purple));
  height: 100%;
  width: 6px;
  border-radius: 4px;
  animation: spinner-wave 1.2s infinite ease-in-out;
}

.spinner .rect2 { animation-delay: -1.1s; }
.spinner .rect3 { animation-delay: -1.0s; }
.spinner .rect4 { animation-delay: -0.9s; }
.spinner .rect5 { animation-delay: -0.8s; }

@keyframes spinner-wave {
  0%, 40%, 100% { transform: scaleY(0.4); }
  20% { transform: scaleY(1.0); }
}

.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 99;
  box-shadow: var(--box-shadow-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-cyan);
}

/* --------------------------------------------------
   4. Header & Navigation
-------------------------------------------------- */
.header-layout1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.menu-area {
  padding: 22px 0;
  transition: all 0.35s ease;
}

.menu-area.sticky {
  padding: 14px 0;
  background: rgba(11, 7, 27, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(121, 66, 250, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.menu-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
}

.logo-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.logo-dot {
  color: var(--accent-cyan);
}

.main-menu {
  display: flex;
  align-items: center;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navigation > li {
  position: relative;
}

.navigation > li > a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.navigation > li > a:hover,
.navigation > li.active > a {
  color: var(--accent-cyan);
}

.nav-arrow {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.menu-item-has-children:hover .nav-arrow {
  transform: rotate(180deg);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #150e33;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 12px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.sub-menu li a:hover,
.sub-menu li.active a {
  color: var(--accent-cyan);
  background: rgba(121, 66, 250, 0.15);
  padding-left: 24px;
}

.header-action .list-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dropdown-link {
  position: relative;
}

.dropdown-toggle {
  color: var(--text-white);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #170e38;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 6px 0;
  min-width: 100px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.dropdown-link.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.dropdown-menu li a:hover {
  color: var(--accent-cyan);
  background: rgba(121, 66, 250, 0.2);
}

.mobile-nav-toggler {
  display: none;
  font-size: 22px;
  color: var(--text-white);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #100a26;
  z-index: 10000;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
}

.mobile-menu.open {
  right: 0;
}

.menu-box {
  padding: 30px 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.close-btn {
  align-self: flex-end;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  margin-bottom: 20px;
}

.close-btn:hover {
  color: var(--text-white);
}

.mobile-navigation {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-link:hover {
  color: var(--accent-cyan);
  padding-left: 6px;
}

.mobile-actions {
  margin-top: 30px;
}

.social-links {
  margin-top: auto;
  padding-top: 30px;
}

.social-links .list-wrap {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.social-links a:hover {
  background: var(--primary-purple);
  color: #fff;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .main-menu, .header-login {
    display: none;
  }
  .mobile-nav-toggler {
    display: block;
  }
}

/* --------------------------------------------------
   5. Buttons & Badges
-------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn2 {
  background: var(--gradient-btn);
  color: #ffffff;
  box-shadow: var(--box-shadow-glow);
}

.btn2:hover {
  background: var(--gradient-btn-hover);
  box-shadow: var(--box-shadow-cyan);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-two {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-two:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

.btn3 {
  background: rgba(36, 20, 80, 0.75);
  color: var(--text-white);
  border: 1px solid rgba(121, 66, 250, 0.4);
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.btn3:hover {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  box-shadow: 0 8px 25px rgba(121, 66, 250, 0.55);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
}

/* --------------------------------------------------
   6. Hero Area & Ripple Shapes
-------------------------------------------------- */
.hero-wrapper.hero-1 {
  position: relative;
  padding-top: 80px;
  padding-bottom: 120px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 10%, #201048 0%, #0d0822 60%, #080514 100%);
}

.hero-bg-gradient {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(121, 66, 250, 0.25) 0%, rgba(0, 242, 254, 0.08) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

/* 5 Concentric Ripple Wave Shapes */
.ripple-shape {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  pointer-events: none;
  z-index: 1;
}

.ripple-shape span {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgba(121, 66, 250, 0.2);
  animation: ripple-pulse 6s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ripple-shape .ripple-1 { width: 300px; height: 300px; animation-delay: 0s; }
.ripple-shape .ripple-2 { width: 480px; height: 480px; animation-delay: 1.2s; }
.ripple-shape .ripple-3 { width: 660px; height: 660px; animation-delay: 2.4s; }
.ripple-shape .ripple-4 { width: 840px; height: 840px; animation-delay: 3.6s; }
.ripple-shape .ripple-5 { width: 1020px; height: 1020px; animation-delay: 4.8s; }

@keyframes ripple-pulse {
  0% { transform: scale(0.9); opacity: 0.4; }
  50% { transform: scale(1.03); opacity: 0.15; }
  100% { transform: scale(0.9); opacity: 0.4; }
}

.hero-style1 {
  position: relative;
  z-index: 3;
  margin-bottom: 60px;
}

.hero-title {
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 35px;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* 3D Floating Token Graphic */
.token-3d-visual {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alltuchtopdown {
  animation: float-bob 4s ease-in-out infinite alternate;
}

@keyframes float-bob {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-16px); }
}

.token-glow-halo {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.4) 0%, rgba(121, 66, 250, 0.3) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(25px);
}

.token-core-coin {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coin-svg {
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
  animation: coin-spin 12s linear infinite;
}

@keyframes coin-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.orbiting-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(0, 242, 254, 0.4);
}

.ring-1 {
  width: 230px;
  height: 230px;
  border-color: rgba(121, 66, 250, 0.4);
  transform: rotateX(65deg) rotateY(15deg);
  animation: ring-rotate 10s linear infinite;
}

.ring-2 {
  width: 260px;
  height: 260px;
  border-color: rgba(0, 242, 254, 0.35);
  transform: rotateX(65deg) rotateY(-20deg);
  animation: ring-rotate-rev 14s linear infinite;
}

@keyframes ring-rotate {
  0% { transform: rotateX(65deg) rotateY(15deg) rotateZ(0deg); }
  100% { transform: rotateX(65deg) rotateY(15deg) rotateZ(360deg); }
}

@keyframes ring-rotate-rev {
  0% { transform: rotateX(65deg) rotateY(-20deg) rotateZ(360deg); }
  100% { transform: rotateX(65deg) rotateY(-20deg) rotateZ(0deg); }
}

.floating-badge {
  position: absolute;
  background: rgba(18, 12, 41, 0.85);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.floating-badge i {
  color: var(--accent-cyan);
}

.badge-top-left {
  top: 10px;
  left: -20px;
}

.badge-bottom-right {
  bottom: 10px;
  right: -20px;
}

/* --------------------------------------------------
   7. Hero Countdown & Progress Banner
-------------------------------------------------- */
.hero-countdown-wrap {
  position: relative;
  z-index: 3;
  background: rgba(22, 14, 48, 0.7);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 45px 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-countdown-wrap-title {
  font-size: 32px;
  margin-bottom: 25px;
  text-align: center;
}

.skill-feature_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

.skill-feature_list li span {
  color: var(--accent-cyan);
}

.skill-feature_list li h4 {
  font-size: 18px;
  color: var(--accent-cyan);
}

.skill-feature_list.style2 {
  margin-top: 14px;
  margin-bottom: 35px;
  color: var(--text-muted);
  font-size: 13px;
}

.skill-feature {
  position: relative;
}

.progress {
  height: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-btn);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.6);
  transition: width 0.6s ease;
}

.progress-value-max {
  position: absolute;
  right: 0;
  top: -24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-cyan);
}

.progress-value {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-dim);
}

.banner-countdown-wrap {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.coming-time {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.time-count {
  background: rgba(11, 7, 27, 0.8);
  border: 1px solid rgba(121, 66, 250, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 26px;
  min-width: 90px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.count-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.count-title {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: 600;
}

/* --------------------------------------------------
   8. Brand / Partner Area 2
-------------------------------------------------- */
.brand-area2 {
  padding: 60px 0;
  border-top: 1px solid rgba(121, 66, 250, 0.15);
  border-bottom: 1px solid rgba(121, 66, 250, 0.15);
  background: rgba(14, 9, 34, 0.6);
}

.brand-title .title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 30px;
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.brand-item {
  flex: 1 1 120px;
  max-width: 160px;
  text-align: center;
}

.brand-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.brand-badge:hover {
  border-color: var(--accent-cyan);
  color: var(--text-white);
  background: rgba(121, 66, 250, 0.15);
  transform: translateY(-3px);
}

.brand-badge i {
  color: var(--accent-cyan);
  font-size: 16px;
}

/* --------------------------------------------------
   9. Section Title Standards
-------------------------------------------------- */
.section-title .title.style2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title .sec-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------
   10. Why Choose Us (WCU) Area
-------------------------------------------------- */
.wcu-area-1 {
  position: relative;
  background: var(--bg-dark-1);
}

.gradient-radial-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.glow-left {
  top: 10%;
  left: -200px;
  background: radial-gradient(circle, rgba(121, 66, 250, 0.2) 0%, transparent 70%);
}

.glow-right {
  top: 20%;
  right: -200px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 70%);
}

.glow-footer {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(121, 66, 250, 0.25) 0%, transparent 70%);
}

.calculator-glow-card {
  display: inline-flex;
  padding: 20px;
}

.calc-badge-glow {
  background: rgba(121, 66, 250, 0.15);
  border: 1px solid var(--accent-cyan);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-cyan);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.3);
}

.wcu-amount-quantity {
  display: flex;
  background: rgba(22, 14, 48, 0.7);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 22px 30px;
  margin-bottom: 30px;
  justify-content: space-between;
}

.wcu-amount-quantity .amount,
.wcu-amount-quantity .quantity {
  flex: 1;
}

.wcu-amount-quantity .title {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.wcu-amount-quantity .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
  font-family: var(--font-heading);
}

.wcu-price-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.slider-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.progress-wrap-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
}

.progress-wrap-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-cyan);
  font-family: var(--font-heading);
}

.custom-range-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  outline: none;
  margin-bottom: 10px;
  cursor: pointer;
}

.custom-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.8);
  cursor: pointer;
  border: 2px solid #fff;
}

.feature-card {
  display: flex;
  gap: 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(121, 66, 250, 0.2);
  border: 1px solid rgba(121, 66, 250, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent-cyan);
}

.feature-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card-text {
  font-size: 15px;
  color: var(--text-muted);
}

.feature-card-text.highlight-value {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}

.feature-card-text.roi-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(56, 239, 125, 0.15);
  border: 1px solid rgba(56, 239, 125, 0.3);
  color: var(--text-bright-cyan);
  font-weight: 700;
  font-size: 13px;
}

/* --------------------------------------------------
   11. Intro / About Area
-------------------------------------------------- */
.intro-wrap {
  margin-bottom: 30px;
}

.intro-wrap-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.intro-icon {
  color: var(--accent-cyan);
}

.intro-wrap-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.glass-feature-banner {
  background: linear-gradient(135deg, rgba(35, 20, 75, 0.7) 0%, rgba(18, 10, 42, 0.8) 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.banner-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.glass-feature-banner h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.glass-feature-banner p {
  font-size: 14px;
  margin-bottom: 24px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-box {
  background: rgba(11, 7, 27, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
}

.metric-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-cyan);
}

.metric-lbl {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* --------------------------------------------------
   12. RoadMap Slider Area 2
-------------------------------------------------- */
.icon-box {
  display: flex;
  gap: 12px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  box-shadow: 0 0 15px rgba(121, 66, 250, 0.5);
}

.roadmap-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 4px 40px 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-purple) transparent;
}

.roadmap-track::-webkit-scrollbar {
  height: 6px;
}

.roadmap-track::-webkit-scrollbar-thumb {
  background: var(--primary-purple);
  border-radius: 4px;
}

.roadmap-item-card {
  flex: 0 0 320px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
  transition: all 0.35s ease;
}

.roadmap-item-card:hover,
.roadmap-item-card.active {
  border-color: var(--accent-cyan);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.roadmap-title {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.roadmap-content .title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.roadmap-content .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}

.roadmap-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------
   13. Invest Section
-------------------------------------------------- */
.invest-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  transition: all 0.35s ease;
}

.invest-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.crypto-icon-box {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btc-icon { background: rgba(247, 147, 26, 0.15); color: #f7931a; border-color: rgba(247, 147, 26, 0.3); }
.eth-icon { background: rgba(98, 126, 234, 0.15); color: #627eea; border-color: rgba(98, 126, 234, 0.3); }
.bank-icon { background: rgba(0, 242, 254, 0.15); color: #00f2fe; border-color: rgba(0, 242, 254, 0.3); }
.uxc-icon { background: rgba(38, 161, 123, 0.15); color: #26a17b; border-color: rgba(38, 161, 123, 0.3); }

.fb-icon { 
  background: radial-gradient(circle, rgba(24, 119, 242, 0.22) 0%, rgba(24, 119, 242, 0.08) 100%); 
  color: #1877f2; 
  border-color: rgba(24, 119, 242, 0.45); 
  box-shadow: 0 0 24px rgba(24, 119, 242, 0.25); 
}
.hotmail-icon { background: rgba(255, 122, 0, 0.15); color: #ff7a00; border-color: rgba(255, 122, 0, 0.35); }
.outlook-icon { background: rgba(155, 81, 224, 0.15); color: #9b51e0; border-color: rgba(155, 81, 224, 0.35); }
.key-icon { background: rgba(0, 242, 254, 0.15); color: #00f2fe; border-color: rgba(0, 242, 254, 0.35); }

.invest-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stock-indicator-tag {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 20px;
}

.stock-indicator-tag.stock-zero {
  color: #ff4757;
}

.gy-30 {
  row-gap: 30px;
}

/* --------------------------------------------------
   14. Partner Area
-------------------------------------------------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.partner-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.35s ease;
}

.partner-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.partner-svg-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 20px;
}

.partner-icon-gem { color: #f43f5e; font-size: 28px; }
.partner-icon-swap { color: #3b82f6; font-size: 28px; }
.partner-icon-tech { color: #00f2fe; font-size: 28px; }

.partner-card-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  min-height: 44px;
}

/* --------------------------------------------------
   15. FAQ Accordion
-------------------------------------------------- */
.faq-graphic-box {
  background: linear-gradient(135deg, rgba(28, 16, 61, 0.8) 0%, rgba(16, 9, 36, 0.9) 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
}

.faq-icon-orb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent-cyan);
  margin: 0 auto 18px auto;
}

.faq-help-heading {
  font-size: 20px;
  margin-bottom: 8px;
}

.faq-help-p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.accordion-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-card.active {
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.accordion-button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.accordion-button .number {
  color: var(--accent-cyan);
  margin-right: 12px;
}

.acc-icon {
  font-size: 14px;
  color: var(--text-dim);
  transition: transform 0.3s ease;
}

.accordion-card.active .acc-icon {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-card.active .accordion-collapse {
  max-height: 300px;
}

.accordion-body {
  padding: 0 26px 22px 26px;
}

.faq-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------
   16. Footer Area
-------------------------------------------------- */
.footer-wrapper {
  background: #06040f;
  border-top: 1px solid rgba(121, 66, 250, 0.2);
  padding-top: 70px;
}

.footer-menu-area {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.social-btn {
  display: flex;
  gap: 14px;
}

.social-btn a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  transition: all 0.3s ease;
}

.social-btn a:hover {
  background: var(--primary-purple);
  color: #fff;
  border-color: var(--primary-purple);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(121, 66, 250, 0.4);
}

.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

@media (min-width: 992px) {
  .footer-menu-list {
    justify-content: flex-end;
  }
}

.footer-menu-list li a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.footer-menu-list li a:hover {
  color: var(--accent-cyan);
}

.copyright-wrap {
  padding: 30px 0;
}

.copyright-text {
  font-size: 14px;
  color: var(--text-dim);
}

.copyright-text a {
  color: var(--accent-cyan);
  font-weight: 700;
}

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

@media (min-width: 992px) {
  .footer-links {
    justify-content: flex-end;
  }
}

.footer-links li a {
  font-size: 14px;
  color: var(--text-dim);
}

.footer-links li a:hover {
  color: var(--text-white);
}

/* --------------------------------------------------
   17. Modal & Toast Notifications
-------------------------------------------------- */
.custom-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.custom-modal.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 2, 10, 0.85);
  backdrop-filter: blur(8px);
}

.modal-dialog-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #150e33;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  z-index: 2;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.custom-modal.open .modal-dialog-box {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gradient-icon {
  color: var(--accent-cyan);
}

.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

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

.modal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.token-buy-calculator {
  background: rgba(11, 7, 27, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 22px;
}

.input-group-row {
  margin-bottom: 8px;
}

.input-group-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.input-with-select {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}

.input-with-select input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
  outline: none;
}

.input-with-select select {
  background: rgba(121, 66, 250, 0.2);
  border: 1px solid var(--card-border);
  color: var(--text-white);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  font-weight: 600;
  outline: none;
}

.token-pill {
  background: var(--gradient-btn);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
}

.calc-arrow-divider {
  text-align: center;
  color: var(--accent-cyan);
  margin: 6px 0;
  font-size: 14px;
}

.deposit-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 22px;
}

.deposit-label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.copy-address-field {
  display: flex;
  gap: 8px;
}

.copy-address-field input {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: var(--accent-cyan);
  font-size: 13px;
  font-family: monospace;
  outline: none;
}

.copy-success-msg {
  display: none;
  font-size: 12px;
  color: var(--text-bright-cyan);
  margin-top: 6px;
}

.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast-item {
  background: #180f3b;
  border: 1px solid var(--accent-cyan);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slide-in-toast 0.3s ease;
}

@keyframes slide-in-toast {
  from { transform: translateX(-40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* --------------------------------------------------
   18. Service Availability Dashboard Styles
-------------------------------------------------- */
.service-availability-area {
  position: relative;
  padding-top: 110px;
  padding-bottom: 70px;
  background: radial-gradient(circle at 50% 15%, #1c0e3d 0%, #0d0722 55%, #080514 100%);
  border-bottom: 1px solid rgba(121, 66, 250, 0.2);
  overflow: hidden;
}

.service-ambient-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(circle, rgba(121, 66, 250, 0.25) 0%, rgba(255, 107, 0, 0.08) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.service-availability-area .container {
  position: relative;
  z-index: 3;
}

.service-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 35px;
}

.service-availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(18, 12, 42, 0.95);
  border: 1.5px solid rgba(255, 107, 0, 0.5);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.25), inset 0 0 12px rgba(255, 107, 0, 0.1);
}

.service-balance-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b00;
  box-shadow: 0 0 10px #ff6b00, 0 0 20px #ff6b00;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.service-user-balance {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(18, 12, 42, 0.95);
  border: 1px solid rgba(121, 66, 250, 0.35);
  padding: 8px 18px 8px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.balance-icon-tag {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.balance-label {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

.balance-amount {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: 0.5px;
}

.btn-recharge {
  background: rgba(121, 66, 250, 0.2);
  color: #fff;
  border: 1px solid var(--card-border);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.btn-recharge:hover {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  box-shadow: 0 4px 15px rgba(121, 66, 250, 0.4);
  color: #fff;
  transform: translateY(-1px);
}

/* 3-Column Grid matching screenshot */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 576px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
  }
}

.service-item-card {
  background: rgba(16, 11, 38, 0.85);
  border: 1px solid rgba(121, 66, 250, 0.25);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 30px 24px 26px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  position: relative;
}

.service-item-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 0, 0.65);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(255, 107, 0, 0.22);
}

.service-icon-bubble {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.icon-fb {
  background: linear-gradient(135deg, #1877f2 0%, #0d5bbd 100%);
}

.icon-hotmail {
  background: linear-gradient(135deg, #ff7a00 0%, #e65c00 100%);
}

.icon-outlook {
  background: linear-gradient(135deg, #9b51e0 0%, #702cd4 100%);
}

.icon-key {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.service-card-desc {
  font-size: 13px;
  color: #8b88a4;
  line-height: 1.4;
  margin-bottom: 22px;
  min-height: 38px;
}

.service-stock-box {
  margin-top: auto;
  margin-bottom: 18px;
  width: 100%;
}

.stock-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #656180;
  margin-bottom: 4px;
}

.stock-count {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.stock-count.stock-zero {
  color: #ff4757;
}

.btn-service-action {
  width: auto;
  min-width: 140px;
  background: rgba(36, 20, 80, 0.75);
  color: #ffffff;
  border: 1px solid rgba(121, 66, 250, 0.4);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-service-action:hover {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  box-shadow: 0 8px 25px rgba(121, 66, 250, 0.55);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Full-Width Product Layout - Expanded Size (1480px) */
.page-layout-with-sidebars {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 1480px !important;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.main-center-content {
  flex: 1 1 auto;
  max-width: 1480px !important;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  z-index: 2;
}


.sidebar-video-column {
  flex: 0 0 290px;
  width: 290px;
  max-width: 290px;
  min-width: 290px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 140px;
  z-index: 5;
}

.sidebar-video-column.sidebar-left {
  transform: none !important;
  top: 140px;
}

.sidebar-video-column.sidebar-right {
  transform: none !important;
  top: 140px;
}

/* Custom Cyberpunk Video Player Frame */
.custom-video-player-card {
  background: radial-gradient(circle at 50% 0%, rgba(26, 16, 58, 0.98) 0%, rgba(10, 6, 26, 0.98) 100%);
  border: 2px solid rgba(0, 242, 254, 0.45);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 242, 254, 0.15), inset 0 0 25px rgba(0, 0, 0, 0.6);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Hide overlapping sidebars & connector arrows on screens smaller than 1680px */
@media (max-width: 1680px) {
  .sidebar-video-column {
    display: none !important;
  }
  .curved-arrow-connector {
    display: none !important;
  }
  .page-layout-with-sidebars {
    max-width: 1100px;
  }
}

.dotted-curved-path {
  fill: none;
  stroke: #00f2fe;
  stroke-width: 3;
  stroke-dasharray: 6, 6;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.9));
  animation: flowDottedArrow 1.5s linear infinite;
}

@keyframes flowDottedArrow {
  from {
    stroke-dashoffset: 24;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.custom-video-player-card:hover {
  border-color: #00f2fe;
  box-shadow: 0 24px 70px rgba(0, 242, 254, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.6);
  transform: translateY(-5px) scale(1.01);
}

.custom-player-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.custom-player-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  color: #00f2fe;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: var(--font-heading);
}

.custom-player-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #ef4444;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.custom-player-badge .live-dot {
  width: 7px;
  height: 7px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #ef4444;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

.video-responsive-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  border: 2px solid rgba(121, 66, 250, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.video-responsive-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-player-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.video-responsive-wrap:hover .demo-player-img {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.demo-player-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 5;
  pointer-events: none;
}

.demo-play-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 6, 26, 0.88);
  border: 1px solid #00f2fe;
  color: #00f2fe;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4);
}

.player-fullscreen-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.45);
  color: #00f2fe;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.player-fullscreen-btn:hover {
  background: rgba(0, 242, 254, 0.28);
  box-shadow: 0 0 14px rgba(0, 242, 254, 0.5);
  transform: scale(1.12);
  color: #fff;
}

.player-fullscreen-btn:active {
  transform: scale(0.95);
}

.service-clean-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 42px 28px 36px 28px;
  background: radial-gradient(circle at 50% 0%, rgba(30, 18, 68, 0.95) 0%, rgba(14, 10, 36, 0.92) 100%);
  border: 1px solid rgba(121, 66, 250, 0.3);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.5);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 470px;
  justify-content: space-between;
}

.service-clean-title {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.35;
  min-height: 26px;
}

.service-spec-wrapper {
  margin-bottom: 18px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(121, 66, 250, 0.15);
  border: 1px solid rgba(121, 66, 250, 0.35);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 0.3px;
}

.service-spec-badge i {
  font-size: 11px;
}

.service-spec-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.chip-item {
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.25);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.service-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #ff8800;
  letter-spacing: 0.5px;
}

.price-per {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.service-stock-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.stock-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-bright-cyan);
  box-shadow: 0 0 8px var(--text-bright-cyan);
}

/* Card Quantity Stepper & Instant Buy Widget */
.card-buy-widget {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qty-stepper-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 6, 26, 0.75);
  border: 1px solid rgba(121, 66, 250, 0.35);
  border-radius: var(--radius-pill);
  padding: 3px 6px;
  width: 100%;
  max-width: 185px;
  margin: 0 auto;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(121, 66, 250, 0.25);
  border: 1px solid rgba(121, 66, 250, 0.45);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.qty-btn:hover {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  box-shadow: 0 0 12px rgba(121, 66, 250, 0.6);
  transform: scale(1.08);
}

.qty-btn:active {
  transform: scale(0.94);
}

.qty-input-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.card-qty-input {
  width: 42px;
  background: transparent;
  border: none;
  text-align: center;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  outline: none;
  -moz-appearance: textfield;
}

.card-qty-input::-webkit-outer-spin-button,
.card-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-unit {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.card-total-preview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.card-total-preview .total-label {
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.card-total-preview .card-total-val {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent-cyan);
}

.btn-card-buy {
  width: 100%;
  background: rgba(121, 66, 250, 0.22);
  color: #ffffff;
  border: 1.5px solid rgba(121, 66, 250, 0.45);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.btn-card-buy:hover {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  box-shadow: 0 6px 22px rgba(121, 66, 250, 0.55);
  transform: translateY(-2px);
  color: #ffffff;
}

.order-service-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 16px;
}

.order-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.order-service-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
}

.order-service-stock-tag {
  font-size: 12px;
  color: var(--text-muted);
}

.order-pricing-breakdown {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

.price-line strong {
  color: #ffffff;
}

.highlight-cost {
  color: #ff8800 !important;
  font-size: 16px;
}

/* --------------------------------------------------
   19. Order History Dashboard Table
-------------------------------------------------- */
.order-history-wrapper {
  margin-top: 50px;
  width: 100%;
  max-width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}


.order-history-card {
  background: rgba(14, 10, 36, 0.88);
  border: 1px solid rgba(121, 66, 250, 0.25);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 28px 30px 32px 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.order-history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.order-history-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(18, 12, 42, 0.95);
  border: 1.5px solid rgba(255, 107, 0, 0.45);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.18);
}

.order-history-total {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.25);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-cyan);
}

.order-history-total i {
  font-size: 13px;
}

.order-table-responsive {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-purple) transparent;
}

.order-table-responsive::-webkit-scrollbar {
  height: 6px;
}

.order-table-responsive::-webkit-scrollbar-thumb {
  background: var(--primary-purple);
  border-radius: 4px;
}

.order-history-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}

.order-history-table th {
  padding: 14px 18px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6d6988;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  white-space: nowrap;
}

.order-history-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
  white-space: nowrap;
  color: #d2cfdf;
  transition: background 0.2s ease;
}

.order-history-table tbody tr:hover td {
  background: rgba(121, 66, 250, 0.06);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  letter-spacing: 0.3px;
}

.status-not-used {
  background: rgba(255, 71, 87, 0.12);
  color: #ff4757;
  border: 1px solid rgba(255, 71, 87, 0.3);
}

.status-success {
  background: rgba(46, 213, 115, 0.12);
  color: #2ed573;
  border: 1px solid rgba(46, 213, 115, 0.3);
}

.mail-cell {
  font-family: var(--font-body);
  color: #f1f0f6;
  font-weight: 500;
}

.service-tag-fb {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: #ffffff;
  font-size: 13px;
}

.service-tag-fb i {
  color: #1877f2;
  font-size: 14px;
}

.amount-cell {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #ffffff;
}

.otp-cell {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #6e6a88;
}

.otp-cell.otp-highlight {
  color: #ff7a00;
  font-size: 15px;
  letter-spacing: 1px;
}

.date-cell {
  font-family: 'Outfit', monospace, sans-serif;
  color: #8c88a4;
  font-size: 12.5px;
}

.btn-check-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #007d7d;
  border: 1px solid #00a8a8;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 168, 168, 0.25);
}

.btn-check-action:hover {
  background: #00a8a8;
  box-shadow: 0 6px 18px rgba(0, 168, 168, 0.45);
  transform: translateY(-1px);
}

/* --------------------------------------------------
   20. Responsive Media Queries
-------------------------------------------------- */
@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }
  .section-title .title.style2 {
    font-size: 30px;
  }
  .hero-countdown-wrap {
    padding: 30px 20px;
  }
  .time-count {
    padding: 12px 16px;
    min-width: 70px;
  }
  .count-number {
    font-size: 24px;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
/* --------------------------------------------------
   21. Telegram Support & Inventory Manager Styles
-------------------------------------------------- */
@keyframes support-pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.75), 0 6px 20px rgba(46, 213, 115, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(46, 213, 115, 0), 0 6px 22px rgba(46, 213, 115, 0.6);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 213, 115, 0), 0 6px 20px rgba(46, 213, 115, 0.5);
  }
}

.btn-header-telegram {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #2ed573 0%, #10ac84 100%) !important;
  color: #04140b !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.25s ease !important;
  animation: support-pulse-glow 2s infinite !important;
  text-decoration: none !important;
  border: 1.5px solid #7bed9f !important;
}

.btn-header-telegram i {
  color: #04140b !important;
  font-size: 18px !important;
  filter: none !important;
}

.btn-header-telegram:hover {
  background: linear-gradient(135deg, #10ac84 0%, #2ed573 100%) !important;
  transform: translateY(-2px) scale(1.04) !important;
  color: #04140b !important;
}

.btn-header-telegram:hover i {
  color: #051a0e;
  filter: none;
}

/* Excel Spreadsheet Inventory Table Styles */
.modal-dialog-box.modal-xl {
  max-width: 1020px !important;
  width: 95% !important;
}

.excel-table-container {
  overflow-x: auto;
  border-radius: 14px;
  border: 1.5px solid rgba(121, 66, 250, 0.35);
  background: rgba(9, 6, 24, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.excel-grid-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  color: #ffffff;
}

.excel-grid-table th {
  background: linear-gradient(135deg, rgba(30, 20, 68, 0.98) 0%, rgba(18, 12, 42, 0.98) 100%);
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 14px 16px;
  border-bottom: 2px solid rgba(121, 66, 250, 0.45);
  border-right: 1px solid rgba(121, 66, 250, 0.2);
  text-align: left;
}

.excel-grid-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(121, 66, 250, 0.2);
  border-right: 1px solid rgba(121, 66, 250, 0.2);
  vertical-align: middle;
}

.excel-row-num {
  text-align: center;
  font-weight: 900;
  color: var(--accent-cyan);
  background: rgba(121, 66, 250, 0.12);
  font-size: 14px;
}

.excel-prod-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.excel-prod-name strong {
  font-size: 13.5px;
  color: #ffffff;
  font-weight: 700;
}

.excel-prod-name small {
  font-size: 11.5px;
  color: var(--accent-cyan);
  font-weight: 600;
}

.excel-input-group {
  display: flex;
  align-items: center;
  background: rgba(18, 12, 42, 0.95);
  border: 1px solid rgba(121, 66, 250, 0.4);
  border-radius: 8px;
  padding: 0 10px;
}

.currency-symbol {
  color: #2ed573;
  font-weight: 900;
  font-size: 14px;
  margin-right: 4px;
}

.excel-input {
  width: 100%;
  background: rgba(18, 12, 42, 0.9) !important;
  border: 1px solid rgba(121, 66, 250, 0.4) !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  padding: 8px 10px !important;
  outline: none !important;
  transition: all 0.2s ease;
}

.excel-input-group .excel-input {
  background: transparent !important;
  border: none !important;
  padding: 8px 4px !important;
}

.excel-input:focus {
  border-color: var(--accent-cyan) !important;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.3) !important;
}

.excel-warehouse-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.excel-textarea {
  width: 100%;
  background: rgba(6, 4, 16, 0.95) !important;
  border: 1px solid rgba(121, 66, 250, 0.35) !important;
  border-radius: 8px !important;
  color: #7bed9f !important;
  font-family: monospace !important;
  font-size: 11.5px !important;
  padding: 8px !important;
  resize: vertical;
}

.excel-textarea:focus {
  border-color: #2ed573 !important;
  box-shadow: 0 0 12px rgba(46, 213, 115, 0.3) !important;
  outline: none !important;
}

.excel-cell-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.excel-upload-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(0, 242, 254, 0.4);
  color: var(--accent-cyan);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0;
}

/* Top-Up Payment Portal Strict Tab Display */
.topup-tab-content {
  display: none !important;
}

.topup-tab-content.active {
  display: block !important;
}

.excel-upload-label:hover {
  background: var(--accent-cyan);
  color: #04140b;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.5);
}

.excel-count-badge {
  font-size: 11.5px;
  color: #2ed573;
  font-weight: 700;
}

/* Contact Admin Box & Light Blue Telegram Styles */
.admin-tg-bg {
  background: rgba(0, 242, 254, 0.15) !important;
  border-color: rgba(0, 242, 254, 0.35) !important;
  color: #00f2fe !important;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.35) !important;
}

.btn-contact-admin-pill {
  background: rgba(0, 242, 254, 0.18) !important;
  color: #ffffff !important;
  border: 1px solid rgba(0, 242, 254, 0.45) !important;
  padding: 6px 16px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  border-radius: var(--radius-pill) !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.25s ease !important;
}

.btn-contact-admin-pill:hover {
  background: #00f2fe !important;
  border-color: #00f2fe !important;
  box-shadow: 0 4px 18px rgba(0, 242, 254, 0.6) !important;
  color: #06152d !important;
  transform: translateY(-1px) !important;
}

/* Telegram Support Banner */
.telegram-support-banner {
  background: radial-gradient(circle at 15% 50%, rgba(46, 213, 115, 0.18) 0%, rgba(14, 10, 36, 0.95) 75%);
  border: 1px solid rgba(46, 213, 115, 0.35);
  border-radius: 24px;
  padding: 32px 38px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  margin-top: 50px;
}

.support-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.support-left-area {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  min-width: 280px;
}

.support-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(46, 213, 115, 0.2);
  border: 1.5px solid rgba(46, 213, 115, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #2ed573;
  box-shadow: 0 0 25px rgba(46, 213, 115, 0.35);
  flex-shrink: 0;
}

.support-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46, 213, 115, 0.15);
  border: 1px solid rgba(46, 213, 115, 0.35);
  color: #2ed573;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.support-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.support-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
}

.support-desc strong {
  color: #2ed573;
}

.btn-telegram-cta {
  background: linear-gradient(135deg, #2ed573 0%, #10ac84 100%);
  color: #051a0e !important;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 25px rgba(46, 213, 115, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-telegram-cta:hover {
  box-shadow: 0 10px 32px rgba(46, 213, 115, 0.7);
  transform: translateY(-2px);
}

/* Floating Telegram Support Capsule (Harmonized Cyan & Purple Theme) */
.floating-telegram-support {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  z-index: 9999999 !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  background: linear-gradient(135deg, #1c1241 0%, #0e0a24 100%) !important;
  border: 1.5px solid #7942fa !important;
  backdrop-filter: blur(16px) !important;
  padding: 10px 18px 10px 10px !important;
  border-radius: 50px !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.7), 0 0 25px rgba(121, 66, 250, 0.4) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
}

.floating-telegram-support:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--accent-cyan);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.75), 0 0 35px rgba(0, 242, 254, 0.45);
}

.telegram-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #0088cc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.telegram-float-text {
  display: flex;
  flex-direction: column;
}

.float-title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.float-handle {
  font-size: 11.5px;
  color: var(--accent-cyan);
  font-weight: 600;
}

.telegram-float-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: all 0.25s ease;
  margin-left: 4px;
}

.floating-telegram-support:hover .telegram-float-arrow {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  transform: translateX(3px);
}

.online-indicator {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ed573;
  border: 2px solid #0e0a24;
  box-shadow: 0 0 6px #2ed573;
}

.telegram-float-text {
  display: flex;
  flex-direction: column;
}

.float-title {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.float-handle {
  font-size: 11px;
  color: #0088cc;
  font-weight: 600;
}

/* Modal Large & Inventory Controls */
.modal-lg {
  max-width: 680px;
}

.inventory-items-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inventory-item-card {
  background: rgba(10, 6, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.badge-stock-count {
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--accent-cyan);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.inv-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}

.inv-input {
  background: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(121, 66, 250, 0.3) !important;
  color: #ffffff !important;
  font-size: 13.5px !important;
  border-radius: 8px !important;
}

.inv-textarea {
  background: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(121, 66, 250, 0.3) !important;
  color: #00f2fe !important;
  font-family: monospace !important;
  font-size: 12px !important;
  border-radius: 10px !important;
}

/* Backup Format Option Cards */
.backup-option-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  padding: 10px 12px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  user-select: none !important;
}

.backup-option-card:hover {
  background: rgba(0, 242, 254, 0.06) !important;
  border-color: rgba(0, 242, 254, 0.4) !important;
  transform: translateY(-2px);
}

.backup-option-card.active {
  background: rgba(0, 242, 254, 0.14) !important;
  border-color: #00f2fe !important;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.3) !important;
}

.backup-option-card .backup-title {
  color: #cbd5e1;
  font-size: 12.5px;
  font-weight: 800;
}

.backup-option-card.active .backup-title {
  color: #ffffff !important;
}

.backup-option-card .backup-sub {
  font-size: 10.5px;
  color: #94a3b8;
  margin-top: 3px;
  font-weight: 600;
}

.backup-option-card.active .backup-sub {
  color: #00f2fe !important;
  font-weight: 700 !important;
}

.backup-option-card .backup-check-icon {
  position: absolute;
  right: 10px;
  top: 12px;
  color: #64748b;
  font-size: 14px;
}

.backup-option-card.active .backup-check-icon {
  color: #00f2fe !important;
}

/* --------------------------------------------------
   22. SD Farm Backup Warehouse & Inventory System Styles
-------------------------------------------------- */
.sdfarm-manager-card {
  background: linear-gradient(145deg, rgba(18, 12, 42, 0.95), rgba(8, 5, 25, 0.98)) !important;
  border: 1.5px solid rgba(0, 242, 254, 0.3) !important;
  border-radius: 18px !important;
  padding: 24px !important;
  margin-bottom: 24px !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5) !important;
}

.sdfarm-dropzone {
  border: 2px dashed rgba(0, 242, 254, 0.45);
  background: rgba(0, 242, 254, 0.03);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sdfarm-dropzone:hover, .sdfarm-dropzone.dragover {
  border-color: #00f2fe;
  background: rgba(0, 242, 254, 0.08);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.25);
  transform: translateY(-2px);
}

.sdfarm-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Inter', monospace, sans-serif;
  letter-spacing: 0.3px;
}

.sdfarm-badge-ready {
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
  border: 1px solid rgba(46, 213, 115, 0.4);
}

.sdfarm-badge-cyan {
  background: rgba(0, 242, 254, 0.15);
  color: #00f2fe;
  border: 1px solid rgba(0, 242, 254, 0.4);
}

.sdfarm-badge-purple {
  background: rgba(121, 66, 250, 0.18);
  color: #a29bfe;
  border: 1px solid rgba(121, 66, 250, 0.4);
}

.sdfarm-account-row {
  background: rgba(18, 12, 42, 0.7);
  border: 1px solid rgba(121, 66, 250, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

.sdfarm-account-row:hover {
  border-color: rgba(0, 242, 254, 0.5);
  background: rgba(18, 12, 42, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.sdfarm-folder-tree {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.sdfarm-folder-pill {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10.5px;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sdfarm-folder-pill.active {
  border-color: rgba(46, 213, 115, 0.45);
  color: #7bed9f;
  background: rgba(46, 213, 115, 0.08);
}
