/* ====================================================
   SyncStream - SQUAP Glassmorphism Design System (Production Clone)
   Port 3070 (p7-auth-portal) -> Exact Match with s.nixelshop.tr/panel
   ==================================================== */

:root {
  --page: #08090d;
  --bg-surface: rgba(20, 20, 24, 0.9);
  --glass-blur: blur(20px);
  --font-sans: 'Sora', 'Vazirmatn', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', 'Vazirmatn', system-ui, -apple-system, sans-serif;
  --font-persian: 'Vazirmatn', system-ui, -apple-system, sans-serif;

  --text-main: rgba(255, 255, 255, 0.9);
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.65);
  --text-dim: rgba(255, 255, 255, 0.4);
  --border-subtle: rgba(255, 255, 255, 0.07);

  --glass-bg: rgba(10, 10, 12, 0.62);
  --glass-bg-card: rgba(14, 15, 20, 0.68);
  --glass-bg-elevated: rgba(22, 24, 32, 0.72);
  --glass-bg-input: rgba(8, 8, 10, 0.85);

  --glass-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), inset 0 -1px 1px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.45);
  --glass-card-shadow: 0 0 28px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.08);

  --axis-bg: #08090e;
  --axis-line: rgba(255, 255, 255, 0.04);
  --axis-tick: rgba(255, 255, 255, 0.8);
  --theme-transition-ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Accent: SQUAP Electric Blue (default) */
  --accent-main: #3650fd;
  --accent-main-glow: rgba(54, 80, 253, 0.3);
  --accent-glow: rgba(68, 92, 254, 0.8);
  --accent-glow-subtle: rgba(68, 92, 254, 0.28);
  --theme-btn-border: rgba(68, 92, 254, 0.4);
  --theme-badge-bg: rgba(68, 92, 254, 0.14);
  --theme-badge-color: #7c9dff;
  --theme-badge-border: rgba(68, 92, 254, 0.28);
  --glow: var(--accent-glow);

  /* Functional Status Tokens */
  --accent-green: #10b981;
  --accent-green-glow: rgba(16, 185, 129, 0.4);
  --accent-red: #ef4444;
  --accent-red-glow: rgba(239, 68, 68, 0.35);
  --accent-amber: #f59e0b;

  /* SQUAP Rounded Tokens */
  --radius-pill: 9999px;
  --radius-2xl: 24px;
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-persian);
  -webkit-tap-highlight-color: transparent !important;
}

html, body {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #08090d !important;
  background-image: radial-gradient(circle at 50% 0%, rgba(54, 80, 253, 0.22) 0%, rgba(54, 80, 253, 0.05) 50%, transparent 80%) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  background-attachment: fixed !important;
  color: var(--text-main);
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

/* ── Matrix Dot Grid & Top Ambient Glow Background (Exact Homepage Match without Spotlight) ── */
#matrix-bg-container,
#axis-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #08090d;
  background-image: radial-gradient(circle at 50% 0%, rgba(54, 80, 253, 0.22) 0%, rgba(54, 80, 253, 0.05) 50%, transparent 80%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
}

.grid-overlay,
#matrix-grid-overlay {
  position: fixed !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px) !important;
  background-size: 28px 28px !important;
  opacity: 1 !important;
}

/* ====================================================
   CURSOR TRACKING BORDER GLOW (SQUAP HALO SYSTEM)
   ==================================================== */
@media (min-width: 861px) {
  .modal-card::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    border-radius: inherit !important;
    pointer-events: none !important;
    padding: 1px !important;
    opacity: 0 !important;
    transition: opacity 0.28s ease !important;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) !important;
    -webkit-mask-composite: xor !important;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) !important;
    mask-composite: exclude !important;
    background: radial-gradient(300px circle at var(--x, 50%) var(--y, 50%),
      var(--accent-glow) 0%,
      var(--accent-glow-subtle) 45%,
      transparent 75%) !important;
    filter: drop-shadow(0 0 6px var(--accent-glow)) drop-shadow(0 0 14px var(--accent-glow-subtle)) !important;
    z-index: 10 !important;
  }
  .modal-card:hover::after {
    opacity: 1 !important;
  }
}

/* ============================================================
   MODAL OVERLAY & MODAL CARD (EXACT PRODUCTION /panel)
   ============================================================ */
.modal-overlay {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  z-index: 10;
}

.modal-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  box-shadow: var(--glass-card-shadow);
  padding: 22px 20px 24px;
  width: 100%;
  max-width: 430px;
  margin: auto !important;
  flex-shrink: 0;
  animation: modalScaleIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  transform: translateZ(0);
}

@keyframes modalScaleIn {
  from { opacity: 0; transform: translateY(18px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── LOBBY STAGE TOP BAR: BACK BUTTON (RIGHT) & BRAND (LEFT) ── */
.lobby-stage-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-lobby-back-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  padding: 6px 12px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-lobby-back-home:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(2px);
}
.btn-lobby-back-home i { width: 15px; height: 15px; }

.brand-title-wrap {
  display: flex;
  align-items: center;
  user-select: none;
}
.brand-name-dynamic {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

/* ── SLIGHTLY SMALLER FRAMELESS STROBI MASCOT (OPTIMIZED PROPORTIONS) ── */
.auth-mascot-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}
.strobi-mascot-frameless {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strobi-mascot-frameless strobi-avatar {
  width: 60px !important;
  height: 60px !important;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.8));
}
.auth-mascot-speech {
  font-size: 11.5px;
  color: var(--text-main);
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 7px 11px;
  text-align: right;
}

/* ════════════════════════════════════════════════════════════
   LEVEL 1: MAIN SEGMENTED BAR (ورود به حساب / ثبت‌نام کاربر)
   ════════════════════════════════════════════════════════════ */
.auth-main-segmented-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--glass-bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 3px;
  margin-bottom: 14px;
  gap: 4px;
}

.main-seg-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  min-height: 36px;
}
.main-seg-tab i { width: 14px; height: 14px; }
.main-seg-tab:hover { color: #ffffff; }
.main-seg-tab.active {
  background: linear-gradient(135deg, var(--accent-main) 0%, #4f67fe 100%);
  color: #ffffff;
  box-shadow: 0 2px 12px var(--accent-main-glow);
}

/* ════════════════════════════════════════════════════════════
   LEVEL 2: SUBTABS IN SINGLE INLINE ROW (پیامک / رمز عبور / کلید مهمان)
   ════════════════════════════════════════════════════════════ */
.auth-subtabs-inline-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 15px;
}

.subtab-inline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 6px 4px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  user-select: none;
  min-height: 34px;
}
.subtab-inline-btn i { width: 13px; height: 13px; color: var(--text-dim); transition: color 0.2s; }
.subtab-inline-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}
.subtab-inline-btn.active {
  background: linear-gradient(135deg, rgba(54, 80, 253, 0.22), rgba(99, 102, 241, 0.16));
  border-color: var(--accent-main);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(54, 80, 253, 0.3), inset 0 0 8px rgba(54, 80, 253, 0.15);
}
.subtab-inline-btn.active i { color: #60a5fa; }

/* ── INPUT GROUPS & PILL FIELDS (VERBATIM FROM PRODUCTION) ── */
.input-group {
  margin-bottom: 12px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.input-group label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.badge-optional { font-size: 10px; color: var(--text-dim); font-weight: 400; }
.badge-required { font-size: 10px; color: #60a5fa; font-weight: 600; }

.label-with-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.forgot-pass-link {
  font-size: 11px;
  color: var(--theme-badge-color);
  text-decoration: none;
}
.forgot-pass-link:hover { color: #fff; text-decoration: underline; }

.input-field {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  transition: all 0.2s ease;
  min-width: 0;
  min-height: 40px;
}
.input-field:focus-within {
  border-color: var(--accent-main);
  box-shadow: 0 0 0 2px var(--theme-badge-border);
}
.input-field i {
  color: var(--theme-badge-color);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.input-field input {
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 12.5px;
  outline: none;
  width: 100%;
  min-width: 0;
}
.input-field input::placeholder { color: var(--text-dim); }

.field-hint {
  font-size: 10.5px;
  color: var(--text-dim);
  margin-top: 1px;
  line-height: 1.3;
}

.input-with-button { display: flex; gap: 8px; }
.btn-secondary {
  background: var(--glass-bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  border-radius: var(--radius-pill);
  padding: 0 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-main);
}
.btn-secondary i { width: 15px; height: 15px; }

.input-with-toggle { position: relative; }
.btn-eye-toggle {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s;
}
.btn-eye-toggle:hover { color: var(--text-main); }
.btn-eye-toggle i { width: 15px; height: 15px; }

/* ── PRIMARY BUTTON (VERBATIM FROM PRODUCTION) ── */
.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-main), #6366f1);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  padding: 11px 16px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(54, 80, 253, 0.35);
  transition: all 0.2s ease;
  margin-top: 6px;
  min-height: 42px;
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(54, 80, 253, 0.5);
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.btn-primary:active { transform: scale(0.98); }
.btn-primary i { width: 16px; height: 16px; }

/* ── LOBBY ERROR BANNER (VERBATIM FROM PRODUCTION) ── */
.lobby-error-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  color: #fca5a5;
  font-size: 11.5px;
  margin-bottom: 12px;
  text-align: right;
}
.lobby-error-banner i { width: 14px; height: 14px; color: #ef4444; flex-shrink: 0; }

/* ── INVITE ROOM BANNER (VERBATIM FROM PRODUCTION) ── */
.invite-room-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(68, 92, 254, 0.18), rgba(168, 85, 247, 0.18));
  border: 1px solid rgba(68, 92, 254, 0.4);
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 14px;
  text-align: right;
}
.invite-banner-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(68, 92, 254, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a855f7;
  flex-shrink: 0;
}
.invite-banner-icon i { width: 16px; height: 16px; }
.invite-banner-text {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 1px;
}
.invite-banner-text span { font-size: 0.72rem; color: var(--text-muted); }
.invite-banner-text strong { font-size: 0.84rem; color: #fff; font-weight: 700; }

/* Password Strength Bar */
.password-strength-container { margin-top: 3px; }
.strength-bars { display: flex; gap: 4px; margin-bottom: 3px; }
.strength-bars .bar { flex: 1; height: 3px; background: rgba(255, 255, 255, 0.08); border-radius: 2px; transition: all 0.3s ease; }
.strength-bars.weak #str-bar-1 { background: var(--accent-red); box-shadow: 0 0 8px rgba(239, 68, 68, 0.5); }
.strength-bars.medium #str-bar-1, .strength-bars.medium #str-bar-2 { background: var(--accent-amber); box-shadow: 0 0 8px rgba(245, 158, 11, 0.5); }
.strength-bars.strong #str-bar-1, .strength-bars.strong #str-bar-2, .strength-bars.strong #str-bar-3 { background: var(--accent-green); box-shadow: 0 0 8px rgba(16, 185, 129, 0.5); }
.strength-label { font-size: 10px; color: var(--text-dim); display: block; }

/* Captcha */
.captcha-row { display: flex; align-items: center; gap: 8px; }
.captcha-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--theme-badge-bg);
  border: 1px dashed var(--theme-badge-border);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 0.92rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: #60a5fa;
  user-select: none;
}
.btn-captcha-refresh {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.btn-captcha-refresh:hover { color: #fff; transform: rotate(180deg); }
.btn-captcha-refresh i { width: 13px; height: 13px; }
.captcha-input-field { flex: 1; }
.captcha-input-field input { font-size: 0.95rem; font-weight: 800; text-align: center; }

/* 5-Digit OTP Verification Screen */
.otp-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--theme-badge-bg);
  border: 1px solid var(--theme-badge-border);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  color: #60a5fa;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.otp-phone-badge i { width: 13px; height: 13px; }
.otp-inputs-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 16px;
}
.otp-digit-box {
  width: 44px;
  height: 50px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg-input);
  border: 1.5px solid var(--border-subtle);
  text-align: center;
  font-size: 1.45rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: #fff;
  outline: none;
  transition: all 0.2s ease;
}
.otp-digit-box:focus {
  border-color: var(--accent-main);
  box-shadow: 0 0 16px rgba(54, 80, 253, 0.4);
  background: rgba(14, 18, 30, 0.98);
  transform: translateY(-2px);
}
.otp-timer-box {
  text-align: center;
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.otp-timer-box strong { color: #60a5fa; font-family: var(--font-display); }
.btn-resend-otp {
  background: transparent;
  border: none;
  color: var(--theme-badge-color);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.btn-resend-otp:hover { color: #fff; text-decoration: underline; }
.btn-resend-otp i { width: 13px; height: 13px; }
.btn-change-phone {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 0.76rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  margin-top: 10px;
  padding: 4px;
}
.btn-change-phone:hover { color: #fff; }
.btn-change-phone i { width: 13px; height: 13px; }

/* Success */
.auth-success-box { text-align: center; padding: 14px 0 4px; }
.success-icon-halo {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid #10b981;
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.35);
}
.success-icon-halo i { width: 30px; height: 30px; }
.auth-success-box h2 { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.auth-success-box p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 18px; }
.auth-redirect-progress {
  width: 100%; height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 18px;
}
.redirect-progress-bar {
  width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--accent-main), #60a5fa);
  border-radius: 2px;
  transition: width 2.5s linear;
}

/* Toast */
.toast-container-squap {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast-item-squap {
  background: rgba(15, 18, 28, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.toast-item-squap.success i { color: #34d399; }
.toast-item-squap.error i { color: #ef4444; }
.toast-item-squap.info i { color: #60a5fa; }

/* Status Badges */
.header-status-area { display: flex; align-items: center; gap: 6px; }
.guest-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: #facc15;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.guest-status-pill i { width: 12px; height: 12px; }
.user-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--theme-badge-bg);
  border: 1px solid var(--theme-badge-border);
  color: var(--theme-badge-color);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.user-status-pill i { width: 13px; height: 13px; }
.btn-profile-manage {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.btn-profile-manage i { width: 11px; height: 11px; }

/* ====================================================
   MOBILE OPTIMIZATION (<768px & <480px)
   ==================================================== */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 12px 10px;
  }
  .modal-card {
    padding: 16px 12px 20px;
    border-radius: 20px;
  }
  .brand-name-dynamic {
    font-size: 17px;
  }
  .btn-lobby-back-home {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
  .auth-mascot-row {
    gap: 10px;
    margin-bottom: 12px;
  }
  .strobi-mascot-frameless {
    width: 48px; height: 48px;
  }
  .strobi-mascot-frameless strobi-avatar {
    width: 48px !important; height: 48px !important;
  }
  .auth-mascot-speech {
    font-size: 10.5px;
    padding: 5px 8px;
  }
  .main-seg-tab {
    padding: 6px 10px;
    font-size: 11.5px;
    min-height: 34px;
  }
  .auth-subtabs-inline-row {
    gap: 4px;
  }
  .subtab-inline-btn {
    padding: 5px 2px;
    font-size: 9.5px;
    gap: 2.5px;
    min-height: 32px;
  }
  .subtab-inline-btn i {
    width: 11.5px; height: 11.5px;
  }
  .input-field {
    padding: 6px 12px;
    min-height: 37px;
  }
  .input-field input {
    font-size: 12px;
  }
  .btn-primary {
    padding: 10px;
    font-size: 13px;
    min-height: 40px;
  }
  .otp-digit-box {
    width: 38px;
    height: 46px;
    font-size: 1.3rem;
  }
}
