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

:root {
  --green-darkest: #0f2a08;
  --green-dark: #1a4a0e;
  --green-mid: #2d7a18;
  --green-light: #4aab28;
  --green-accent: #5ecf30;
  --green-pale: #a8e878;
  --green-bg: #e8f5d8;
  --green-content: #c8e8a0;
  --brown-dark: #3a2010;
  --brown-mid: #6b4020;
  --brown-light: #a06030;
  --brown-bg: #f0e0c0;
  --gold: #e8c020;
  --gold-dark: #b89000;
  --text-main: #1a2a10;
  --text-muted: #3a5a28;
  --text-light: #e8f5d8;
  --border-radius: 10px;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #1e3d10;
  color: var(--text-main);
  min-height: 100vh;
}

/* NAVBAR */
nav {
  background: linear-gradient(180deg, #1a4a0e 0%, #0f2a08 100%);
  border-bottom: 3px solid #0a1a05;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 60px;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 16px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.nav-logo-text {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
  letter-spacing: 1px;
  line-height: 1;
}

.nav-logo-text span {
  color: var(--green-pale);
}

.nav-divider {
  width: 2px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  margin: 0 8px;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 1;
}

.nav-link {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.15s;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
}

.nav-link:hover { background: rgba(255,255,255,0.15); }
.nav-link.active { background: rgba(255,255,255,0.25); }

.nav-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 0 10px;
  height: 34px;
  gap: 6px;
}

.nav-search input {
  background: none;
  border: none;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  outline: none;
  width: 160px;
}

.nav-search input::placeholder { color: rgba(255,255,255,0.6); }

.search-kbd {
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-family: monospace;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  background: #0f2a08;
  border: 2px solid rgba(94, 207, 48, 0.3);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  z-index: 1000;
  overflow: hidden;
}

.search-result-item {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  text-decoration: none;
  color: #e8f5d8;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(94, 207, 48, 0.1);
  transition: background 0.1s;
  outline: none;
}

.search-result-item:last-child { border-bottom: none; }

.search-result-item:hover,
.search-result-item:focus {
  background: rgba(94, 207, 48, 0.12);
  color: #fff;
}

.search-result-item mark {
  background: none;
  color: #a8e878;
  font-weight: 800;
}

.search-result-desc {
  font-size: 12px;
  font-weight: 400;
  color: rgba(232, 245, 216, 0.55);
  margin-top: 2px;
  line-height: 1.4;
}

.search-no-results {
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(232, 245, 216, 0.5);
  text-align: center;
}

#search-wrapper {
  position: relative;
}

/* LAYOUT */
.page-wrapper {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - 60px);
}

/* SIDEBAR */
aside {
  background: #163808;
  border-right: 3px solid #0a1a05;
  padding: 16px 0;
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  overflow-y: auto;
}

.sidebar-section {
  margin-bottom: 8px;
}

.sidebar-heading {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: rgba(168, 232, 120, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(168, 232, 120, 0.2);
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(232, 245, 216, 0.85);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.12s;
  cursor: pointer;
}

.sidebar-link:hover {
  background: rgba(255,255,255,0.08);
  border-left-color: var(--green-accent);
  color: #fff;
}

.sidebar-link.active {
  background: rgba(255,255,255,0.12);
  border-left-color: var(--green-accent);
  color: #fff;
}

.sidebar-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* MAIN CONTENT */
main {
  padding: 24px 28px;
  background: #2d5c18;
  min-height: calc(100vh - 60px);
}

/* HOME PAGE CENTERING */
.home-container {
  max-width: 960px;
  margin: 0 auto;
  color: var(--text-light);
}

/* HERO BANNER */
.hero {
  background: linear-gradient(135deg, #1a4a0e 0%, #0f2a08 100%);
  border-radius: var(--border-radius);
  padding: 28px 32px;
  margin-bottom: 24px;
  border: 3px solid #0a1a05;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.hero-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-logo {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.12);
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.hero-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #fff;
  text-shadow: 2px 3px 0 rgba(0,0,0,0.5);
  line-height: 1.1;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  font-weight: 600;
  max-width: 480px;
}

.hero-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #f0b429 0%, #d49010 100%);
  color: #5c3b1e;
  font-family: 'Fredoka One', cursive;
  font-size: 15px;
  padding: 8px 20px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 14px;
  border: 2.5px solid var(--brown-dark);
  box-shadow: 0 3px 0 #8b5e2e, 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.1s, box-shadow 0.1s;
  cursor: pointer;
}

.hero-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #8b5e2e, 0 6px 12px rgba(0,0,0,0.2);
}

.hero-play-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 #8b5e2e;
}

.hero-stats {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-stat-num {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--green-pale);
  display: block;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* RELEASE COUNTDOWN */
.release-countdown {
  text-align: center;
}

.countdown-label {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.countdown-blocks {
  display: flex;
  align-items: center;
  gap: 4px;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 4px 8px;
  min-width: 40px;
}

.countdown-block span:first-child {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  line-height: 1;
}

.cd-unit {
  font-size: 9px;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.countdown-sep {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

/* HOME TRAILER */
.home-trailer-section {
  margin-bottom: 32px;
  margin-top: 28px;
}

.home-trailer-label {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a8e878;
  margin-bottom: 12px;
}

.home-trailer-wrap {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: rgba(8,22,4,0.7);
  border: 1.5px solid rgba(94,207,48,0.2);
  border-radius: 10px;
  overflow: hidden;
  max-width: 680px;
}

.home-trailer-embed {
  position: relative;
  padding-bottom: 42%;
  flex: 0 0 58%;
  height: 0;
  overflow: hidden;
}

.home-trailer-info {
  flex: 1;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  border-left: 1px solid rgba(94,207,48,0.15);
}

.home-trailer-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #e8f5d8;
  line-height: 1.3;
}

.home-trailer-desc {
  font-size: 13px;
  color: rgba(232,245,216,0.55);
  line-height: 1.5;
}

/* GUIDE CTA BUTTON */
.guide-cta-wrap {
  margin: 16px 0 28px;
}

.guide-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

.guide-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  filter: brightness(1.1);
}

.guide-cta-btn.cta-green {
  background: linear-gradient(135deg, #1a5c0a, #2d8a12);
  color: #d8f8a8;
  border: 1.5px solid rgba(168,232,120,0.4);
}

.guide-cta-btn.cta-gold {
  background: linear-gradient(135deg, #5c4200, #8a6600);
  color: #ffe080;
  border: 1.5px solid rgba(245,204,85,0.4);
}

.guide-cta-btn.cta-red {
  background: linear-gradient(135deg, #5c0a0a, #a01010);
  color: #ffcccc;
  border: 1.5px solid rgba(245,122,122,0.4);
}

.guide-cta-btn.cta-blue {
  background: linear-gradient(135deg, #0a2a5c, #1040a0);
  color: #b0d8ff;
  border: 1.5px solid rgba(122,184,245,0.4);
}

.guide-cta-btn.cta-purple {
  background: linear-gradient(135deg, #2a0a5c, #5010a0);
  color: #ddb8ff;
  border: 1.5px solid rgba(192,122,245,0.4);
}

.home-trailer-link {
  display: inline-block;
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #d8f8a8;
  text-decoration: none;
  background: rgba(0,0,0,0.45);
  border: 1.5px solid rgba(168,232,120,0.5);
  border-radius: 6px;
  padding: 7px 14px;
  width: fit-content;
  transition: background 0.15s, border-color 0.15s;
}

.home-trailer-link:hover {
  background: rgba(0,0,0,0.65);
  border-color: #a8e878;
}

@media (max-width: 600px) {
  .home-trailer-wrap {
    flex-direction: column;
  }
  .home-trailer-embed {
    flex: none;
    width: 100%;
    padding-bottom: 56.25%;
  }
  .home-trailer-info {
    padding: 16px;
  }
}

/* STYLED BUTTONS - matching the game style from image */
.game-btn-row {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.game-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  border: 2.5px solid;
  transition: transform 0.1s, box-shadow 0.1s;
  box-shadow: 0 4px 0;
  letter-spacing: 0.5px;
}

.game-btn:hover { transform: translateY(-2px); }
.game-btn:active { transform: translateY(2px); box-shadow: 0 1px 0 !important; }

.btn-green {
  background: linear-gradient(180deg, #3aaa18 0%, #1a6a08 100%);
  color: #fff;
  border-color: #0f3a05;
  box-shadow: 0 4px 0 #0f3a05;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.btn-brown {
  background: linear-gradient(180deg, #c4883a 0%, #8b5e2e 100%);
  color: #fff8ef;
  border-color: #5c3b1e;
  box-shadow: 0 4px 0 #5c3b1e;
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
}

.btn-gold {
  background: linear-gradient(180deg, #f5cc55 0%, #d49010 100%);
  color: #5c3b1e;
  border-color: #8b6000;
  box-shadow: 0 4px 0 #8b6000;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}

/* SECTION HEADER */
.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  margin-top: 28px;
}

.section-header:first-of-type { margin-top: 0; }

.section-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #e8f5d8;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
}

.section-title-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #b5d98a, transparent);
  border-radius: 2px;
}

/* TOPIC GRID */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}

.topic-card {
  background: rgba(15, 42, 8, 0.6);
  border: 2px solid rgba(94, 207, 48, 0.3);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 3px 0 rgba(0,0,0,0.3);
}

.topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 0 rgba(0,0,0,0.3);
  border-color: var(--green-accent);
  background: rgba(26, 74, 14, 0.8);
}

.topic-card:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #c0d898;
}

.topic-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 6px;
  filter: drop-shadow(1px 2px 2px rgba(0,0,0,0.12));
}

.topic-name {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  color: #e8f5d8;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

/* UPDATES + ASIDE 2-col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  margin-top: 28px;
}

.updates-panel {
  background: rgba(232, 245, 216, 0.95);
  border: 2px solid rgba(94, 207, 48, 0.35);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.panel-header {
  background: linear-gradient(180deg, #1e5c0a 0%, #0f2a08 100%);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid #0a1a05;
}

.panel-icon {
  font-size: 18px;
  line-height: 1;
}

.panel-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
  letter-spacing: 0.5px;
}

.panel-badge {
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1.5px solid var(--gold-dark);
  margin-left: auto;
}

.update-item {
  padding: 14px 16px;
  border-bottom: 1.5px solid #eaf5d3;
  cursor: pointer;
  transition: background 0.1s;
}

.update-item:last-child { border-bottom: none; }
.update-item:hover { background: var(--green-bg); }

.update-version {
  font-size: 11px;
  font-weight: 800;
  color: var(--green-dark);
  background: var(--green-bg);
  border: 1.5px solid #b5d98a;
  border-radius: 6px;
  padding: 1px 7px;
  display: inline-block;
  margin-bottom: 5px;
}

.update-date {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  float: right;
}

.update-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 4px;
}

.update-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* RIGHT PANEL */
.right-col { display: flex; flex-direction: column; gap: 14px; }

.info-panel {
  background: rgba(232, 245, 216, 0.95);
  border: 2px solid rgba(94, 207, 48, 0.35);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.info-panel .panel-header {
  background: linear-gradient(180deg, #c4883a 0%, #8b5e2e 100%);
}

.info-row {
  padding: 8px 14px;
  border-bottom: 1px solid #f0f7e4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.info-row:last-child { border-bottom: none; }

.info-label { color: var(--text-muted); font-weight: 700; }
.info-value { font-weight: 800; color: var(--text-main); }

.status-badge {
  background: #d0f0c0;
  color: #2a6010;
  border: 1.5px solid #90c870;
  border-radius: 6px;
  padding: 1px 8px;
  font-size: 11px;
  font-weight: 800;
}

/* QUICK LINKS */
.quick-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.quick-link {
  padding: 10px 14px;
  border-bottom: 1px solid #f0f7e4;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: background 0.1s;
  text-decoration: none;
}

.quick-link:last-child { border-bottom: none; }
.quick-link:hover { background: var(--green-bg); color: var(--green-dark); }

.quick-link-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.ql-green { background: var(--green-bg); border: 1.5px solid #b5d98a; }
.ql-gold { background: #fdf3d8; border: 1.5px solid #f5cc55; }
.ql-brown { background: var(--brown-bg); border: 1.5px solid #d4a870; }

/* LEAK MEDIA */
.leak-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.leak-media-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 24px;
  background: rgba(15, 42, 8, 0.5);
  border: 2px dashed rgba(94, 207, 48, 0.2);
  border-radius: var(--border-radius);
}

.leak-media-item {
  background: rgba(15, 42, 8, 0.55);
  border: 2px solid rgba(94, 207, 48, 0.25);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

.leak-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.leak-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.leak-media-img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 240px;
  cursor: zoom-in;
  transition: opacity 0.15s;
}

.leak-media-img:hover {
  opacity: 0.9;
}

.leak-media-caption {
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(232, 245, 216, 0.8);
  line-height: 1.5;
  border-top: 1px solid rgba(94, 207, 48, 0.15);
}

.leak-media-label {
  display: inline-block;
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(232,192,32,0.3);
  border-radius: 4px;
  padding: 2px 7px;
  margin-right: 6px;
  vertical-align: middle;
}

/* LEAK TWEET GRID */
.leak-tweet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.leak-tweet-item {
  display: flex;
  justify-content: center;
}

.leak-tweet-item .twitter-tweet {
  margin: 0 !important;
  width: 100% !important;
}

/* UPDATE LOG */
.update-log {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.update-log-empty {
  text-align: center;
  padding: 48px 24px;
  background: rgba(15, 42, 8, 0.5);
  border: 2px solid rgba(94, 207, 48, 0.2);
  border-radius: var(--border-radius);
}

.update-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(15, 42, 8, 0.55);
  border: 2px solid rgba(94, 207, 48, 0.25);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  text-decoration: none;
  color: #e8f5d8;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transition: all 0.15s;
}

.update-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  border-color: var(--green-accent);
  background: rgba(26, 74, 14, 0.75);
}

.update-card-version {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--gold);
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(232,192,32,0.3);
  border-radius: 6px;
  padding: 4px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.update-card-body {
  flex: 1;
}

.update-card-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #a8e878;
  margin-bottom: 3px;
}

.update-card-date {
  font-size: 12px;
  color: rgba(232, 245, 216, 0.55);
  font-weight: 600;
}

.update-card-summary {
  font-size: 13px;
  color: rgba(232, 245, 216, 0.75);
  margin-top: 4px;
  line-height: 1.5;
}

.update-card-arrow {
  font-size: 20px;
  color: #a8e878;
  flex-shrink: 0;
}

.update-card-badge {
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  font-family: 'Oxanium', sans-serif;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* FOOTER */
footer {
  background: #0f2a08;
  border-top: 3px solid #0a1a05;
  padding: 20px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 0;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--green-pale);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
  letter-spacing: 1px;
}

.footer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 700;
}

.footer-link:hover { color: var(--green-pale); }

/* PAGE CONTENT STYLES */
.page-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-header {
  margin-bottom: 24px;
}

.page-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #e8f5d8;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.page-description {
  font-size: 15px;
  color: rgba(232, 245, 216, 0.75);
}

/* CONTENT CARD */
.content-card {
  background: #fff;
  border: 2.5px solid #d0e8a8;
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 3px 0 #c0d898;
}

.content-card h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 18px;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.content-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* PANEL CONTENT - replaces inline styles */
.panel-body {
  padding: 16px;
}

.panel-body p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.panel-body ul,
.panel-body ol {
  margin-left: 20px;
  line-height: 1.8;
}

.panel-body ul li,
.panel-body ol li {
  font-size: 14px;
}

.panel-body a {
  color: #2d7a18;
  text-decoration: none;
  font-weight: 700;
}

.panel-body a:hover {
  color: #1a4a0e;
  text-decoration: underline;
}

.updates-panel + .updates-panel {
  margin-top: 20px;
}

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
}

/* GUIDES HUB */
.guides-all-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.guides-divider {
  border: none;
  border-top: 1px solid rgba(94,207,48,0.15);
  margin: 24px 0 20px;
}

/* Featured row */
.guide-featured-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.guide-featured-card {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  background: rgba(10,25,5,0.7);
  border: 1.5px solid rgba(94,207,48,0.2);
  transition: border-color 0.15s, transform 0.15s;
  min-height: 68px;
}

.guide-featured-card:hover {
  border-color: rgba(94,207,48,0.5);
  transform: translateX(3px);
}

.guide-fc-left {
  flex-shrink: 0;
  width: 90px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
}

.guide-fc-left-green  { background: #1a5c0a; }
.guide-fc-left-gold   { background: #5c4200; }
.guide-fc-left-blue   { background: #0a2a5c; }
.guide-fc-left-red    { background: #5c0a0a; }
.guide-fc-left-purple { background: #2a0a5c; }
.guide-fc-left-teal   { background: #0a3c3c; }

.guide-fc-tag {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-align: center;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  text-transform: uppercase;
}

.guide-fc-left-green  .guide-fc-tag { color: #a8e878; }
.guide-fc-left-gold   .guide-fc-tag { color: #f5cc55; }
.guide-fc-left-blue   .guide-fc-tag { color: #7ab8f5; }
.guide-fc-left-red    .guide-fc-tag { color: #f57a7a; }
.guide-fc-left-purple .guide-fc-tag { color: #c07af5; }
.guide-fc-left-teal   .guide-fc-tag { color: #5cfff0; }

.guide-fc-body {
  flex: 1;
  padding: 12px 14px;
}

.guide-fc-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #e8f5d8;
  line-height: 1.3;
  margin-bottom: 4px;
}

.guide-fc-desc {
  font-size: 12px;
  color: rgba(232,245,216,0.5);
  line-height: 1.4;
}

.guide-fc-arrow {
  flex-shrink: 0;
  padding: 0 16px;
  font-size: 18px;
  color: rgba(232,245,216,0.3);
}

/* Article list */
.guide-article-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guide-article-card {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  background: rgba(10,25,5,0.6);
  border: 1.5px solid rgba(94,207,48,0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.15s, background 0.15s;
  min-height: 60px;
}

.guide-article-card:hover {
  background: rgba(10,25,5,0.85);
  border-color: rgba(94,207,48,0.4);
}

.guide-article-stripe {
  flex-shrink: 0;
  width: 4px;
  align-self: stretch;
}

.guide-stripe-green  { background: #5aaa30; }
.guide-stripe-gold   { background: #f5cc55; }
.guide-stripe-blue   { background: #5a90e0; }
.guide-stripe-red    { background: #e05a5a; }
.guide-stripe-purple { background: #a05ae0; }
.guide-stripe-teal   { background: #30c8b8; }

.guide-article-inner {
  flex: 1;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.guide-article-tag {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.guide-atag-green  { background: rgba(94,207,48,0.15);  color: #a8e878; border: 1px solid rgba(94,207,48,0.3); }
.guide-atag-gold   { background: rgba(245,204,85,0.12); color: #f5cc55; border: 1px solid rgba(245,204,85,0.3); }
.guide-atag-blue   { background: rgba(90,144,224,0.12); color: #7ab8f5; border: 1px solid rgba(90,144,224,0.3); }
.guide-atag-red    { background: rgba(224,90,90,0.12);  color: #f57a7a; border: 1px solid rgba(224,90,90,0.3); }
.guide-atag-purple { background: rgba(160,90,224,0.12); color: #c07af5; border: 1px solid rgba(160,90,224,0.3); }
.guide-atag-teal   { background: rgba(48,200,184,0.1);  color: #5cfff0; border: 1px solid rgba(48,200,184,0.3); }

.guide-article-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: #e8f5d8;
  line-height: 1.3;
  flex: 1;
  min-width: 140px;
}

.guide-article-desc {
  display: none;
}

.guide-article-cta {
  flex-shrink: 0;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(232,245,216,0.35);
  font-family: 'Oxanium', sans-serif;
}

.guide-article-card:hover .guide-article-cta {
  color: #a8e878;
}

.guides-section-label {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a8e878;
  margin-bottom: 12px;
}

.guides-filter-label {
  font-size: 14px;
  color: rgba(232,245,216,0.7);
  margin-bottom: 12px;
}

.guide-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.guide-filter-btn {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: 6px;
  border: 2px solid rgba(94,207,48,0.3);
  background: rgba(15,42,8,0.5);
  color: rgba(232,245,216,0.7);
  cursor: pointer;
  transition: all 0.15s;
}

.guide-filter-btn:hover {
  border-color: #a8e878;
  color: #e8f5d8;
}

.guide-filter-btn.active {
  background: rgba(94,207,48,0.2);
  border-color: #a8e878;
  color: #fff;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 8px;
}

.guide-grid-featured {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-bottom: 0;
}

.guide-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.guide-card-tag {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 18px 16px 14px;
  text-align: center;
}

.guide-card-body {
  background: rgba(10,25,5,0.85);
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.guide-card-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #e8f5d8;
  line-height: 1.3;
}

.guide-card-desc {
  font-size: 12.5px;
  color: rgba(232,245,216,0.6);
  line-height: 1.5;
  flex: 1;
}

.guide-badge {
  display: inline-block;
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 4px;
  width: fit-content;
}

/* Guide card color variants */
.guide-card-green .guide-card-tag { background: #1a5c0a; color: #a8e878; }
.guide-card-green .guide-badge { background: rgba(94,207,48,0.2); color: #a8e878; border: 1px solid rgba(94,207,48,0.4); }

.guide-card-gold .guide-card-tag { background: #5c4200; color: #f5cc55; }
.guide-card-gold .guide-badge { background: rgba(245,204,85,0.15); color: #f5cc55; border: 1px solid rgba(245,204,85,0.4); }

.guide-card-blue .guide-card-tag { background: #0a2a5c; color: #7ab8f5; }
.guide-card-blue .guide-badge { background: rgba(122,184,245,0.15); color: #7ab8f5; border: 1px solid rgba(122,184,245,0.4); }

.guide-card-red .guide-card-tag { background: #5c0a0a; color: #f57a7a; }
.guide-card-red .guide-badge { background: rgba(245,122,122,0.15); color: #f57a7a; border: 1px solid rgba(245,122,122,0.4); }

.guide-card-purple .guide-card-tag { background: #2a0a5c; color: #c07af5; }
.guide-card-purple .guide-badge { background: rgba(192,122,245,0.15); color: #c07af5; border: 1px solid rgba(192,122,245,0.4); }

.guide-card-teal .guide-card-tag { background: #0a3c3c; color: #5cfff0; }
.guide-card-teal .guide-badge { background: rgba(92,255,240,0.1); color: #5cfff0; border: 1px solid rgba(92,255,240,0.3); }

/* MAGAZINE GUIDE CARDS */
.gm-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 4px;
}

.gm-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform 0.18s, box-shadow 0.18s;
}

.gm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
}

.gm-card-top {
  padding: 22px 18px 16px;
  position: relative;
}

.gm-top-green  { background: linear-gradient(135deg, #1a5c0a, #2d8a12); }
.gm-top-gold   { background: linear-gradient(135deg, #5c4200, #8a6600); }
.gm-top-blue   { background: linear-gradient(135deg, #0a2a5c, #1040a0); }
.gm-top-red    { background: linear-gradient(135deg, #5c0a0a, #a01010); }
.gm-top-purple { background: linear-gradient(135deg, #2a0a5c, #5010a0); }
.gm-top-teal   { background: linear-gradient(135deg, #0a3c3c, #0a7070); }

.gm-card-cat {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(0,0,0,0.25);
}

.gm-top-green  .gm-card-cat { color: #b8f888; }
.gm-top-gold   .gm-card-cat { color: #ffe080; }
.gm-top-blue   .gm-card-cat { color: #90c8ff; }
.gm-top-red    .gm-card-cat { color: #ffaaaa; }
.gm-top-purple .gm-card-cat { color: #d0a0ff; }
.gm-top-teal   .gm-card-cat { color: #80fff0; }

.gm-card-body {
  background: rgba(8,22,4,0.92);
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.gm-card-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #e8f5d8;
  line-height: 1.35;
}

.gm-card-desc {
  font-size: 12.5px;
  color: rgba(232,245,216,0.55);
  line-height: 1.5;
  flex: 1;
}

.gm-card-read {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.gm-card-green  .gm-card-read { color: #a8e878; }
.gm-card-gold   .gm-card-read { color: #f5cc55; }
.gm-card-blue   .gm-card-read { color: #7ab8f5; }
.gm-card-red    .gm-card-read { color: #f57a7a; }
.gm-card-purple .gm-card-read { color: #c07af5; }
.gm-card-teal   .gm-card-read { color: #5cfff0; }

/* Small cards grid (All Guides) */
.gm-all-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.gm-small-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.07);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.gm-small-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.15);
}

.gm-small-top {
  padding: 12px 14px 10px;
}

.gm-stop-green  { background: #1a5c0a; }
.gm-stop-gold   { background: #5c4200; }
.gm-stop-blue   { background: #0a2a5c; }
.gm-stop-red    { background: #5c0a0a; }
.gm-stop-purple { background: #2a0a5c; }
.gm-stop-teal   { background: #0a3c3c; }

.gm-small-cat {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gm-stop-green  .gm-small-cat { color: #a8e878; }
.gm-stop-gold   .gm-small-cat { color: #f5cc55; }
.gm-stop-blue   .gm-small-cat { color: #7ab8f5; }
.gm-stop-red    .gm-small-cat { color: #f57a7a; }
.gm-stop-purple .gm-small-cat { color: #c07af5; }
.gm-stop-teal   .gm-small-cat { color: #5cfff0; }

.gm-small-body {
  background: rgba(8,22,4,0.88);
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gm-small-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #e8f5d8;
  line-height: 1.3;
}

.gm-small-desc {
  font-size: 11.5px;
  color: rgba(232,245,216,0.5);
  line-height: 1.45;
  flex: 1;
}

.gm-small-read {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3px;
  margin-top: 4px;
}

.gm-small-green  .gm-small-read { color: #a8e878; }
.gm-small-gold   .gm-small-read { color: #f5cc55; }
.gm-small-blue   .gm-small-read { color: #7ab8f5; }
.gm-small-red    .gm-small-read { color: #f57a7a; }
.gm-small-purple .gm-small-read { color: #c07af5; }
.gm-small-teal   .gm-small-read { color: #5cfff0; }

/* TOOL GRID */
.tool-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tool-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(15, 42, 8, 0.55);
  border: 2px solid rgba(94, 207, 48, 0.25);
  border-radius: var(--border-radius);
  padding: 18px 20px;
  text-decoration: none;
  color: #e8f5d8;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transition: all 0.15s;
}

.tool-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  border-color: var(--green-accent);
  background: rgba(26, 74, 14, 0.75);
}

.tool-card-icon {
  font-size: 36px;
  width: 56px;
  height: 56px;
  background: rgba(94, 207, 48, 0.15);
  border: 2px solid rgba(94, 207, 48, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-card-body {
  flex: 1;
}

.tool-card-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #a8e878;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.tool-card-desc {
  font-size: 13.5px;
  color: rgba(232, 245, 216, 0.7);
  line-height: 1.5;
}

.tool-card-arrow {
  font-size: 20px;
  color: #a8e878;
  flex-shrink: 0;
}

/* CALCULATOR */
.calculator-grid {
  border: 1.5px solid #d0e8a8;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.calc-header {
  background: linear-gradient(180deg, #1e5c0a 0%, #0f2a08 100%);
  color: #fff !important;
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.calc-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid #eaf5d3;
}

.calc-row:last-child { border-bottom: none; }

.calc-row span,
.calc-row input {
  padding: 10px 14px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.calc-qty {
  width: 100%;
  border: none;
  border-left: 1px solid #d0e8a8;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  background: #fafff5;
  outline: none;
}

.calc-qty:focus { background: #eaf5d3; }

.calc-total-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 12px 4px 4px;
  font-size: 16px;
}

.calc-total-value {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #a8e878;
}

/* TIMER */
.timer-wrapper {
  text-align: center;
  padding: 8px 0;
}

.timer-display {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: #a8e878;
  letter-spacing: 6px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
  margin-bottom: 16px;
}

.timer-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.timer-input {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  padding: 8px 12px;
  border: 2px solid #d0e8a8;
  border-radius: 8px;
  background: #fafff5;
  outline: none;
}

.timer-input:focus { border-color: var(--green-mid); }

/* WIKI PAGE STYLES */
.wiki-toc {
  background: rgba(15, 42, 8, 0.6);
  border: 2px solid rgba(94, 207, 48, 0.25);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: inline-block;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.wiki-toc-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #e8f5d8;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wiki-toc ol {
  margin-left: 20px;
  line-height: 2;
  color: rgba(232, 245, 216, 0.5);
}

.wiki-toc ol ol {
  margin-left: 16px;
  line-height: 1.8;
}

.wiki-toc li {
  color: rgba(232, 245, 216, 0.5);
  font-size: 14px;
}

.wiki-toc a {
  color: rgba(232, 245, 216, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.wiki-toc a:hover {
  color: #fff;
  text-decoration: underline;
}

.wiki-section {
  margin-bottom: 28px;
}

.wiki-section-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #a8e878;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(94, 207, 48, 0.4);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.wiki-subsection-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #c8f090;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(168, 232, 120, 0.3);
  margin-bottom: 12px;
  margin-top: 20px;
}

.wiki-section p,
.wiki-section li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: rgba(232, 245, 216, 0.9);
}

.wiki-section ul,
.wiki-section ol {
  margin-left: 20px;
  line-height: 1.8;
}

/* CROP PAGE INFOBOX */
.crop-page-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.crop-page-top .wiki-toc {
  margin-bottom: 0;
  flex-shrink: 0;
}

.crop-infobox {
  flex: 1;
  background: rgba(15, 42, 8, 0.5);
  border: 2px solid rgba(94, 207, 48, 0.25);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 3px 0 #c0d898;
  min-height: 180px;
}

.crop-infobox-image {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 245, 216, 0.12);
  padding: 16px;
}

.crop-infobox-image img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
}

/* CROP DATA TABLE */
.crop-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 2.5px solid #d0e8a8;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 3px 0 #c0d898;
  margin-bottom: 20px;
}

.crop-table thead th {
  background: linear-gradient(180deg, #1e5c0a 0%, #0f2a08 100%);
  color: #fff;
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 14px;
  text-align: left;
  border-right: 1px solid #0a1a05;
  white-space: nowrap;
}

.crop-table thead th:last-child {
  border-right: none;
}

.crop-table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid #eaf5d3;
  font-size: 14px;
  vertical-align: middle;
  color: #1a2a10;
  background: #fff;
}

.crop-table tbody tr:hover td {
  background: var(--green-bg);
  color: #1a2a10;
}

.crop-table tbody tr:last-child td {
  border-bottom: none;
}

.crop-name-link {
  color: #5ecf30;
  text-decoration: none;
  font-weight: 800;
}

.crop-name-link:hover {
  text-decoration: underline;
  color: #a8e878;
}

.crop-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 2px solid #d0e8a8;
  object-fit: contain;
  background: var(--green-bg);
  padding: 4px;
  display: block;
}

.tier-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tier-unknown { background: #2a2a2a; color: #999; border: 1.5px solid #555; }
.tier-common { background: #e0e0e0; color: #555; border: 1.5px solid #bbb; }
.tier-uncommon { background: #d0f0c0; color: #2a6010; border: 1.5px solid #90c870; }
.tier-rare { background: #d6e8fa; color: #2a5090; border: 1.5px solid #80b0e0; }
.tier-epic { background: #e8d0f0; color: #6a2a90; border: 1.5px solid #b080d0; }
.tier-legendary { background: #fdf3d8; color: #8b6000; border: 1.5px solid #f5cc55; }

/* STUB NOTICE */
.stub-notice {
  background: linear-gradient(135deg, #d4883a 0%, #c07020 100%);
  border: 2.5px solid var(--brown-dark);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  box-shadow: 0 3px 0 #8b5e2e;
}

.stub-notice-icon {
  font-size: 32px;
}

.stub-notice-title {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 2px;
  letter-spacing: 0.3px;
}

.stub-notice-text {
  font-size: 13px;
  opacity: 0.9;
}

/* PANEL TABLES */
.panel-body table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.panel-body th {
  padding: 10px;
  text-align: left;
  border: 2px solid #d0e8a8;
  background: var(--green-bg);
  font-weight: 800;
}

.panel-body td {
  padding: 10px;
  border: 1px solid #d0e8a8;
}

.panel-body code {
  background: #f5f5f5;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-search {
    display: none;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .page-wrapper {
    grid-template-columns: 1fr;
  }

  aside {
    display: none;
  }

  aside.open {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    width: 260px;
    z-index: 99;
    background: #163808;
    box-shadow: 4px 0 12px rgba(0,0,0,0.35);
  }

  .topic-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}
