/* ============================================
   HEIMDALL - Viking-Themed Landing Page
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #a8892c;
  --bg-deep: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a25;
  --bg-section: #0e0e16;
  --text-primary: #e8e4dc;
  --text-secondary: #9a9590;
  --text-muted: #6a6560;
  --red-threat: #c94040;
  --green-safe: #4a9e5a;
  --amber-warn: #d4a037;
  --border-subtle: rgba(212, 175, 55, 0.12);
  --border-gold: rgba(212, 175, 55, 0.3);
  --glow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
  --font-display: 'Cinzel Decorative', 'Cinzel', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* --- Ember Canvas --- */
#embers-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.7rem 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
}

.logo-icon {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  transition: color 0.3s;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  border-radius: 4px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.nav-cta:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: var(--glow-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0a0a0f;
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3), 0 4px 20px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(10, 10, 15, 1) 0%, transparent 60%);
  z-index: 2;
}

.rune-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  z-index: 1;
  opacity: 0.5;
}

.rune-svg {
  width: 100%;
  height: 100%;
  animation: runeRotate 120s linear infinite;
}

@keyframes runeRotate {
  to { transform: rotate(360deg); }
}

.rune-text {
  font-family: serif;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(212, 175, 55, 0); }
}

.hero-title-container {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: visible;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
}

.title-rotate-wrap {
  display: grid;
  position: relative;
}

.title-rotate-text {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.title-rotate-text.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.title-rotate-text.exit {
  opacity: 0;
  transform: translateY(-20px);
}

.title-accent {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}

/* --- Magic Dust Particles --- */
.magic-dust {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(circle, rgba(240, 208, 96, 0.9), rgba(212, 175, 55, 0.4) 60%, transparent);
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.6), 0 0 12px rgba(212, 175, 55, 0.3);
  animation: dustFloat ease-out forwards;
  opacity: 0;
}

@keyframes dustFloat {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.3);
  }
  15% {
    opacity: 1;
    transform: translate(calc(var(--dx) * 0.1), calc(var(--dy) * 0.1)) scale(1);
  }
  60% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) scale(0);
  }
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-form {
  max-width: 520px;
  margin: 0 auto 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 200px;
  margin-top: 0.3rem;
}

.stat-source {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 0.2rem;
  font-style: italic;
  text-decoration: none;
  transition: opacity 0.3s;
}

.stat-source:hover {
  opacity: 1;
  color: var(--gold);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 25px; }
}

/* --- Sections --- */
.section {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '~';
  margin: 0 0.5rem;
  opacity: 0.4;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Threats Section --- */
.threats-section {
  background: var(--bg-section);
}

.threat-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.threat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* --- Card Wrapper (holds sword + flipper) --- */
.threat-card-wrapper {
  position: relative;
  perspective: 800px;
  cursor: pointer;
  min-height: 300px;
}

/* --- Card Flipper (3D flip container) --- */
.threat-card-flipper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.threat-card-wrapper.defeated .threat-card-flipper {
  transform: rotateY(180deg);
}

/* --- Card Faces (shared) --- */
.threat-card {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 8px;
  padding: 2rem 2rem 2.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.threat-face {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.threat-face::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-threat), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.threat-card-wrapper:not(.defeated):hover .threat-face {
  border-color: rgba(201, 64, 64, 0.3);
  box-shadow: 0 4px 20px rgba(201, 64, 64, 0.08);
}

.threat-card-wrapper:not(.defeated):hover .threat-face::before {
  opacity: 1;
}

/* --- Solution Face (back) --- */
.solution-face {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transform: rotateY(180deg);
}

.solution-face::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 1;
}

.threat-card-wrapper.defeated:hover .solution-face {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.08);
}

/* --- Icons --- */
.threat-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(201, 64, 64, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--red-threat);
}

.threat-icon svg {
  width: 28px;
  height: 28px;
}

.solution-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.solution-icon svg {
  width: 28px;
  height: 28px;
}

/* --- Card Text --- */
.threat-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.solution-face h3 {
  color: var(--gold);
}

.threat-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Shield Section --- */
.shield-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.shield-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-graphic {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
}

.ring-1 {
  width: 350px;
  height: 350px;
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-2 {
  width: 280px;
  height: 280px;
  border-color: var(--border-gold);
  animation: ringPulse 4s ease-in-out infinite 1s;
}

.ring-3 {
  width: 210px;
  height: 210px;
  animation: ringPulse 4s ease-in-out infinite 2s;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.03); }
}

.shield-core {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent);
  border-radius: 50%;
}

.intercepted-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(18, 18, 26, 0.95);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-family: 'Courier New', monospace;
  color: var(--text-secondary);
  white-space: nowrap;
  animation: floatItem 6s ease-in-out infinite;
}

.intercepted-item .blocked {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--red-threat);
  padding: 0.15rem 0.4rem;
  border: 1px solid rgba(201, 64, 64, 0.3);
  border-radius: 3px;
  letter-spacing: 1px;
}

.intercepted-item .placeholder-token {
  color: var(--gold);
  font-weight: 600;
}

.intercepted-item .arrow-icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.intercepted-item .real-token {
  color: var(--green-safe);
  opacity: 0.7;
}

.intercepted-item .safe-status {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green-safe);
  padding: 0.15rem 0.4rem;
  border: 1px solid rgba(74, 158, 90, 0.3);
  border-radius: 3px;
  letter-spacing: 1px;
}

.item-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.item-2 {
  bottom: 80px;
  left: -40px;
  animation-delay: 2s;
}

.item-3 {
  bottom: 20px;
  right: -10px;
  animation-delay: 4s;
}

@keyframes floatItem {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-10px); opacity: 1; }
}

.shield-content code {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.shield-content .section-tag,
.shield-content .section-title,
.shield-content .section-desc {
  text-align: left;
}

.shield-content .section-desc {
  margin: 0 0 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}

.feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}


.form-group {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.4rem;
  transition: border-color 0.3s;
}

.form-group:focus-within {
  border-color: var(--border-gold);
  box-shadow: var(--glow-gold);
}

.form-group input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group .btn {
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 0.7rem 1.4rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 2rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--gold);
}

.norse-border {
  height: 3px;
  background: linear-gradient(90deg,
    transparent,
    var(--gold-dark) 20%,
    var(--gold) 50%,
    var(--gold-dark) 80%,
    transparent
  );
  opacity: 0.3;
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .shield-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .shield-visual {
    order: -1;
  }

  .shield-content .section-tag,
  .shield-content .section-title,
  .shield-content .section-desc {
    text-align: center;
  }

  .shield-content .section-desc {
    margin: 0 auto 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav > .nav-inner > .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .threat-grid {
    grid-template-columns: 1fr;
  }

  .shield-graphic {
    width: 300px;
    height: 300px;
  }

  .ring-1 { width: 260px; height: 260px; }
  .ring-2 { width: 200px; height: 200px; }
  .ring-3 { width: 150px; height: 150px; }

  .intercepted-item {
    font-size: 0.65rem;
    padding: 0.4rem 0.6rem;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .rune-circle {
    width: 400px;
    height: 400px;
  }
}

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

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.4);
}

/* --- Selection --- */
::selection {
  background: rgba(212, 175, 55, 0.3);
  color: var(--text-primary);
}
