@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800&family=Outfit:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@500;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  /* Obsidian Midnight Color System */
  --bg-primary: hsl(220, 24%, 3%);        /* Deep Obsidian */
  --bg-secondary: hsl(220, 18%, 6%);      /* Rich Charcoal */
  --bg-surface: hsl(220, 16%, 10%);       /* Surface Card */
  --bg-surface-hover: hsl(220, 16%, 13%); /* Card Hover */
  
  /* Seductive Crimson & Golden Accents */
  --accent-crimson: hsl(342, 100%, 48%);       /* Seductive Crimson */
  --accent-crimson-hover: hsl(342, 100%, 40%); /* Richer Crimson */
  --accent-crimson-glow: hsla(342, 100%, 48%, 0.3);
  
  --accent-gold: hsl(42, 95%, 52%);            /* Prestige Gold */
  --accent-gold-hover: hsl(42, 95%, 44%);       /* Deeper Gold */
  --accent-gold-glow: hsla(42, 95%, 52%, 0.25);
  
  /* Text Color Scales */
  --text-primary: hsl(0, 0%, 96%);         /* Crisp Ivory */
  --text-secondary: hsl(220, 12%, 72%);    /* Sleek Silver */
  --text-muted: hsl(220, 10%, 52%);        /* Subdued Slate */
  
  /* Glassmorphism Design Tokens */
  --glass-bg: rgba(10, 12, 18, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-border-glow: rgba(255, 46, 99, 0.12);
  --glass-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
  
  /* Fonts */
  --font-display: 'Cinzel', 'Noto Serif JP', serif;
  --font-body: 'Outfit', 'Noto Sans JP', sans-serif;
  
  /* Layout Spacing */
  --space-xs: 0.25rem;  /* 4px */
  --space-sm: 0.5rem;   /* 8px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2.5rem;   /* 40px */
  --space-xxl: 4.5rem;  /* 72px */
  
  /* Border Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 28px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets specifically optimized for high-end look */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
}
