/* ═══════════════════════════════════════════════════════════════
   thebookmarks.net — Unified Brand Tokens
   Used by all products (shabds, books, daily, home)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ── Palette ── */
  --bm-bg:         #0d1220;
  --bm-surface:    #161e33;
  --bm-card:       #1f2a44;
  --bm-border:     rgba(150, 200, 255, 0.12);

  /* Brand accents — warm to signal "kids/content" not "enterprise" */
  --bm-primary:    #ffb84d;   /* warm amber */
  --bm-secondary:  #5eb8ff;   /* sky blue */
  --bm-success:    #5ee6a1;   /* mint */
  --bm-alert:      #ff6b8a;   /* coral */
  --bm-gold:       #ffd966;

  /* Text */
  --bm-text:       #f0f5ff;
  --bm-text-dim:   rgba(240, 245, 255, 0.7);
  --bm-text-faint: rgba(240, 245, 255, 0.35);

  /* Layout */
  --bm-radius-sm:  8px;
  --bm-radius-md:  14px;
  --bm-radius-lg:  22px;
  --bm-max-width:  480px;

  /* Spacing scale */
  --bm-sp-1: 4px;
  --bm-sp-2: 8px;
  --bm-sp-3: 12px;
  --bm-sp-4: 16px;
  --bm-sp-5: 24px;
  --bm-sp-6: 32px;
  --bm-sp-8: 48px;
}

/* ── Base reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
  background: var(--bm-bg);
  color: var(--bm-text);
  font-family: 'Fraunces', 'Georgia', serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Shared brand components ── */

.bm-brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--bm-sp-4) var(--bm-sp-5);
  max-width: var(--bm-max-width);
  margin: 0 auto;
}

.bm-brand-logo {
  display: flex;
  align-items: center;
  gap: var(--bm-sp-2);
  text-decoration: none;
  color: var(--bm-text);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.bm-brand-logo .mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--bm-primary);
  color: var(--bm-bg);
  border-radius: var(--bm-radius-sm);
  font-size: 1rem;
  font-weight: 900;
}
.bm-brand-logo .name {
  font-size: 1rem;
}
.bm-brand-logo .name em {
  font-style: italic;
  color: var(--bm-primary);
  font-weight: 500;
}

.bm-back-link {
  color: var(--bm-text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bm-back-link:hover { color: var(--bm-text); }

/* Atmospheric background shared across pages */
.bm-bg-atmosphere::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(94, 184, 255, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(255, 184, 77, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.bm-bg-atmosphere > * { position: relative; z-index: 1; }
