/* Stylesheet for FeezBiz Landing Page v2 - 3D Holographic & Animated Globe Edition */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;600;700&display=swap');

:root {
  --bg-dark: #000000;
  --bg-navy-card: rgba(14, 14, 18, 0.85);
  --bg-navy-card-light: rgba(22, 22, 28, 0.9);
  --neon-green: #7CFF3A;
  --neon-green-glow: rgba(124, 255, 58, 0.35);
  --electric-blue: #1e6fff;
  --electric-blue-bright: #3d8bff;
  --electric-blue-glow: rgba(30, 111, 255, 0.35);
  --text-white: #ffffff;
  --text-gray: #b0c0d8;
  --text-muted: #627b9f;
  --font-main: 'Outfit', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-neon: rgba(124, 255, 58, 0.3);
  --border-blue: rgba(30, 111, 255, 0.3);
}

/* Base Setup */
html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: #18181c;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-green);
}

/* Background Ambient Orbs - Black Theme Tweaks */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

.orb-blue {
  background: radial-gradient(circle, rgba(30, 111, 255, 0.25) 0%, transparent 70%);
}

.orb-green {
  background: radial-gradient(circle, rgba(124, 255, 58, 0.2) 0%, transparent 70%);
}

/* Typography Helpers */
.text-neon {
  color: var(--neon-green) !important;
  text-shadow: 0 0 12px rgba(124, 255, 58, 0.3);
}

.text-blue-bright {
  color: var(--electric-blue-bright) !important;
}

.text-gray-custom {
  color: var(--text-gray) !important;
}

.text-muted-custom {
  color: var(--text-muted) !important;
}

/* Buttons */
.btn-neon {
  background-color: var(--neon-green) !important;
  color: #040814 !important;
  font-weight: 800;
  border: 1px solid var(--neon-green) !important;
  box-shadow: 0 4px 20px var(--neon-green-glow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 12px;
  padding: 10px 24px;
}

.btn-neon:hover {
  background-color: #96ff61 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 255, 58, 0.6);
  color: #040814 !important;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-white) !important;
  border: 1px solid var(--border-glass) !important;
  backdrop-filter: blur(10px);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 12px;
  padding: 10px 24px;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--neon-green) !important;
  transform: translateY(-2px);
  color: var(--text-white) !important;
}

/* Glassmorphic Cards with Holographic Sheen */
.glass-card {
  background: var(--bg-navy-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  border-color: var(--border-neon);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 25px rgba(124, 255, 58, 0.1);
  transform: translateY(-4px);
}

.glass-card-green-glow {
  border: 1px solid var(--border-neon);
  box-shadow: 0 0 30px rgba(124, 255, 58, 0.15);
}

/* Holographic Foil Layer */
.holographic-sheen {
  position: relative;
  overflow: hidden;
}

.holographic-sheen::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(115deg,
      transparent 20%,
      rgba(255, 0, 128, 0.12) 35%,
      rgba(0, 229, 255, 0.18) 50%,
      rgba(124, 255, 58, 0.22) 65%,
      transparent 80%);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  mix-blend-mode: color-dodge;
  pointer-events: none;
  z-index: 10;
}

.holographic-sheen:hover::before {
  opacity: 0.85;
  transform: rotate(10deg) translate(15%, -15%);
}

/* Navbar */


.navbar-custom {
  background-color: rgba(4, 8, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-link {
  color: var(--text-gray) !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white) !important;
}

/* Countdown Box */
.countdown-box {
  background: rgba(15, 30, 60, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  position: relative;
}

.countdown-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 2px;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
}

/* Form Controls */
.form-control-custom,
.form-select-custom {
  background-color: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--text-white) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: 0.9rem !important;
  transition: all 0.3s ease;
}

.form-control-custom:focus,
.form-select-custom:focus {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border-color: var(--neon-green) !important;
  box-shadow: 0 0 15px rgba(124, 255, 58, 0.18) !important;
  outline: none !important;
}

.form-control-custom::placeholder {
  color: var(--text-muted) !important;
}

.form-select-custom option {
  background-color: #0a142c;
  color: #ffffff;
}

.form-check-input-custom {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 1.25em;
  height: 1.25em;
  border-radius: 4px;
  cursor: pointer;
}

.form-check-input-custom:checked {
  background-color: var(--neon-green);
  border-color: var(--neon-green);
}

/* Ecosystem Horizontal Scroll */
.ecosystem-scroll-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-green, #7CFF3A) rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.ecosystem-scroll-wrapper::-webkit-scrollbar {
  display: block !important;
  height: 6px !important;
}

.ecosystem-scroll-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 4px !important;
}

.ecosystem-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--neon-green, #7CFF3A) !important;
  border-radius: 4px !important;
  box-shadow: 0 0 10px rgba(124, 255, 58, 0.5) !important;
}

.ecosystem-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: #95ff5e !important;
}

.ecosystem-card {
  min-width: 160px;
  flex: 1;
  background: var(--bg-navy-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.ecosystem-card:hover {
  border-color: var(--border-neon);
  transform: translateY(-5px);
  background: rgba(15, 30, 60, 0.85);
}

/* 3D Floating USDT Coin Element */
.usdt-coin-3d {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffdf00, #d4af37, #8b6508);
  box-shadow: 0 0 25px rgba(255, 223, 0, 0.6), inset 0 0 10px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #040814;
  font-size: 1.9rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: float3D 4s ease-in-out infinite, spinY 7s linear infinite;
  transform-style: preserve-3d;
}

@keyframes spinY {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes float3D {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

/* Interactive Card Flip Box */
.card-flip-box {
  perspective: 1200px;
  width: 100%;
  max-width: 350px;
  height: 220px;
  cursor: pointer;
}

.card-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.card-flip-box:hover .card-flip-inner {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-face-front {
  background: linear-gradient(135deg, #0d1a36 0%, #050a18 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(30, 111, 255, 0.25);
}

.card-face-back {
  background: linear-gradient(135deg, #050a18 0%, #0d1a36 100%);
  transform: rotateY(180deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(124, 255, 58, 0.25);
}

/* Feature Pill */
.feature-pill {
  background: rgba(10, 20, 44, 0.75);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.feature-pill:hover {
  border-color: var(--border-neon);
  background: rgba(15, 30, 60, 0.9);
  transform: translateY(-2px);
}

/* Footer Link */
.footer-link {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--neon-green);
}

.w-16 {
  width: 26px;
}

.h-16 {
  height: 26px;
}

.w-10 {
  width: 20px;
}

.h-10 {
  height: 20px;
}

.pb {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.bg-1 {
  background: url(images/home.png) no-repeat center top;
  background-size: contain;
  min-height: 100vh;
}

.bmo-soft-logo {
  width: 250px;
}

.Renwu {
  width: 250px;
}

/* ==========================================================================
   ADVANCED 3D & INTERACTIVE STYLES
   ========================================================================== */

/* Background 3D Canvas */
#bg-3d-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

/* Hero 3D Scene Container */
#hero-3d-container {
  width: 100%;
  height: 480px;
  position: relative;
  border-radius: 24px;
  cursor: grab;
}

#hero-3d-container:active {
  cursor: grabbing;
}

/* 3D Perspective Base & Dynamic Sheen */
.tilt-card-3d {
  perspective: 1200px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}

.glass-card,
.ecosystem-card,
.feature-pill {
  transform-style: preserve-3d;
  position: relative;
}

/* Specular Glare Effect for 3D Tilt Cards */
.glare-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 12;
  mix-blend-mode: overlay;
}

.tilt-card-3d:hover .glare-overlay {
  opacity: 1;
}

/* Glow Pulses and Neon Accents */
.glow-neon-box {
  box-shadow: 0 0 25px rgba(124, 255, 58, 0.35), inset 0 0 15px rgba(124, 255, 58, 0.15);
}

.glow-blue-box {
  box-shadow: 0 0 25px rgba(30, 111, 255, 0.35), inset 0 0 15px rgba(30, 111, 255, 0.15);
}

/* Magnetic 3D Cursor Follower */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--neon-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--neon-green);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(124, 255, 58, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

/* Interactive Calculator Slider */
.calculator-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: background 0.3s ease;
}

.calculator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--neon-green);
  cursor: pointer;
  box-shadow: 0 0 15px var(--neon-green);
  border: 2px solid #000;
  transition: transform 0.2s ease;
}

.calculator-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

/* NFC Tap Simulation Effect */
.nfc-tap-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 1;
  animation: nfcRipple 1s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
  pointer-events: none;
}

@keyframes nfcRipple {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
  }

  100% {
    width: 280px;
    height: 280px;
    opacity: 0;
  }
}

/* ==========================================================================
   PRIVACY POLICY SPECIFIC STYLES
   ========================================================================== */

.toc-sticky {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 10px;
}

.toc-sticky::-webkit-scrollbar {
  width: 4px;
}

.toc-sticky::-webkit-scrollbar-thumb {
  background: rgba(124, 255, 58, 0.3);
  border-radius: 2px;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 8px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all 0.25s ease;
}

.toc-link:hover,
.toc-link.active {
  color: var(--neon-green);
  background: rgba(124, 255, 58, 0.08);
  border-left-color: var(--neon-green);
  transform: translateX(4px);
}

.policy-badge {
  background: rgba(124, 255, 58, 0.12);
  color: var(--neon-green);
  border: 1px solid rgba(124, 255, 58, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.policy-box {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 28px;
  transition: all 0.3s ease;
}

.policy-box:hover {
  border-color: rgba(124, 255, 58, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(124, 255, 58, 0.08);
}

.policy-highlight-box {
  background: linear-gradient(135deg, rgba(30, 111, 255, 0.12) 0%, rgba(124, 255, 58, 0.08) 100%);
  border: 1px solid rgba(124, 255, 58, 0.3);
  border-radius: 16px;
  padding: 20px 24px;
}

.policy-search-input {
  background: rgba(15, 30, 60, 0.7) !important;
  border: 1px solid var(--border-glass) !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 14px 20px 14px 48px !important;
  font-size: 0.95rem !important;
}

.policy-search-input:focus {
  border-color: var(--neon-green) !important;
  box-shadow: 0 0 20px rgba(124, 255, 58, 0.2) !important;
}

.policy-list {
  list-style: none;
  padding-left: 0;
}

.policy-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-gray);
  line-height: 1.6;
}

.policy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--neon-green);
  font-weight: 900;
  font-size: 0.9rem;
}

.privacy-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.privacy-stat-card:hover {
  border-color: var(--neon-green, #7CFF3A);
  background: rgba(124, 255, 58, 0.05);
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE & MOBILE FIXES
   ========================================================================== */

/* 1. Global Overflow Protection */
html,
body {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

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

/* 2. Hide Custom Cursor on Touch Devices & Mobile Viewports */
@media (max-width: 991.98px),
(pointer: coarse) {

  .cursor-dot,
  .cursor-ring {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* 3. Mobile Navigation & Clean 3-Line Hamburger Toggle */
.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 4px 6px !important;
  background: transparent !important;
  cursor: pointer;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.navbar-toggler-icon {
  width: 28px !important;
  height: 20px !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 24'%3e%3cpath stroke='%23d1d5db' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M2 4h26M2 12h26M2 20h26'/%3e%3c/svg%3e") !important;
  transition: transform 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath stroke='%237CFF3A' stroke-linecap='round' stroke-width='2.2' d='M18 6L6 18M6 6l12 12'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991.98px) {
  .navbar-custom {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    background-color: #040711 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .navbar-custom>.container,
  .navbar>.container,
  .navbar>.container-fluid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
  }

  .navbar-brand {
    display: inline-flex !important;
    align-items: center !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    max-width: 65% !important;
  }

  .navbar-brand img {
    width: 135px !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .navbar-toggler {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }

  .navbar-collapse {
    flex-basis: 100% !important;
    flex-grow: 1 !important;
    width: 100% !important;
    background: rgba(6, 10, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.1));
    border-radius: 16px;
    padding: 20px;
    margin-top: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
  }

  .navbar-menu {
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 16px !important;
  }

  .navbar-menu .nav-link {
    font-size: 1rem !important;
    padding: 8px 12px !important;
    width: 100%;
  }

  .navbar-custom .d-flex {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .navbar-custom .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* 4. Hero & 3D Containers Responsive Scaling */
@media (max-width: 991.98px) {
  #hero-3d-container {
    height: 360px !important;
  }
}

@media (max-width: 576px) {
  #hero-3d-container {
    height: 260px !important;
  }

  /* Font Scaling */
  .display-3 {
    font-size: 2.1rem !important;
    line-height: 1.15 !important;
  }

  .display-4 {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
  }

  h1 {
    font-size: 1.8rem !important;
  }

  h2 {
    font-size: 1.4rem !important;
  }

  /* Glass Cards & Policy Boxes Mobile Padding */
  .glass-card,
  .policy-box {
    padding: 20px 14px !important;
    border-radius: 16px !important;
  }

  .policy-highlight-box {
    padding: 16px 14px !important;
  }

  /* Countdown Box Adjustments */
  .countdown-box {
    padding: 10px 4px !important;
    border-radius: 10px !important;
  }

  .countdown-box .fs-2 {
    font-size: 1.2rem !important;
  }

  /* Interactive Flip Box */
  .card-flip-box {
    max-width: 100% !important;
    height: 190px !important;
  }

  .card-face {
    padding: 16px !important;
  }

  /* Stat Cards */
  .privacy-stat-card {
    padding: 10px 6px !important;
  }

  .privacy-stat-card .fs-4 {
    font-size: 1.05rem !important;
  }

  .privacy-stat-card .text-xs {
    font-size: 0.65rem !important;
  }
}

@media (max-width: 375px) {
  .display-3 {
    font-size: 1.75rem !important;
  }

  .display-4 {
    font-size: 1.5rem !important;
  }

  .countdown-box .fs-2 {
    font-size: 1.05rem !important;
  }
}

/* 5. Privacy Policy Sticky TOC Mobile Scrollable Pills */
@media (max-width: 991.98px) {
  .toc-sticky {
    position: relative !important;
    top: 0 !important;
    max-height: none !important;
    margin-bottom: 24px;
  }

  #toc-nav {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding-bottom: 10px;
    gap: 8px !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #toc-nav::-webkit-scrollbar {
    display: none;
  }

  .toc-link {
    white-space: nowrap !important;
    font-size: 0.78rem !important;
    padding: 6px 12px !important;
    border-left: none !important;
    border-bottom: 2px solid transparent !important;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px !important;
    flex-shrink: 0;
  }

  .toc-link:hover,
  .toc-link.active {
    border-left-color: transparent !important;
    border-bottom-color: var(--neon-green, #7CFF3A) !important;
    background: rgba(124, 255, 58, 0.12) !important;
    transform: translateY(-2px) !important;
  }
}

/* 6. Responsive Table & Form Improvements */
.table-responsive {
  border-radius: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .policy-badge {
    font-size: 0.68rem !important;
    padding: 3px 10px !important;
  }

  .policy-search-input {
    padding: 10px 16px 10px 40px !important;
    font-size: 0.85rem !important;
  }

  .bg-1 {
    background: url(images/home-mob.png) no-repeat center top;
    background-size: contain;
  }

}

/* ==========================================================================
   SHARE MODAL & FLOATING SHARE ACTION BUTTON
   ========================================================================== */

/* Floating Share Button */
.floating-share-wrapper {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}

.floating-share-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(135deg, var(--neon-green) 0%, var(--electric-blue) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #040814;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(124, 255, 58, 0.4), 0 0 20px rgba(30, 111, 255, 0.3);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.floating-share-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2px;
  transition: transform 0.3s ease;
}

.floating-share-btn:hover {
  transform: scale(1.12) rotate(12deg);
  box-shadow: 0 12px 40px rgba(124, 255, 58, 0.65), 0 0 30px rgba(30, 111, 255, 0.5);
  color: #000;
}

.floating-share-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(14, 14, 20, 0.95);
  color: var(--text-white);
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid var(--border-neon);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.floating-share-btn:hover .floating-share-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Modal Overlay Backdrop */
.share-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 6, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 999999 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.share-modal-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Modal Window Container */
.share-modal-container {
  width: 100%;
  max-width: 500px;
  background: rgba(14, 14, 22, 0.94);
  border: 1px solid var(--border-neon);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), 0 0 50px rgba(124, 255, 58, 0.15);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.share-modal-overlay.active .share-modal-container {
  transform: scale(1) translateY(0);
}

/* Modal Header */
.share-modal-header {
  padding: 24px 26px 18px 26px;
  border-bottom: 1px solid var(--border-glass);
}

.share-modal-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(124, 255, 58, 0.1);
  border: 1px solid var(--border-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.share-modal-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-gray);
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.share-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--text-white);
  transform: rotate(90deg);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Modal Body */
.share-modal-body {
  padding: 24px 26px 26px 26px;
}

/* Copy Link Container */
.copy-link-group {
  background: rgba(6, 6, 12, 0.8);
  padding: 6px 6px 6px 14px;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}

.copy-link-group:focus-within {
  border-color: var(--neon-green);
  box-shadow: 0 0 18px rgba(124, 255, 58, 0.22);
}

.copy-input-wrapper #shareUrlInput {
  background: transparent !important;
  border: none !important;
  color: var(--neon-green) !important;
  font-size: 0.85rem;
  padding: 0;
  box-shadow: none !important;
}

.copy-toast {
  font-size: 0.78rem;
  color: var(--neon-green);
  margin-top: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

/* Social Apps Grid */
.social-share-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 480px) {
  .social-share-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

.social-share-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  text-decoration: none !important;
  color: var(--text-gray) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  outline: none;
}

.social-share-card .social-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.social-share-card .social-name {
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.social-share-card:hover {
  transform: translateY(-4px);
  color: var(--text-white) !important;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.social-share-card:hover .social-icon-wrapper {
  transform: scale(1.1);
}

/* App specific brand hover colors */
.social-share-card.whatsapp:hover .social-icon-wrapper {
  background: rgba(37, 211, 102, 0.22);
  color: #25D366;
}
.social-share-card.whatsapp:hover { border-color: rgba(37, 211, 102, 0.6); }

.social-share-card.twitter:hover .social-icon-wrapper {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}
.social-share-card.twitter:hover { border-color: rgba(255, 255, 255, 0.45); }

.social-share-card.telegram:hover .social-icon-wrapper {
  background: rgba(0, 136, 204, 0.22);
  color: #0088cc;
}
.social-share-card.telegram:hover { border-color: rgba(0, 136, 204, 0.6); }

.social-share-card.facebook:hover .social-icon-wrapper {
  background: rgba(24, 119, 242, 0.22);
  color: #1877F2;
}
.social-share-card.facebook:hover { border-color: rgba(24, 119, 242, 0.6); }

.social-share-card.linkedin:hover .social-icon-wrapper {
  background: rgba(10, 102, 194, 0.22);
  color: #0A66C2;
}
.social-share-card.linkedin:hover { border-color: rgba(10, 102, 194, 0.6); }

.social-share-card.reddit:hover .social-icon-wrapper {
  background: rgba(255, 69, 0, 0.22);
  color: #FF4500;
}
.social-share-card.reddit:hover { border-color: rgba(255, 69, 0, 0.6); }

.social-share-card.email:hover .social-icon-wrapper {
  background: rgba(124, 255, 58, 0.22);
  color: var(--neon-green);
}
.social-share-card.email:hover { border-color: var(--border-neon); }

.social-share-card.native-share:hover .social-icon-wrapper {
  background: rgba(30, 111, 255, 0.22);
  color: var(--electric-blue-bright);
}
.social-share-card.native-share:hover { border-color: var(--border-blue); }











/*extra*/





/* Form validation styles */
.form-control-custom.is-valid,
.form-select-custom.is-valid {
    border-color: #00f0ff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300f0ff' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control-custom.is-invalid,
.form-select-custom.is-invalid {
    border-color: #ff6b6b;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff6b6b'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff6b6b' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.validation-error {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}