/* Standardized Loading Spinner */
.spinner-body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  z-index: 99999999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.spinner-body.spinner-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Quantum Ring Spinner */
/* Flutterwave-Style Fast Spinner */
.stopreg-spinner {
  width: 50px;
  height: 50px;
  position: relative;
  will-change: transform;
}

.stopreg-spinner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.1);
  /* Light transparent track */
  border-top-color: var(--secondary-color);
  /* Brand color for the active spin */
  animation: stopreg-spin 0.35s linear infinite;
  /* Very fast, linear rotation */
  box-sizing: border-box;
  will-change: transform;
}

/* Removed inner pulse for performance and style alignment */
.stopreg-spinner::after {
  display: none;
}

@keyframes stopreg-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);

  }
}

/* Button Spinner (Flutterwave Style) - Unique Class */
.stopreg-btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50%;
  border-top-color: #ffffff !important;
  animation: stopreg-btn-spin 0.27s linear infinite !important;
  vertical-align: middle;
  margin-right: 8px;
  will-change: transform;
}

@keyframes stopreg-btn-spin {
  0% {
    transform: rotate(0deg);
  }

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

/* Legacy Support: Hide old elements if they exist */
.lds-roller {
  display: none !important;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  overflow-y: auto;
  overflow-x: hidden;
}

.overlay-animate {
  animation: fadeIn 0.5s;
}

#otp-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: flex-start;
  /* Allows scrolling from top */
  z-index: 999999;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 0;
  /* Add top/bottom padding for small screens */

}

.otp-container {
  padding: 0 40px;
}

.otp-box {
  width: 100%;
  max-width: 400px;
  padding: 25px 30px;
  padding-top: 0;
  border-radius: 10px;
  position: relative;
  text-align: center;
  animation: slideDown 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
  background: white;
  border-radius: 12px;
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }

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

.otp-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  cursor: pointer;
  border: none;
  background: none;
}

.otp-inputs {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 20px 0;
}


.otp-input {
  width: 45px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  border: 2px solid #ddd;
  border-radius: 8px;
}

.otp-input:focus {
  border-color: #007bff;
  outline: none;
}

.otp-submit-btn {
  background-color: var(--color-two);
  border: none;
  height: 46px;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Inter_28pt-SemiBold";
  color: var(--color-six);
  margin-bottom: 40px;
  width: 100%;
}

.otp-resend {
  margin-top: 12px;
  font-size: 16px;
}

#resend-otp-btn,
#resend-verify-btn {
  color: #007bff;
  cursor: pointer;
  font-weight: bold;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

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

.fadeOut {
  animation: fadeOut 0.3s forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0.9);
  }
}

.hidden-overflow {
  overflow-y: hidden !important;
}

/* Fix: Stop inner containers from scrolling when modal is active */
body.hidden-overflow .auth-right-section,
body.hidden-overflow .auth-page-wrapper {
  overflow: hidden !important;
}

.box {
  opacity: 0;
  transition: opacity 1s, transform 1s;
}

.box.visible-ani {
  opacity: 1;
}

@keyframes animation1 {
  from {
    transform: translateY(50px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes animation2 {
  from {
    transform: translateX(-50px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes animation3 {
  from {
    transform: translateX(50px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes animation4 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes animation5 {
  from {
    transform: translate(0, 50px);
  }

  to {
    transform: translate(0, 0);
  }
}

@keyframes animation6 {
  from {
    transform: translateY(-50px);
  }

  to {
    transform: translateY(0);
  }
}

.box.animation1.visible-ani {
  animation: animation1 1s both;
}

.box.animation2.visible-ani {
  animation: animation2 1s both;
}

.box.animation3.visible-ani {
  animation: animation3 1s both;
}

.box.animation4.visible-ani {
  animation: animation4 4s forwards;
}

.box.animation5.visible-ani {
  animation: animation5 1s both;
}

.box.animation6.visible-ani {
  animation: animation6 1s both;
}

/* Hamburger Menu */

.nav-icon2 {
  display: none;
}

.nav-icon2,
.nav-icon2-mobile {
  width: 23px;
  height: 23px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.nav-icon2 span,
.nav-icon2-mobile span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  background: var(--primary-color);
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.nav-icon2 span:nth-child(even),
.nav-icon2-mobile span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

.nav-icon2 span:nth-child(odd),
.nav-icon2-mobile span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

.nav-icon2 span:nth-child(1),
.nav-icon2 span:nth-child(2),
.nav-icon2-mobile span:nth-child(1),
.nav-icon2-mobile span:nth-child(2) {
  top: 0px;
}

.nav-icon2 span:nth-child(3),
.nav-icon2 span:nth-child(4),
.nav-icon2-mobile span:nth-child(3),
.nav-icon2-mobile span:nth-child(4) {
  top: 7px;
}

.nav-icon2 span:nth-child(5),
.nav-icon2 span:nth-child(6),
.nav-icon2-mobile span:nth-child(5),
.nav-icon2-mobile span:nth-child(6) {
  top: 14px;
}

.nav-icon2.open span:nth-child(1),
.nav-icon2.open span:nth-child(6),
.nav-icon2-mobile.open span:nth-child(1),
.nav-icon2-mobile.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-icon2.open span:nth-child(2),
.nav-icon2.open span:nth-child(5),
.nav-icon2-mobile.open span:nth-child(2),
.nav-icon2-mobile.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-icon2.open span:nth-child(1),
.nav-icon2-mobile.open span:nth-child(1) {
  left: 2px;
  top: 3px;
}

.nav-icon2.open span:nth-child(2),
.nav-icon2-mobile.open span:nth-child(2) {
  left: calc(50% - 2px);
  top: 3px;
}

.nav-icon2.open span:nth-child(3),
.nav-icon2-mobile.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

.nav-icon2.open span:nth-child(4),
.nav-icon2-mobile.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

.nav-icon2.open span:nth-child(5),
.nav-icon2-mobile.open span:nth-child(5) {
  left: 2px;
  top: 11px;
}

.nav-icon2.open span:nth-child(6),
.nav-icon2-mobile.open span:nth-child(6) {
  left: calc(50% - 2px);
  top: 11px;
}

.nav-menu {
  position: fixed;
  bottom: 0px;
  top: 0px;
  left: -100%;
  gap: 0;
  height: 100vh;
  background-color: var(--color-six);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  font-family: "Satoshi-Medium";
  font-size: 20px;
  width: 100%;
  text-align: center;
  transition: 0.3s;
  z-index: 9999999999;
  padding-left: 16px;
  padding-right: 16px;
}

.nav-menu.active {
  left: 0;
}

.nav-menu-sect-one {
  display: flex;
  align-items: center;
  padding: var(--mobile-padding);
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
}

.land-logo {
  height: 57px;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.land-logo>img {
  width: 100%;
  height: 100%;
}

.privacy-hero {
  background-image: url("/assets/images/landing/common/privacy-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;


}

.privacy-hero h1 {
  font-family: 'PlusJakartaSans-ExtraBold', sans-serif;
  color: #252525;
  font-size: 48px;
  line-height: 160%;
}

.privacy-hero p {
  font-family: 'PlusJakartaSans-Regular', sans-serif;
  color: #737373;
  font-size: 20px;
  text-align: center;
  line-height: 160%;
}

.privecy-contents {
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding: 80px 24px;
  box-sizing: border-box;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 10px !important;
}

.privacy-section h1 {
  font-family: 'PlusJakartaSans-SemiBold', sans-serif;
  font-size: 32px;
  color: #000000;
  margin-bottom: 16px;
}

.privacy-section p,
.privacy-section li {
  font-family: 'PlusJakartaSans-Regular', sans-serif;
  font-size: 20px;
  color: #737373;
  line-height: 160%;
}

@media (max-width: 768px) {

  /* Fix: Ensure modal remains centered and full screen on mobile */
  #otp-modal {
    display: none;
    /* Toggled by JS to flex */
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
    height: 100dvh;
    width: 100%;

    /* Ensure no scroll on the modal container itself if possible, or handle overflow */
  }

  .otp-inputs {
    display: flex;
    gap: 8px;
    /* Slightly smaller gap */
    justify-content: center;
    margin: 20px 0;
  }

  .otp-input {
    width: 25px;
    height: 30px;
    font-size: 24px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 8px;
  }

  .otp-container {
    height: fit-content;
    width: 100%;
  }

  .privecy-contents {
    padding: 40px 16px;
  }

  .privacy-hero h1 {
    font-size: 24px;
  }

  .privacy-hero {
    height: 240px;
  }

  .privacy-hero p {
    font-size: 12px;
  }

  .privecy-contents {
    gap: 16px;
  }

  .privacy-section h1 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 12px;
  }


}

/* =========================================
   GLOBAL PREMIUM ANIMATIONS
   ========================================= */

/* Use JS to toggle visibility and trigger animations */
.term-animate-hidden {
  opacity: 0 !important;
  visibility: hidden;
  will-change: transform, opacity, filter;
}

/* 1. Elegant Fade Up */
@keyframes fadeInUpPremium {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0) scale(0.96);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.animate-fade-up {
  animation: fadeInUpPremium 1.1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

/* 2. Soft Scale & Blur */
@keyframes blurScalePremium {
  0% {
    opacity: 0;
    transform: scale(0.92);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    filter: blur(0);
  }
}

.animate-soft-scale {
  animation: blurScalePremium 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 3. 3D Tilt Reveal */
@keyframes tiltUpPremium {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateX(10deg) translate3d(0, 30px, 0);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: perspective(1000px) rotateX(0deg) translate3d(0, 0, 0);
    filter: blur(0);
  }
}

.animate-tilt-up {
  transform-style: preserve-3d;
  animation: tiltUpPremium 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* 4. Elastic Slide In */
@keyframes elasticSlidePremium {
  0% {
    opacity: 0;
    transform: translate3d(-40px, 0, 0) skewX(-2deg);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) skewX(0);
  }
}

.animate-skew-slide {
  animation: elasticSlidePremium 1.1s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
}

/* Hero Special Animation */
@keyframes heroRevealMindBlowing {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateX(30deg) translateY(100px) scale(0.8);
    filter: blur(10px);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  50% {
    transform: perspective(1000px) rotateX(-10deg) translateY(-20px) scale(1.05);
    box-shadow: 0 30px 60px rgba(20, 82, 202, 0.3);
    /* Blue glow from brand color */
    filter: blur(0);
  }

  75% {
    transform: perspective(1000px) rotateX(5deg) translateY(10px) scale(0.98);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
    filter: blur(0);
    box-shadow: 20px 20px 40px 0px #25252514;
    /* Restore original shadow */
  }
}

.box.premium-reveal.visible-ani {
  animation: heroRevealMindBlowing 1.4s cubic-bezier(0.25, 1, 0.5, 1) both;
  will-change: transform, opacity, filter, box-shadow;
  transform-style: preserve-3d;
}


/* =========================================
   PREMIUM ERROR UI
   ========================================= */

/* Backdrop with Glassmorphism */
.error-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 20, 30, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999999;
  padding: 24px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: opacity;
  pointer-events: none;
}

.error-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Premium Content Container */
.premium-error {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 420px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  will-change: transform, opacity;
}

.premium-error.active-animate {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Close Button */
.error-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #9CA3AF;
  cursor: pointer;
  transition: color 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.error-close-btn:hover {
  color: #1F2937;
  background: #F3F4F6;
}

/* Animated Icon Wrapper */
.error-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FEF2F2;
  color: #DC2626;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}

.error-icon-svg {
  width: 40px;
  height: 40px;
  animation: errorShake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation-delay: 0.2s;
}

.error-icon-wrapper::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #FEE2E2;
  animation: iconPulse 1.5s infinite;
}

/* Typography */
.error-title {
  font-family: 'PlusJakartaSans-ExtraBold', sans-serif;
  font-size: 24px;
  color: #111827;
  margin: 0 0 12px 0;
}

.error-message-text {
  font-family: 'PlusJakartaSans-Regular', sans-serif;
  font-size: 16px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
  word-break: break-word;
  /* Ensure long error texts wrap */
  padding: 0 10px;
}

/* Animations */
@keyframes errorShake {

  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

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

/* Remove Old Styles if not needed, or just scope these */

/* =========================================
   CUSTOM ANIMATED FORM VALIDATION
   ========================================= */

/* Error Message Styling */
.custom-input-error {
  color: #DC2626;
  /* Red-600 */
  font-family: 'PlusJakartaSans-SemiBold', sans-serif;
  font-size: 13px;
  margin-top: 8px;
  /* Increased for better clearance */
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(0);
  /* Removed negative pull */
  animation: slideDownFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  /* Mind-blowing smooth spring */
  will-change: transform, opacity;
}

/* Error Icon (Optional, inline SVG usually better) */
.custom-input-error::before {
  content: "!";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  background: #FEE2E2;
  /* Red-100 */
  color: #DC2626;
  border-radius: 50%;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Input Border Highlight */
.input-error-border {
  border-color: #DC2626 !important;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1) !important;
  /* Subtle glow */
  transition: all 0.3s ease;
}

/* Animation Keyframes */
@keyframes slideDownFade {
  0% {
    opacity: 0;
    transform: translateY(-4px) scale(0.95);
  }

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

/* OTP Modal Entrance Animation */
.otp-modal {
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  /* Hide interaction when not active */
}

.otp-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.otp-modal .otp-container {
  transform: scale(0.95) translateY(10px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  /* FIX: Force reset margins from index.css to ensure centering */
  margin: auto !important;
  /* Ensure it doesn't touch edges on small screens */
  max-width: 608px;
  width: 90%;
  flex-shrink: 0;
  /* Prevent crushing */
  will-change: transform, opacity;
  /* GPU Hint */
}

.otp-modal.active .otp-container {
  transform: scale(1) translateY(0);
  opacity: 1;

  /* --- OTP Multi-View Logic --- */
  .otp-view {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    animation: fadeIn 0.4s ease;
  }

  .otp-view.active {
    display: flex;
  }

  .otp-view.hidden {
    display: none;
  }

  /* --- Premium Animations --- */

  /* 1. Verifying Loader (Sleek Spinner) */
  .stopreg-verification-loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(20, 82, 202, 0.1);
    /* Light Blue */
    border-top: 4px solid var(--color-one);
    /* Primary Blue */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 24px;
    will-change: transform;
  }

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

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

  /* 2. Success Animation (Checkmark) */
  .stopreg-success-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .stopreg-checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke: #4CAF50;
    /* Green */
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }

  .stopreg-checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke: #4CAF50;
    /* Green */
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
  }

  @keyframes stroke {
    100% {
      stroke-dashoffset: 0;
    }
  }

  /* 3. Error Animation (Pulse) */
  .stopreg-error-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #FF5252;
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  @keyframes popIn {
    0% {
      opacity: 0;
      transform: scale(0.5);
    }

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

  /* Button & Typography Tweaks for States */
  .cr-auth-header {
    margin-top: 0;
  }

  #redirect-timer {
    font-weight: 800;
    color: var(--color-one);
  }
}

/* Dashboard Content Wrapper */
/* Dashboard Content Wrapper */
.dash-section-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Global Autofill Neutralization */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* =========================================
   API DOCUMENTATION COMPONENTS
   ========================================= */

.docs-table-wrapper {
  margin: 16px 0;
  border-radius: 12px;
  border: 1px solid var(--color-twenty);
  overflow-x: auto;
  background: var(--color-six);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  -webkit-overflow-scrolling: touch;
}

.docs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'PlusJakartaSans-Regular', sans-serif;
  font-size: 16px;
  min-width: 700px;
}

.docs-table th {
  background: var(--color-ten);
  color: var(--primary-color);
  text-align: left;
  padding: 16px 20px;
  font-family: 'PlusJakartaSans-Bold', sans-serif;
  border-bottom: 2px solid var(--color-twenty);
  white-space: nowrap;
}
.docs-table td:first-child {
  white-space: nowrap;
}

.docs-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-twenty);
  color: var(--color-three);
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
}

.docs-table td:nth-child(2) {
  white-space: nowrap;
}

.docs-table tr:last-child td {
  border-bottom: none;
}

.docs-table tr:hover td {
  background-color: var(--color-twenty-five);
}

.field-name {
  font-family: 'PlusJakartaSans-Bold', sans-serif;
  color: var(--secondary-color);
  font-size: 16px;
  word-break: normal;
}

/* Data Type Badges */
.type-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-family: 'PlusJakartaSans-Bold', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 8px;
  vertical-align: middle;
}

.type-string { background: #e0f2fe; color: #0369a1; }
.type-boolean { background: #dcfce7; color: #166534; }
.type-object { background: #f3e8ff; color: #7e22ce; }
.type-array { background: #fef9c3; color: #854d0e; }
.type-integer { background: #ffedd5; color: #9a3412; }

.field-desc {
  display: block;
  color: var(--color-twelve);
  font-size: 16px;
  margin-top: 8px;
}

.field-desc li {
  font-size: 16px !important;
  margin-bottom: 4px;
}

.docs-content-list h4 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-family: 'PlusJakartaSans-Bold', sans-serif;
  color: var(--primary-color);
  font-size: 20px;
  border-left: 4px solid var(--secondary-color);
  padding-left: 12px;
}

.field-desc code,
.docs-table code {
  font-size: 16px !important;
}