/* Custom Stylesheet Base Framework Config & Theme Injections */
:root {
  --brand-accent: #3b82f6;
  --brand-accent-hover: #2563eb;
  --brand-accent-light: rgba(59, 130, 246, 0.1);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --bg-input: #0f173a;
  --bg-card: rgba(11, 17, 44, 0.6);
  --bg-section: #070c24;
  --font-stack: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --radius: 10px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --transition: 0.2s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
  box-sizing: border-box;
}

body {
  background-color: #040714;
  color: var(--text-main);
  font-family: var(--font-stack);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(4, 7, 20, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  min-height: 64px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--brand-accent);
}

/* Mobile Menu Toggle */
.menu-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 1rem;
}

.menu-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Navigation Links - Mobile First (hidden by default) */
.nav-links {
  display: none;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(4, 7, 20, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links.active {
  display: flex;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-links a:last-child {
  border-bottom: none;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a i {
  width: 20px;
  color: var(--brand-accent);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  padding: 40px 0 30px;
  text-align: center;
}

.hero-badge {
  background: var(--brand-accent-light);
  color: var(--brand-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-section h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}

.gradient-text {
  background: linear-gradient(to right, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 4px;
}

/* ============================================
   DASHBOARD CARDS
   ============================================ */
.dashboard-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.dash-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: left;
  transition: transform var(--transition), border-color var(--transition);
}

.dash-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.2);
}

.card-icon {
  font-size: 1.75rem;
  color: var(--brand-accent);
  margin-bottom: 16px;
}

.dash-card h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
}

.dash-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 20px;
}

.action-link {
  color: var(--brand-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.action-link:hover {
  gap: 10px;
}

/* ============================================
   FORM SECTIONS
   ============================================ */
.form-section-block {
  background: var(--bg-section);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-xl);
  padding: 24px 16px;
  margin-bottom: 30px;
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: 1.3rem;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.section-header p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

.form-container {
  max-width: 800px;
}

.form-row-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.form-element {
  margin-bottom: 16px;
}

.form-element label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #cbd5e1;
}

.form-element input,
.form-element select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.95rem;
  box-sizing: border-box;
  transition: border-color var(--transition);
  font-family: var(--font-stack);
  appearance: none;
  -webkit-appearance: none;
}

.form-element input:focus,
.form-element select:focus {
  outline: none;
  border-color: var(--brand-accent);
}

.form-element input::placeholder {
  color: rgba(148, 163, 184, 0.4);
}

/* ============================================
   SUBDOMAIN INPUT
   ============================================ */
.subdomain-input-wrapper {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding-right: 12px;
  transition: border-color var(--transition);
  flex-wrap: wrap;
}

.subdomain-input-wrapper:focus-within {
  border-color: var(--brand-accent);
}

.subdomain-input-wrapper input {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
  flex: 1;
  min-width: 80px;
}

.subdomain-suffix-text {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  user-select: none;
  white-space: nowrap;
}

/* ============================================
   TERMS CHECKBOX
   ============================================ */
.terms-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.terms-wrapper input {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--brand-accent);
}

.terms-wrapper label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-submit {
  width: 100%;
  background: var(--brand-accent);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--transition), transform var(--transition);
  font-family: var(--font-stack);
}

.btn-submit:hover {
  background: var(--brand-accent-hover);
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ============================================
   GATEWAY PORTAL CARD
   ============================================ */
.gateway-portal-link-section {
  margin-top: 30px;
  margin-bottom: 20px;
}

.gateway-portal-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: rgba(15, 23, 58, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 16px;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}

.gateway-portal-card:hover {
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(15, 23, 58, 0.6);
}

.gateway-portal-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.gateway-portal-icon {
  background: var(--brand-accent-light);
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  flex-shrink: 0;
}

.gateway-portal-meta h4 {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 2px 0;
}

.gateway-portal-meta p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
}

.gateway-portal-action {
  color: var(--brand-accent);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.gateway-portal-action i {
  font-size: 0.8rem;
  transition: transform var(--transition);
}

.gateway-portal-card:hover .gateway-portal-action i {
  transform: translateX(4px);
}

/* ============================================
   MODAL
   ============================================ */
.cly-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 7, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
}

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

.cly-modal-overlay .modal-box {
  background: #0b112c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  padding: 24px 20px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  box-sizing: border-box;
  max-height: 90vh;
  overflow-y: auto;
}

.cly-modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px 0;
}

.modal-header h3 i {
  color: var(--brand-accent);
}

.modal-body {
  padding: 0;
  margin-bottom: 16px;
}

.verification-notice-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

#paymentChannelSelect {
  background: var(--bg-input);
  color: #fff;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-stack);
  font-size: 0.95rem;
  appearance: none;
  -webkit-appearance: none;
}

.card-injection-placeholder {
  background: var(--bg-input);
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.paypal-btn-spacing {
  text-align: center;
  padding: 12px 0 4px;
}

.paypal-color-override {
  background: #0070ba;
  width: 100%;
}

.paypal-color-override:hover {
  background: #005ea6;
}

.modal-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.cancel-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 11px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
  font-family: var(--font-stack);
  width: 100%;
}

.cancel-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* ============================================
   FEEDBACK
   ============================================ */
.network-feedback {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  margin-top: 40px;
}

.footer-content {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-content p {
  margin: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hide-element { display: none !important; }
.zero-margin { margin: 0 !important; width: auto; padding: 11px 24px; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablets & Small Laptops */
@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }

  .hero-section {
    padding: 50px 0 40px;
  }

  .hero-section h1 {
    font-size: 2.4rem;
  }

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

  .form-section-block {
    padding: 30px 24px;
  }

  .form-row-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gateway-portal-card {
    flex-direction: row;
    align-items: center;
    padding: 20px 24px;
  }

  .gateway-portal-action {
    flex-shrink: 0;
  }

  .modal-footer {
    flex-direction: row;
    justify-content: flex-end;
  }

  .cancel-btn {
    width: auto;
  }

  .cly-modal-overlay .modal-box {
    padding: 28px 32px;
  }
}

/* Tablets & Desktops */
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  /* Show nav links on desktop */
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border-bottom: none;
  }

  .nav-links a {
    border-bottom: none;
    padding: 8px 4px;
    font-size: 0.9rem;
  }

  .nav-links a i {
    display: none;
  }

  /* Hide hamburger on desktop */
  .menu-toggle-btn {
    display: none;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-section p {
    font-size: 1.05rem;
  }

  .dashboard-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .dash-card {
    padding: 28px 24px;
  }

  .form-section-block {
    padding: 36px 32px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }
}

/* Large Desktops */
@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .hero-section h1 {
    font-size: 3.5rem;
  }

  .dashboard-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .dash-card {
    padding: 32px;
  }

  .form-section-block {
    padding: 40px;
  }

  .form-row-group {
    gap: 20px;
  }
}

/* Extra Large Desktops */
@media (min-width: 1280px) {
  .container {
    max-width: 1100px;
  }

  .hero-section h1 {
    font-size: 3.8rem;
  }
}

/* ============================================
   SMALL SCREEN FIXES (Phones < 480px)
   ============================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .navbar {
    padding: 12px 0;
    min-height: 56px;
  }

  .logo {
    font-size: 1rem;
  }

  .hero-section {
    padding: 30px 0 20px;
  }

  .hero-section h1 {
    font-size: 1.6rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 4px 12px;
  }

  .hero-section p {
    font-size: 0.9rem;
    padding: 0;
  }

  .dashboard-cards {
    gap: 16px;
  }

  .dash-card {
    padding: 18px 16px;
  }

  .dash-card h3 {
    font-size: 1rem;
  }

  .dash-card p {
    font-size: 0.85rem;
  }

  .form-section-block {
    padding: 18px 14px;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .section-header h2 {
    font-size: 1.1rem;
  }

  .section-header p {
    font-size: 0.8rem;
  }

  .form-element input,
  .form-element select {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .form-element label {
    font-size: 0.8rem;
  }

  .btn-submit {
    padding: 12px;
    font-size: 0.9rem;
  }

  .subdomain-suffix-text {
    font-size: 0.7rem;
  }

  .gateway-portal-card {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .gateway-portal-meta {
    gap: 12px;
  }

  .gateway-portal-icon {
    width: 36px;
    height: 36px;
  }

  .gateway-portal-meta h4 {
    font-size: 0.85rem;
  }

  .gateway-portal-meta p {
    font-size: 0.75rem;
  }

  .gateway-portal-action {
    font-size: 0.85rem;
  }

  .cly-modal-overlay .modal-box {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .modal-header h3 {
    font-size: 1rem;
  }

  .verification-notice-text {
    font-size: 0.8rem;
  }

  footer {
    padding: 18px 0;
    margin-top: 30px;
  }

  .footer-content {
    font-size: 0.7rem;
  }
}

/* ============================================
   LOGIN PAGE SPECIFIC
   ============================================ */

/* Login form wrapper - centered with max-width */
.login-form-wrapper {
  max-width: 520px;
  margin: 0 auto 40px;
}

/* Responsive adjustments for login page */
@media (max-width: 480px) {
  .login-form-wrapper {
    margin: 0 0 30px;
    padding: 18px 14px;
  }

  .login-form-wrapper .section-header h2 {
    font-size: 1.1rem;
  }

  .login-form-wrapper .section-header p {
    font-size: 0.8rem;
  }
}

@media (min-width: 640px) {
  .login-form-wrapper {
    padding: 30px 28px;
  }
}

/* ============================================
   PHONE INPUT WITH COUNTRY CODE
   ============================================ */
.phone-input-wrapper {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.country-code-select {
  flex: 0 0 auto;
  min-width: 160px;
  max-width: 200px;
  padding: 12px 8px 12px 10px;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.85rem;
  font-family: var(--font-stack);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
  cursor: pointer;
}

.country-code-select:focus {
  border-color: var(--brand-accent);
}

.country-code-select option {
  background: #0b112c;
  color: #fff;
  padding: 8px;
}

.phone-input-wrapper input[type="tel"] {
  flex: 1;
  min-width: 120px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .phone-input-wrapper {
    flex-direction: column;
    gap: 6px;
  }

  .country-code-select {
    flex: 1;
    max-width: 100%;
    min-width: 100%;
    padding: 10px 12px;
  }
}

/* ============================================
   EMAIL VERIFICATION BANNER - Glowing Animation
   ============================================ */
.verification-banner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(41, 161, 222, 0.08) 0%, rgba(41, 161, 222, 0.02) 100%);
  border: 1px solid rgba(41, 161, 222, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  animation: verificationGlow 3s ease-in-out infinite;
}

@keyframes verificationGlow {
  0%, 100% {
    border-color: rgba(41, 161, 222, 0.2);
    box-shadow: 0 0 20px rgba(41, 161, 222, 0.05);
  }
  50% {
    border-color: rgba(41, 161, 222, 0.5);
    box-shadow: 0 0 40px rgba(41, 161, 222, 0.15);
  }
}

.verification-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(41, 161, 222, 0.05) 0%, transparent 70%);
  animation: verificationShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes verificationShimmer {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10%, 5%);
  }
}

.verification-banner-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(41, 161, 222, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #29a1de;
  position: relative;
  z-index: 1;
}

.verification-banner-icon i {
  animation: verificationPulse 2s ease-in-out infinite;
}

@keyframes verificationPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.verification-banner-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.verification-banner-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #29a1de;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.verification-banner-title i {
  font-size: 0.9rem;
}

.verification-banner-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0 0 8px 0;
}

.verification-banner-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius);
  color: #f59e0b;
  font-size: 0.82rem;
  font-weight: 500;
}

.verification-banner-note i {
  font-size: 0.9rem;
  flex-shrink: 0;
}

.verification-banner-note span {
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .verification-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 16px;
    gap: 14px;
  }

  .verification-banner-title {
    justify-content: center;
    font-size: 1rem;
  }

  .verification-banner-note {
    text-align: left;
    font-size: 0.75rem;
    padding: 8px 12px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .verification-banner {
    padding: 18px 20px;
  }
  
  .verification-banner-icon {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }
}

/* ============================================
   REGISTRATION MODAL
   ============================================ */
.registration-modal-box {
  max-width: 480px;
}

.registration-status-content {
  text-align: center;
  padding: 12px 0;
}

.status-icon {
  font-size: 3rem;
  color: var(--brand-accent);
  margin-bottom: 16px;
}

.status-icon .fa-check-circle {
  color: #34d399;
}

.status-icon .fa-times-circle {
  color: #ef4444;
}

#registrationStatusText {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.registration-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  margin: 16px 0 24px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-accent), #60a5fa);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-fill.complete {
  width: 100%;
  background: #34d399;
}

.progress-fill.error {
  width: 100%;
  background: #ef4444;
}

.registration-success-details .success-icon {
  font-size: 4rem;
  color: #34d399;
  margin-bottom: 12px;
}

.registration-success-details .success-message-text {
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 600;
}

.registration-success-details .success-sub-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.registration-error-details .error-message-text {
  color: #ef4444;
  font-size: 0.95rem;
  margin: 16px 0;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: 8px;
}

.registration-error-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.registration-error-actions .btn-secondary {
  width: auto;
  padding: 10px 24px;
  font-size: 0.85rem;
}

.registration-error-actions .btn-secondary i {
  margin-right: 6px;
}

/* ============================================
   LOGIN MODAL STYLES
   ============================================ */
.login-modal-box {
  max-width: 480px;
}

.login-status-content {
  text-align: center;
  padding: 12px 0;
}

.status-icon {
  font-size: 3rem;
  color: var(--brand-accent);
  margin-bottom: 16px;
}

.status-icon .fa-check-circle {
  color: #34d399;
}

.status-icon .fa-times-circle {
  color: #ef4444;
}

.status-icon .fa-lock {
  color: #f59e0b;
}

.status-icon .fa-ban {
  color: #ef4444;
}

#loginStatusText {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.login-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  margin: 16px 0 24px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-accent), #60a5fa);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-fill.complete {
  width: 100%;
  background: #34d399;
}

.progress-fill.error {
  width: 100%;
  background: #ef4444;
}

.login-success-details .success-icon,
.login-locked-details .locked-icon,
.login-blocked-details .blocked-icon {
  font-size: 4rem;
  margin-bottom: 12px;
}

.login-success-details .success-icon {
  color: #34d399;
}

.login-locked-details .locked-icon {
  color: #f59e0b;
}

.login-blocked-details .blocked-icon {
  color: #ef4444;
}

.login-success-details .success-message-text,
.login-locked-details .locked-message-text,
.login-blocked-details .blocked-message-text {
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 600;
}

.login-success-details .success-sub-text,
.login-locked-details .locked-sub-text,
.login-blocked-details .blocked-sub-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.login-error-details .error-message-text {
  color: #ef4444;
  font-size: 0.95rem;
  margin: 16px 0;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: 8px;
}

.login-error-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.login-error-actions .btn-secondary {
  width: auto;
  padding: 10px 24px;
  font-size: 0.85rem;
}

.login-error-actions .btn-secondary i {
  margin-right: 6px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .login-modal-box {
    max-width: 100%;
  }

  .status-icon {
    font-size: 2.5rem;
  }

  .login-success-details .success-icon,
  .login-locked-details .locked-icon,
  .login-blocked-details .blocked-icon {
    font-size: 3rem;
  }

  .login-success-details .success-message-text,
  .login-locked-details .locked-message-text,
  .login-blocked-details .blocked-message-text {
    font-size: 0.95rem;
  }

  .login-error-actions {
    flex-direction: column;
    align-items: center;
  }

  .login-error-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}