/* MASTER SPACE — Landing Page & Auth Modal */
.landing-page { min-height: 100vh; display: flex; flex-direction: column; background: var(--bg-primary); position: relative; overflow-x: hidden; color: var(--text-primary); }
.landing-page::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 20% 10%, rgba(245,197,24,0.12) 0%, transparent 45%), radial-gradient(ellipse at 80% 90%, rgba(57,167,81,0.08) 0%, transparent 45%), radial-gradient(circle at 50% 50%, rgba(10,10,10,0.95) 0%, #050505 100%); pointer-events: none; z-index: 0; }

.landing-header { position: relative; z-index: 10; display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; border-bottom: 1px solid var(--border-primary); background: rgba(10, 10, 10, 0.65); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.landing-logo { height: 40px; }
.landing-header .btn { padding: 6px 14px; font-size: 0.82rem; }

.landing-hero { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; align-items: center; padding: 60px 5% 80px; text-align: center; }
.landing-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; color: var(--text-primary); }
.landing-hero h1 span { color: var(--yellow); }
.landing-hero p { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--text-secondary); max-width: 800px; margin: 0 auto 40px; line-height: 1.6; }
.landing-hero .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.landing-features { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 0 5% 30px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 768px) { .landing-features { grid-template-columns: 1fr; } }
.feature-card { background: rgba(20, 20, 20, 0.35); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: var(--radius-lg); padding: 35px 30px; text-align: left; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03); }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(245, 197, 24, 0.3); box-shadow: 0 15px 40px rgba(245, 197, 24, 0.08), 0 10px 30px rgba(0, 0, 0, 0.4); }
.feature-icon { font-size: 2.8rem; margin-bottom: 24px; color: var(--yellow); }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 14px; color: #ffffff; font-weight: 700; }
.feature-card p { color: #cbd5e1; line-height: 1.7; font-size: 0.95rem; }

/* Auth Modal Styles */
.auth-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; overflow-y: auto; padding: 20px 10px; box-sizing: border-box; }
.auth-modal-overlay.active { opacity: 1; visibility: visible; }

.login-container { width: 100%; max-width: 440px; padding: 20px; margin: auto; }
.login-card { position: relative; background: var(--bg-card-glass, rgba(22, 22, 22, 0.45)); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border-card-glass, rgba(255, 255, 255, 0.08)); border-radius: var(--radius-xl); padding: 32px 30px; transform: translateY(20px); transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease; box-shadow: var(--shadow-card-glass, 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05)); }
.auth-modal-overlay.active .login-card { transform: translateY(0); }

/* Hover glow effect via pseudo-element */
.login-card::after { content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px; border-radius: var(--radius-xl); background: transparent; animation: glow-border 2s ease-in-out infinite; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; z-index: -1; }
.login-card:hover::after { opacity: 1; }

.close-modal { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; transition: color 0.2s; }
.close-modal:hover { color: var(--text-primary); }

.login-logo { width: 150px; margin: 0 auto 10px; display: block; }
.login-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 4px; }
.login-title span { color: var(--yellow); }
.login-subtitle { text-align: center; color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 20px; }
.login-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); border-radius: var(--radius-md); padding: 12px 16px; color: #FCA5A5; font-size: 0.85rem; margin-bottom: 20px; display: none; }
.login-btn { width: 100%; padding: 14px; font-size: 1rem; margin-top: 12px; }
.login-footer { text-align: center; margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); }

.remember-me { display: flex; align-items: center; gap: 10px; margin-top: 12px; color: var(--text-secondary); font-size: 0.9rem; cursor: pointer; user-select: none; }
.remember-me input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.remember-me .check-box {
  position: relative; width: 18px; height: 18px; flex-shrink: 0;
  background: var(--bg-input); border: 1.5px solid var(--border-light); border-radius: 5px;
  transition: all var(--transition-fast); display: flex; align-items: center; justify-content: center;
}
.remember-me input[type="checkbox"]:checked ~ .check-box,
.remember-me input[type="checkbox"]:checked + .check-box {
  background: var(--yellow); border-color: var(--yellow);
}
.remember-me .check-box::after {
  content: ''; display: block; width: 5px; height: 9px;
  border: 2px solid #000; border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px); opacity: 0; transition: opacity var(--transition-fast);
}
.remember-me input[type="checkbox"]:checked ~ .check-box::after,
.remember-me input[type="checkbox"]:checked + .check-box::after { opacity: 1; }
.remember-me input[type="checkbox"]:focus ~ .check-box,
.remember-me input[type="checkbox"]:focus + .check-box { box-shadow: 0 0 0 3px rgba(245,197,24,0.15); }

/* Global App Footer (version + copyright) */
.app-footer { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px 16px 16px; font-size: 0.75rem; color: var(--text-muted); border-top: 1px solid var(--border-primary); margin-top: auto; opacity: 0.8; }
.app-footer span { color: var(--yellow); font-weight: 600; }
.footer-logo { height: 20px; opacity: 0.7; margin-bottom: 8px; filter: grayscale(100%); transition: filter 0.3s ease; }
.app-footer:hover .footer-logo { filter: grayscale(0%); opacity: 1; }

/* ── Portal Page Wrapper ── */
.portal-page-wrapper {
  min-height: 100vh;
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 24px 24px;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ── Portal Top-bar ── */
.portal-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 12px;
  flex-wrap: wrap;
}
.portal-topbar-left { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.portal-topbar-right { display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; }
.portal-topbar-right #top-name { font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; }

/* Admin page styles */
.admin-page .page-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.search-box { display: flex; align-items: center; gap: 8px; background: var(--bg-card); border: 1.5px solid var(--border-light); border-radius: var(--radius-md); padding: 8px 14px; min-width: 250px; box-shadow: inset 0 2px 4px rgba(0,0,0,0.15); transition: border-color var(--transition-fast); }
.search-box:focus-within { border-color: var(--yellow); box-shadow: inset 0 2px 4px rgba(0,0,0,0.05), 0 0 0 4px rgba(245,197,24,0.15); }
.search-box input { background: none; border: none; color: var(--text-primary); outline: none; width: 100%; font-size: 0.9rem; }
.search-box svg { width: 18px; height: 18px; color: var(--text-muted); flex-shrink: 0; }



/* Learner portal styles */
.portal-welcome { background: linear-gradient(135deg, rgba(245,197,24,0.08), rgba(57,167,81,0.05)); border: 1px solid var(--border-primary); border-radius: var(--radius-xl); padding: 32px; margin-bottom: 28px; }
.portal-welcome h2 { font-size: 1.6rem; margin-bottom: 8px; }
.portal-welcome .learner-id { color: var(--yellow); font-family: monospace; font-size: 1rem; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 20px; }
.info-item { padding: 16px; background: var(--bg-card); border-radius: var(--radius-md); border: 1px solid var(--border-primary); }
.info-item label { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.info-item span { font-size: 0.95rem; font-weight: 600; }

/* Status stepper */
.status-stepper { display: flex; align-items: center; gap: 0; margin: 24px 0; overflow-x: auto; padding: 8px 0; }
.step { display: flex; flex-direction: column; align-items: center; flex: 1; min-width: 80px; position: relative; }
.step-dot { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--border-light); background: var(--bg-card); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: var(--text-muted); z-index: 1; transition: all var(--transition-normal); }
.step.completed .step-dot { background: var(--green); border-color: var(--green); color: white; }
.step.active .step-dot { background: var(--yellow); border-color: var(--yellow); color: black; animation: pulse-cta 2s ease-in-out infinite; }
.step-label { font-size: 0.7rem; color: var(--text-muted); margin-top: 6px; text-align: center; }
.step.completed .step-label { color: var(--green); }
.step.active .step-label { color: var(--yellow); font-weight: 600; }
.step-line { flex: 1; height: 2px; background: var(--border-light); min-width: 20px; }
.step-line.completed { background: var(--green); }

/* Quiz interface */
.quiz-container { max-width: 800px; margin: 0 auto; }
.quiz-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; padding: 20px; background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border-primary); }
.quiz-timer { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--yellow); }
.quiz-timer.danger { color: var(--danger); animation: pulse-cta 0.5s ease-in-out infinite; }
.quiz-progress { font-size: 0.9rem; color: var(--text-secondary); }
.question-card { background: var(--bg-card); border: 1px solid var(--border-primary); border-radius: var(--radius-xl); padding: 32px; margin-bottom: 24px; animation: slideInUp 0.4s ease; }
.question-number { font-size: 0.8rem; color: var(--yellow); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.question-text { font-size: 1.15rem; font-weight: 600; margin-bottom: 24px; line-height: 1.5; }
.option-list { display: flex; flex-direction: column; gap: 12px; }
.option-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: var(--radius-md); border: 1px solid var(--border-primary); cursor: pointer; transition: all var(--transition-fast); }
.option-item:hover { border-color: var(--yellow-dark); background: rgba(245,197,24,0.05); }
.option-item.selected { border-color: var(--yellow); background: rgba(245,197,24,0.1); }
.option-item.correct { border-color: var(--green); background: rgba(57,167,81,0.1); }
.option-item.wrong { border-color: var(--danger); background: rgba(239,68,68,0.1); }
.option-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all var(--transition-fast); }
.option-item.selected .option-radio { border-color: var(--yellow); background: var(--yellow); }
.option-item.selected .option-radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: black; }
.option-text { font-size: 0.95rem; }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 24px; }

/* Quiz results */
.result-card { text-align: center; padding: 48px; }
.result-score { font-family: var(--font-display); font-size: 4rem; font-weight: 900; margin: 16px 0; }
.result-score.passed { color: var(--green); }
.result-score.failed { color: var(--danger); }
.result-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: var(--radius-full); font-size: 1rem; font-weight: 700; }
.result-badge.passed { background: rgba(57,167,81,0.15); color: var(--green); }
.result-badge.failed { background: rgba(239,68,68,0.15); color: var(--danger); }

/* Credential card shown after registration */
.credential-card { background: linear-gradient(135deg, rgba(245,197,24,0.1), rgba(57,167,81,0.05)); border: 1px solid var(--yellow-dark); border-radius: var(--radius-lg); padding: 24px; margin-top: 16px; }
.credential-card h4 { color: var(--yellow); margin-bottom: 12px; font-size: 0.95rem; }
.credential-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border-primary); }
.credential-row:last-child { border-bottom: none; }
.credential-label { color: var(--text-secondary); font-size: 0.85rem; }
.credential-value { font-weight: 600; font-family: monospace; font-size: 0.95rem; }

/* ── Pages Responsive — Tablet (1024px) ── */
@media (max-width: 1024px) {
  .portal-welcome { padding: 24px; }
  .portal-welcome h2 { font-size: 1.3rem; }
  .quiz-container { padding: 0 8px; }
}

/* ── Pages Responsive — Mobile (768px) ── */
@media (max-width: 768px) {
  /* Login */
  .login-card { padding: 28px 20px; }
  .login-logo { width: 150px; }
  .login-title { font-size: 1.2rem; }

  /* Landing page header */
  .landing-header { padding: 12px 5%; }
  .landing-logo { height: 32px; }
  .landing-header .btn { padding: 5px 10px; font-size: 0.75rem; }
  .landing-hero .btn-group .btn { padding: 12px 20px; font-size: 0.95rem; }

  /* Portal page wrapper — proper breathing room */
  .portal-page-wrapper {
    padding: 16px 16px;
  }

  /* Portal top-bar */
  .portal-topbar { margin-bottom: 20px; gap: 8px; }
  .portal-topbar-right #top-name { display: none; }
  .portal-topbar-right .btn { padding: 6px 12px; font-size: 0.75rem; }

  /* Portal welcome / hero */
  .portal-welcome { padding: 22px 20px; margin-bottom: 24px; }
  .portal-welcome h2 { font-size: 1.25rem; }

  /* Info grid */
  .info-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
  .info-item { padding: 14px; }
  .info-item label { font-size: 0.67rem; }
  .info-item span { font-size: 0.9rem; }

  /* Status stepper */
  .status-stepper { overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 8px 0; }
  .step { min-width: 60px; }
  .step-dot { width: 26px; height: 26px; font-size: 0.6rem; }
  .step-label { font-size: 0.6rem; }
  .step-line { min-width: 12px; }

  /* Quiz panel (intro / outro) */
  .quiz-panel { padding: 28px 20px; }

  /* Question card */
  .question-card { padding: 20px; }
  .question-text { font-size: 1rem; }

  /* Options */
  .option-item { padding: 12px; gap: 10px; }
  .option-text { font-size: 0.85rem; }

  /* Quiz timer */
  .quiz-timer { font-size: 1.4rem; }

  /* Results */
  .result-card { padding: 24px; }
  .result-score { font-size: 2.8rem; }

  /* Credential card */
  .credential-card { padding: 16px; }
  .credential-row { flex-direction: column; align-items: flex-start; gap: 4px; }

  /* Quiz fullscreen */
  .quiz-fullscreen { padding: 16px 16px; }
  .quiz-container-inner { width: 100%; }
  .question-display { font-size: 1.1rem; margin-bottom: 28px; }
  .options-grid { gap: 12px; }
  .option-block { padding: 16px 18px; font-size: 0.95rem; }
  .quiz-header-status { font-size: 1rem; margin-bottom: 20px; }
  .timer-bar-wrap { width: 80px; }
  .timer-current { font-size: 1.1rem; }
}

/* ── Pages Responsive — Large Mobile (430px) ── */
@media (max-width: 430px) {
  /* Login */
  .login-container { padding: 14px; }
  .login-card { padding: 24px 18px; }
  .login-logo { width: 130px; }

  /* Portal top-bar */
  .portal-topbar { margin-bottom: 16px; }

  /* Portal page wrapper — tighter on small screens */
  .portal-page-wrapper { padding: 14px 14px; }

  /* Portal welcome */
  .portal-welcome { padding: 18px 16px; border-radius: var(--radius-lg); }

  /* Info grid: 2 columns */
  .info-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .info-item { padding: 12px; }

  /* Quiz nav stack */
  .quiz-nav { flex-direction: column; gap: 8px; }
  .quiz-nav .btn { width: 100%; }

  /* Quiz fullscreen */
  .quiz-fullscreen { padding: 12px 12px; }
  .quiz-panel { padding: 22px 16px; }
  .question-display { font-size: 1rem; margin-bottom: 20px; }
  .option-block { padding: 14px 14px; font-size: 0.9rem; }
  .timer-bar-wrap { width: 60px; }

  /* Result score */
  .result-score { font-size: 2.2rem; }
}

/* ── Pages Responsive — Small Phone (< 390px) ── */
@media (max-width: 390px) {
  .login-card { padding: 20px 14px; }
  .login-logo { width: 110px; }
  .portal-page-wrapper { padding: 12px 12px; }
  .portal-welcome { padding: 16px 14px; }
  .info-item { padding: 10px 12px; }
  .quiz-panel { padding: 16px 12px; }
  .question-display { font-size: 0.95rem; }
  .option-block { padding: 12px; font-size: 0.85rem; }
  .result-score { font-size: 2rem; }
}

/* --- Floating Tech Icons --- */
.tech-icon { position: absolute; width: 48px; height: 48px; color: rgba(255, 255, 255, 0.05); z-index: 0; pointer-events: none; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.tech-icon.floating-1 { top: 15%; left: 10%; width: 64px; height: 64px; animation: float-slow 8s ease-in-out infinite; }
.tech-icon.floating-2 { top: 40%; right: 12%; width: 80px; height: 80px; animation: float-slow 12s ease-in-out infinite reverse; }
.tech-icon.floating-3 { bottom: 20%; left: 20%; width: 56px; height: 56px; animation: float-slow 10s ease-in-out infinite; }

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* --- Success Transition Overlay --- */
.success-overlay { position: fixed; inset: 0; background: #0f172a; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.5s ease, visibility 0.5s ease; }
.success-overlay.active { opacity: 1; visibility: visible; }
.success-content { text-align: center; color: white; display: flex; flex-direction: column; align-items: center; transform: scale(0.9); opacity: 0; transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s, opacity 0.6s ease 0.2s; }
.success-overlay.active .success-content { transform: scale(1); opacity: 1; }
.success-logo { width: 220px; margin-bottom: 30px; animation: pulse-glow 2s infinite; }
.success-loader { width: 40px; height: 40px; border: 3px solid rgba(245, 197, 24, 0.2); border-top-color: var(--yellow); border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 20px; }

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(245, 197, 24, 0.2)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 25px rgba(245, 197, 24, 0.6)); transform: scale(1.02); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Premium Auth Mobile Modal (Centered) ── */
@media (max-width: 576px) {
  .auth-modal-overlay {
    align-items: center;
    backdrop-filter: blur(8px);
    padding: 16px;
  }
  
  .login-container {
    padding: 0;
    width: 100%;
  }
  
  .login-card {
    border-radius: 24px;
    padding: 24px 20px 20px;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
  }
  
  .auth-modal-overlay.active .login-card {
    transform: scale(1) !important;
  }
  
  .close-modal {
    top: 16px;
    right: 16px;
    font-size: 1.5rem;
  }
}

/* Invitation Section on Landing Page */
.landing-invite {
  text-align: center;
  padding: 10px 5% 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.landing-invite p {
  color: #cbd5e1;
  font-size: 0.95rem;
  max-width: 600px;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}
.landing-invite .btn-invite {
  border: 1.5px solid var(--yellow);
  color: var(--yellow);
  background: rgba(245, 197, 24, 0.08);
  font-weight: 600;
  transition: all 0.3s ease;
}
.landing-invite .btn-invite:hover {
  background: rgba(245, 197, 24, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(245, 197, 24, 0.25);
}
.landing-invite .btn-invite:active {
  transform: translateY(0);
}

/* ════════════════════════════════════════════════
   LIGHT THEME OVERRIDES
   ════════════════════════════════════════════════ */
html.light-theme .landing-header { background: rgba(255, 255, 255, 0.85); border-bottom-color: var(--border-primary); }
html.light-theme .landing-hero h1 { color: var(--text-primary); }
html.light-theme .feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  box-shadow: var(--shadow-md);
}
html.light-theme .feature-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-lg), 0 0 15px var(--yellow-glow);
}
html.light-theme .feature-card h3 { color: var(--text-primary); }
html.light-theme .feature-card p { color: var(--text-secondary); }
html.light-theme .login-card {
  background: var(--bg-card-glass);
  border-color: var(--border-card-glass);
  box-shadow: var(--shadow-card-glass);
}
html.light-theme .auth-modal-overlay { background: rgba(255, 255, 255, 0.7); }
html.light-theme .landing-invite p { color: var(--text-secondary); }
html.light-theme .landing-invite .btn-invite {
  background: var(--yellow-glow);
  border-color: var(--yellow);
  color: var(--yellow-dark);
}
html.light-theme .landing-invite .btn-invite:hover {
  background: rgba(217, 119, 6, 0.3);
  box-shadow: 0 0 15px rgba(217, 119, 6, 0.3);
}
