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

:root {
  --bg:        #07090f;
  --bg2:       #0e1018;
  --bg3:       #161b28;
  --accent:    #e8a020;
  --accent2:   #c0392b;
  --blue:      #4a90e2;
  --text:      #d4d8e8;
  --text-dim:  #6b7490;
  --border:    #1e2336;
  --font:      'Inter', 'Noto Sans KR', sans-serif;
  --font-title:'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a3050; border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(7, 9, 15, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}
nav.scrolled {
  background: rgba(7, 9, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #fff;
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #000 !important;
  font-weight: 700 !important;
  padding: 8px 20px;
  border-radius: 7px;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }
.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,160,32,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(192,57,43,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 60%, rgba(74,144,226,0.05) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3px;
  margin-bottom: 24px;
  color: #fff;
}
.hero h1 .line2 {
  display: block;
  background: linear-gradient(135deg, var(--accent) 0%, #f0c060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-desc strong { color: var(--text); }
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(232,160,32,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,160,32,0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
}
.hero-tags {
  margin-top: 52px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 13px;
}
.hero-tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* ── SECTION COMMON ── */
section { padding: 100px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.75;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-title);
}
.stat-num.stat-text {
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
}
.stat-label-text {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

/* ── FINDIT PROGRESS ── */
.updates-section {
  background: linear-gradient(180deg, #090b12 0%, #111626 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.updates-header {
  text-align: center;
  margin-bottom: 48px;
}
.updates-header .section-desc {
  margin: 0 auto;
  max-width: 760px;
}
.updates-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.updates-kpi-card {
  background: rgba(9, 12, 20, 0.78);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.updates-kpi-card:hover {
  border-color: rgba(232,160,32,0.3);
  transform: translateY(-3px);
}
.updates-kpi-title {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.updates-kpi-value {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.updates-kpi-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
}
.updates-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.updates-panel {
  background: rgba(12, 16, 26, 0.9);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.updates-log {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.updates-log-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 12px 14px;
}
.updates-log-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.22);
  border-radius: 999px;
  padding: 4px 8px;
}
.updates-log-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-dim);
}
.updates-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.updates-bullet-item {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 12px 14px;
}
.updates-bullet-item strong {
  color: #fff;
}

/* ── FEATURES ── */
.features-section { background: var(--bg); }
.features-header { text-align: center; margin-bottom: 64px; }
.features-header .section-desc { margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { border-color: rgba(232,160,32,0.3); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
}
.feature-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── GAME LOOP ── */
.loop-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
}
.loop-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.loop-steps { display: flex; flex-direction: column; gap: 0; }
.loop-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.loop-step:last-child { border-bottom: none; }
.loop-step:hover .step-title { color: var(--accent); }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--text-dim);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s;
}
.loop-step.active .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}
.step-body {}
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.step-desc { font-size: 13.5px; color: var(--text-dim); line-height: 1.65; }
.loop-visual {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.loop-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
}
.visual-icon {
  font-size: 72px;
  margin-bottom: 20px;
  display: block;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.visual-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.visual-desc { font-size: 14px; color: var(--text-dim); text-align: center; max-width: 240px; line-height: 1.65; }

/* ── SKILL SYSTEM HIGHLIGHT ── */
.skill-section { background: var(--bg); }
.skill-header { margin-bottom: 56px; }
.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.skill-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.skill-card:hover { border-color: rgba(232,160,32,0.3); }
.skill-card-icon {
  font-size: 36px;
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--bg3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.skill-name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.skill-cd { font-size: 11px; color: var(--accent); font-weight: 600; margin-bottom: 8px; letter-spacing: 0.5px; }
.skill-desc-text { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.level-strip {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.level-label { font-size: 13px; font-weight: 700; color: var(--text-dim); white-space: nowrap; }
.level-cells { display: flex; gap: 10px; flex: 1; min-width: 200px; }
.level-cell {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
}
.level-cell.max { border-color: var(--accent); background: rgba(232,160,32,0.08); }
.level-cell .lv { font-size: 10px; color: var(--text-dim); font-weight: 600; margin-bottom: 4px; }
.level-cell .mult { font-size: 18px; font-weight: 800; color: #fff; }
.level-cell.max .mult { color: var(--accent); }

/* ── SKILL AXIS GRID (Lobby Build Grid) ── */
.skill-grid-section {}
.skill-axis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.skill-axis-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.skill-axis-card:hover { transform: translateY(-3px); }
.skill-axis-name {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.skill-axis-desc {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── CO-OP SECTION ── */
.coop-section { background: var(--bg2); }
.coop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ── WEAPON SYSTEM ── */
.weapon-section { background: var(--bg2); }
.weapon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.weapon-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.weapon-card:hover { border-color: rgba(232,160,32,0.3); transform: translateY(-3px); }
.weapon-card-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.weapon-card-name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.weapon-card-desc { font-size: 12.5px; color: var(--text-dim); line-height: 1.6; }

/* ── MODDING SYSTEM ── */
.mod-section { background: var(--bg); }

.mod-bonus {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(232, 160, 32, 0.06);
  border: 1px solid rgba(232, 160, 32, 0.25);
  border-radius: 14px;
  padding: 26px 36px;
  margin-bottom: 48px;
}
.mod-bonus-icon { font-size: 40px; flex-shrink: 0; }
.mod-bonus-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}
.mod-bonus-text { font-size: 15px; color: var(--text); }
.mod-bonus-text strong { color: #fff; }
.bonus-highlight { color: var(--accent); font-weight: 900; font-size: 20px; }

.mod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.mod-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 14px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.mod-card:hover { border-color: rgba(232,160,32,0.35); transform: translateY(-3px); }
.mod-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.mod-name { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 4px; letter-spacing: 0.3px; }
.mod-eff { font-size: 11px; color: var(--text-dim); line-height: 1.5; }

.mod-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
.mod-detail-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.mod-detail-card:hover { border-color: rgba(232,160,32,0.25); }
.mod-detail-icon { font-size: 30px; flex-shrink: 0; margin-top: 2px; }
.mod-detail-title { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.mod-detail-desc { font-size: 13.5px; color: var(--text-dim); line-height: 1.7; }

/* ── PLATFORMS ── */
.platform-section { background: var(--bg); }
.platform-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.platform-list { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.platform-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
}
.platform-icon { font-size: 26px; }
.platform-name { font-size: 15px; font-weight: 700; color: #fff; }
.platform-sub { font-size: 12px; color: var(--text-dim); }
.platform-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.25);
  color: var(--accent);
}
.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.tech-tag {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, #0d0f18 0%, #141826 100%);
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,160,32,0.07) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 2; }
.cta-section .section-title { max-width: 560px; margin: 0 auto 16px; }
.cta-section .section-desc { margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { font-size: 17px; font-weight: 900; color: #fff; }
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 13px; color: var(--text-dim); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ── ARMOR SYSTEM ── */
.armor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.armor-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.armor-card:hover { border-color: rgba(232,160,32,0.3); transform: translateY(-3px); }
.armor-card-icon { font-size: 32px; display: block; margin-bottom: 10px; }
.armor-card-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.armor-card-desc { font-size: 12px; color: var(--text-dim); line-height: 1.6; }
.armor-note {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
}

/* ── ELEMENT & STATUS EFFECT ── */
.element-section { background: var(--bg2); }
.element-row {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 20px;
}
.element-sub-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.element-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.element-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  transition: transform 0.2s;
}
.element-tag:hover { transform: translateY(-2px); }
.element-fire      { background: rgba(192,57,43,0.15);  color: #e74c3c; border: 1px solid rgba(192,57,43,0.3); }
.element-ice       { background: rgba(41,128,185,0.15); color: #5dade2; border: 1px solid rgba(41,128,185,0.3); }
.element-lightning { background: rgba(232,160,32,0.15); color: var(--accent); border: 1px solid rgba(232,160,32,0.3); }
.element-poison    { background: rgba(39,174,96,0.15);  color: #58d68d; border: 1px solid rgba(39,174,96,0.3); }
.element-earth     { background: rgba(127,140,141,0.15); color: #aab7b8; border: 1px solid rgba(127,140,141,0.3); }
.element-dark      { background: rgba(142,68,173,0.15); color: #bb8fce; border: 1px solid rgba(142,68,173,0.3); }
.element-void      { background: rgba(100,100,140,0.15); color: #8e99c0; border: 1px solid rgba(100,100,140,0.3); }
.element-bleed     { background: rgba(192,57,43,0.12);  color: #e67e73; border: 1px solid rgba(192,57,43,0.25); }
.element-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.element-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.element-card:hover { border-color: rgba(232,160,32,0.3); transform: translateY(-3px); }
.element-card-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.element-card-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.element-card-desc { font-size: 12px; color: var(--text-dim); line-height: 1.5; }

/* ── ENEMY & BOSS ── */
.enemy-section { background: var(--bg); }
.enemy-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.enemy-type-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.enemy-type-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.enemy-type-card:hover { border-color: rgba(232,160,32,0.3); transform: translateY(-4px); }
.enemy-type-card:hover::before { opacity: 1; }
.enemy-type-icon { font-size: 40px; display: block; margin-bottom: 14px; }
.enemy-type-name { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.enemy-type-count {
  font-size: 12px; font-weight: 700; color: var(--accent);
  letter-spacing: 1px; margin-bottom: 12px;
}
.enemy-type-desc { font-size: 13px; color: var(--text-dim); line-height: 1.65; margin-bottom: 16px; }
.drop-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.25);
  color: var(--accent);
}
.drop-elite { background: rgba(74,144,226,0.1); border-color: rgba(74,144,226,0.25); color: var(--blue); }
.drop-boss { background: rgba(192,57,43,0.1); border-color: rgba(192,57,43,0.25); color: var(--accent2); }
.boss-patterns-header { text-align: center; margin-bottom: 20px; }
.boss-pattern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.boss-pattern {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 14px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.boss-pattern:hover { border-color: rgba(232,160,32,0.3); transform: translateY(-3px); }
.pattern-icon { font-size: 24px; display: block; margin-bottom: 8px; }
.pattern-name { font-size: 12px; font-weight: 700; color: #fff; }

/* ── QUEST SYSTEM ── */
.quest-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
}
.quest-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quest-type-list { display: flex; flex-direction: column; gap: 16px; }
.quest-type-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  transition: border-color 0.2s;
}
.quest-type-item:hover { border-color: rgba(232,160,32,0.3); }
.quest-type-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.quest-type-name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.quest-type-desc { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.quest-challenge-panel {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}
.challenge-title {
  font-size: 16px; font-weight: 800; color: #fff;
  margin-bottom: 24px; text-align: center;
}
.challenge-list { display: flex; flex-direction: column; gap: 12px; }
.challenge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px; color: var(--text-dim);
  padding: 10px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.challenge-item:hover { border-color: rgba(232,160,32,0.25); }
.challenge-icon { font-size: 16px; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .stat-item { border-right: 1px solid var(--border); border-top: none; }
  .stat-item:nth-child(3n) { border-right: none; }
  .stat-item:nth-child(n+4) { border-top: 1px solid var(--border); }
  .features-grid { grid-template-columns: 1fr; }
  .updates-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .updates-detail-grid { grid-template-columns: 1fr; }
  .loop-content { grid-template-columns: 1fr; gap: 40px; }
  .loop-visual { min-height: 280px; padding: 36px; order: -1; }
  .skill-grid { grid-template-columns: 1fr; }
  .weapon-grid { grid-template-columns: repeat(2, 1fr); }
  .mod-grid { grid-template-columns: repeat(2, 1fr); }
  .mod-detail-row { grid-template-columns: 1fr; }
  .mod-bonus { flex-direction: column; gap: 12px; text-align: center; }
  .platform-content { grid-template-columns: 1fr; gap: 48px; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .level-cells { flex-wrap: wrap; }
  .level-cell { min-width: calc(33% - 8px); }
  .armor-grid { grid-template-columns: 1fr; }
  .skill-axis-grid { grid-template-columns: repeat(2, 1fr); }
  .coop-grid { grid-template-columns: 1fr; }
  .element-grid { grid-template-columns: repeat(2, 1fr); }
  .element-row { padding: 20px 24px; }
  .enemy-type-grid { grid-template-columns: 1fr; }
  .boss-pattern-grid { grid-template-columns: repeat(4, 1fr); }
  .quest-content { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-top: none; }
  .stat-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .weapon-grid { grid-template-columns: 1fr; }
  .skill-axis-grid { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -1px; }
  .updates-kpi-grid { grid-template-columns: 1fr; }
  .updates-log-item { grid-template-columns: 1fr; }
  .updates-log-date { justify-self: start; }
  .element-grid { grid-template-columns: 1fr; }
  .element-tag { font-size: 12px; padding: 8px 14px; }
  .boss-pattern-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── WoW-like News Theme Override ── */
.wow-news-theme {
  --bg: #0f0c08;
  --bg2: #19130d;
  --bg3: #241a12;
  --accent: #c8a66a;
  --accent2: #8f3d2d;
  --blue: #8da8cf;
  --text: #ece2cf;
  --text-dim: #baa98d;
  --border: #463523;
  --font: 'Noto Sans KR', sans-serif;
  --font-title: 'Cinzel', 'Noto Sans KR', sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(200,166,106,0.12) 0%, transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(120,84,48,0.14) 0%, transparent 32%),
    linear-gradient(180deg, #0c0906 0%, #110d09 30%, #0f0b07 100%);
}

.wow-news-theme nav {
  padding: 16px 40px;
  background: rgba(12, 9, 6, 0.92);
  border-bottom: 1px solid rgba(200,166,106,0.24);
  backdrop-filter: blur(12px);
}

.wow-news-theme nav.scrolled {
  background: rgba(10, 8, 5, 0.97);
  border-bottom-color: rgba(200,166,106,0.34);
}

.wow-news-theme .nav-logo {
  font-family: var(--font-title);
  font-size: 23px;
  letter-spacing: 0.4px;
}

.wow-news-theme .nav-logo span {
  color: #d8b673;
}

.wow-news-theme .nav-links a {
  color: #c8b799;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.wow-news-theme .nav-links a:hover {
  color: #f5e0ba;
}

.wow-news-theme .news-hero {
  min-height: auto;
  padding: 132px 28px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  text-align: left;
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.wow-news-theme .news-hero-backdrop {
  position: absolute;
  inset: 56px 8px 0;
  border-radius: 18px;
  border: 1px solid rgba(200,166,106,0.2);
  background:
    linear-gradient(135deg, rgba(68,42,23,0.54) 0%, rgba(31,21,14,0.72) 45%, rgba(15,11,8,0.92) 100%),
    repeating-linear-gradient(
      115deg,
      rgba(255,255,255,0.02) 0,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 24px
    );
  box-shadow: 0 22px 48px rgba(0,0,0,0.35);
}

.wow-news-theme .news-hero-inner,
.wow-news-theme .news-hero-frame {
  position: relative;
  z-index: 2;
}

.wow-news-theme .news-hero-inner {
  padding: 40px 30px 34px;
}

.wow-news-theme .news-kicker {
  color: #e8d3ae;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.wow-news-theme .news-title {
  font-family: var(--font-title);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
  color: #f2e7d2;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  text-shadow: 0 6px 22px rgba(0,0,0,0.4);
}

.wow-news-theme .news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #d5c29d;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}

.wow-news-theme .news-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wow-news-theme .news-meta span:not(:last-child)::after {
  content: '•';
  color: rgba(200,166,106,0.8);
}

.wow-news-theme .news-lead {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.82;
  color: #cfbe9f;
  margin-bottom: 26px;
}

.wow-news-theme .news-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wow-news-theme .btn-primary {
  background: linear-gradient(180deg, #d9b67c 0%, #ba8f53 100%);
  color: #1f1308;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.wow-news-theme .btn-primary:hover {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}

.wow-news-theme .btn-secondary {
  background: rgba(31, 23, 16, 0.8);
  color: #dec59a;
  border-color: rgba(200,166,106,0.36);
}

.wow-news-theme .btn-secondary:hover {
  background: rgba(45, 32, 22, 0.9);
  border-color: rgba(228,197,141,0.5);
}

.wow-news-theme .news-hero-frame {
  align-self: center;
  border-radius: 16px;
  min-height: 300px;
  border: 1px solid rgba(207,171,112,0.36);
  background:
    radial-gradient(circle at 50% 18%, rgba(248,196,118,0.42), transparent 38%),
    linear-gradient(175deg, rgba(82,46,23,0.65) 0%, rgba(27,18,12,0.9) 50%, rgba(16,12,9,0.98) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 18px 35px rgba(0,0,0,0.36);
}

.wow-news-theme .news-hero-frame-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f0d8ad;
  margin-bottom: 10px;
}

.wow-news-theme .news-hero-frame-title {
  font-family: var(--font-title);
  font-size: 30px;
  line-height: 1.1;
  color: #fff0d5;
  margin-bottom: 10px;
}

.wow-news-theme .news-hero-frame-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #d4bea0;
}

.wow-news-theme .news-article {
  width: 100%;
}

.wow-news-theme .stats-strip {
  max-width: 1200px;
  margin: 0 auto 18px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(200,166,106,0.28);
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}

.wow-news-theme .stat-num {
  color: #e6c187;
}

.wow-news-theme section:not(.hero) {
  max-width: 1200px;
  margin: 0 auto 18px;
  padding: 72px 24px;
  border: 1px solid rgba(200,166,106,0.24);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(22,16,11,0.94) 0%, rgba(17,13,9,0.94) 100%);
  box-shadow: 0 14px 30px rgba(0,0,0,0.24);
}

.wow-news-theme .updates-section,
.wow-news-theme .quest-section,
.wow-news-theme .loop-section,
.wow-news-theme .cta-section {
  background: linear-gradient(180deg, rgba(34,25,17,0.95) 0%, rgba(21,15,10,0.96) 100%);
}

.wow-news-theme .container {
  max-width: 1120px;
}

.wow-news-theme .section-label {
  color: #cfae74;
}

.wow-news-theme .section-title {
  font-family: var(--font-title);
  letter-spacing: 0.2px;
  color: #f4e8d0;
}

.wow-news-theme .section-desc {
  color: #c4b397;
}

.wow-news-theme .feature-card,
.wow-news-theme .updates-kpi-card,
.wow-news-theme .updates-panel,
.wow-news-theme .weapon-card,
.wow-news-theme .mod-card,
.wow-news-theme .mod-detail-card,
.wow-news-theme .skill-card,
.wow-news-theme .skill-axis-card,
.wow-news-theme .element-row,
.wow-news-theme .element-card,
.wow-news-theme .enemy-type-card,
.wow-news-theme .boss-pattern,
.wow-news-theme .quest-type-item,
.wow-news-theme .challenge-item,
.wow-news-theme .platform-item,
.wow-news-theme .tech-tag,
.wow-news-theme .loop-visual,
.wow-news-theme .quest-challenge-panel,
.wow-news-theme .armor-card,
.wow-news-theme .level-strip {
  border-color: rgba(200,166,106,0.22);
  background: linear-gradient(180deg, rgba(30,22,15,0.92) 0%, rgba(19,14,10,0.94) 100%);
}

.wow-news-theme .feature-card:hover,
.wow-news-theme .updates-kpi-card:hover,
.wow-news-theme .weapon-card:hover,
.wow-news-theme .mod-card:hover,
.wow-news-theme .mod-detail-card:hover,
.wow-news-theme .skill-card:hover,
.wow-news-theme .enemy-type-card:hover,
.wow-news-theme .boss-pattern:hover,
.wow-news-theme .quest-type-item:hover,
.wow-news-theme .challenge-item:hover {
  border-color: rgba(229,197,141,0.44);
}

.wow-news-theme .platform-badge,
.wow-news-theme .drop-badge {
  background: rgba(200,166,106,0.15);
  border-color: rgba(200,166,106,0.35);
  color: #e4ca9e;
}

.wow-news-theme .drop-elite {
  background: rgba(111,146,198,0.14);
  border-color: rgba(111,146,198,0.33);
}

.wow-news-theme .drop-boss {
  background: rgba(154,72,55,0.18);
  border-color: rgba(154,72,55,0.4);
  color: #d68f81;
}

.wow-news-theme footer {
  background: rgba(11, 8, 6, 0.95);
  border-top-color: rgba(200,166,106,0.28);
}

.wow-news-theme .footer-logo {
  font-family: var(--font-title);
  font-size: 20px;
}

@media (max-width: 960px) {
  .wow-news-theme nav {
    padding: 14px 18px;
  }

  .wow-news-theme .news-hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 108px 14px 32px;
  }

  .wow-news-theme .news-hero-backdrop {
    inset: 52px 0 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .wow-news-theme .news-hero-inner {
    padding: 26px 14px 20px;
  }

  .wow-news-theme .news-title {
    font-size: clamp(28px, 8vw, 44px);
  }

  .wow-news-theme .news-hero-frame {
    min-height: 210px;
  }

  .wow-news-theme section:not(.hero),
  .wow-news-theme .stats-strip {
    margin-bottom: 14px;
    border-radius: 10px;
  }
}

@media (max-width: 560px) {
  .wow-news-theme .news-kicker {
    font-size: 11px;
  }

  .wow-news-theme .news-meta {
    gap: 6px;
    font-size: 11px;
  }

  .wow-news-theme .news-lead {
    font-size: 14px;
    line-height: 1.75;
  }

  .wow-news-theme .news-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wow-news-theme .news-actions .btn-primary,
  .wow-news-theme .news-actions .btn-secondary {
    justify-content: center;
  }

  .wow-news-theme section:not(.hero) {
    padding: 58px 16px;
  }
}

/* ── Lens Island Inspired Theme ── */
.lens-island-theme {
  --bg: #0b1310;
  --bg2: #111d18;
  --bg3: #172821;
  --accent: #8fd08c;
  --accent2: #3e9675;
  --blue: #79c4d1;
  --text: #edf6ef;
  --text-dim: #b7cbc0;
  --border: #2f4d42;
  --sprite-tile: url('../assets/sprites/isometric-tile_ground_04_half.png');
  --sprite-lightning: url('../assets/sprites/Skill_Lightning.png');
  --sprite-meteor: url('../assets/sprites/Skill_Meteor.png');
  --font: 'Noto Sans KR', sans-serif;
  --font-title: 'Marcellus', 'Noto Sans KR', sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(143,208,140,0.26) 0%, transparent 36%),
    radial-gradient(circle at 86% 10%, rgba(121,196,209,0.18) 0%, transparent 33%),
    linear-gradient(180deg, #07100c 0%, #0c1713 34%, #0e1815 100%);
}

.lens-island-theme nav {
  padding: 16px 36px;
  background: rgba(8, 16, 13, 0.72);
  border-bottom: 1px solid rgba(143,208,140,0.24);
  backdrop-filter: blur(14px);
}

.lens-island-theme nav.scrolled {
  background: rgba(5, 11, 9, 0.9);
  border-bottom-color: rgba(143,208,140,0.38);
}

.lens-island-theme .nav-logo {
  font-family: var(--font-title);
  font-size: 24px;
  letter-spacing: 0.6px;
}

.lens-island-theme .nav-logo span {
  color: #95e39e;
}

.lens-island-theme .nav-links a {
  color: #c5d8cb;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.lens-island-theme .nav-links a:hover {
  color: #ecfff1;
}

.lens-island-theme .lens-hero {
  min-height: auto;
  padding: 126px 24px 72px;
  position: relative;
}

.lens-island-theme .lens-hero-aurora {
  position: absolute;
  inset: 34px 22px 0;
  border-radius: 24px;
  border: 1px solid rgba(143,208,140,0.18);
  background:
    linear-gradient(150deg, rgba(18,37,30,0.82) 0%, rgba(11,26,21,0.88) 38%, rgba(8,17,14,0.93) 100%),
    radial-gradient(circle at 25% 12%, rgba(143,208,140,0.42) 0%, rgba(143,208,140,0.08) 32%, transparent 66%),
    radial-gradient(circle at 80% 10%, rgba(121,196,209,0.3) 0%, transparent 44%),
    var(--sprite-tile);
  background-size: auto, auto, auto, 132px 99px;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  background-blend-mode: normal, screen, screen, soft-light;
  box-shadow: 0 26px 56px rgba(0,0,0,0.3);
}

.lens-island-theme .lens-sprite-atmos {
  position: absolute;
  inset: 34px 22px 0;
  border-radius: 24px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.lens-island-theme .lens-sprite-tree {
  position: absolute;
  left: 1.5%;
  bottom: -22px;
  width: min(20vw, 280px);
  min-width: 170px;
  opacity: 0.84;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.45));
  animation: lensSpriteTreeFloat 8.8s ease-in-out infinite;
}

.lens-island-theme .lens-sprite-skill {
  position: absolute;
  width: clamp(76px, 8vw, 128px);
  opacity: 0.32;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.35));
}

.lens-island-theme .lens-sprite-lightning {
  top: 11%;
  right: 16%;
  animation: lensSpritePulse 6.2s ease-in-out infinite;
}

.lens-island-theme .lens-sprite-meteor {
  top: 28%;
  right: 3%;
  animation: lensSpritePulse 7.1s ease-in-out infinite reverse;
}

.lens-island-theme .lens-hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: stretch;
}

.lens-island-theme .lens-hero-inner {
  padding: 46px 36px 32px;
}

.lens-island-theme .lens-kicker {
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #9fdca3;
  font-weight: 700;
  margin-bottom: 14px;
}

.lens-island-theme .lens-title {
  font-family: var(--font-title);
  font-size: clamp(35px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: 0.1px;
  color: #f4fff6;
  margin-bottom: 16px;
  text-shadow: 0 10px 28px rgba(0,0,0,0.34);
}

.lens-island-theme .lens-lead {
  max-width: 700px;
  color: #c5d9ce;
  font-size: 16px;
  line-height: 1.82;
  margin-bottom: 24px;
}

.lens-island-theme .lens-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.lens-island-theme .btn-primary {
  background: linear-gradient(180deg, #9ce49c 0%, #69bb7f 100%);
  color: #092315;
  border: 1px solid rgba(158,229,165,0.66);
  box-shadow: 0 14px 30px rgba(16,47,31,0.35);
}

.lens-island-theme .btn-primary:hover {
  box-shadow: 0 16px 34px rgba(16,47,31,0.45);
}

.lens-island-theme .btn-secondary {
  background: rgba(13, 27, 22, 0.82);
  color: #e3f9e6;
  border-color: rgba(143,208,140,0.36);
}

.lens-island-theme .btn-secondary:hover {
  background: rgba(20, 38, 31, 0.88);
  border-color: rgba(143,208,140,0.5);
}

.lens-island-theme .lens-chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lens-island-theme .lens-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: #ddf7e1;
  border: 1px solid rgba(143,208,140,0.3);
  background: rgba(14, 33, 26, 0.62);
}

.lens-island-theme .lens-hero-frame {
  align-self: center;
  position: relative;
  border-radius: 20px;
  min-height: 328px;
  border: 1px solid rgba(143,208,140,0.32);
  background:
    linear-gradient(170deg, rgba(24,58,46,0.74) 0%, rgba(14,34,28,0.88) 54%, rgba(9,21,17,0.95) 100%);
  padding: 28px 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 18px 32px rgba(0,0,0,0.34);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.lens-island-theme .lens-hero-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(7,20,15,0.1) 20%, rgba(7,20,15,0.72) 82%),
    var(--sprite-tile);
  background-size: auto, 142px 106px;
  background-repeat: no-repeat, repeat;
  opacity: 0.36;
  pointer-events: none;
}

.lens-island-theme .lens-frame-label {
  color: #b9ecbe;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.lens-island-theme .lens-frame-title {
  font-family: var(--font-title);
  font-size: clamp(25px, 3.2vw, 38px);
  line-height: 1.12;
  color: #effff2;
  margin-bottom: 10px;
}

.lens-island-theme .lens-frame-desc {
  color: #c0d7ca;
  font-size: 13px;
  line-height: 1.74;
  margin-bottom: 18px;
}

.lens-island-theme .lens-frame-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lens-island-theme .lens-frame-stat {
  border: 1px solid rgba(143,208,140,0.26);
  border-radius: 10px;
  background: rgba(9, 19, 15, 0.68);
  padding: 10px 6px;
  text-align: center;
}

.lens-island-theme .lens-frame-stat strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  color: #b7f4bd;
  margin-bottom: 4px;
}

.lens-island-theme .lens-frame-stat span {
  font-size: 11px;
  color: #c8d7cd;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.lens-island-theme .lens-frame-sprites {
  position: absolute;
  right: -4px;
  top: -4px;
  display: flex;
  gap: 6px;
  pointer-events: none;
  opacity: 0.42;
}

.lens-island-theme .lens-frame-skill {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.45));
}

.lens-island-theme .lens-frame-skill.frame-lightning {
  transform: rotate(-17deg) translateY(3px);
}

.lens-island-theme .lens-frame-skill.frame-meteor {
  transform: rotate(14deg);
}

.lens-island-theme .lens-hero-frame > * {
  position: relative;
  z-index: 1;
}

.lens-island-theme .lens-article {
  width: 100%;
}

.lens-island-theme .stats-strip {
  max-width: 1220px;
  margin: 0 auto 18px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(143,208,140,0.24);
  background: linear-gradient(180deg, rgba(15,30,24,0.9) 0%, rgba(10,20,16,0.92) 100%);
}

.lens-island-theme .stat-num {
  color: #a8f0ab;
}

.lens-island-theme section:not(.hero) {
  position: relative;
  max-width: 1220px;
  margin: 0 auto 18px;
  padding: 74px 24px;
  border: 1px solid rgba(143,208,140,0.2);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15,29,24,0.93) 0%, rgba(11,22,18,0.95) 100%);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
  overflow: hidden;
}

.lens-island-theme section:not(.hero)::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--sprite-tile);
  background-size: 156px 116px;
  background-repeat: repeat;
  opacity: 0.05;
  pointer-events: none;
}

.lens-island-theme section:not(.hero) .container {
  position: relative;
  z-index: 1;
}

.lens-island-theme .container {
  max-width: 1120px;
}

.lens-island-theme .section-label {
  color: #9fdca3;
}

.lens-island-theme .section-title {
  font-family: var(--font-title);
  color: #effff3;
  letter-spacing: 0.2px;
}

.lens-island-theme .section-desc {
  color: #bfd2c7;
}

.lens-island-theme .feature-card,
.lens-island-theme .updates-kpi-card,
.lens-island-theme .updates-panel,
.lens-island-theme .weapon-card,
.lens-island-theme .mod-card,
.lens-island-theme .mod-detail-card,
.lens-island-theme .skill-card,
.lens-island-theme .skill-axis-card,
.lens-island-theme .element-row,
.lens-island-theme .element-card,
.lens-island-theme .enemy-type-card,
.lens-island-theme .boss-pattern,
.lens-island-theme .quest-type-item,
.lens-island-theme .challenge-item,
.lens-island-theme .platform-item,
.lens-island-theme .tech-tag,
.lens-island-theme .loop-visual,
.lens-island-theme .quest-challenge-panel,
.lens-island-theme .armor-card,
.lens-island-theme .level-strip,
.lens-island-theme .mod-bonus,
.lens-island-theme .sprite-showcase-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(143,208,140,0.24);
  background: linear-gradient(180deg, rgba(18,36,29,0.9) 0%, rgba(12,26,21,0.95) 100%);
}

.lens-island-theme .feature-card::after,
.lens-island-theme .updates-kpi-card::after,
.lens-island-theme .updates-panel::after,
.lens-island-theme .weapon-card::after,
.lens-island-theme .skill-card::after,
.lens-island-theme .loop-visual::after {
  content: '';
  position: absolute;
  width: 76px;
  height: 76px;
  right: -12px;
  top: -12px;
  background-image: var(--sprite-lightning);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.12;
  pointer-events: none;
  transform: rotate(-14deg);
}

.lens-island-theme .updates-panel::after,
.lens-island-theme .weapon-card::after,
.lens-island-theme .loop-visual::after {
  background-image: var(--sprite-meteor);
  opacity: 0.1;
  transform: rotate(11deg);
}

.lens-island-theme .feature-card > *,
.lens-island-theme .updates-kpi-card > *,
.lens-island-theme .updates-panel > *,
.lens-island-theme .weapon-card > *,
.lens-island-theme .skill-card > *,
.lens-island-theme .loop-visual > *,
.lens-island-theme .sprite-showcase-card > * {
  position: relative;
  z-index: 1;
}

.lens-island-theme .feature-card:hover,
.lens-island-theme .updates-kpi-card:hover,
.lens-island-theme .weapon-card:hover,
.lens-island-theme .mod-card:hover,
.lens-island-theme .mod-detail-card:hover,
.lens-island-theme .skill-card:hover,
.lens-island-theme .enemy-type-card:hover,
.lens-island-theme .boss-pattern:hover,
.lens-island-theme .quest-type-item:hover,
.lens-island-theme .challenge-item:hover,
.lens-island-theme .sprite-showcase-card:hover {
  border-color: rgba(162,232,167,0.45);
}

.sprite-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sprite-showcase-card {
  border: 1px solid var(--border);
  border-radius: 16px;
}

.sprite-showcase-card > img,
.sprite-showcase-card .sprite-skill-pair {
  display: block;
  width: 100%;
  min-height: 220px;
  padding: 20px;
  object-fit: contain;
  border-bottom: 1px solid rgba(143,208,140,0.2);
  background:
    radial-gradient(circle at 24% 20%, rgba(143,208,140,0.16), transparent 54%),
    radial-gradient(circle at 78% 74%, rgba(121,196,209,0.14), transparent 58%),
    linear-gradient(180deg, rgba(16,34,28,0.98), rgba(8,19,15,0.98));
}

.sprite-showcase-card .sprite-skill-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
}

.sprite-showcase-card .sprite-skill-pair img {
  width: 100%;
  max-height: 176px;
  object-fit: contain;
}

.sprite-showcase-body {
  padding: 18px 18px 20px;
}

.sprite-showcase-body h3 {
  font-family: var(--font-title);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #eefef2;
}

.sprite-showcase-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #c0d4c8;
}

.lens-island-theme .platform-badge,
.lens-island-theme .drop-badge {
  background: rgba(143,208,140,0.15);
  border-color: rgba(143,208,140,0.38);
  color: #caf5ce;
}

.lens-island-theme .drop-elite {
  background: rgba(121,196,209,0.16);
  border-color: rgba(121,196,209,0.34);
  color: #b8ebf1;
}

.lens-island-theme .drop-boss {
  background: rgba(62,150,117,0.22);
  border-color: rgba(62,150,117,0.42);
  color: #d3ffe8;
}

.lens-island-theme footer {
  background: rgba(9, 17, 14, 0.92);
  border-top-color: rgba(143,208,140,0.24);
}

.lens-island-theme .footer-logo {
  font-family: var(--font-title);
  font-size: 20px;
}

@keyframes lensSpriteTreeFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(-1.2deg);
  }
}

@keyframes lensSpritePulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.26;
  }
  50% {
    transform: scale(1.1) rotate(6deg);
    opacity: 0.45;
  }
}

@media (max-width: 960px) {
  .lens-island-theme nav {
    padding: 14px 18px;
  }

  .lens-island-theme .lens-hero {
    padding: 108px 14px 34px;
  }

  .lens-island-theme .lens-hero-aurora {
    inset: 50px 0 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    background-size: auto, auto, auto, 118px 88px;
  }

  .lens-island-theme .lens-sprite-atmos {
    inset: 50px 0 0;
    border-radius: 0;
  }

  .lens-island-theme .lens-sprite-tree {
    width: min(40vw, 220px);
    min-width: 132px;
    left: -3%;
    opacity: 0.7;
  }

  .lens-island-theme .lens-sprite-skill {
    width: clamp(58px, 10vw, 90px);
    opacity: 0.23;
  }

  .lens-island-theme .lens-hero-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lens-island-theme .lens-hero-inner {
    padding: 26px 14px 18px;
  }

  .lens-island-theme .lens-title {
    font-size: clamp(30px, 8vw, 46px);
  }

  .lens-island-theme .lens-hero-frame {
    min-height: 230px;
  }

  .lens-island-theme .lens-frame-sprites {
    opacity: 0.3;
  }

  .lens-island-theme section:not(.hero),
  .lens-island-theme .stats-strip {
    margin-bottom: 14px;
    border-radius: 10px;
  }

  .sprite-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .lens-island-theme .lens-lead {
    font-size: 14px;
    line-height: 1.74;
  }

  .lens-island-theme .lens-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lens-island-theme .lens-actions .btn-primary,
  .lens-island-theme .lens-actions .btn-secondary {
    justify-content: center;
  }

  .lens-island-theme .lens-chip {
    font-size: 11px;
    padding: 7px 12px;
  }

  .lens-island-theme .lens-sprite-skill,
  .lens-island-theme .lens-frame-sprites {
    display: none;
  }

  .lens-island-theme section:not(.hero) {
    padding: 58px 16px;
  }

  .sprite-showcase-grid {
    grid-template-columns: 1fr;
  }

  .sprite-showcase-card > img,
  .sprite-showcase-card .sprite-skill-pair {
    min-height: 180px;
    padding: 14px;
  }

  .sprite-showcase-body {
    padding: 14px 14px 16px;
  }

  .sprite-showcase-body h3 {
    font-size: 20px;
  }
}

/* ── Showcase Media Section ── */
.showcase-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.showcase-media-card {
  position: relative;
  border: 1px solid rgba(143,208,140,0.24);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14,31,24,0.92), rgba(9,20,16,0.96));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.showcase-media-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: contain;
  padding: 24px;
  border-bottom: 1px solid rgba(143,208,140,0.2);
  background:
    radial-gradient(circle at 22% 15%, rgba(143,208,140,0.2), transparent 50%),
    radial-gradient(circle at 78% 85%, rgba(121,196,209,0.16), transparent 56%),
    linear-gradient(180deg, rgba(19,37,30,0.94), rgba(9,18,15,0.96));
}

.showcase-media-caption {
  padding: 20px 20px 22px;
}

.showcase-media-caption h3 {
  font-family: var(--font-title);
  color: #effff2;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.showcase-media-caption p {
  color: #bfd3c7;
  font-size: 14px;
  line-height: 1.75;
}

.showcase-feature-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.showcase-feature-item {
  border-radius: 999px;
  border: 1px solid rgba(143,208,140,0.26);
  background: rgba(11, 24, 19, 0.72);
  color: #ddf5e2;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  text-align: center;
}

/* ── Blog Entry Section ── */
.blog-entry-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 30px 32px;
  border-radius: 18px;
  border: 1px solid rgba(143,208,140,0.24);
  background: linear-gradient(180deg, rgba(15,31,25,0.9), rgba(10,21,17,0.95));
}

.blog-entry-panel .btn-primary {
  white-space: nowrap;
}

/* ── Blog Page ── */
.blog-page .nav-logo {
  color: #f2fff4;
}

.blog-main {
  padding: 112px 24px 80px;
}

.blog-main .container {
  max-width: 1120px;
}

.blog-hero {
  margin-bottom: 18px;
  border-radius: 20px;
  padding: 44px 36px;
  border: 1px solid rgba(143,208,140,0.24);
  background:
    radial-gradient(circle at 18% 0%, rgba(143,208,140,0.22), transparent 38%),
    radial-gradient(circle at 88% 12%, rgba(121,196,209,0.16), transparent 34%),
    linear-gradient(160deg, rgba(18,38,31,0.92), rgba(9,19,15,0.95));
}

.blog-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  color: #effff3;
  margin-bottom: 14px;
}

.blog-hero p {
  max-width: 760px;
  color: #c6d8ce;
  font-size: 16px;
  line-height: 1.8;
}

.blog-actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-timeline-wrap {
  border-radius: 20px;
  padding: 30px 30px 32px;
  border: 1px solid rgba(143,208,140,0.24);
  background: linear-gradient(180deg, rgba(14,30,24,0.9), rgba(9,19,16,0.95));
}

.blog-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(143,208,140,0.52), rgba(121,196,209,0.2));
}

.blog-item {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  align-items: flex-start;
}

.blog-date {
  position: relative;
  z-index: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(143,208,140,0.36);
  background: rgba(10,20,16,0.9);
  color: #bff0c7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.blog-card {
  border-radius: 14px;
  border: 1px solid rgba(143,208,140,0.24);
  background: linear-gradient(180deg, rgba(17,36,29,0.88), rgba(10,22,18,0.94));
  padding: 16px 16px 18px;
}

.blog-card h3 {
  color: #edfff1;
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.2;
  font-family: var(--font-title);
}

.blog-card p {
  color: #c2d7cb;
  font-size: 14px;
  line-height: 1.72;
}

.blog-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag {
  border: 1px solid rgba(143,208,140,0.3);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  color: #d8f8dd;
  background: rgba(12, 26, 21, 0.82);
}

/* ── Developer Blog Layout ── */
.devblog-grid-section {
  margin-top: 24px;
}

.devblog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.devblog-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(143, 208, 140, 0.24);
  background: linear-gradient(180deg, rgba(15, 31, 25, 0.9), rgba(9, 20, 16, 0.95));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.devblog-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: radial-gradient(circle at 20% 20%, rgba(143, 208, 140, 0.12), rgba(10, 20, 16, 0.92));
}

.devblog-body {
  padding: 18px 18px 20px;
}

.devblog-date {
  color: #a6dcb1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.devblog-body h2 {
  color: #effff3;
  font-family: var(--font-title);
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.devblog-body > p {
  color: #c6d8ce;
  font-size: 14px;
  line-height: 1.75;
}

.devblog-points {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  list-style: none;
}

.devblog-points li {
  position: relative;
  padding-left: 14px;
  color: #d6e7dc;
  font-size: 13px;
  line-height: 1.65;
}

.devblog-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8fd08c;
}

.devblog-link {
  margin-top: 14px;
}

.devblog-timeline {
  margin-top: 24px;
}

.devblog-timeline-list {
  margin-top: 12px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.devblog-timeline-list li {
  color: #d6e7dc;
  font-size: 14px;
  line-height: 1.65;
}

.devblog-timeline-list strong {
  color: #98f4af;
  margin-right: 8px;
}

/* ── Developer Blog Post ── */
.devpost-main {
  padding: 112px 24px 80px;
}

.devpost-shell {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(143, 208, 140, 0.24);
  background: linear-gradient(180deg, rgba(15, 31, 25, 0.9), rgba(9, 20, 16, 0.95));
  padding: 34px 32px 36px;
}

.devpost-header {
  margin-bottom: 18px;
}

.devpost-kicker {
  color: #98f4af;
  font-size: 12px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  font-weight: 700;
}

.devpost-header h1 {
  font-family: var(--font-title);
  color: #effff3;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin: 10px 0 12px;
}

.devpost-meta {
  color: #a6dcb1;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.devpost-lead {
  color: #c6d8ce;
  font-size: 16px;
  line-height: 1.82;
}

.devpost-cover {
  margin-bottom: 18px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(143, 208, 140, 0.2);
  background: radial-gradient(circle at 24% 10%, rgba(143, 208, 140, 0.16), rgba(8, 17, 14, 0.94));
}

.devpost-cover img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: contain;
  padding: 24px;
}

.devpost-section {
  margin-top: 16px;
  border-radius: 14px;
  border: 1px solid rgba(143, 208, 140, 0.18);
  background: rgba(8, 17, 14, 0.74);
  padding: 18px 18px 16px;
}

.devpost-section h2 {
  font-family: var(--font-title);
  color: #effff3;
  font-size: 28px;
  margin-bottom: 9px;
}

.devpost-section p {
  color: #d6e7dc;
  font-size: 15px;
  line-height: 1.78;
}

.devpost-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.devpost-list li {
  position: relative;
  padding-left: 15px;
  color: #d6e7dc;
  font-size: 14px;
  line-height: 1.7;
}

.devpost-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8fd08c;
}

.devpost-footer-nav {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

  .showcase-media-card img {
    height: 280px;
  }

  .showcase-feature-list {
    grid-template-columns: 1fr;
  }

  .blog-entry-panel {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .blog-main {
    padding: 100px 14px 60px;
  }

  .blog-hero {
    padding: 28px 18px;
  }

  .blog-hero h1 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .blog-hero p {
    font-size: 14px;
  }

  .blog-timeline-wrap {
    padding: 20px 14px 22px;
  }

  .blog-timeline::before {
    left: 88px;
  }

  .blog-item {
    grid-template-columns: 74px 1fr;
    gap: 10px;
  }

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

  .devpost-main {
    padding: 100px 14px 60px;
  }

  .devpost-shell {
    padding: 22px 16px 22px;
  }

  .devpost-section {
    padding: 16px 14px 14px;
  }
}

@media (max-width: 560px) {
  .showcase-media-caption h3 {
    font-size: 24px;
  }

  .showcase-media-caption p {
    font-size: 13px;
  }

  .blog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .blog-actions .btn-primary,
  .blog-actions .btn-secondary {
    justify-content: center;
  }

  .blog-timeline::before {
    display: none;
  }

  .blog-item {
    grid-template-columns: 1fr;
  }

  .blog-date {
    justify-self: start;
    padding: 0 10px;
  }

  .devblog-thumb {
    height: 190px;
  }

  .devblog-body h2 {
    font-size: 25px;
  }

  .devpost-header h1 {
    font-size: clamp(30px, 8.8vw, 42px);
  }

  .devpost-section h2 {
    font-size: 24px;
  }
}

/* ── Home Simplification (20260312c) ── */
.lens-island-theme .compact-home {
  padding-bottom: 36px;
}

.lens-island-theme .compact-stats {
  max-width: 920px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lens-island-theme .stats-note {
  max-width: 920px;
  margin: 12px auto 18px;
  padding: 0 16px;
  text-align: center;
  color: #bbd5c7;
  font-size: 15px;
  line-height: 1.7;
}

.lens-island-theme .showcase-media-card img {
  min-height: 340px;
}

.lens-island-theme .gameplay-focus .section-desc,
.lens-island-theme .jobs-section .section-desc,
.lens-island-theme .item-systems-section .section-desc,
.lens-island-theme .status-section .section-desc {
  max-width: 720px;
}

.gameplay-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.pillar-card {
  border-radius: 16px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(143, 208, 140, 0.24);
  background: linear-gradient(180deg, rgba(16, 35, 28, 0.86), rgba(10, 21, 17, 0.92));
}

.pillar-card h3 {
  font-family: var(--font-title);
  color: #eefff3;
  font-size: 25px;
  margin-bottom: 10px;
}

.pillar-card p {
  color: #c0d4c9;
  font-size: 14px;
  line-height: 1.7;
}

.job-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.job-card {
  border-radius: 16px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(143, 208, 140, 0.24);
  background: linear-gradient(180deg, rgba(16, 34, 28, 0.9), rgba(9, 19, 15, 0.95));
}

.job-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.job-badge.warrior {
  color: #ffc6af;
  border: 1px solid rgba(255, 141, 91, 0.5);
  background: rgba(80, 28, 16, 0.55);
}

.job-badge.hunter {
  color: #b8f3cf;
  border: 1px solid rgba(85, 206, 137, 0.5);
  background: rgba(14, 53, 34, 0.55);
}

.job-badge.rogue {
  color: #ffefad;
  border: 1px solid rgba(240, 206, 89, 0.55);
  background: rgba(71, 56, 12, 0.55);
}

.job-card h3 {
  font-family: var(--font-title);
  color: #f0fff3;
  font-size: 24px;
  margin-bottom: 8px;
}

.job-card p {
  color: #c0d4c9;
  font-size: 14px;
  line-height: 1.7;
}

.item-systems-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.item-system-card {
  border-radius: 16px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(143, 208, 140, 0.24);
  background: linear-gradient(180deg, rgba(15, 31, 24, 0.9), rgba(9, 18, 15, 0.95));
}

.item-system-card h3 {
  font-family: var(--font-title);
  color: #f0fff3;
  font-size: 24px;
  margin-bottom: 9px;
}

.item-system-card p {
  color: #c0d4c9;
  font-size: 14px;
  line-height: 1.7;
}

.chip-cloud {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-cloud span {
  border: 1px solid rgba(143, 208, 140, 0.3);
  background: rgba(10, 21, 16, 0.86);
  color: #d7f7dd;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  padding: 5px 10px;
}

.modding-commentary {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(143, 208, 140, 0.24);
  background: linear-gradient(160deg, rgba(11, 25, 20, 0.95), rgba(8, 17, 14, 0.96));
  padding: 22px 22px 20px;
}

.modding-commentary h3 {
  font-family: var(--font-title);
  font-size: 26px;
  color: #eefff2;
  margin-bottom: 8px;
}

.modding-commentary-intro {
  color: #c4dccf;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.modding-commentary-card {
  border-radius: 14px;
  border: 1px solid rgba(143, 208, 140, 0.22);
  background: rgba(5, 12, 10, 0.82);
  padding: 16px 16px 14px;
  display: grid;
  gap: 10px;
}

.modding-commentary-card p {
  color: #d6e6de;
  font-size: 14px;
  line-height: 1.75;
}

.modding-commentary-card strong {
  color: #9df4b3;
  font-weight: 800;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.status-card {
  border-radius: 18px;
  border: 1px solid rgba(143, 208, 140, 0.24);
  background: linear-gradient(180deg, rgba(15, 31, 25, 0.9), rgba(9, 20, 16, 0.96));
  padding: 22px 22px 20px;
}

.status-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.status-card-head h3 {
  font-family: var(--font-title);
  color: #f0fff3;
  font-size: 25px;
}

.status-badge {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.status-badge.live {
  background: rgba(30, 174, 105, 0.16);
  color: #91f3b8;
  border: 1px solid rgba(30, 174, 105, 0.45);
}

.status-badge.wip {
  background: rgba(232, 160, 32, 0.15);
  color: #ffd585;
  border: 1px solid rgba(232, 160, 32, 0.44);
}

.status-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.status-list li {
  position: relative;
  padding-left: 16px;
  color: #c3d7cb;
  font-size: 14px;
  line-height: 1.6;
}

.status-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8fd08c;
  box-shadow: 0 0 10px rgba(143, 208, 140, 0.6);
}

.status-tag-live {
  border-color: rgba(30, 174, 105, 0.45);
  background: rgba(30, 174, 105, 0.16);
  color: #91f3b8;
}

.status-tag-wip {
  border-color: rgba(232, 160, 32, 0.44);
  background: rgba(232, 160, 32, 0.15);
  color: #ffd585;
}

@media (max-width: 960px) {
  .lens-island-theme .compact-stats {
    grid-template-columns: 1fr;
  }

  .gameplay-pillars,
  .job-cards,
  .item-systems-grid,
  .status-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .lens-island-theme nav {
    flex-wrap: wrap;
  }

  .lens-island-theme .nav-links {
    display: none;
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(143, 208, 140, 0.2);
    background: rgba(8, 17, 14, 0.95);
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .lens-island-theme nav.nav-open .nav-links {
    display: flex;
  }

  .lens-island-theme .nav-mobile-btn {
    display: block;
  }
}

/* ── Blog Chronicle Layout (20260312e) ───────────────────────────── */
.lens-blog-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 112px 24px 72px;
}

.lens-blog-main .blog-hero {
  margin-bottom: 24px;
}

.lens-blog-list {
  display: grid;
  gap: 24px;
}

.lens-blog-item {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(143, 208, 140, 0.25);
  background: linear-gradient(165deg, rgba(16, 34, 28, 0.92), rgba(8, 18, 14, 0.96));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 0;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.lens-blog-item.reverse .lens-blog-media {
  order: 2;
}

.lens-blog-item.reverse .lens-blog-summary {
  order: 1;
}

.lens-blog-media {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 260px;
  background:
    radial-gradient(circle at 20% 16%, rgba(143, 208, 140, 0.24), transparent 42%),
    radial-gradient(circle at 82% 76%, rgba(121, 196, 209, 0.2), transparent 46%),
    linear-gradient(140deg, rgba(14, 30, 24, 0.95), rgba(8, 16, 13, 0.98));
}

.lens-blog-media img {
  width: 78%;
  max-width: 320px;
  max-height: 220px;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.55));
  transition: transform 0.35s ease;
}

.lens-blog-item:hover .lens-blog-media img {
  transform: translateY(-4px) scale(1.03);
}

.lens-blog-summary {
  padding: 28px 28px 28px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.lens-blog-date {
  color: #9be6b1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.42px;
}

.lens-blog-summary h2 {
  font-family: var(--font-title);
  color: #effff3;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
}

.lens-blog-summary p {
  color: #c3d7cb;
  font-size: 15px;
  line-height: 1.72;
}

.lens-blog-summary .btn-secondary {
  margin-top: 2px;
  justify-self: start;
}

.diary-main .diary-shell {
  max-width: 1060px;
}

.diary-year-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 12px;
}

.diary-year-nav a {
  border: 1px solid rgba(143, 208, 140, 0.32);
  border-radius: 999px;
  padding: 6px 12px;
  color: #d7f8dd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  background: rgba(13, 28, 22, 0.82);
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.diary-year-nav a:hover {
  border-color: rgba(143, 208, 140, 0.68);
  color: #ffffff;
  transform: translateY(-2px);
}

.diary-shell .devpost-section[id] {
  scroll-margin-top: 110px;
}

@media (max-width: 980px) {
  .lens-blog-main {
    padding: 100px 14px 56px;
  }

  .lens-blog-item,
  .lens-blog-item.reverse {
    grid-template-columns: 1fr;
  }

  .lens-blog-item.reverse .lens-blog-media,
  .lens-blog-item.reverse .lens-blog-summary {
    order: initial;
  }

  .lens-blog-media {
    min-height: 210px;
  }

  .lens-blog-summary {
    padding: 20px 16px 20px;
  }

  .lens-blog-summary h2 {
    font-size: clamp(26px, 8vw, 38px);
  }
}

@media (max-width: 560px) {
  .lens-blog-media img {
    width: 72%;
    max-height: 180px;
  }

  .diary-year-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .diary-year-nav a {
    text-align: center;
  }
}

/* ── Steam Slot (20260312d) ──────────────────────────────────────── */
.steam-slot-section {
  padding-top: 8px;
}

.steam-slot-panel {
  border-radius: 18px;
  border: 1px solid rgba(143, 208, 140, 0.24);
  background:
    radial-gradient(circle at 15% 18%, rgba(143, 208, 140, 0.18), transparent 34%),
    radial-gradient(circle at 82% 82%, rgba(122, 196, 208, 0.16), transparent 42%),
    linear-gradient(155deg, rgba(16, 34, 28, 0.9), rgba(8, 18, 14, 0.94));
  padding: 24px 24px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
  align-items: center;
}

.steam-slot-panel .section-desc {
  margin-bottom: 0;
}

.steam-slot-actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.steam-page .nav-links {
  display: flex;
}

.steam-main {
  max-width: 1060px;
  margin: 0 auto;
  padding: 118px 24px 72px;
}

.steam-hero {
  border-radius: 20px;
  border: 1px solid rgba(143, 208, 140, 0.26);
  background:
    radial-gradient(circle at 10% 12%, rgba(143, 208, 140, 0.24), transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(120, 196, 206, 0.2), transparent 44%),
    linear-gradient(160deg, rgba(14, 30, 24, 0.95), rgba(9, 18, 15, 0.97));
  padding: 34px 34px 30px;
}

.steam-kicker {
  color: #9ae6b0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.steam-hero h1 {
  font-family: var(--font-title);
  color: #effff3;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.steam-hero p {
  color: #c4d6cb;
  font-size: 16px;
  line-height: 1.78;
  max-width: 760px;
}

.steam-hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.steam-checklist {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.steam-item {
  border-radius: 14px;
  border: 1px solid rgba(143, 208, 140, 0.2);
  background: rgba(9, 18, 15, 0.9);
  padding: 20px 18px 18px;
}

.steam-item h2 {
  color: #effff3;
  font-family: var(--font-title);
  font-size: 26px;
  margin-bottom: 8px;
}

.steam-item p {
  color: #c3d7cb;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .steam-slot-panel {
    grid-template-columns: 1fr;
    padding: 20px 18px 18px;
  }

  .steam-main {
    padding: 102px 14px 56px;
  }

  .steam-hero {
    padding: 24px 18px 22px;
  }

  .steam-checklist {
    grid-template-columns: 1fr;
  }
}
