/*!**************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/app/(frontend)/components/blocks.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************/
/* === Viking Block Styles === */

.blocks > * + * {
  margin-top: 2rem;
}

/* RichText Block */
.block-richtext { line-height: 1.8; }
.block-richtext h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}
.block-richtext h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--primary);
}
.block-richtext p { margin: 1rem 0; }
.block-richtext ul, .block-richtext ol { margin: 1rem 0; padding-left: 1.5rem; }
.block-richtext a { border-bottom: 1px solid rgba(212, 164, 74, 0.3); }
.block-richtext a:hover { border-bottom-color: var(--primary); }
.block-richtext .auto-link {
  border-bottom: 1px dotted rgba(212, 164, 74, 0.4);
  color: var(--text);
}
.block-richtext .auto-link:hover {
  color: var(--primary);
  border-bottom-style: solid;
}
.block-richtext .glossary-term {
  border-bottom: 1px dotted rgba(106, 154, 186, 0.5);
  cursor: help;
}
.block-richtext .glossary-term:hover {
  border-bottom-color: #6a9aba;
}

/* Callout Block */
.block-callout {
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  background: linear-gradient(135deg, var(--card) 0%, var(--bg-elevated) 100%);
  border-radius: 4px;
  padding: 1rem 1.25rem;
}
.callout-tip { border-left-color: #4a7a3d; }
.callout-warning { border-left-color: #b8872e; }
.callout-info { border-left-color: #4a6a8a; }
.callout-danger { border-left-color: #8a2a2a; }

.callout-tip .callout-header { color: #6aa85a; }
.callout-warning .callout-header { color: var(--primary); }
.callout-info .callout-header { color: #6a9aba; }
.callout-danger .callout-header { color: #ca4a4a; }

.callout-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.callout-icon { font-size: 1.1rem; }
.callout-label {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.callout-body { font-size: 0.925rem; color: var(--muted); }
.callout-body p { margin: 0.25rem 0; }

/* Checklist Block */
.block-checklist h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}
.checklist { list-style: none; padding: 0; }
.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 0;
}
.checklist-box {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-light);
  border-radius: 3px;
  flex-shrink: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.checklist-item:hover .checklist-box {
  border-color: var(--primary);
  box-shadow: 0 0 6px var(--primary-glow);
}
.checklist-box--checked {
  border-color: var(--primary) !important;
  background: var(--primary);
  position: relative;
}
.checklist-box--checked::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  color: var(--bg);
  font-weight: 700;
}
.checklist-item--checked span:not(.checklist-box),
.checklist-item--checked a {
  text-decoration: line-through;
  color: var(--muted);
  opacity: 0.6;
}

/* Accordion Block */
.block-accordion h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  background: var(--card);
  transition: border-color 0.2s;
}
.accordion-item[open] {
  border-color: var(--border-light);
}
.accordion-item summary {
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.accordion-item summary::before {
  content: '▸';
  color: var(--primary);
  font-size: 0.85rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.accordion-item[open] summary::before {
  transform: rotate(90deg);
}
.accordion-body {
  padding: 0 1rem 0.75rem;
  font-size: 0.925rem;
  color: var(--muted);
}
.accordion-body p { margin: 0.25rem 0; }

/* Pro/Con Block */
.block-procon h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}
.procon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  gap: 1rem;
}
@media (max-width: 600px) {
  .procon-grid { grid-template-columns: 1fr; }
}
.procon-col {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 4px;
  padding: 1rem;
  position: relative;
}
.procon-pros { border-top: 2px solid #4a7a3d; }
.procon-cons { border-top: 2px solid #8a2a2a; }

.procon-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.procon-pros h4 { color: #6aa85a; }
.procon-cons h4 { color: #ca4a4a; }
.procon-col ul { list-style: none; padding: 0; }
.procon-col li { padding: 0.3rem 0; font-size: 0.925rem; }
.procon-pros li::before { content: '⚔ '; color: #6aa85a; }
.procon-cons li::before { content: '☠ '; color: #ca4a4a; }

/* CardGrid Block */
.block-itemgrid h3 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}
.block-itemgrid .card h4 { color: var(--text); margin-top: 0.5rem; }

/* Stats Table Block */
.block-statstable h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}
.block-statstable table {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.block-statstable tr { border-bottom: 1px solid var(--border); }
.block-statstable tr:last-child { border-bottom: none; }
.block-statstable tr:nth-child(even) { background: rgba(212, 164, 74, 0.02); }
.block-statstable .highlight td {
  color: var(--primary);
  font-weight: 600;
}

/* Step-by-Step Block */
.block-steps h3 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}
.steps-list {
  list-style: none;
  padding: 0;
  position: relative;
}
.steps-list::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.step-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}
.step-item:last-child { padding-bottom: 0; }
.step-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 2.5rem;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 0 0 12px var(--primary-glow);
  position: relative;
  z-index: 1;
}
.step-content { flex: 1 1; }
.step-content h4 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.step-content p { font-size: 0.925rem; color: var(--muted); margin: 0.25rem 0; }
.step-image {
  max-width: 100%;
  border-radius: 4px;
  margin-top: 0.75rem;
}

/* Loadout Block */
.block-gear h3 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}
.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: 0.75rem;
  gap: 0.75rem;
}
.gear-slot {
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--card) 0%, var(--bg-elevated) 100%);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: border-color 0.2s;
}
.gear-slot:hover { border-color: var(--border-light); }
.gear-slot-type {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-family: var(--font-heading);
}
.gear-slot-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}
a.gear-slot-name { color: var(--primary); }
a.gear-slot-name:hover { color: #e8c06a; }
.gear-slot-note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Pull Quote Block */
.block-pullquote {
  position: relative;
  border: none;
  border-left: 3px solid var(--primary);
  background: linear-gradient(135deg, rgba(212, 164, 74, 0.04) 0%, transparent 60%);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
}
.pullquote-mark {
  position: absolute;
  top: -0.25rem;
  left: 0.5rem;
  font-size: 3.5rem;
  font-family: var(--font-heading-decorative);
  color: var(--primary);
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
}
.pullquote-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}
.pullquote-attribution {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-style: normal;
}

/* Community Tip Block */
.block-communitytip {
  border: 1px dashed var(--border-light);
  background: var(--card);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.communitytip-veteran-tip { border-color: rgba(212, 164, 74, 0.4); }
.communitytip-common-mistake { border-color: rgba(202, 74, 74, 0.4); }
.communitytip-community-insight { border-color: rgba(106, 154, 186, 0.4); }
.communitytip-meta-strategy { border-color: rgba(106, 168, 90, 0.4); }

.communitytip-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.communitytip-icon { font-size: 1.1rem; }
.communitytip-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.communitytip-veteran-tip .communitytip-label { color: var(--primary); }
.communitytip-common-mistake .communitytip-label { color: #ca4a4a; }
.communitytip-community-insight .communitytip-label { color: #6a9aba; }
.communitytip-meta-strategy .communitytip-label { color: #6aa85a; }

.communitytip-body { font-size: 0.925rem; color: var(--muted); }
.communitytip-body p { margin: 0.25rem 0; }
.communitytip-source {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--border-light);
  font-style: italic;
}

/* Quick Glance Block */
.block-quickglance {
  margin: 1.5rem 0;
}
.quickglance-heading {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.quickglance-grid {
  display: grid;
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
.quickglance-cols-2 { grid-template-columns: repeat(2, 1fr); }
.quickglance-cols-3 { grid-template-columns: repeat(3, 1fr); }
.quickglance-cols-4 { grid-template-columns: repeat(4, 1fr); }
.quickglance-cols-5 { grid-template-columns: repeat(5, 1fr); }
.quickglance-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  text-align: center;
  transition: border-color 0.2s;
}
.quickglance-card:hover {
  border-color: var(--primary);
}
.quickglance-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.quickglance-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
}
@media (max-width: 600px) {
  .quickglance-cols-3,
  .quickglance-cols-4,
  .quickglance-cols-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/app/(frontend)/styles.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************/
/* === Viking / Norse Design System === */

:root {
  --primary: #d4a44a;
  --primary-dark: #b8872e;
  --primary-glow: rgba(212, 164, 74, 0.15);
  --bg: #0d0f14;
  --bg-elevated: #13161d;
  --card: #181c26;
  --card-hover: #1e2230;
  --text: #e8e4dc;
  --muted: #9a9286;
  --border: #2a2520;
  --border-light: #3a3530;
  --accent-brown: #3d2e1e;
  --font-heading: 'Cinzel', Georgia, serif;
  --font-heading-decorative: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  background: var(--bg);
  color: var(--text);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 164, 74, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(30, 20, 10, 0.4) 0%, transparent 60%);
  background-attachment: fixed;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: #e8c06a; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* ===================== */
/*        HEADER         */
/* ===================== */

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0;
}

.site-header nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.5rem;
}

.site-header .logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-rune {
  color: var(--primary);
  font-size: 1.1rem;
}

.site-header .nav-links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-header .nav-links a {
  color: var(--muted);
  position: relative;
  padding-bottom: 2px;
}

.site-header .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s;
}

.site-header .nav-links a:hover {
  color: var(--primary);
}

.site-header .nav-links a:hover::after {
  width: 100%;
}

.header-rune-border {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary) 20%, var(--primary) 80%, transparent);
  opacity: 0.4;
}

/* "More" dropdown in desktop nav */
.nav-more {
  position: relative;
  display: inline-block;
}
.nav-more summary {
  list-style: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-more summary::-webkit-details-marker { display: none; }
.nav-more summary:hover { color: var(--primary); }
.nav-more-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: -1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.4rem 0;
  min-width: 180px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.nav-more-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-more-dropdown a:hover {
  color: var(--primary);
  background: rgba(212, 164, 74, 0.05);
}
.nav-more-section-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  opacity: 0.6;
  padding: 0.5rem 1rem 0.25rem;
}
.nav-more-divider {
  height: 1px;
  background: var(--border);
  margin: 0.3rem 0;
}

/* Mobile nav */
.mobile-nav-toggle {
  display: none;
  position: relative;
}

.mobile-nav-toggle summary {
  list-style: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
}

.mobile-nav-toggle summary::-webkit-details-marker { display: none; }

.mobile-nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.5rem 0;
  min-width: 200px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.mobile-nav-dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-dropdown a:last-child { border-bottom: none; }
.mobile-nav-dropdown a:hover { color: var(--primary); background: rgba(212, 164, 74, 0.05); }

@media (max-width: 900px) {
  .site-header .nav-links { display: none; }
  .mobile-nav-toggle { display: block; }
}

/* ===================== */
/*         MAIN          */
/* ===================== */

.site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* ===================== */
/*        FOOTER         */
/* ===================== */

.site-footer {
  margin-top: 4rem;
  padding: 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-rune-border {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary) 20%, var(--primary) 80%, transparent);
  opacity: 0.3;
  margin-bottom: 2rem;
}

.footer-runes {
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--primary);
  opacity: 0.4;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--border-light);
  padding-bottom: 2rem;
}

/* ===================== */
/*         HERO          */
/* ===================== */

.hero {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}

.hero-runes {
  font-size: 1.5rem;
  letter-spacing: 0.4em;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--font-heading-decorative);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  text-shadow: 0 0 40px rgba(212, 164, 74, 0.15);
  letter-spacing: 0.03em;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0.75rem auto 0;
}

.hero-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-divider {
  width: 80px;
  height: 2px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
}

.hero-count {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Homepage hero variant */
.hero--home {
  padding: 4.5rem 0 3rem;
  position: relative;
}

.hero--home::before {
  content: '\16A0\16B2\16CA\16A8\16D6';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12rem;
  letter-spacing: 0.5em;
  color: var(--primary);
  opacity: 0.02;
  pointer-events: none;
  white-space: nowrap;
}

.hero-intro {
  max-width: 650px;
  margin: 0.75rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-intro p {
  margin: 0.5rem 0;
}

/* Category guide count */
.category-count {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--border-light);
  margin-top: 0.5rem;
}

/* Category card gradient */
.category-card {
  background: linear-gradient(180deg, var(--card) 0%, rgba(30, 20, 10, 0.3) 100%);
}

/* Getting started callout */
.getting-started-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(212, 164, 74, 0.25);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(212, 164, 74, 0.06) 0%, var(--card) 100%);
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.getting-started-card:hover {
  border-color: rgba(212, 164, 74, 0.5);
  transform: translateY(-1px);
}

.getting-started-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.getting-started-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1 1;
  min-width: 0;
}

.getting-started-text strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--primary);
}

.getting-started-text span {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.getting-started-arrow {
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.getting-started-card:hover .getting-started-arrow {
  transform: translateX(3px);
}

/* Card footer (date + difficulty on article cards) */
.card-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.card-date {
  font-size: 0.75rem;
  color: var(--border-light);
}

@media (max-width: 768px) {
  .getting-started-card {
    flex-wrap: wrap;
  }
  .getting-started-arrow {
    display: none;
  }
}

/* ===================== */
/*         GRID          */
/* ===================== */

.grid { display: grid; grid-gap: 1.5rem; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== */
/*        CARDS          */
/* ===================== */

.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 4px;
  padding: 1.25rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  color: inherit;
  display: block;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

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

.card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.card:hover::before {
  opacity: 0.6;
}

.card-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.card h2, .card h3 {
  font-family: var(--font-heading);
  color: var(--text);
  margin-top: 0.5rem;
}

.card p {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* Category cards (homepage) */
.category-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  position: relative;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--border);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.category-card:hover::after {
  opacity: 0.4;
}

.category-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.category-card h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

/* ===================== */
/*       SECTIONS        */
/* ===================== */

.section { margin-bottom: 3rem; }

.section h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--primary);
  opacity: 0.6;
}

/* ===================== */
/*    ARTICLE PAGE       */
/* ===================== */

.article-page {
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { opacity: 0.4; }

.article-header { margin-bottom: 2rem; }

.article-header h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 0.5rem;
  color: var(--text);
}

.article-header .excerpt {
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.article-header time { font-size: 0.8rem; color: var(--border-light); }

.article-content { line-height: 1.8; }
.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}
.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--primary);
}
.article-content p { margin: 1rem 0; }
.article-content ul, .article-content ol { margin: 1rem 0; padding-left: 1.5rem; }

/* Stats table */
.stats-table {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  border-collapse: collapse;
  background: var(--card);
}
.stats-table td, .stats-table th {
  padding: 0.6rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.stats-table tr:nth-child(even) { background: rgba(255, 255, 255, 0.02); }
.stats-table .label { color: var(--muted); font-weight: 500; }
.stats-table thead { background: var(--bg-elevated); }
.stats-table th {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* Boss row card */
.boss-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
}
.boss-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 3rem;
  text-align: center;
}

/* Recipe */
.recipe-box {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 4px;
  padding: 1rem 1.25rem;
}
.recipe-box li { list-style: none; padding: 0.25rem 0; }
.recipe-qty { color: var(--primary); font-family: monospace; }

/* Tags / pills */
.pill-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: inherit;
  transition: border-color 0.2s;
}
.pill:hover { border-color: var(--primary); }

/* Highlight box */
.highlight-box {
  border: 1px solid var(--primary);
  background: var(--card);
  border-radius: 4px;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 0 20px var(--primary-glow);
}

/* Divider */
.divider {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 2rem;
}

/* Attack card */
.attack-card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 0.75rem;
}
.attack-card .attack-header {
  display: flex;
  justify-content: space-between;
}
.attack-card h3 { color: white; font-size: 1rem; }
.attack-card .damage { color: #f87171; font-size: 0.875rem; }
.attack-card p { color: var(--muted); font-size: 0.875rem; margin-top: 0.25rem; }

/* Page title */
.page-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Empty state */
.empty { color: var(--muted); }
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--muted);
}
.empty-state-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.empty-state-desc {
  font-size: 0.9rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Meta info */
.meta-info { display: flex; gap: 1rem; font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }
.meta-info span { text-transform: capitalize; }

/* ===================== */
/*   ARTICLE LAYOUT      */
/* ===================== */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  grid-gap: 2.5rem;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.article-layout .article-main {
  min-width: 0;
}

.article-layout .article-sidebar {
  position: relative;
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .article-layout .article-sidebar {
    order: -1;
    margin-bottom: 1.5rem;
  }
}

/* ===================== */
/*   TABLE OF CONTENTS   */
/* ===================== */

.toc {
  position: -webkit-sticky;
  position: sticky;
  top: 5rem;
  border-left: 2px solid rgba(212, 164, 74, 0.3);
  padding: 0.5rem 0 0.5rem 0.75rem;
}

.toc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 0;
}

.toc-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 164, 74, 0.3);
  padding-bottom: 0.35rem;
}

.toc-chevron {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Desktop: always show list */
@media (min-width: 901px) {
  .toc-toggle { display: none; }
  .toc-list { display: block !important; }
}

/* Mobile: collapsible */
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: none;
}

.toc-list--open {
  display: block;
}

.toc-item {
  margin: 0;
}

.toc-item a {
  display: block;
  padding: 0.2rem 0;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.2s;
  line-height: 1.4;
}

.toc-item--3 a {
  padding-left: 0.75rem;
  font-size: 0.72rem;
}

.toc-item a:hover {
  color: var(--text);
}

.toc-item--active a {
  color: var(--primary);
  font-weight: 500;
}

/* ===================== */
/*     BACK TO TOP       */
/* ===================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  z-index: 50;
}

.back-to-top:hover {
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
  transform: translateY(-2px);
}

/* ===================== */
/*       SEARCH          */
/* ===================== */

.search-box {
  position: relative;
}

.search-input {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  color: var(--text);
  width: 180px;
  font-family: var(--font-body);
  transition: border-color 0.2s, width 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  width: 240px;
}

.search-input::placeholder {
  color: var(--muted);
}

.search-loading {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.75rem;
}

.search-results {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 320px;
  max-height: 400px;
  overflow-y: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 200;
}

.search-result {
  display: block;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: inherit;
  transition: background 0.15s;
}

.search-result:last-child { border-bottom: none; }
.search-result:hover { background: rgba(212, 164, 74, 0.05); }

.search-result-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text);
}

.search-result-excerpt {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
  line-height: 1.4;
}

.search-empty {
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .search-input {
    width: 140px;
  }
  .search-input:focus {
    width: 180px;
  }
  .search-results {
    width: 280px;
  }
}

/* ===================== */
/*   DIFFICULTY BADGE    */
/* ===================== */

.difficulty-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.difficulty-runes {
  display: inline-flex;
  gap: 0.1rem;
}

.difficulty-rune {
  font-size: 0.75rem;
  color: var(--border-light);
  transition: color 0.2s;
}

.difficulty-rune--filled {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary-glow);
}

.difficulty-label {
  font-size: 0.75rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ===================== */
/*    FEATURED BADGE     */
/* ===================== */

.featured-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  border: 1px solid rgba(212, 164, 74, 0.3);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
}

/* ===================== */
/*    ARTICLE META       */
/* ===================== */

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.article-meta time {
  font-size: 0.8rem;
}

.read-time {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ===================== */
/*    ARTICLE NAV        */
/* ===================== */

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.article-nav-link {
  display: block;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--card);
  color: inherit;
  transition: border-color 0.2s;
}

.article-nav-link:hover {
  border-color: var(--border-light);
}

.article-nav-link--next {
  text-align: right;
}

.article-nav-direction {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

.article-nav-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text);
}

@media (max-width: 600px) {
  .article-nav { grid-template-columns: 1fr; }
}

/* ===================== */
/*   FEATURED SECTION    */
/* ===================== */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.featured-grid .card {
  padding: 1.75rem;
}

.featured-grid .card h3 {
  font-size: 1.15rem;
}

@media (max-width: 768px) {
  .featured-grid { grid-template-columns: 1fr; }
}

/* ===================== */
/*   RELATED SIDEBAR     */
/* ===================== */

.sidebar-related {
  margin-top: 2rem;
}

.sidebar-section {
  margin-bottom: 1.5rem;
}

.sidebar-section-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 164, 74, 0.3);
  padding-bottom: 0.35rem;
  margin-bottom: 0.5rem;
}

.sidebar-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-related-card {
  display: block;
  padding: 0.35rem 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.sidebar-related-card:hover {
  color: var(--text);
  border-left-color: var(--primary);
}

/* ===================== */
/*    RANDOM GUIDE BTN   */
/* ===================== */

.random-guide-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 4px;
  padding: 0.3rem 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  line-height: 1;
}

.random-guide-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.random-guide-btn:disabled {
  opacity: 0.5;
  cursor: wait;
}

/* ===================== */
/*   CHECKLISTS PAGE     */
/* ===================== */

.checklists-page {
  max-width: 800px;
}

.checklists-category {
  margin-bottom: 3rem;
}

.checklists-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.checklists-category-header h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 0;
}

.checklists-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checklists-progress-bar {
  width: 120px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.checklists-progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.3s;
}

.checklists-progress-text {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-heading);
  white-space: nowrap;
}

.checklists-article {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 4px;
}

.checklists-article h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.checklists-article h3 a {
  color: var(--text);
}

.checklists-article h3 a:hover {
  color: var(--primary);
}

.checklists-block {
  margin-bottom: 0.5rem;
}

.checklists-block h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

/* ===================== */
/*   READING PROGRESS    */
/* ===================== */

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--primary);
  z-index: 101;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ===================== */
/*     SEARCH PAGE       */
/* ===================== */

.search-page-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.search-page-input {
  flex: 1 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  color: var(--text);
  font-family: var(--font-body);
}

.search-page-input:focus {
  outline: none;
  border-color: var(--primary);
}

.search-page-btn {
  background: var(--primary);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s;
}

.search-page-btn:hover {
  background: var(--primary-dark);
}

.search-filters {
  margin-bottom: 2rem;
}

.search-filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.search-filter-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-right: 0.25rem;
}

.pill--active {
  border-color: var(--primary);
  color: var(--primary);
}

.search-see-all {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary) !important;
}

.search-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.search-pagination-info {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===================== */
/*     GLOSSARY PAGE     */
/* ===================== */

.glossary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.glossary-nav-letter {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}

.glossary-nav-letter:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.glossary-group {
  margin-bottom: 2.5rem;
}

.glossary-letter {
  font-family: var(--font-heading-decorative);
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.glossary-list {
  margin: 0;
}

.glossary-entry {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.glossary-term-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.glossary-definition {
  font-size: 0.925rem;
  color: var(--muted);
  margin: 0;
}

.glossary-definition p { margin: 0.25rem 0; }

.glossary-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* Glossary Tooltip */
.glossary-tooltip {
  position: absolute;
  z-index: 300;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: var(--text);
  max-width: 280px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  line-height: 1.4;
}

/* ===================== */
/*   COMMUNITY FORMS     */
/* ===================== */

.community-tip-form,
.loadout-form {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 4px;
  padding: 1.25rem;
  margin-top: 2rem;
}

.community-tip-form h3,
.loadout-form h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.form-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  color: var(--text);
  font-family: var(--font-body);
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-select {
  width: auto;
  min-width: 150px;
}

.form-input {
  flex: 1 1;
  min-width: 120px;
}

.form-textarea {
  resize: vertical;
}

.form-char-count {
  font-size: 0.75rem;
  color: var(--muted);
}

.form-submit {
  background: var(--primary);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: auto;
}

.form-submit:hover { background: var(--primary-dark); }
.form-submit:disabled { opacity: 0.5; cursor: wait; }

.form-error {
  color: #ca4a4a;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.community-tip-success {
  color: #6aa85a;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.form-add-btn {
  background: none;
  border: 1px dashed var(--border-light);
  color: var(--muted);
  border-radius: 4px;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.form-add-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.form-remove-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 0.5rem;
  flex-shrink: 0;
}

.form-remove-btn:hover { color: #ca4a4a; }

/* ===================== */
/*   APPROVED TIPS       */
/* ===================== */

.approved-tips-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.approved-tips-section h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.approved-tips-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.approved-tip {
  border: 1px dashed var(--border-light);
  background: var(--card);
  border-radius: 4px;
  padding: 0.75rem 1rem;
}

.approved-tip-author {
  font-size: 0.75rem;
  color: var(--border-light);
  margin-left: auto;
}

.approved-tip-content {
  font-size: 0.925rem;
  color: var(--muted);
  margin: 0;
}

/* ===================== */
/*    LOADOUTS GALLERY   */
/* ===================== */

.loadouts-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.loadout-card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 4px;
  padding: 1.25rem;
}

.loadout-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.loadout-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.loadout-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.loadout-card-author {
  font-size: 0.75rem;
  color: var(--border-light);
  font-style: italic;
}

.vote-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.vote-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.vote-btn--voted {
  color: var(--primary);
  border-color: var(--primary);
  cursor: default;
}

.vote-btn:disabled {
  cursor: default;
}

.loadout-slot-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  align-items: center;
}

.loadout-slots-form {
  margin: 0.75rem 0;
}

/* ===================== */
/*    PROGRESSION        */
/* ===================== */

.timeline {
  max-width: 800px;
}

.timeline-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.timeline-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.timeline-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.timeline-stages {
  display: flex;
  flex-direction: column;
}

.timeline-stage {
  display: flex;
  gap: 1.5rem;
}

.timeline-marker-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--bg);
  box-shadow: 0 0 16px var(--primary-glow);
  flex-shrink: 0;
}

.timeline-line {
  width: 2px;
  flex: 1 1;
  background: linear-gradient(180deg, var(--primary) 0%, var(--border) 100%);
  opacity: 0.4;
  min-height: 24px;
}

.timeline-content {
  flex: 1 1;
  min-width: 0;
  padding-bottom: 2.5rem;
}

.timeline-stage-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  margin-top: 0.5rem;
}

.timeline-stage-title a {
  color: var(--text);
}

.timeline-stage-title a:hover {
  color: var(--primary);
}

.timeline-stage-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.timeline-articles {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.timeline-article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-left: 3px solid var(--border-light);
  border-radius: 0 4px 4px 0;
  background: var(--card);
  color: inherit;
  transition: transform 0.15s, background 0.15s;
}

.timeline-article:hover {
  transform: translateX(4px);
  background: var(--card-hover);
}

.timeline-article-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text);
}

.timeline-article-diff {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .timeline-marker {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .timeline-stage {
    gap: 1rem;
  }
  .timeline-stage-title {
    font-size: 1.1rem;
    margin-top: 0.25rem;
  }
}

.timeline-stage-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.timeline-difficulty-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-heading);
}

.timeline-article-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  line-height: 1;
}

.timeline-article-category {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-left: auto;
  flex-shrink: 0;
}

/* ===================== */
/*  PROGRESSION SIDEBAR  */
/* ===================== */

.progression-sidebar {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem;
  background: var(--card);
}

.progression-sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.progression-sidebar-badge {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg);
  background: var(--primary);
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  font-weight: 700;
  flex-shrink: 0;
}

.progression-sidebar-stage-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.progression-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.6rem 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.progression-sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}

.progression-sidebar-item:hover {
  background: var(--card-hover);
  color: var(--text);
}

.progression-sidebar-item--active {
  background: rgba(212, 164, 74, 0.1);
  color: var(--primary);
  border-left: 2px solid var(--primary);
}

.progression-sidebar-icon {
  font-size: 0.85rem;
  flex-shrink: 0;
  line-height: 1;
}

.progression-sidebar-label {
  flex: 1 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.progression-sidebar-role {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  flex-shrink: 0;
}

.progression-sidebar-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.progression-sidebar-nav-link {
  font-size: 0.7rem;
  color: var(--muted);
  font-family: var(--font-heading);
  transition: color 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 48%;
}

.progression-sidebar-nav-link:hover {
  color: var(--primary);
}

.progression-sidebar-all {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  opacity: 0.8;
  transition: opacity 0.15s;
}

.progression-sidebar-all:hover {
  opacity: 1;
}

/* ===================== */
/*   SEASONAL BANNER     */
/* ===================== */

.seasonal-banner {
  background: linear-gradient(135deg, rgba(212, 164, 74, 0.08) 0%, rgba(30, 20, 10, 0.3) 100%);
  border-bottom: 1px solid rgba(212, 164, 74, 0.2);
  padding: 0.75rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text);
  max-width: 100%;
}

.seasonal-banner p {
  margin: 0;
}

.seasonal-banner a {
  color: var(--primary);
  font-weight: 600;
}

/* ===================== */
/*    IMAGE LIGHTBOX     */
/* ===================== */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.article-content img {
  cursor: zoom-in;
}

/* ===================== */
/*     PRINT STYLES      */
/* ===================== */

@media print {
  .site-header,
  .site-footer,
  .article-sidebar,
  .back-to-top,
  .reading-progress,
  .search-box,
  .random-guide-btn,
  .mobile-nav-toggle,
  .community-tip-form,
  .loadout-form,
  .article-nav,
  .seasonal-banner,
  .lightbox-overlay {
    display: none !important;
  }

  html {
    background: white;
    color: black;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .site-main {
    max-width: 100%;
    padding: 0;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .card,
  .block-callout,
  .block-checklist,
  .block-statstable table,
  .gear-slot,
  .approved-tip {
    border-color: #ccc;
    background: white;
  }

  a {
    color: black;
    text-decoration: underline;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #666;
  }

  a.auto-link::after,
  .breadcrumb a::after,
  .card a::after {
    content: none;
  }

  :root {
    --text: #000;
    --muted: #444;
    --border: #ccc;
    --card: #fff;
    --bg: #fff;
  }
}

