/* GlassRaids - glassmorphism aesthetic */
:root {
  --purple: #6d28d9;
  --blue: #2563eb;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.28);
  --glass-highlight: rgba(255, 255, 255, 0.45);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-muted: rgba(255, 255, 255, 0.55);
  --radius: 20px;
  --radius-sm: 12px;
  --blur: 18px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  --glow: inset 0 1px 1px rgba(255, 255, 255, 0.35), 0 0 40px rgba(109, 40, 217, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--purple) 0%, #5b21b6 35%, #3b82f6 70%, var(--blue) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Ambient orbs */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
body::before {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}
body::after {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(37,99,235,0.35) 0%, transparent 70%);
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Glass panel utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--glow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(109, 40, 217, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
}

.brand-name {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand-name span {
  font-weight: 500;
  opacity: 0.85;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text);
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--purple) !important;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  background: #fff !important;
}

/* Hero */
.hero {
  padding: 80px 0 60px;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-text .tagline {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-text p {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: background 0.2s, transform 0.2s;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.hero-pane {
  padding: 36px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  position: relative;
}

.hero-pane::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-orb {
  margin-bottom: 16px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
  animation: float 4s ease-in-out infinite;
}

.hero-orb img {
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-stat-row {
  display: flex;
  justify-content: space-around;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
}

.hero-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section-head p {
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.svc-card {
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 50px rgba(255, 255, 255, 0.12);
}

.svc-icon {
  margin-bottom: 14px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.svc-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.svc-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* How it works strip */
.how-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 36px;
}

.how-step {
  text-align: center;
  padding: 20px 16px;
}

.step-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.how-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.how-step p {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  padding: 28px 24px;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 3rem;
  line-height: 1;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial p {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.testimonial .placeholder-tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.12);
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 48px 0 32px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto;
}

/* Raids */
.raids-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.boss-list {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.boss-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.boss-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.boss-btn.active {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.boss-btn .boss-thumb {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.boss-btn .boss-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.raid-detail {
  padding: 28px;
}

.boss-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.boss-banner .boss-art {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.boss-banner .boss-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.boss-banner h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.boss-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.pill.cp {
  background: rgba(255, 255, 255, 0.2);
}

.counter-table {
  width: 100%;
  border-collapse: collapse;
}

.counter-table th {
  text-align: left;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.counter-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.counter-table tr:hover td {
  background: rgba(255, 255, 255, 0.05);
}

.counter-table .rank {
  color: var(--text-muted);
  font-weight: 700;
  width: 40px;
}

.counter-table .cname {
  font-weight: 700;
}

.pill-type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.type-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.type-icon {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.counter-table .mv {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.rating-cell {
  min-width: 140px;
}

.rating-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 4px;
}

.rating-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.6), #fff);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.rating-num {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Friends */
.friends-note {
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-soft);
  border-left: 3px solid rgba(255, 255, 255, 0.5);
}

.friends-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: start;
}

.add-form {
  padding: 28px;
}

.add-form h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
  background: #4c1d95;
  color: #fff;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--purple);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.code-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.code-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  transition: transform 0.2s;
}

.code-card:hover {
  transform: translateX(4px);
}

.code-card.mine {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
}

.team-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.team-mystic { background: rgba(59, 130, 246, 0.35); }
.team-valor { background: rgba(239, 68, 68, 0.35); }
.team-instinct { background: rgba(234, 179, 8, 0.35); }

.code-info { flex: 1; min-width: 0; }

.code-info .trainer {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.code-info .digits {
  font-family: 'Manrope', monospace;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.code-info .line2 {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.bump-btn {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.bump-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.28);
}

.bump-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.bump-btn small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  margin-top: 2px;
  opacity: 0.8;
}

/* Blog - layered frosted glass cards */
.blog-stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 12px 0 24px;
}

.blog-card {
  position: relative;
  padding: 0;
  overflow: visible;
  transform: translateX(calc(var(--dir, 1) * var(--layer, 0) * 10px));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card::before,
.blog-card::after {
  content: '';
  position: absolute;
  border-radius: var(--radius);
  pointer-events: none;
  z-index: -1;
}

.blog-card::before {
  inset: 10px calc(var(--dir, 1) * -12px) -10px calc(var(--dir, 1) * 12px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.blog-card::after {
  inset: 20px calc(var(--dir, 1) * -22px) -20px calc(var(--dir, 1) * 22px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.7;
}

.blog-card:hover {
  transform: translateX(calc(var(--dir, 1) * var(--layer, 0) * 10px)) translateY(-4px);
  box-shadow: var(--shadow), 0 0 60px rgba(255, 255, 255, 0.1);
}

.blog-card-link {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: var(--radius);
}

.blog-card-cover {
  min-height: 180px;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}

.blog-card-cover-fallback {
  color: rgba(255, 255, 255, 0.35);
}

.blog-card-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.blog-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.blog-read {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.blog-card h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.blog-empty {
  padding: 48px 36px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.blog-empty-icon {
  margin-bottom: 16px;
  opacity: 0.6;
}

.blog-empty h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.blog-empty p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.blog-empty a {
  color: #fff;
  font-weight: 700;
}

/* Post detail */
.post-page {
  padding-top: 40px;
}

.post-article {
  overflow: hidden;
  margin-bottom: 48px;
}

.post-cover {
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 320px;
}

.post-header {
  padding: 32px 36px 0;
}

.post-back {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.post-back:hover {
  color: var(--text);
}

.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 14px;
}

.post-meta-sep {
  opacity: 0.5;
}

.post-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.post-author {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 0;
}

.post-body {
  padding: 28px 36px 40px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.post-body h2 {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 28px 0 12px;
  letter-spacing: -0.01em;
}

.post-body p {
  margin-bottom: 16px;
}

.post-body ul {
  margin: 0 0 16px 20px;
}

.post-body li {
  margin-bottom: 8px;
}

/* Related articles */
.related-section {
  margin-top: 12px;
}

.related-heading {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  padding: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 40px rgba(255, 255, 255, 0.1);
}

.related-cover {
  height: 120px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
}

.related-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-body {
  padding: 18px 20px 22px;
}

.related-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 8px 0 6px;
  line-height: 1.35;
}

.related-body .blog-date {
  font-size: 0.75rem;
}

/* Footer */
.site-footer {
  margin-top: 60px;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 8px;
  line-height: 1.5;
}

.footer-cap {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: auto; }
  .how-strip { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .raids-layout { grid-template-columns: 1fr; }
  .friends-grid { grid-template-columns: 1fr; }
  .blog-card-link { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .site-nav { width: 100%; justify-content: center; }
  .header-inner { justify-content: center; }
  .counter-table { font-size: 0.82rem; }
  .counter-table .mv { display: none; }
  .counter-table th:nth-child(4),
  .counter-table td:nth-child(4) { display: none; }
  .code-card { flex-wrap: wrap; }
  .bump-btn { width: 100%; text-align: center; }
  .related-grid { grid-template-columns: 1fr; }
}
