/* ==========================================================================
   Design Tokens & Base resets (Sleek Dark Tarot Glassmorphism)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  /* Font Families */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-card-title: 'Lora', Georgia, serif;

  /* Spacing Scale */
  --space-xs: 0.25rem;  /* 4px */
  --space-sm: 0.5rem;   /* 8px */
  --space-md: 0.75rem;  /* 12px */
  --space-lg: 1rem;     /* 16px */
  --space-xl: 1.5rem;   /* 24px */
  --space-2xl: 2rem;    /* 32px */
  --space-3xl: 3rem;    /* 48px */

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Color Palette (Deep Pitch & Neon Accents) */
  --bg-color: #0B0C10;              /* Pitch black slate */
  --text-color: #F5F7FA;            /* Crisp off-white */
  --text-muted: #8F9CAE;            /* Cool muted gray */

  /* Primary Accent - Cyan/Teal Glow */
  --accent-primary: #66FCF1;
  --accent-primary-hover: #45A29E;
  --accent-primary-rgb: 102, 252, 241;

  /* Secondary Accent - Purple/Indigo */
  --accent-secondary: #9B6CFF;
  --accent-secondary-hover: #7E4BFA;
  --accent-secondary-rgb: 155, 108, 255;

  /* Frosted Glass (Glassmorphism) */
  --glass-bg: rgba(22, 27, 34, 0.45);
  --glass-hover: rgba(33, 41, 52, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(102, 252, 241, 0.35);
  --glass-blur: blur(12px);

  /* Glow Shadows */
  --glow-primary: 0 0 15px rgba(102, 252, 241, 0.25);
  --glow-secondary: 0 0 15px rgba(155, 108, 255, 0.25);
  
  --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 5px 15px -5px rgba(0, 0, 0, 0.5);
  --modal-overlay: rgba(3, 4, 6, 0.85);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #FFFFFF;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(11, 12, 16, 0.5);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary-hover);
}

/* Container Layout */
.portal-container {
  max-width: 1600px;
  width: 92%;
  margin: 0 auto;
  padding: var(--space-xl) 0 var(--space-3xl) 0;
}

.section-title-wrapper.align-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: var(--space-xl);
  text-align: left;
}
