/* ========================================================
   🌟 HONGTIN DONATE - HOMEPAGE DESIGN SYSTEM (FINTECH & STREAM)
   Inspired by modern fintech & stream gateways (bymebank.xyz)
   ======================================================== */

:root {
  --bg-primary: #060911;
  --bg-secondary: #0b1120;
  --bg-tertiary: #111a2e;
  --bg-card: rgba(15, 23, 42, 0.42);
  --bg-card-hover: rgba(24, 36, 62, 0.58);

  --primary: #f59e0b;
  --primary-light: #fbbf24;
  --primary-glow: rgba(245, 158, 11, 0.25);
  --primary-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);

  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.25);
  --accent-purple: #8b5cf6;
  --accent-purple-glow: rgba(139, 92, 246, 0.25);
  --accent-emerald: #10b981;
  --accent-rose: #f43f5e;

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dark: #64748b;

  --border-glass: rgba(245, 158, 11, 0.22);
  --border-glass-hover: rgba(245, 158, 11, 0.5);
  --border-glow: 0 0 20px rgba(245, 158, 11, 0.25);

  --glass-blur: blur(22px) saturate(180%);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-main: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-khmer: 'Kantumruy Pro', 'Outfit', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Ambient Glow & Cyber Grid */
.bg-ambient-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: orbFloat 20s ease-in-out infinite alternate;
}

.orb-1 {
  top: -10%;
  left: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #f59e0b 0%, rgba(245, 158, 11, 0) 70%);
}

.orb-2 {
  top: 30%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #06b6d4 0%, rgba(6, 182, 212, 0) 70%);
  animation-delay: -5s;
}

.orb-3 {
  bottom: 10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b5cf6 0%, rgba(139, 92, 246, 0) 70%);
  animation-delay: -10s;
}

.bg-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black 30%, transparent 80%);
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, 60px) scale(1.1);
  }

  100% {
    transform: translate(-30px, -40px) scale(0.95);
  }
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================================
   🌟 NAVBAR
   ======================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(8, 13, 24, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: none;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(245, 158, 11, 0.25);
  z-index: 1;
}

.navbar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -35%;
  width: 35%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, #f59e0b 50%, #fbbf24 80%, transparent 100%);
  box-shadow: 0 0 12px #f59e0b, 0 0 6px #fbbf24;
  animation: laserBeamRun 3.5s linear infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes laserBeamRun {
  0% {
    left: -35%;
  }

  100% {
    left: 100%;
  }
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(6, 9, 17, 0.96);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 158, 11, 0.15);
}

.navbar.scrolled::after {
  background: rgba(245, 158, 11, 0.4);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.brand-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 15px var(--primary-glow);
  color: #000;
  overflow: hidden;
}

.brand-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.brand-full-logo-img {
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin: 0;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease;
}

.brand-full-logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 16px rgba(255, 183, 0, 0.5));
}

.brand-badge {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--primary-light);
  text-transform: uppercase;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.nav-link {
  position: relative;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  border-radius: 9999px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ========================================================
   🌐 COMPACT LANGUAGE TOGGLE PILL (EN / KM)
   ======================================================== */
.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 34px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.lang-toggle-btn:hover {
  color: #ffffff;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
  transform: translateY(-1px);
}

.lang-btn {
  font-weight: 700;
  font-family: inherit;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.lang-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.lang-btn.active {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0a0e1a;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.lang-flag {
  font-size: 0.95rem;
  line-height: 1;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ========================================================
   🌟 BUTTONS & ANIMATIONS
   ======================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 800;
  font-family: inherit;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  outline: none;
  user-select: none;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
  background-size: 200% 200%;
  color: #0a0e1a;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35), 0 0 0 1px rgba(251, 191, 36, 0.4) inset;
  animation: gradientShift 6s ease infinite;
}

/* Continuous Diagonal Light Sweep Shimmer Animation */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.45) 50%,
      transparent 100%);
  transform: rotate(25deg);
  animation: btnShimmer 3.5s infinite ease-in-out;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.55), 0 0 15px rgba(251, 191, 36, 0.4);
  color: #05070c;
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), 0 0 12px rgba(245, 158, 11, 0.15);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(245, 158, 11, 0.15);
}

/* ========================================================
   🌟 ULTRA-PREMIUM HEADER NAVBAR SIGN IN BUTTON
   ======================================================== */
.btn-nav-signin {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.05rem !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #f1f5f9 !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(245, 158, 11, 0.08) 100%) !important;
  border: 1px solid rgba(245, 158, 11, 0.38) !important;
  border-radius: var(--radius-full) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden;
  cursor: pointer;
}

.btn-nav-signin svg {
  color: #fbbf24;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-nav-signin:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22) 0%, rgba(217, 119, 6, 0.38) 100%) !important;
  border-color: #fbbf24 !important;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.btn-nav-signin:hover svg {
  transform: translateX(3px) scale(1.15);
  color: #ffffff;
}

.btn-nav-signin:active {
  transform: translateY(1px) scale(0.97) !important;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3) !important;
}

/* Light shimmer sweep effect */
.btn-nav-signin::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transform: rotate(25deg);
  transition: all 0.6s ease;
  pointer-events: none;
}

.btn-nav-signin:hover::after {
  left: 125%;
}

/* ========================================================
   🌟 ULTRA-PREMIUM HEADER NAVBAR CREATE ACCOUNT BUTTON
   ======================================================== */
.btn-nav-signup {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.15rem !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  color: #0a0e1a !important;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%) !important;
  background-size: 200% 200% !important;
  border: 1px solid rgba(251, 191, 36, 0.6) !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none !important;
}

.btn-nav-signup svg {
  color: #0a0e1a;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-nav-signup:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  color: #000000 !important;
}

.btn-nav-signup:hover svg {
  transform: scale(1.2) rotate(12deg);
}

.btn-nav-signup:active {
  transform: translateY(1px) scale(0.97) !important;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4) !important;
}

/* Light shimmer sweep effect */
.btn-nav-signup::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: rotate(25deg);
  transition: all 0.6s ease;
  pointer-events: none;
}

.btn-nav-signup:hover::after {
  left: 125%;
}

@keyframes btnShimmer {
  0% {
    left: -75%;
  }

  40%,
  100% {
    left: 125%;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* ========================================================
   🌟 TOP-RIGHT FLOATING TOAST NOTIFICATION CONTAINER
   ======================================================== */
#toast-container {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 320px;
  width: calc(100vw - 32px);
  pointer-events: none;
}

.toast-banner {
  pointer-events: auto;
  border-left-width: 3px;
  border-left-style: solid;
  padding: 0.5rem 0.75rem;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  animation: toastSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: all 0.3s ease;
}

.toast-banner.toast-exit {
  animation: toastSlideOut 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastSlideIn {
  0% {
    transform: translateX(120%);
    opacity: 0;
  }

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

@keyframes toastSlideOut {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

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

.toast-banner .toast-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.toast-banner .toast-text {
  margin: 0;
  flex: 1;
}

.toast-banner .toast-close {
  background: transparent;
  border: none;
  color: currentColor;
  opacity: 0.65;
  cursor: pointer;
  padding: 0.1rem;
  font-size: 1rem;
  line-height: 1;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.toast-banner .toast-close:hover {
  opacity: 1;
}

.toast-link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255, 183, 0, 0.18);
  border: 1px solid rgba(255, 183, 0, 0.45);
  color: #ffb700;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  text-decoration: none;
  margin-left: 0.3rem;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.toast-link:hover {
  background: #ffb700;
  color: #080b13;
  box-shadow: 0 0 10px rgba(255, 183, 0, 0.5);
}

/* ========================================================
   🌟 GOOGLE SIGN-IN BUTTON ANIMATIONS
   ======================================================== */
.btn-google-auth {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-google-auth svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-google-auth:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3), 0 0 15px rgba(52, 168, 83, 0.2) !important;
}

.btn-google-auth:hover svg {
  transform: scale(1.18) rotate(12deg);
}

.btn-google-auth:active {
  transform: translateY(1px) scale(0.96) !important;
  box-shadow: 0 2px 10px rgba(66, 133, 244, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2) !important;
  filter: brightness(0.95);
}

/* Light shimmer sweep line */
.btn-google-auth::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 100%);
  transform: rotate(25deg);
  transition: all 0.6s ease;
  pointer-events: none;
}

.btn-google-auth:hover::after {
  left: 125%;
}

@keyframes otpSpin {
  0% {
    transform: rotate(0deg);
  }

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

/* ========================================================
   🌟 ULTRA-PREMIUM AMBER GOLD OTP BUTTON STYLING
   ======================================================== */
.btn-otp-styled {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-shrink: 0 !important;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22) 0%, rgba(217, 119, 6, 0.38) 100%) !important;
  border: 1px solid rgba(251, 191, 36, 0.45) !important;
  color: #fbbf24 !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.2px !important;
  padding: 0.35rem 0.55rem !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  height: auto !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.btn-otp-styled:hover:not(:disabled) {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #080b13 !important;
  border-color: #fbbf24 !important;
  transform: translateY(-1px) scale(1.02) !important;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4) !important;
}

.btn-otp-styled:active:not(:disabled) {
  transform: translateY(1px) scale(0.96) !important;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3) !important;
}

/* Cooldown Disabled State */
.btn-otp-styled:disabled {
  background: rgba(245, 158, 11, 0.12) !important;
  border-color: rgba(245, 158, 11, 0.3) !important;
  color: #fbbf24 !important;
  cursor: not-allowed !important;
  opacity: 0.95 !important;
  box-shadow: none !important;
  transform: none !important;
}

.otp-countdown-badge {
  background: rgba(245, 158, 11, 0.28);
  border: 1px solid rgba(251, 191, 36, 0.45);
  color: #fbbf24;
  padding: 0.05rem 0.3rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 800;
  margin-left: 0.1rem;
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.22);
  display: inline-block;
}

/* Toast Success */
.toast-banner.toast-success {
  background: rgba(15, 23, 42, 0.94);
  border-left-color: #10b981;
  border-top: 1px solid rgba(16, 185, 129, 0.3);
  border-right: 1px solid rgba(16, 185, 129, 0.3);
  border-bottom: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.toast-banner.toast-success .toast-icon {
  color: #10b981;
}

/* Toast Error */
.toast-banner.toast-error {
  background: rgba(15, 23, 42, 0.94);
  border-left-color: #ef4444;
  border-top: 1px solid rgba(239, 68, 68, 0.3);
  border-right: 1px solid rgba(239, 68, 68, 0.3);
  border-bottom: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.toast-banner.toast-error .toast-icon {
  color: #ef4444;
}

/* Toast Warning */
.toast-banner.toast-warning {
  background: rgba(15, 23, 42, 0.94);
  border-left-color: #f59e0b;
  border-top: 1px solid rgba(245, 158, 11, 0.3);
  border-right: 1px solid rgba(245, 158, 11, 0.3);
  border-bottom: 1px solid rgba(245, 158, 11, 0.3);
  color: #fcd34d;
}

.toast-banner.toast-warning .toast-icon {
  color: #f59e0b;
}

/* Toast Info */
.toast-banner.toast-info {
  background: rgba(15, 23, 42, 0.94);
  border-left-color: #3b82f6;
  border-top: 1px solid rgba(59, 130, 246, 0.3);
  border-right: 1px solid rgba(59, 130, 246, 0.3);
  border-bottom: 1px solid rgba(59, 130, 246, 0.3);
  color: #93c5fd;
}

.toast-banner.toast-info .toast-icon {
  color: #3b82f6;
}

/* Uiverse.io Alert Banner Styling */
.alert-banner {
  border-left-width: 4px;
  border-left-style: solid;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease-in-out;
  font-size: 0.82rem;
  font-weight: 600;
  animation: alertFadeIn 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

@keyframes alertFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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

/* ========================================================
   🌟 UIVERSE 3D TACTILE TOGGLE SWITCH BUTTON STYLING
   ======================================================== */
.toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: .5em;
  padding: .125em;
  background-image: linear-gradient(to bottom, #2a2e39, #1e222d);
  box-shadow: 0 1px 1px rgb(255 255 255 / .1);
  font-size: 0.85em;
  user-select: none;
}

.toggle-checkbox {
  appearance: none;
  position: absolute;
  z-index: 1;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  font: inherit;
  opacity: 0;
  cursor: pointer;
}

.toggle-container {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: .375em;
  width: 3em;
  height: 1.5em;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 .0625em .125em rgb(255 255 255 / .1), inset 0 .0625em .125em rgb(0 0 0 / .4);
  transition: background-color .4s linear;
}

.toggle-checkbox:checked+.toggle-container {
  background-color: #f59e0b;
}

.toggle-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: .0625em;
  border-radius: .3125em;
  width: 1.375em;
  height: 1.375em;
  background-color: #1e222d;
  box-shadow: inset 0 -.0625em .0625em .125em rgb(0 0 0 / .2), inset 0 -.125em .0625em rgb(0 0 0 / .3), inset 0 .1875em .0625em rgb(255 255 255 / .2), 0 .125em .125em rgb(0 0 0 / .5);
  transition: left .4s;
}

.toggle-checkbox:checked+.toggle-container>.toggle-button {
  left: 1.5625em;
}

.toggle-button-circles-container {
  display: grid;
  grid-template-columns: repeat(3, min-content);
  gap: .125em;
  position: absolute;
  margin: 0 auto;
}

.toggle-button-circle {
  border-radius: 50%;
  width: .125em;
  height: .125em;
  background-image: radial-gradient(circle at 50% 0, #fbbf24, #d97706);
}

.alert-banner .alert-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  margin-right: 0.6rem;
}

.alert-banner .alert-text {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

/* Success Banner */
.alert-banner.alert-success {
  background: rgba(16, 185, 129, 0.15);
  border-left-color: #10b981;
  color: #34d399;
}

.alert-banner.alert-success .alert-icon {
  color: #10b981;
}

/* Error Banner */
.alert-banner.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border-left-color: #ef4444;
  color: #fca5a5;
}

.alert-banner.alert-error .alert-icon {
  color: #ef4444;
}

/* Warning Banner */
.alert-banner.alert-warning {
  background: rgba(245, 158, 11, 0.15);
  border-left-color: #f59e0b;
  color: #fcd34d;
}

.alert-banner.alert-warning .alert-icon {
  color: #f59e0b;
}

/* Info Banner */
.alert-banner.alert-info {
  background: rgba(59, 130, 246, 0.15);
  border-left-color: #3b82f6;
  color: #93c5fd;
}

.alert-banner.alert-info .alert-icon {
  color: #3b82f6;
}

/* ========================================================
   🌟 HERO SECTION
   ======================================================== */
.hero-section {
  padding-top: 9.5rem;
  padding-bottom: 5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: normal;
  margin-bottom: 1.25rem;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #ffffff 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0 2px;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #38bdf8 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0 2px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-desc-khmer {
  display: block;
  font-family: var(--font-khmer);
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-badges-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-badge-icon {
  font-size: 1.1rem;
}

/* ========================================================
   🌟 HERO INTERACTIVE STREAM BROADCAST PREVIEW (NEXT-GEN)
   ======================================================== */
.hero-mockup-card {
  position: relative;
  background: linear-gradient(135deg, rgba(18, 28, 48, 0.45) 0%, rgba(10, 16, 30, 0.55) 100%);
  border: 1px solid rgba(245, 158, 11, 0.38);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.7),
    0 0 50px rgba(245, 158, 11, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.hero-mockup-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, #f59e0b 50%, #fbbf24 80%, transparent 100%);
  box-shadow: 0 0 12px #f59e0b, 0 0 6px #fbbf24;
  animation: laserBeamRun 4.5s linear infinite 1s;
  z-index: 3;
  pointer-events: none;
}

.hero-mockup-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 35px 70px -15px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(245, 158, 11, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.2rem;
}

.mockup-window-dots {
  display: flex;
  gap: 7px;
}

.window-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}

.dot-red {
  background: #ff5f56;
  color: rgba(255, 95, 86, 0.4);
}

.dot-yellow {
  background: #ffbd2e;
  color: rgba(255, 189, 46, 0.4);
}

.dot-green {
  background: #27c93f;
  color: rgba(39, 201, 63, 0.4);
}

.mockup-live-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(220, 38, 38, 0.15) 100%);
  border: 1px solid rgba(239, 68, 68, 0.6);
  color: #fecaca;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
  animation: pulseDot 1.2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
}

/* Simulated Overlay Stream Area */
.mockup-stream-stage {
  background: radial-gradient(circle at 50% 30%, rgba(18, 30, 56, 0.4) 0%, rgba(6, 10, 22, 0.55) 100%);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(245, 158, 11, 0.25);
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Interactive Particle Canvas/Overlay Container */
.stage-particles-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.sparkle-particle {
  position: absolute;
  pointer-events: none;
  font-size: 1.2rem;
  animation: floatSparkle 1.8s ease-out forwards;
  z-index: 3;
}

@keyframes floatSparkle {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(0.5) rotate(0deg);
  }

  50% {
    opacity: 0.9;
    transform: translate(var(--tx, 20px), -60px) scale(1.3) rotate(180deg);
  }

  100% {
    opacity: 0;
    transform: translate(var(--tx, -20px), -120px) scale(0.8) rotate(360deg);
  }
}

/* Floating Simulated Alert Box */
.mockup-floating-alert {
  background: linear-gradient(135deg, rgba(24, 38, 64, 0.55) 0%, rgba(12, 20, 36, 0.65) 100%);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(245, 158, 11, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  animation: floatAlert 4s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

@keyframes floatAlert {

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

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

.alert-avatar-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  border: 2px solid var(--primary-light);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.alert-avatar-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #f59e0b, #ec4899, #8b5cf6, #f59e0b);
  opacity: 0.8;
  filter: blur(4px);
  animation: spinAura 6s linear infinite;
  z-index: 1;
}

@keyframes spinAura {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.alert-nitro-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6));
}

.alert-info-box {
  flex-grow: 1;
  min-width: 0;
}

.alert-donor-header {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.alert-donated-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

.alert-amount-highlight {
  color: #fbbf24;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(217, 119, 6, 0.15) 100%);
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 900;
  border: 1px solid rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.alert-message-text {
  font-size: 0.92rem;
  color: #e2e8f0;
  margin-top: 0.25rem;
  font-style: italic;
  font-weight: 500;
}

/* Floating Simulated Leaderboard Row */
.mockup-leaderboard-preview {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  z-index: 2;
}

.mockup-lb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.3s ease;
}

.mockup-lb-row.rank-gold {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22) 0%, rgba(20, 28, 48, 0.45) 100%);
  border: 1px solid rgba(245, 158, 11, 0.5);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.mockup-lb-row.rank-silver {
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.18) 0%, rgba(15, 22, 38, 0.45) 100%);
  border: 1px solid rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.mockup-lb-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mockup-lb-crown {
  font-size: 1.25rem;
  filter: drop-shadow(0 0 6px currentColor);
}

.mockup-lb-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.2px;
}

.mockup-lb-badge {
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 5px;
  letter-spacing: 0.5px;
}

.badge-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f172a;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.badge-silver {
  background: linear-gradient(135deg, #94a3b8, #64748b);
  color: #0f172a;
}

.mockup-lb-amount {
  font-weight: 900;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.amount-gold {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
}

.amount-silver {
  color: #e2e8f0;
  background: rgba(148, 163, 184, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

/* Simulated Interactive Trigger in Hero */
.mockup-actions-bar {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}

.btn-simulate-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.1) 100%) !important;
  border: 1px solid rgba(245, 158, 11, 0.6) !important;
  color: #fbbf24 !important;
  font-weight: 800 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.btn-simulate-hero:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.35) 0%, rgba(217, 119, 6, 0.25) 100%) !important;
  border-color: #fbbf24 !important;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
}

.btn-simulate-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg,
      transparent 30%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 70%);
  transform: rotate(30deg);
  animation: shineSweep 4s infinite;
}

@keyframes shineSweep {
  0% {
    transform: translate(-100%, -100%) rotate(30deg);
  }

  20%,
  100% {
    transform: translate(100%, 100%) rotate(30deg);
  }
}

/* ========================================================
   🌟 FINTECH PAYMENT GATEWAY SECTION
   ======================================================== */
.section-py {
  padding: 6.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--accent-cyan);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Bank Logos Row */
.banks-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.bank-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
}

.bank-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(245, 158, 11, 0.15);
}

.bank-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.2rem;
}

.bank-icon-aba {
  background: rgba(0, 85, 166, 0.2);
  border: 1px solid #0055a6;
  color: #38bdf8;
}

.bank-icon-bakong {
  background: rgba(219, 39, 119, 0.2);
  border: 1px solid #db2777;
  color: #f472b6;
}

.bank-icon-telegram {
  background: rgba(0, 136, 204, 0.2);
  border: 1px solid #0088cc;
  color: #38bdf8;
}

.bank-icon-khqr {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid #f59e0b;
  color: #fbbf24;
}

.bank-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}

.bank-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ========================================================
   🌟 INTERACTIVE OBS OVERLAYS SHOWCASE TABS
   ======================================================== */
.overlays-showcase-container {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.65) 0%, rgba(9, 14, 26, 0.85) 100%);
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(245, 158, 11, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.overlays-showcase-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(245, 158, 11, 0.5) 40%, rgba(139, 92, 246, 0.5) 70%, transparent 100%);
  pointer-events: none;
}

/* Overlay Tabs Nav - Pill-style with icon */
.overlay-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.overlay-tabs-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.3), rgba(139, 92, 246, 0.3), transparent);
}

.tab-btn {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text-muted);
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

.tab-btn .tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
  flex-shrink: 0;
}

.tab-btn .tab-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

.tab-btn .tab-badge {
  font-size: 0.6rem;
  font-weight: 900;
  padding: 1px 5px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.25);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #34d399;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 158, 11, 0.3);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.tab-btn:hover .tab-icon {
  transform: scale(1.18);
  color: #fbbf24;
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.15) 100%);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow:
    0 0 20px rgba(245, 158, 11, 0.2),
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tab-btn.active .tab-icon {
  transform: scale(1.1);
  color: #fbbf24;
  filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.8));
}

/* Shimmer sweep on tab-btn active */
.tab-btn.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: tabShimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes tabShimmer {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 150%;
  }
}

.overlay-tab-pane {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.overlay-tab-pane.active {
  display: grid;
  animation: tabFadeSlide 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes tabFadeSlide {
  from {
    opacity: 0;
    transform: translateX(16px);
  }

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

.tab-content-info h3 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tab-content-info p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.tab-content-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 4px 10px;
  border-radius: 30px;
  margin-bottom: 1rem;
  display: inline-block;
}

.tab-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.tab-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}

.tab-features-list li:hover {
  background: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.2);
  color: #e2e8f0;
}

.tab-features-list li span.check {
  color: var(--accent-emerald);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
}

/* Preview Display — OBS Screen Style */
.tab-preview-display {
  background: linear-gradient(145deg, #050810 0%, #08101e 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 60px rgba(0, 0, 0, 0.6),
    0 20px 40px rgba(0, 0, 0, 0.4);
}

/* OBS Screen scanline effect */
.tab-preview-display::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.012) 2px,
      rgba(255, 255, 255, 0.012) 4px);
  pointer-events: none;
  border-radius: inherit;
}

/* OBS badge corner */
.tab-preview-display::after {
  content: '⬤ OBS PREVIEW';
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.58rem;
  font-weight: 900;
  color: rgba(245, 158, 11, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========================================================
   🌟 BENTO FEATURES GRID
   ======================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-col-2 {
  grid-column: span 2;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
  transition: all 0.3s;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.bento-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.bento-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #fff;
}

.bento-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================================
   🌟 HOW IT WORKS (3 STEPS)
   ======================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.75rem;
  position: relative;
  backdrop-filter: var(--glass-blur);
  text-align: center;
  transition: all 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-glow);
}

.step-number-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #000;
  font-weight: 900;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 20px var(--primary-glow);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #fff;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ========================================================
   🌟 FAQ ACCORDION
   ======================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
}

.faq-item.active {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(26, 38, 66, 0.5);
}

.faq-question-btn {
  width: 100%;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--primary-light);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.6rem 1.4rem 1.6rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* ========================================================
   🌟 CTA BANNER
   ======================================================== */
.cta-banner-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(245, 158, 11, 0.15);
}

.cta-banner-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-banner-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.2rem auto;
}

/* ========================================================
   🌟 FOOTER
   ======================================================== */
.footer {
  background: #03060c;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4.5rem 0 2.5rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 340px;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--text-dark);
}

/* ========================================================
   🌟 AUTH MODAL (SIGN IN / REGISTER DIALOG)
   ======================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 6, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.25s ease-in-out;
}

.modal-backdrop.open {
  display: flex;
}

.auth-modal-card {
  background: linear-gradient(145deg, rgba(17, 26, 46, 0.98) 0%, rgba(10, 15, 28, 0.98) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 440px;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(245, 158, 11, 0.15);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.5);
  color: #ef4444;
  transform: scale(1.1) rotate(90deg);
}

.auth-tabs-toggle {
  display: flex;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-tab-btn {
  flex: 1;
  padding: 0.6rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.auth-tab-btn.active {
  background: var(--primary-gradient);
  color: #000;
  box-shadow: 0 0 12px var(--primary-glow);
}

.auth-form-group {
  margin-bottom: 1.1rem;
}

.auth-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.auth-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s;
}

.auth-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
}

.auth-alert-msg {
  display: none;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* ========================================================
   🌟 RESPONSIVE MEDIA QUERIES (DESKTOP / TABLET / MOBILE)
   ======================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badges-row {
    justify-content: center;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-col-2 {
    grid-column: span 2;
  }

  .overlay-tab-pane {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 868px) {
  .nav-links {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 680px) {
  /* Prevent any horizontal screen scrolling */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
  }

  .container {
    padding: 0 1rem;
  }

  /* 🌟 Mobile Navbar */
  .navbar {
    padding: 0.65rem 0;
  }

  .navbar.scrolled {
    padding: 0.5rem 0;
  }

  .brand-logo {
    gap: 0.5rem;
  }

  .brand-full-logo-img {
    height: 34px;
    max-width: 130px;
  }

  .nav-actions {
    gap: 0.35rem;
  }

  .lang-toggle-btn {
    height: 30px;
    padding: 0 8px;
    font-size: 0.74rem;
    gap: 3px;
  }

  .btn-nav-signin {
    padding: 0.38rem 0.65rem !important;
    font-size: 0.78rem !important;
    gap: 0.3rem !important;
  }

  .btn-nav-signin svg {
    width: 13px;
    height: 13px;
  }

  .btn-nav-signup {
    padding: 0.38rem 0.8rem !important;
    font-size: 0.78rem !important;
    gap: 0.3rem !important;
    white-space: nowrap !important;
  }

  .btn-nav-signup svg {
    width: 13px;
    height: 13px;
  }

  /* 🌟 Hero Section */
  .hero-section {
    padding-top: 5.6rem;
    padding-bottom: 3rem;
  }

  .hero-pill-badge {
    font-size: 0.74rem;
    padding: 0.35rem 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.35;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    border-radius: 12px;
  }

  .hero-title {
    font-size: 1.95rem;
    line-height: 1.25;
    margin-bottom: 0.85rem;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    justify-content: center;
  }

  .hero-badges-row {
    gap: 0.75rem 1rem;
    padding-top: 1.25rem;
    width: 100%;
  }

  .hero-badge-item {
    font-size: 0.8rem;
    gap: 0.35rem;
  }

  /* 🌟 Interactive Hero Preview Card */
  .hero-mockup-card {
    padding: 1rem 0.85rem;
    border-radius: var(--radius-lg);
  }

  .mockup-header {
    padding-bottom: 0.75rem;
    margin-bottom: 0.9rem;
  }

  .mockup-stream-stage {
    min-height: auto;
    padding: 1rem 0.75rem;
    gap: 0.9rem;
    border-radius: var(--radius-md);
  }

  .mockup-floating-alert {
    padding: 0.8rem 0.85rem;
    gap: 0.75rem;
    border-radius: var(--radius-md);
  }

  .alert-avatar-wrap {
    width: 44px;
    height: 44px;
  }

  .alert-avatar-circle {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .alert-nitro-frame {
    width: 48px;
    height: 48px;
  }

  .alert-donor-header {
    font-size: 0.9rem;
    gap: 0.35rem;
  }

  .alert-donated-label {
    font-size: 0.78rem;
  }

  .alert-amount-highlight {
    font-size: 0.85rem;
    padding: 2px 7px;
  }

  .alert-message-text {
    font-size: 0.82rem;
  }

  .mockup-leaderboard-preview {
    margin-top: 0.6rem;
    gap: 0.45rem;
  }

  .mockup-lb-row {
    padding: 0.55rem 0.75rem;
  }

  .mockup-lb-name {
    font-size: 0.85rem;
  }

  .mockup-lb-badge {
    font-size: 0.6rem;
    padding: 1px 5px;
  }

  .mockup-lb-amount {
    font-size: 0.85rem;
    padding: 3px 8px;
  }

  .btn-simulate-hero {
    padding: 0.65rem 1rem !important;
    font-size: 0.85rem !important;
  }

  /* 🌟 Section Common */
  .section-py {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.7rem;
    line-height: 1.25;
    margin-bottom: 0.65rem;
  }

  .section-desc {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .section-subtitle-pill {
    font-size: 0.74rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.65rem;
  }

  /* 🌟 Overlays Showcase Tabs (Swipeable on Mobile) */
  .overlays-showcase-container {
    padding: 1.25rem 0.85rem;
    border-radius: var(--radius-lg);
  }

  .overlay-tabs-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.45rem;
    padding-bottom: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .overlay-tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
    flex-shrink: 0;
    gap: 0.35rem;
  }

  .overlay-tab-pane {
    gap: 1.5rem;
  }

  .tab-content-info {
    text-align: center;
  }

  .tab-content-info h3 {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
  }

  .tab-content-info p {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1rem;
  }

  .tab-features-list {
    text-align: left;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
  }

  .tab-features-list li {
    font-size: 0.82rem;
    padding: 0.45rem 0.65rem;
    gap: 0.5rem;
  }

  .tab-content-info .btn {
    width: 100%;
    justify-content: center;
  }

  .tab-preview-display {
    padding: 1.25rem 0.75rem;
    min-height: 260px;
    border-radius: var(--radius-md);
  }

  /* Subathon timer responsive font */
  #tab-pane-timer .tab-preview-display div[style*="font-size:3.5rem"],
  #tab-pane-timer .tab-preview-display div[style*="font-size: 3.5rem"] {
    font-size: 2.35rem !important;
  }

  /* 🌟 Bento Cards */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bento-col-2 {
    grid-column: span 1;
  }

  .bento-card {
    padding: 1.4rem 1.1rem;
    border-radius: var(--radius-lg);
  }

  .bento-title {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
  }

  .bento-desc {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  /* 🌟 How It Works */
  .step-card {
    padding: 1.5rem 1.1rem;
    border-radius: var(--radius-lg);
  }

  .step-number-badge {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }

  .step-title {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
  }

  .step-desc {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  /* 🌟 FAQ Section */
  .faq-container {
    gap: 0.65rem;
  }

  .faq-question-btn {
    padding: 1rem 1.1rem;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 1.1rem 1rem 1.1rem;
    font-size: 0.84rem;
    line-height: 1.55;
  }

  /* 🌟 CTA Banner */
  .cta-banner-card {
    padding: 2.2rem 1.1rem;
    border-radius: var(--radius-lg);
  }

  .cta-banner-title {
    font-size: 1.55rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }

  .cta-banner-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .cta-banner-card .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
  }

  /* 🌟 Footer */
  .footer {
    padding: 3rem 0 1.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.2rem;
  }

  .footer-brand-desc {
    font-size: 0.86rem;
    margin-top: 0.75rem;
    max-width: 100%;
  }

  .footer-col-title {
    font-size: 0.92rem;
    margin-bottom: 0.85rem;
  }

  .footer-links {
    gap: 0.55rem;
  }

  .footer-link {
    font-size: 0.86rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
    font-size: 0.78rem;
  }

  /* 🌟 Auth Modal */
  .modal-backdrop {
    padding: 0.75rem;
  }

  .auth-modal-card {
    padding: 1.75rem 1.15rem 1.25rem 1.15rem;
    border-radius: var(--radius-lg);
    max-width: 100%;
  }

  .modal-close-btn {
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .auth-tabs-toggle {
    margin-top: 0.75rem;
    margin-bottom: 1.2rem;
    padding: 3px;
  }

  .auth-tab-btn {
    padding: 0.5rem;
    font-size: 0.85rem;
  }

  .auth-label {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }

  .auth-input {
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }

  .btn-otp-styled {
    font-size: 0.68rem !important;
    padding: 0.3rem 0.45rem !important;
  }

  #modal-btn-submit {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .btn-google-auth {
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
  }
}

/* 🌟 Ultra-Compact Mobile Phones (iPhone SE, iPhone 12/13 mini, < 400px) */
@media (max-width: 400px) {
  .container {
    padding: 0 0.75rem;
  }

  .brand-full-logo-img {
    height: 28px;
    max-width: 100px;
  }

  .nav-actions {
    gap: 0.25rem;
  }

  .lang-toggle-btn {
    height: 28px;
    padding: 0 6px;
    font-size: 0.7rem;
  }

  .btn-nav-signin {
    padding: 0.32rem 0.5rem !important;
    font-size: 0.72rem !important;
  }

  .btn-nav-signup {
    padding: 0.32rem 0.6rem !important;
    font-size: 0.72rem !important;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-pill-badge {
    font-size: 0.68rem;
    padding: 0.25rem 0.6rem;
  }

  .hero-badges-row {
    gap: 0.5rem 0.75rem;
  }

  .hero-badge-item {
    font-size: 0.72rem;
  }

  .mockup-stream-stage {
    padding: 0.75rem 0.5rem;
  }

  .mockup-floating-alert {
    padding: 0.65rem 0.6rem;
    gap: 0.5rem;
  }

  .alert-avatar-wrap {
    width: 38px;
    height: 38px;
  }

  .alert-avatar-circle {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .alert-nitro-frame {
    width: 42px;
    height: 42px;
  }

  .alert-donor-header {
    font-size: 0.8rem;
  }

  .alert-amount-highlight {
    font-size: 0.76rem;
    padding: 1px 5px;
  }

  .alert-message-text {
    font-size: 0.75rem;
  }
}

/* ========================================================
   🌐 TRANSLUCENT GLASS SOCIAL PILLS & FOOTER CONTACT LINKS
   ======================================================== */
.footer-social-pills {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-glass-pill {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

.social-glass-pill:hover {
  transform: translateY(-4px) scale(1.12);
}

.pill-discord:hover {
  background: rgba(88, 101, 242, 0.25);
  border-color: #5865f2;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

.pill-facebook:hover {
  background: rgba(24, 119, 242, 0.25);
  border-color: #1877f2;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.5);
}

.pill-youtube:hover {
  background: rgba(255, 0, 0, 0.25);
  border-color: #ff0000;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.pill-telegram:hover {
  background: rgba(34, 158, 217, 0.25);
  border-color: #229ed9;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(34, 158, 217, 0.5);
}

/* Floating Tooltip */
.social-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.social-glass-pill:hover .social-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Footer Column 4 Direct Contact Pills */
.footer-contact-pill-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.footer-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.95rem;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius-full);
  color: #e2e8f0;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  width: fit-content;
}

.footer-contact-pill:hover {
  transform: translateX(6px);
  color: #ffffff;
}

.footer-contact-pill.pill-discord:hover {
  border-color: #5865f2;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.25) 0%, rgba(15, 23, 42, 0.6) 100%);
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.35);
  color: #a5b4fc;
}

.footer-contact-pill.pill-facebook:hover {
  border-color: #1877f2;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.25) 0%, rgba(15, 23, 42, 0.6) 100%);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.35);
  color: #93c5fd;
}

.footer-contact-pill.pill-youtube:hover {
  border-color: #ff0000;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.25) 0%, rgba(15, 23, 42, 0.6) 100%);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
  color: #fca5a5;
}

.footer-contact-pill.pill-telegram:hover {
  border-color: #229ed9;
  background: linear-gradient(135deg, rgba(34, 158, 217, 0.25) 0%, rgba(15, 23, 42, 0.6) 100%);
  box-shadow: 0 6px 20px rgba(34, 158, 217, 0.35);
  color: #7dd3fc;
}

/* ========================================================
   🚀 STREAMERS ON HONGTIN DONATE (RUNNING MARQUEE ANIMATION)
   ======================================================== */
.streamers-showcase-section {
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  padding-bottom: 3.5rem;
}

.streamer-running-wrapper {
  position: relative;
  width: 100%;
  margin-top: 2rem;
  overflow: hidden;
}

.streamer-running-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}

.streamer-running-container::before,
.streamer-running-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 5;
  pointer-events: none;
}

.streamer-running-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(11, 15, 25, 0.98), transparent);
}

.streamer-running-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(11, 15, 25, 0.98), transparent);
}

.streamer-running-track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: max-content;
  animation: runningStreamersLoop 30s linear infinite;
  padding: 1rem 0;
}

.streamer-running-track:hover {
  animation-play-state: paused;
}

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

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

/* Single Compact Running Glass Pill Ticker - Pure CSS Neon Ring */
.running-streamer-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.9rem 0.35rem 0.35rem;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  white-space: nowrap;
}

.running-streamer-pill:hover {
  transform: translateY(-4px) scale(1.06);
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(15, 23, 42, 0.8) 100%);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.45);
}

.pill-avatar-wrap {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  background: linear-gradient(135deg, #f59e0b, #ec4899, #10b981);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
  animation: glowRingPulse 3s infinite alternate;
}

@keyframes glowRingPulse {
  0% {
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
  }

  100% {
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.7);
  }
}

.pill-avatar-fallback {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pill-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
}

.pill-online-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid #0f172a;
  box-shadow: 0 0 8px #10b981;
  z-index: 3;
}

.pill-streamer-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pill-btn-tip {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.35));
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.2);
}

.running-streamer-pill:hover .pill-btn-tip {
  background: #10b981;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.8);
  transform: scale(1.05);
}

/* ========================================================
   🌀 CUSTOM ROTATING SQUARE LOADER SYSTEM
   ======================================================== */
@keyframes square-animation {
  0% {
    left: 0;
    top: 0;
  }

  10.5% {
    left: 0;
    top: 0;
  }

  12.5% {
    left: 32px;
    top: 0;
  }

  23% {
    left: 32px;
    top: 0;
  }

  25% {
    left: 64px;
    top: 0;
  }

  35.5% {
    left: 64px;
    top: 0;
  }

  37.5% {
    left: 64px;
    top: 32px;
  }

  48% {
    left: 64px;
    top: 32px;
  }

  50% {
    left: 32px;
    top: 32px;
  }

  60.5% {
    left: 32px;
    top: 32px;
  }

  62.5% {
    left: 32px;
    top: 64px;
  }

  73% {
    left: 32px;
    top: 64px;
  }

  75% {
    left: 0;
    top: 64px;
  }

  85.5% {
    left: 0;
    top: 64px;
  }

  87.5% {
    left: 0;
    top: 32px;
  }

  98% {
    left: 0;
    top: 32px;
  }

  100% {
    left: 0;
    top: 0;
  }
}

.loader {
  position: relative;
  width: 96px;
  height: 96px;
  transform: rotate(45deg);
  display: inline-block;
  vertical-align: middle;
}

.loader-btn-inline {
  width: 22px;
  height: 22px;
  transform: rotate(45deg) scale(0.22);
  transform-origin: center center;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}

.loader-square {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  margin: 2px;
  border-radius: 4px;
  background: var(--primary, #f59e0b);
  background-size: cover;
  background-position: center;
  animation: square-animation 10s ease-in-out infinite both;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.loader-square:nth-of-type(1) {
  animation-delay: -1.4285714286s;
}

.loader-square:nth-of-type(2) {
  animation-delay: -2.8571428571s;
}

.loader-square:nth-of-type(3) {
  animation-delay: -4.2857142857s;
}

.loader-square:nth-of-type(4) {
  animation-delay: -5.7142857143s;
}

.loader-square:nth-of-type(5) {
  animation-delay: -7.1428571429s;
}

.loader-square:nth-of-type(6) {
  animation-delay: -8.5714285714s;
}

.loader-square:nth-of-type(7) {
  animation-delay: -10s;
}

/* ========================================================
   🎨 OVERLAY PREVIEW MINI-ANIMATIONS
   ======================================================== */
@keyframes shimmerBar {
  0% {
    transform: translateX(-100%);
  }

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

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

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

@keyframes spinWheelSlow {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}