/* AngiieTurtle Design Tokens — Official brand: hot pink + turtle green */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm:   0.25rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-full: 9999px;

  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;

  /* ── Fonts ──
     Display: Playfair Display (editorial serif — headings, hero)
     Body: Poppins (clean geometric sans — body, UI, nav) */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', 'Inter', sans-serif;

  /* ── Brand Palette ──
     Pink  : #F06292 (hot pink — glasses, headphones, outline)
     Green : #6ECC6E (turtle green — "Turtle" wordmark)
     Dark  : #141118 (near-black with a warm purple undertone — gaming atmosphere)
  */

  /* Dark atmospheric base — always dark */
  --color-bg:              #0f0d12;
  --color-surface:         #161320;
  --color-surface-2:       #1d1a28;
  --color-surface-offset:  #221f30;
  --color-border:          #2e2a3d;
  --color-divider:         #231f30;

  --color-text:            #f0ecf8;
  --color-text-muted:      #8f8aa0;
  --color-text-faint:      #4e4a5e;
  --color-text-inverse:    #0f0d12;

  /* Primary: Hot Pink */
  --color-primary:         #f06292;
  --color-primary-hover:   #e91e73;
  --color-primary-active:  #c2185b;
  --color-primary-dim:     rgba(240, 98, 146, 0.12);
  --color-primary-border:  rgba(240, 98, 146, 0.3);

  /* Secondary: Turtle Green */
  --color-secondary:       #6ecc6e;
  --color-secondary-hover: #52b852;
  --color-secondary-dim:   rgba(110, 204, 110, 0.12);
  --color-secondary-border:rgba(110, 204, 110, 0.3);

  /* Glow effects */
  --color-pink-glow:   rgba(240, 98, 146, 0.15);
  --color-green-glow:  rgba(110, 204, 110, 0.1);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.65);

  --fog-glow: radial-gradient(ellipse 60% 40% at 50% 60%, rgba(240,98,146,0.06) 0%, transparent 70%);
}
