@import url('https://fonts.googleapis.com/css2?family=Amiri+Quran&family=Amiri:wght@400;700&family=Scheherazade+New:wght@400;700&family=Noto+Naskh+Arabic:wght@400;500;600;700&display=swap');

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Amiri', serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  padding-bottom: 70px;
  transition: background-color 0.3s, color 0.3s;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5l7.07 7.07L30 19.14l-7.07-7.07L30 5zm0 35.86l7.07 7.07L30 55l-7.07-7.07L30 40.86zM5 30l7.07-7.07L19.14 30l-7.07 7.07L5 30zm35.86 0l7.07-7.07L55 30l-7.07 7.07L40.86 30z' fill='none' stroke='%231b7a3d' stroke-width='0.3' opacity='0.06'/%3E%3C/svg%3E");
}

[data-theme="dark"] body {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5l7.07 7.07L30 19.14l-7.07-7.07L30 5zm0 35.86l7.07 7.07L30 55l-7.07-7.07L30 40.86zM5 30l7.07-7.07L19.14 30l-7.07 7.07L5 30zm35.86 0l7.07-7.07L55 30l-7.07 7.07L40.86 30z' fill='none' stroke='%234caf50' stroke-width='0.3' opacity='0.04'/%3E%3C/svg%3E");
}

/* ============ Pages / Sections ============ */
.page {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  padding: 16px;
}

.page.active {
  display: block;
  animation: fadeInUp 0.25s ease-out;
}

/* ============ Header ============ */
.app-header {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.app-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-header);
}

.app-header h1 {
  font-family: 'Amiri Quran', serif;
  font-size: 1.4rem;
  color: var(--accent);
}

.header-actions {
  display: flex;
  gap: 8px;
}

/* ============ Bottom Nav ============ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 100;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.7rem;
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.2s;
}

.nav-item.active {
  color: var(--accent);
  position: relative;
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: navDotAppear 0.3s ease-out;
}

.nav-item.active svg {
  filter: drop-shadow(0 0 4px rgba(27,122,61,0.3));
}

[data-theme="dark"] .nav-item.active svg {
  filter: drop-shadow(0 0 4px rgba(76,175,80,0.3));
}

.nav-item svg {
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
}

/* ============ Auth Pages ============ */
.auth-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 32px;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  animation: fadeInScale 0.3s ease-out;
}

[data-theme="dark"] .auth-container {
  border: var(--card-border);
}

.auth-container h2 {
  font-family: 'Amiri Quran', serif;
  text-align: center;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 1.8rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--input-bg);
  color: var(--text-primary);
  font-family: 'Amiri', serif;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Amiri', serif;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--gradient-accent-btn);
  background-size: 200% auto;
  color: white;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-accent);
  transition: background-position 0.3s, transform 0.1s, box-shadow 0.3s;
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: var(--shadow-accent);
}

/* Ripple effect */
.btn-primary .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  width: 20px;
  height: 20px;
  transform: scale(0);
  animation: ripple 0.5s ease-out;
  pointer-events: none;
}

.btn-secondary {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.btn-icon {
  padding: 8px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.btn-icon:hover {
  background: var(--bg-hover);
  color: var(--accent);
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.85rem;
}

.btn-danger {
  background: var(--danger);
  color: white;
}

.auth-link {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.auth-link a {
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}

.error-msg {
  background: var(--danger-light);
  color: var(--danger);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: none;
}

.error-msg.visible {
  display: block;
}

/* ============ Surah List ============ */
.surah-list {
  list-style: none;
}

.surah-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.surah-item:hover {
  background: var(--bg-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Stagger animation for surah list */
.surah-item.stagger-in {
  animation: staggerFadeIn 0.3s ease-out both;
}

/* Completed surah gold badge */
.surah-item.completed .surah-number {
  background: var(--gold-bg);
  color: #fff;
  font-weight: bold;
}

.surah-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-hover);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex-shrink: 0;
  margin-left: 12px;
}

.surah-info {
  flex: 1;
  text-align: right;
}

.surah-name-ar {
  font-family: 'Amiri Quran', serif;
  font-size: 1.3rem;
  color: var(--text-primary);
}

.surah-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.surah-progress-bar {
  width: 60px;
  height: 4px;
  background: var(--bg-hover);
  border-radius: 2px;
  overflow: hidden;
  margin-right: 12px;
  flex-shrink: 0;
}

.surah-progress-fill {
  height: 100%;
  background: var(--gradient-progress);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.surah-progress-fill.complete {
  background: var(--gradient-gold);
  background-size: 200% auto;
  animation: progressShimmer 3s linear infinite;
}

/* ============ Reader ============ */
.reader-header {
  text-align: center;
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 16px;
}

.reader-header h2 {
  font-family: 'Amiri Quran', serif;
  font-size: 1.6rem;
  color: var(--accent);
}

.reader-header .surah-info-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.bismillah {
  text-align: center;
  font-family: 'Noto Naskh Arabic', 'Scheherazade New', 'Amiri Quran', serif;
  font-size: 1.8rem;
  color: var(--text-ayah);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 16px;
}

.ayah-container {
  direction: rtl;
  text-align: justify;
  line-height: 2.2;
  padding: 8px 0;
}

.ayah {
  display: inline;
  font-family: 'Noto Naskh Arabic', 'Scheherazade New', 'Amiri Quran', serif;
  color: var(--text-ayah);
  transition: color 0.3s, background-color 0.3s;
}

.ayah.read {
  color: var(--read-text);
  background: var(--read-bg);
  border-radius: 4px;
  padding: 2px 4px;
}

.ayah-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.85em;
  padding: 0 6px;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
  user-select: none;
  vertical-align: middle;
  position: relative;
}

.ayah-marker:hover {
  background: var(--bg-hover);
  color: var(--accent);
}

.ayah-marker.read {
  color: var(--read-text);
}

.ayah-actions {
  display: inline-flex;
  gap: 2px;
  margin: 0 4px;
  vertical-align: middle;
}

.ayah-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 50%;
  font-size: 0.75rem;
  transition: color 0.2s, background 0.2s;
}

.ayah-actions button:hover {
  background: var(--bg-hover);
  color: var(--accent);
}

.ayah-actions button.active {
  color: var(--accent);
}

.ayah-actions button.recording {
  color: var(--danger);
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ============ Surah Navigation ============ */
.surah-nav {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  margin-top: 24px;
  border-top: 1px solid var(--border-color);
}

.surah-nav button {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  cursor: pointer;
  font-family: 'Amiri', serif;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.surah-nav button:hover {
  background: var(--bg-hover);
}

.surah-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ============ Audio Player ============ */
.audio-player {
  position: fixed;
  bottom: 60px;
  left: 0;
  right: 0;
  background: var(--gradient-header);
  color: var(--player-text);
  padding: 8px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}

.audio-player.visible {
  display: flex;
}

.audio-player .player-info {
  font-size: 0.85rem;
  flex: 1;
  text-align: center;
}

.audio-player button {
  background: none;
  border: none;
  color: var(--player-text);
  cursor: pointer;
  padding: 8px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.audio-player button svg {
  width: 22px;
  height: 22px;
}

/* ============ Speech Recognition ============ */
.speech-result {
  direction: rtl;
  padding: 12px;
  margin: 8px 0;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-family: 'Amiri Quran', serif;
  font-size: 1.1rem;
  line-height: 2;
  display: none;
}

.speech-result.visible {
  display: block;
}

.speech-result .word-correct {
  color: var(--correct-word);
  font-weight: bold;
}

.speech-result .word-incorrect {
  color: var(--incorrect-word);
  text-decoration: underline;
}

.speech-accuracy {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ============ Bookmarks ============ */
.bookmark-list {
  list-style: none;
}

.bookmark-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  transition: transform 0.2s, box-shadow 0.2s;
}

.bookmark-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.bookmark-info {
  flex: 1;
  cursor: pointer;
  text-align: right;
}

.bookmark-info .bookmark-label {
  font-size: 1rem;
  color: var(--text-primary);
}

.bookmark-info .bookmark-ref {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.bookmark-delete {
  color: var(--danger);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 1.1rem;
}

/* ============ Settings ============ */
.settings-section {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.settings-section h3 {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.setting-label {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.font-size-slider {
  width: 150px;
  accent-color: var(--accent);
}

.font-size-preview {
  font-family: 'Amiri Quran', serif;
  text-align: center;
  padding: 16px;
  margin-top: 8px;
  color: var(--text-ayah);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  direction: rtl;
}

/* Toggle switch */
.toggle {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-active);
  border-radius: 26px;
  transition: background 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

/* ============ Streaks ============ */
.streak-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  transition: box-shadow 0.3s, border-color 0.3s;
  border: 2px solid transparent;
}

.streak-card.active-streak {
  border-color: var(--streak-fire);
  animation: streakGlow 2.5s ease-in-out infinite;
}

.streak-fire {
  font-size: 2.5rem;
  margin-bottom: 8px;
  display: inline-block;
}

.active-streak .streak-fire {
  animation: streakPulse 2s ease-in-out infinite;
}

.streak-number {
  font-size: 2rem;
  font-weight: bold;
  background: var(--gradient-streak);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.streak-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.stat-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  animation: fadeInScale 0.35s ease-out both;
  transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:nth-child(1) { animation-delay: 0.05s; }
.stat-card:nth-child(2) { animation-delay: 0.12s; }

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============ Loading / Empty States ============ */
.loading {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

.loading-spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid var(--border-color);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.empty-state {
  text-align: center;
  padding: 40px 16px;
  color: var(--text-muted);
}

.empty-state p {
  font-size: 1rem;
  margin-top: 8px;
}

/* ============ Toast ============ */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
  font-size: 0.9rem;
  z-index: 200;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  pointer-events: none;
  opacity: 0;
}

.toast.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============ Continue Reading Banner ============ */
.continue-banner {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s;
}

.continue-banner:hover {
  background: var(--read-bg);
}

.continue-text {
  font-size: 0.95rem;
  color: var(--accent);
}

/* ============ Suggestions ============ */
.suggestion-item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-card);
}

.suggestion-vote {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 40px;
}

.vote-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.vote-btn:hover {
  color: var(--accent);
}

.vote-btn.voted {
  color: var(--accent);
}

.vote-count {
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--text-primary);
}

.suggestion-content {
  flex: 1;
  min-width: 0;
}

.suggestion-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.suggestion-type {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: bold;
  flex-shrink: 0;
}

.type-suggestion {
  background: var(--accent-light);
  color: var(--accent);
}

.type-bug {
  background: var(--danger-light);
  color: var(--danger);
}

.suggestion-title {
  font-size: 0.95rem;
  color: var(--text-primary);
  word-break: break-word;
}

.suggestion-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
  word-break: break-word;
  white-space: pre-wrap;
}

.suggestion-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.suggestion-action-btn {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.7rem;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: 'Amiri', serif;
  transition: background 0.2s;
}

.suggestion-action-btn:hover {
  background: var(--bg-hover);
}

.suggestions-tab.active {
  background: var(--accent) !important;
  color: white !important;
  border-color: var(--accent) !important;
}

/* ============ Admin ============ */
.admin-main-tab.active,
.admin-stats-tab.active {
  background: var(--accent) !important;
  color: white !important;
  border-color: var(--accent) !important;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.admin-table th,
.admin-table td {
  padding: 10px 12px;
  text-align: right;
  border-bottom: 1px solid var(--border-color);
}

.admin-table th {
  background: var(--bg-hover);
  color: var(--text-secondary);
  font-weight: bold;
  font-size: 0.8rem;
}

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

.admin-user-name {
  font-weight: bold;
  color: var(--text-primary);
}

.admin-user-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.admin-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: bold;
  margin: 1px;
}

.admin-role {
  background: var(--accent-light);
  color: var(--accent);
}

.admin-banned {
  background: var(--danger-light);
  color: var(--danger);
}

.admin-active {
  background: #e8f5e9;
  color: #2e7d32;
}

[data-theme="dark"] .admin-active {
  background: rgba(46, 125, 50, 0.2);
}

.admin-actions-cell {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.admin-section {
  margin-top: 16px;
}

.admin-section h4 {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.leaderboard-rank {
  font-size: 1.1rem;
  text-align: center !important;
  width: 30px;
}

/* ============ Dark Mode Enhancements ============ */
[data-theme="dark"] .streak-card,
[data-theme="dark"] .stat-card {
  border: var(--card-border);
}

/* ============ Gold Accents ============ */
#total-surahs {
  color: var(--gold-text);
}

/* ============ Responsive ============ */
@media (max-width: 480px) {
  .page {
    padding: 12px;
  }

  .auth-container {
    margin: 20px 12px;
    padding: 24px 20px;
  }
}
