:root {
  --void: #00080f;
  --deep: #011020;
  --purple: #38bdf8;
  --violet: #7dd3fc;
  --lavender: #bae6fd;
  --gold: #f0b429;
  --gold-dim: #94a3b8;
  --cyan: #38bdf8;
  --white: #f0f8ff;
  --muted: #7ab8d4;
  --card-border: rgba(56, 189, 248, 0.3);
}

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

body {
  background-color: var(--void);
  color: var(--white);
  font-family: 'Crimson Pro', Georgia, serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── COSMIC BACKGROUND ── */
.cosmos {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url('images/ui/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.45) saturate(1.2);
}

.cosmos-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(3,1,10,0.45) 0%, rgba(3,1,10,0.75) 100%);
  pointer-events: none;
}

.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 55%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 10%, rgba(180,230,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 35%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 15%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 80% 60%, rgba(180,220,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 30%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 80%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 75%, rgba(200,200,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 85%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 90%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 5% 45%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 95% 70%, rgba(180,180,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 48% 50%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 38%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 12%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 67% 68%, rgba(200,180,255,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 33% 22%, rgba(255,240,200,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 52% 92%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 44%, rgba(255,255,255,0.5) 0%, transparent 100%);
  animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.5; }
}

.nebula-drift {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 500px 300px at 15% 25%, rgba(56,189,248,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 400px 500px at 85% 65%, rgba(14,116,144,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 300px 200px at 50% 80%, rgba(125,211,252,0.04) 0%, transparent 70%);
  animation: nebulaDrift 20s ease-in-out infinite alternate;
}

@keyframes nebulaDrift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.05); }
}

/* ── LAYOUT ── */
.page {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ── HEADER ── */
header {
  text-align: center;
  padding: 60px 0 40px;
  position: relative;
}

.header-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(56,189,248,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.site-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--violet);
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.8;
}

.site-title {
  font-family: 'Nosifer', cursive;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, #e2e8f0 0%, #ffffff 30%, #7dd3fc 60%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  margin-bottom: 10px;
  padding-bottom: 0.15em;
}

.site-subtitle {
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 1px;
}

.header-divider {
  width: 300px;
  height: 1px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, transparent, #38bdf8, #e2e8f0, #38bdf8, transparent);
}

/* ── FILTERS ── */
.filter-bar {
  background: rgba(0, 10, 22, 0.75);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 32px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(56,189,248,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}

.filter-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--violet);
  text-transform: uppercase;
  white-space: nowrap;
}

.filter-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
}

.filter-select {
  background: rgba(0, 15, 30, 0.85);
  border: 1px solid rgba(56,189,248,0.4);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
  padding: 8px 14px;
  cursor: pointer;
  outline: none;
  flex: 1;
  min-width: 160px;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2338bdf8' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: rgba(0, 15, 30, 0.85);
  padding-right: 32px;
}

.filter-select:focus, .filter-select:hover {
  border-color: #7dd3fc;
  box-shadow: 0 0 12px rgba(56,189,248,0.35);
}

.filter-select option {
  background: #011828;
  color: var(--white);
}

.filter-reset {
  background: transparent;
  border: 1px solid rgba(56,189,248,0.3);
  border-radius: 8px;
  color: var(--muted);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  white-space: nowrap;
}

.filter-reset:hover {
  border-color: #7dd3fc;
  color: var(--lavender);
  box-shadow: 0 0 12px rgba(56,189,248,0.25);
}

/* ── GUIDE CARDS ── */
.guides-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.guide-card {
  background: transparent;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.guide-card:hover {
  border-color: rgba(56,189,248,0.5);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 8px 60px rgba(0,0,0,0.6),
    0 0 80px rgba(56,189,248,0.12);
  transform: translateY(-2px);
}

/* ── COLUMN LAYOUT ── */
.col-infographic { width: 100%; min-width: 0; position: relative; overflow: hidden; }

.col-bottom-panel {
  width: 100%;
  min-width: 0;
  border-bottom: 1px solid rgba(56,189,248,0.2);
  display: flex;
  flex-direction: row;
  background: transparent;
  min-height: 150px;
}

.col-bottom-panel > *:last-child { border-right: none; }

/* ── BOX HEADER / CONTENT ── */
.box-header {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  padding: 10px 4px 8px;
  border-bottom: 1px solid rgba(56,189,248,0.1);
}

.box-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 4px;
  width: 100%;
}

/* Stat bar columns */
.col-profit {
  flex: 1; min-width: 0;
  border-right: 1px solid rgba(56,189,248,0.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  text-align: center;
}

.col-investment {
  flex: 1; min-width: 0;
  border-right: 1px solid rgba(56,189,248,0.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  text-align: center;
}

.col-difficulty {
  flex: 1; min-width: 0;
  border-right: 1px solid rgba(56,189,248,0.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  text-align: center;
}

.col-mechanics {
  flex: 1; min-width: 0;
  border-right: 1px solid rgba(56,189,248,0.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
}

.col-creator {
  flex: 1; min-width: 0;
  border-right: 1px solid rgba(56,189,248,0.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
}

.col-tree {
  flex: 1; min-width: 0;
  border-right: 1px solid rgba(56,189,248,0.2);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition: background 0.2s;
}

.col-tree:hover { background: rgba(56,189,248,0.05); }

.col-risk {
  flex: 1; min-width: 0;
  border-right: 1px solid rgba(56,189,248,0.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  text-align: center;
}

/* ── GUIDE REQUIREMENTS ── */
.guide-requirements {
  padding: 32px 36px 24px;
  border-top: 1px solid rgba(56,189,248,0.15);
  background: rgba(0, 5, 14, 0.5);
}

.guide-requirements-title {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 1;
  text-align: center;
  margin-bottom: 20px;
}

.guide-requirements-cols {
  display: flex;
  gap: 0;
}

.guide-req-col {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid rgba(56,189,248,0.12);
  text-align: center;
}

.guide-req-col:first-child { padding-left: 0; }
.guide-req-col:last-child { border-right: none; }

.guide-req-header {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(240,180,41,0.25);
}

.guide-req-item {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  padding: 3px 0;
}

/* ── GUIDE COMMENTARY ── */
.guide-commentary {
  padding: 28px 36px;
  border-top: 1px solid rgba(56,189,248,0.15);
  background: rgba(0, 5, 14, 0.5);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 19px;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
}

/* ── TIER BADGES ── */
.tier-col-label {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
}

.tier-badge {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid;
}

.tier-low {
  color: #4ade80;
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.45);
}

.tier-medium {
  color: var(--gold);
  background: rgba(240,180,41,0.12);
  border-color: rgba(240,180,41,0.45);
}

.tier-high {
  color: #f87171;
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.45);
}

/* ── INFOGRAPHIC ── */
.infographic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
}

.infographic-placeholder {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.infographic-placeholder .bg-gradient {
  position: absolute;
  inset: 0;
}

.infographic-placeholder .guide-title-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
}

.guide-title-overlay h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  margin-bottom: 8px;
}

.guide-badge {
  display: inline-block;
  background: rgba(14,116,144,0.4);
  border: 1px solid rgba(56,189,248,0.5);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--lavender);
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
}

/* ── TREE ── */
.col-tree-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
}

.tree-thumb {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(56,189,248,0.25);
  display: block;
}

.tree-expand-hint {
  font-size: 9px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 1px;
}

/* ── CPH ── */
.cph-label {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
}

.cph-value {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(240,180,41,0.7), 0 1px 8px rgba(0,0,0,0.9);
  line-height: 1;
}

.divine-icon {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 14px rgba(240,200,80,0.85));
}

/* ── MECHANICS ── */
.mechanics-label {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
}

.mechanic-tag {
  background: rgba(14,116,144,0.2);
  border: 1px solid rgba(56,189,248,0.35);
  border-radius: 6px;
  padding: 3px;
  color: var(--lavender);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mechanic-tag:hover {
  background: rgba(14,116,144,0.4);
  border-color: rgba(125,211,252,0.7);
  box-shadow: 0 0 10px rgba(56,189,248,0.4);
}

.mechanic-icon-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  filter: drop-shadow(0 0 6px rgba(56,189,248,0.5));
}

.col-mechanics.multi-mechanic .mechanic-icon-img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}

/* ── CREATOR ── */
.creator-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  justify-content: center;
}

.creator-label {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

.creator-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--lavender);
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}

.yt-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255,100,100,0.35);
  background: rgba(255,30,30,0.08);
  transition: all 0.2s;
  width: 100%;
}

.yt-link:hover {
  border-color: rgba(255,80,80,0.6);
  background: rgba(255,30,30,0.18);
  box-shadow: 0 0 16px rgba(255,30,30,0.2);
}

.yt-icon { font-size: 20px; }

.yt-text {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #ff6b6b;
  text-transform: uppercase;
}

/* ── DIFFICULTY ── */
.difficulty-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-top: 4px;
  border-top: 1px solid rgba(56,189,248,0.2);
  width: 100%;
}

.difficulty-label {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

.skulls { display: flex; gap: 4px; justify-content: center; }
.skull { font-size: 22px; }
.skull.lit { filter: drop-shadow(0 0 6px rgba(200,80,80,0.8)); }
.skull.dim { opacity: 0.2; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(3,1,10,0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.open { display: flex; }

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  box-shadow: 0 0 80px rgba(56,189,248,0.25);
  background: #011020;
  overflow: hidden;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-content img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 8px;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
  font-family: 'Cinzel', serif;
  z-index: 1001;
}

.lightbox-close:hover { color: var(--white); }

/* ── MISC ── */
.results-bar {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 4px;
}

.results-count {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

.results-count span { color: var(--violet); }

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
  font-style: italic;
  font-size: 18px;
  display: none;
}

.empty-state.visible { display: block; }

/* ── FOOTER ── */
.site-footer {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(56,189,248,0.15);
  text-align: center;
}

.site-footer p {
  font-size: 12px;
  color: rgba(122, 184, 212, 0.5);
  font-style: italic;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* ── BACK NAV ── */
.back-nav {
  display: inline-block;
  margin-top: 24px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.back-nav:hover { color: var(--lavender); }

/* ── HOME PAGE: GAME SELECT ── */
.game-select {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  margin-top: 40px;
  flex-wrap: wrap;
}

.game-tile {
  display: flex;
  flex-direction: column;
  width: 442px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  background: rgba(0, 10, 22, 0.55);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.game-tile:hover {
  border-color: rgba(56,189,248,0.6);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 8px 60px rgba(0,0,0,0.6),
    0 0 80px rgba(56,189,248,0.18);
  transform: translateY(-4px);
}

.game-tile-image {
  width: 100%;
  height: 286px;
  background: rgba(0, 15, 30, 0.7);
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-tile-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.game-tile-image-placeholder {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(56,189,248,0.3);
  text-transform: uppercase;
  border: 1px dashed rgba(56,189,248,0.2);
  padding: 12px 20px;
  border-radius: 6px;
}

.game-tile-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game-tile-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--violet);
  text-transform: uppercase;
  opacity: 0.8;
}

.game-tile-label {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  background: linear-gradient(135deg, #e2e8f0 0%, #ffffff 30%, #f0b429 80%, #f0b429 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  padding-bottom: 0.15em;
}

.game-tile-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(15px, 2.25vw, 21px);
  color: var(--muted);
  letter-spacing: 1px;
  margin-top: -2px;
}

.game-tile-cta {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
  transition: color 0.2s;
}

.game-tile:hover .game-tile-cta { color: var(--lavender); }

/* Links tile — no image, icon centered instead */
.game-tile-image--links {
  background: rgba(0, 15, 30, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.links-tile-icon {
  font-size: 64px;
  filter: drop-shadow(0 0 20px rgba(56,189,248,0.4));
}

/* ── ABOUT ── */
.about-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-section {
  padding: 40px 0;
}

.about-section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.about-section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  background: linear-gradient(135deg, #e2e8f0 0%, #ffffff 30%, #7dd3fc 70%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  padding-bottom: 0.15em;
  margin: 0 0 20px;
}

.about-section-body {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 20px;
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 16px;
}

.about-section-body:last-child {
  margin-bottom: 0;
}

.about-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(56,189,248,0.25) 0%, rgba(56,189,248,0.03) 100%);
}

/* ── BLOG ── */
.blog-feed {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 0 40px;
}

.blog-post {
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 8, 20, 0.6);
  backdrop-filter: blur(14px);
  padding: 36px 40px 32px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.blog-post-date {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
}

.blog-post-tag {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.25);
  color: var(--cyan);
}

.blog-post-tag--league {
  background: rgba(240,180,41,0.1);
  border-color: rgba(240,180,41,0.3);
  color: var(--gold);
}

.blog-post-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  background: linear-gradient(135deg, #e2e8f0 0%, #ffffff 30%, #7dd3fc 70%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  padding-bottom: 0.15em;
  margin: 0;
}

.blog-post-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(56,189,248,0.3) 0%, rgba(56,189,248,0.05) 100%);
  margin: 20px 0;
}

.blog-post-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-block-heading {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 12px 0 4px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(240,180,41,0.2);
}

.blog-block-paragraph {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 19px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.blog-block-list {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  padding-left: 22px;
  margin: 0;
}

.blog-block-list li {
  margin-bottom: 4px;
}

.blog-block-image {
  margin: 8px 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(56,189,248,0.15);
}

.blog-block-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ── STRATEGY PORTAL ── */
.strategy-portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.strategy-tile {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: rgba(0, 10, 22, 0.55);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  cursor: pointer;
}

.strategy-tile:hover {
  border-color: rgba(56,189,248,0.6);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 8px 50px rgba(0,0,0,0.5),
    0 0 50px rgba(56,189,248,0.15);
  transform: translateY(-3px);
}

.strategy-tile-image {
  width: 100%;
  height: 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strategy-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strategy-tile-placeholder-text {
  font-family: 'Cinzel', serif;
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  padding: 16px;
  line-height: 1.4;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  position: relative;
  z-index: 1;
}

.strategy-tile-header {
  padding: 14px 14px 18px;
  border-bottom: 1px solid rgba(56,189,248,0.2);
  background: rgba(0, 8, 18, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.strategy-tile-title {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--lavender);
  line-height: 1.4;
}

.strategy-tile-footer {
  padding: 10px 14px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid rgba(56,189,248,0.2);
  background: rgba(0, 8, 18, 0.4);
}

.strategy-tile-cph {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.strategy-tile-cph span {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(240,180,41,0.6);
}

.strategy-tile-divine {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 6px rgba(240,200,80,0.7));
}

/* ── USEFUL LINKS PAGE ── */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.link-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(0, 10, 22, 0.55);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}

.link-card:hover {
  border-color: rgba(56,189,248,0.6);
  box-shadow: 0 0 40px rgba(56,189,248,0.12);
  transform: translateY(-2px);
}

.link-card-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 8px rgba(56,189,248,0.3));
}

.link-card-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.link-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.link-card-category {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--violet);
  text-transform: uppercase;
  opacity: 0.8;
}

.link-card-title {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--lavender);
  letter-spacing: 0.5px;
}

.link-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.link-card-url {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(56,189,248,0.5);
  text-transform: lowercase;
  margin-top: 2px;
}

.link-card:hover .link-card-url { color: var(--violet); }

/* ── COMING SOON PAGE ── */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  gap: 20px;
  text-align: center;
}

.coming-soon-icon {
  font-size: 56px;
  filter: drop-shadow(0 0 20px rgba(56,189,248,0.4));
}

.coming-soon-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  background: linear-gradient(135deg, #e2e8f0 0%, #ffffff 40%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.15em;
}

.coming-soon-sub {
  font-size: 18px;
  color: var(--muted);
  font-style: italic;
  max-width: 480px;
  line-height: 1.6;
}
