@font-face {
  font-family: 'Alagard';
  src: url('../../assets/fonts/alagard.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --color-bg-primary: #1c1411;
  --color-bg-secondary: rgba(42, 31, 27, 0.9);
  --color-bg-radial-light: rgba(42, 31, 27, 0.3);
  --color-bg-radial-dark: rgba(28, 20, 17, 1);
  --color-text-primary: #f3e8d8;
  --color-text-secondary: #b49d90;
  --color-text-gold: #e2c07a;
  --color-text-gold-alt: #c99d7a;
  --color-stone: #4b3b36;
  --color-stone-dark: #3a2a26;
  --color-stone-darker: #2a1f1b;
  --color-hp: #b73a2e;
  --color-hp-glow: rgba(183, 58, 46, 0.6);
  --color-mana: #3f50a8;
  --color-mana-glow: rgba(63, 80, 168, 0.6);
  --color-defend: #8b7355;
  --color-btn-bg: #2a1f1b;
  --color-btn-hover: #4b3b36;
  --color-btn-active: #5a4a45;
  --color-btn-border: #4b3b36;
  --color-btn-border-hover: #e2c07a;
  --shadow-glow-red: 0 0 20px rgba(183, 58, 46, 0.4);
  --shadow-glow-gold: 0 0 15px rgba(226, 192, 122, 0.3);
  --shadow-box: 0 0 15px rgba(0, 0, 0, 0.5);
  --font-primary: 'Alagard', serif;
  --font-heading: 'Alagard', serif;
  --size-container-width: 90vw;
  --size-border-radius: 0.5rem;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

body {
  cursor:
    url('../../assets/icons/cursor-icons/select.png') 0 0,
    auto !important;
}

a,
button,
.interactive {
  cursor:
    url('../../assets/icons/cursor-icons/link-select.png') 0 0,
    pointer !important;
}

body.grabbed {
  cursor:
    url('../../assets/icons/cursor-icons/link-select-grab.png') 0 0,
    grabbing !important;
}
/* NoScript Warning */
.noscript-warning {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  text-align: center;
  padding: 20px;
}

.noscript-warning h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-text-gold);
}

.noscript-message {
  font-size: 1.2rem;
  max-width: 400px;
}

.noscript-hint {
  font-size: 1rem;
  margin-top: 1rem;
  color: var(--color-text-secondary);
}
