@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;800&display=swap');

:root {
  --bg: #f4f7fb;
  --card: #ffffff;
  --prose-panel-bg: #b8cfe0;
  --text: #1f2937;
  --muted: #6b7280;
  --prose-body: #1e293b;
  --prose-strong: #0f172a;
  --brand: #0ea5e9;
  --brand-dark: #0284c7;
  --line: #e5e7eb;
  --intro-h2-bar-edge: #0e7490;
  --intro-h2-bar-mid: #e4eef6;
  --intro-h2-bar-deep: #dce8f1;
  --intro-h2-text: #0a4f58;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(105deg, #0f5862 0%, #0c464e 48%, #093a41 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', Arial, Helvetica, sans-serif;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-text {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 32%, #fff9c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.42));
}

.brand:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
  border-radius: 8px;
}

@keyframes brand-icon-pulse {
  0%,
  6%,
  100% {
    transform: scale(1);
  }
  1% {
    transform: scale(1.14);
  }
  2% {
    transform: scale(1);
  }
  3.5% {
    transform: scale(1);
  }
  4.2% {
    transform: scale(1.14);
  }
  5.2% {
    transform: scale(1);
  }
}

.brand-suits {
  display: none;
}

.brand-icon {
  display: block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 25%;
  transform-origin: center center;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.72),
    0 0 0 3px rgba(9, 58, 65, 0.55),
    0 4px 14px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(186, 230, 253, 0.22);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.4));
  animation: brand-icon-pulse 10s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .brand-icon {
    animation: none;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  padding: 6px 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s, background 0.2s;
}

.nav-links > li > a:hover,
.nav-links > li > a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.has-dropdown > a::after {
  content: "\25BE";
  font-size: 10px;
  opacity: 0.7;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 0 6px;
  list-style: none;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 1001;
}

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: 8px 16px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

.dropdown li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  background: linear-gradient(120deg, #0ea5e9, #22c55e);
  color: #fff;
  padding: 32px 0 56px;
}

.site-header .container {
  max-width: min(920px, 92%);
  padding: clamp(22px, 4vw, 34px) clamp(22px, 4vw, 38px);
  background: rgba(6, 44, 52, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow:
    0 10px 40px rgba(6, 36, 44, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.site-header h1 .site-header-title-lead {
  background: linear-gradient(105deg, #ffffff 0%, #fffbeb 22%, #fef9c3 52%, #fde68a 82%, #fef08a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.5)) drop-shadow(0 2px 6px rgba(15, 23, 42, 0.28));
}

.site-header h1 .site-header-title-rest {
  font-size: 0.8em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(15, 23, 42, 0.22);
}

.site-header p {
  margin: 0;
  max-width: 760px;
  opacity: 0.95;
}

.site-header h1 + p {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.92);
}

.section {
  padding: 34px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid #3d7a85;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06), 0 4px 8px rgba(15, 23, 42, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
}

.thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: contain;
  padding: 18px;
  background: #d4dce6;
}

.card-body {
  padding: 8px 14px;
}

.card h3 {
  margin: -2px 0 4px;
  font-size: 18px;
  text-align: center;
  color: #0a4f61;
}

.card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.card .seo-list {
  margin: 0 0 12px;
  padding-left: 18px;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  color: var(--muted);
  font-size: 14px;
}

.card .seo-list li {
  margin-bottom: 6px;
}

.btn-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 8px 0 6px;
}

.btn {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 15.5px;
  font-weight: bold;
}

.btn-primary {
  background: linear-gradient(180deg, #fb923c 0%, #f97316 40%, #ea580c 100%);
  color: #fff;
  border: 1px solid rgba(234, 88, 12, 0.5);
  border-top: 1px solid rgba(253, 186, 116, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 2px 6px rgba(194, 65, 12, 0.35);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #fdba74 0%, #fb923c 40%, #f97316 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 3px 10px rgba(194, 65, 12, 0.4);
}

.btn-ghost {
  background: linear-gradient(180deg, #e8f4f8 0%, #d6eaf2 45%, #c4dce8 100%);
  color: #0c4a6e;
  border: 1px solid rgba(14, 116, 144, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 2px 6px rgba(14, 116, 144, 0.12);
  font-weight: 600;
}

.btn-ghost:hover {
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 45%, #bae6fd 100%);
  color: #0369a1;
  border-color: rgba(14, 116, 144, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 3px 10px rgba(14, 116, 144, 0.2);
}

.detail-main .btn-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin: 20px 0 4px;
}

.detail-main .btn-row .btn-primary {
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  font-size: 16px;
  border-radius: 10px;
}

.detail-main .btn-row .btn-ghost {
  width: fit-content;
  align-self: center;
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f1f5f9 0%, #e8ecf1 45%, #dde3ea 100%);
  color: #334155;
  border: 1px solid #c1c9d4;
}

.detail-main .btn-row .btn-ghost:hover {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 45%, #f1f5f9 100%);
  color: #1e293b;
  border-color: #94a3b8;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  align-items: start;
}

.panel {
  background: linear-gradient(155deg, #c4d9eb 0%, var(--prose-panel-bg) 55%, #a9c4d8 100%);
  border: 1px solid rgba(14, 116, 144, 0.1);
  border-top: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 16px rgba(6, 72, 84, 0.09);
}

.detail-main {
  background: linear-gradient(155deg, #d4ecd9 0%, #c2dfca 55%, #b0d4b8 100%);
  border: 1px solid rgba(6, 95, 70, 0.15);
  border-top: 2px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 2px 16px rgba(6, 78, 59, 0.1);
}

.detail-main .detail-thumb {
  width: 160px;
  height: 160px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  padding: 0;
  background: #fff;
  border: none;
  border-radius: 22px;
  margin-bottom: 18px;
  box-shadow:
    0 2px 0 rgba(148, 163, 184, 0.5),
    0 4px 0 rgba(100, 116, 139, 0.18),
    0 8px 24px rgba(15, 23, 42, 0.16);
}

.seo-list {
  margin: 0;
  padding: 14px 18px 14px 36px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 1px 4px rgba(15,23,42,0.05);
}

.seo-list li {
  margin-bottom: 8px;
  color: var(--prose-body);
  line-height: 1.6;
}

.seo-list li:last-child {
  margin-bottom: 0;
}

/* aside panel h3 ???? */
aside.panel h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--intro-h2-text);
  margin: 0 0 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  border-left: 3px solid var(--intro-h2-bar-edge);
  letter-spacing: 0.01em;
}

.rec-item {
  display: block;
  padding: 0;
  border-bottom: none;
}

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

.rec-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 8px;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 1px 0 rgba(148, 163, 184, 0.6),
    0 3px 0 rgba(100, 116, 139, 0.2),
    0 4px 8px rgba(15, 23, 42, 0.1);
  transform: translateY(0);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.rec-card:hover {
  background: linear-gradient(180deg, #f8faff 0%, #e8eef7 100%);
  border-color: rgba(14, 116, 144, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 0 rgba(14, 116, 144, 0.4),
    0 3px 0 rgba(14, 116, 144, 0.15),
    0 5px 14px rgba(15, 23, 42, 0.13);
  transform: translateY(-2px);
}

.rec-card:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(148, 163, 184, 0.4),
    0 1px 4px rgba(15, 23, 42, 0.08);
}

.rec-card::after {
  content: '';
  margin-left: auto;
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid #0e7490;
  opacity: 0.75;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.rec-card:hover::after {
  opacity: 1;
  transform: translateX(-2px);
}

.rec-item:last-child .rec-card {
  margin-bottom: 0;
}

.rec-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.1);
}

.rec-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.rec-card:hover .rec-title {
  color: #0e7490;
}

.bread {
  margin: 18px 0 0;
  color: #e0f2fe;
  font-size: 14px;
}

.site-header .bread a:first-of-type {
  display: inline-block;
  margin-right: 8px;
  padding: 7px 16px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  color: #0c4a6e;
  text-decoration: none;
  vertical-align: middle;
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
  border-radius: 8px;
  border: 1px solid rgba(125, 211, 252, 0.9);
  border-top: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 3px 10px rgba(6, 72, 84, 0.38),
    0 2px 4px rgba(6, 55, 65, 0.32);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.site-header .bread a:first-of-type:hover {
  color: #0a3d5c;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 45%, #e0f2fe 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 4px 14px rgba(6, 72, 84, 0.45),
    0 2px 5px rgba(6, 55, 65, 0.38);
}

.site-header .bread a:first-of-type:focus-visible {
  outline: 2px solid #7dd3fc;
  outline-offset: 2px;
}

.site-footer {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

.intro-section {
  padding: 18px 0 0;
}

.intro-section .container {
  max-width: min(860px, 92%);
  padding: clamp(14px, 2.2vw, 20px) clamp(16px, 2.5vw, 24px);
  background: linear-gradient(155deg, #c4d9eb 0%, var(--prose-panel-bg) 55%, #a9c4d8 100%);
  border-radius: 14px;
  border: 1px solid rgba(14, 116, 144, 0.1);
  border-top: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 16px rgba(6, 72, 84, 0.09);
}

.intro-section h2,
.content-section .prose-panel h2,
.panel h2 {
  font-size: clamp(19px, 2.75vw, 26px);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--intro-h2-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: left;
  padding: 8px 14px 8px 12px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 52%),
    linear-gradient(
      102deg,
      #f4f9fc 0%,
      var(--intro-h2-bar-mid) 38%,
      var(--intro-h2-bar-deep) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-left: 3px solid var(--intro-h2-bar-edge);
  box-shadow:
    0 2px 12px rgba(15, 23, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.intro-section p {
  max-width: none;
  margin: 0;
  color: var(--prose-body);
  line-height: 1.78;
  font-size: 1.05rem;
}

.intro-section p strong {
  color: var(--prose-strong);
  font-weight: 700;
}

/* Nav bonus link highlight */
.nav-bonus-link {
  color: #fde68a !important;
  background: linear-gradient(135deg, rgba(251,191,36,0.22) 0%, rgba(245,158,11,0.18) 100%) !important;
  border: 1px solid rgba(251,191,36,0.3) !important;
  border-radius: 6px !important;
  animation: nav-bonus-pulse 2.5s ease-in-out infinite;
}
@keyframes nav-bonus-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0); }
  50% { box-shadow: 0 0 12px 2px rgba(251,191,36,0.35); }
}
.nav-bonus-link:hover {
  color: #fff !important;
  background: rgba(251,191,36,0.35) !important;
}

/* Homepage bonus promo section */
.bonus-promo-section {
  padding: 18px 0 0;
}
.bonus-promo-section .container {
  max-width: min(860px, 92%);
}
.bonus-promo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 12px;
  background: linear-gradient(105deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
  border: 2px solid #0ea5e9;
  box-shadow: 0 2px 10px rgba(14,165,233,0.18);
  text-decoration: none;
  color: #92400e;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bonus-promo-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14,165,233,0.28);
}
.bonus-promo-link__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.bonus-promo-link__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bonus-promo-link__body strong {
  font-size: 1rem;
  color: #064e3b;
}
.bonus-promo-link__body span {
  font-size: 0.88rem;
  color: #0f766e;
  line-height: 1.5;
}

.content-section {
  padding-top: 20px;
}

.content-section .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: min(860px, 92%);
}

.content-section .prose-panel {
  margin: 0;
  padding: clamp(20px, 3vw, 28px) clamp(18px, 3vw, 28px);
  background: linear-gradient(155deg, #c4d9eb 0%, var(--prose-panel-bg) 55%, #a9c4d8 100%);
  border-radius: 14px;
  border: 1px solid rgba(14, 116, 144, 0.1);
  border-top: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 16px rgba(6, 72, 84, 0.09);
}

.content-section .prose-panel > h2:first-child {
  margin-top: 0;
}

.content-section .prose-panel > *:last-child {
  margin-bottom: 0;
}

.content-section .prose-panel p {
  color: var(--prose-body);
  line-height: 1.78;
  font-size: 1.05rem;
}

.content-section .prose-panel strong {
  color: var(--prose-strong);
  font-weight: 700;
}

.content-section .prose-panel p + p {
  margin-top: 0.75em;
}

.content-section .prose-panel ul,
.content-section .prose-panel ol {
  margin: 10px 0 14px;
  padding: 12px 16px 12px 1.9em;
  list-style-position: outside;
  border-radius: 11px;
  background: linear-gradient(165deg, #e8edf4 0%, #f4f6f9 55%, #eef2f6 100%);
  border: 1px solid rgba(71, 85, 105, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -2px 8px rgba(15, 23, 42, 0.04),
    0 1px 2px rgba(255, 255, 255, 0.6);
}

.content-section .prose-panel ul li,
.content-section .prose-panel ol li {
  color: var(--intro-h2-text);
  line-height: 1.55;
  font-size: 1.02rem;
}

.content-section .prose-panel ul li strong,
.content-section .prose-panel ol li strong {
  color: var(--intro-h2-bar-edge);
  font-weight: 700;
}

.content-section .prose-panel li + li {
  margin-top: 0.28em;
}

.content-section .prose-panel a {
  color: #0369a1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-section .prose-panel a strong {
  color: inherit;
}

.content-section .prose-panel a:hover {
  color: var(--brand);
}

/* ?????? Earn Real Cash card ???redesigned ?????? */
.earn-gold-card {
  position: relative;
  background: linear-gradient(158deg, #fde68a 0%, #fbbf24 38%, #f59e0b 72%, #d97706 100%);
  border-radius: 18px;
  border: 2px solid rgba(180, 83, 9, 0.45);
  box-shadow:
    0 10px 40px rgba(120, 53, 15, 0.28),
    0 3px 10px rgba(120, 53, 15, 0.14),
    0 0 0 1px rgba(253, 230, 138, 0.5);
  padding: clamp(20px, 3vw, 32px);
  overflow: hidden;
}

.earn-gold-card::before {
  display: none;
}

.earn-gold-card__head {
  background: linear-gradient(105deg,
    #14532d 0%, #166534 28%, #15803d 60%, #166534 82%, #14532d 100%
  );
  border: 1px solid rgba(10, 60, 25, 0.6);
  border-left: 4px solid #052e16;
  border-radius: 10px;
  padding: 13px 20px;
  margin-bottom: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -2px 6px rgba(0,40,15,0.25),
    0 4px 14px rgba(5,46,22,0.3);
}

.earn-gold-card__title {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 800;
  color: #f0fdf4;
  text-shadow:
    0 1px 4px rgba(0,30,10,0.7),
    0 0 12px rgba(0,50,15,0.4);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.earn-gold-emoji {
  margin-left: 0.15em;
  font-weight: 400;
  vertical-align: 0.05em;
}

.earn-gold-card__intro {
  color: #1c1410;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.78;
  margin: 0 0 20px;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  padding: 12px 16px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.earn-gold-card__intro strong {
  color: #92400e;
  font-weight: 700;
}

.earn-gold-highlight {
  color: #14532d !important;
  font-weight: 700;
}

/* 2 ?? 2 method cards grid */
.earn-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.earn-method-card {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: linear-gradient(150deg, #ffffff 0%, #fffdf5 50%, #fff9e8 100%);
  border: 1px solid rgba(202, 138, 4, 0.28);
  border-radius: 13px;
  padding: 15px 16px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 2px 12px rgba(120,70,10,0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.earn-method-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 8px 24px rgba(120,70,10,0.2);
}

.earn-method-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border-radius: 13px;
  transition: transform 0.18s ease;
}

.earn-method-card:hover .earn-method-card__icon {
  transform: scale(1.08);
}

.earn-emoji-glyph {
  display: inline-block;
  line-height: 1;
  filter:
    drop-shadow(0 1px 1px rgba(0, 0, 0, 0.40))
    drop-shadow(0 3px 4px rgba(0, 0, 0, 0.20))
    drop-shadow(0 6px 10px rgba(30, 15, 0, 0.12));
  transition: filter 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.earn-method-card:hover .earn-emoji-glyph {
  filter:
    drop-shadow(0 2px 1px rgba(0, 0, 0, 0.38))
    drop-shadow(0 6px 6px rgba(0, 0, 0, 0.18))
    drop-shadow(0 14px 18px rgba(20, 10, 0, 0.12));
  transform: translateY(-6px);
}

/* ???????????????????????????? */

/* ???? Play & Win ??????? */
.earn-method-card:nth-child(1) .earn-method-card__icon {
  background:
    radial-gradient(ellipse at 38% 28%, rgba(255,255,255,0.38) 0%, transparent 52%),
    radial-gradient(ellipse at 75% 80%, rgba(49,10,120,0.45) 0%, transparent 55%),
    linear-gradient(148deg, #a78bfa 0%, #7c3aed 50%, #4c1d95 100%);
  border: 1px solid rgba(91,33,182,0.35);
  box-shadow: 0 4px 14px rgba(76,29,149,0.45), inset 0 1px 0 rgba(237,233,254,0.5);
}

/* ???? Daily Bonus ???????????*/
.earn-method-card:nth-child(2) .earn-method-card__icon {
  background:
    radial-gradient(ellipse at 38% 28%, rgba(255,255,255,0.38) 0%, transparent 52%),
    radial-gradient(ellipse at 75% 80%, rgba(127,29,29,0.45) 0%, transparent 55%),
    linear-gradient(148deg, #fca5a5 0%, #ef4444 50%, #991b1b 100%);
  border: 1px solid rgba(185,28,28,0.35);
  box-shadow: 0 4px 14px rgba(153,27,27,0.42), inset 0 1px 0 rgba(254,202,202,0.5);
}

/* ???? Referral ???????? */
.earn-method-card:nth-child(3) .earn-method-card__icon {
  background:
    radial-gradient(ellipse at 38% 28%, rgba(255,255,255,0.38) 0%, transparent 52%),
    radial-gradient(ellipse at 75% 80%, rgba(12,74,110,0.45) 0%, transparent 55%),
    linear-gradient(148deg, #7dd3fc 0%, #0ea5e9 50%, #0369a1 100%);
  border: 1px solid rgba(3,105,161,0.35);
  box-shadow: 0 4px 14px rgba(3,105,161,0.42), inset 0 1px 0 rgba(186,230,253,0.5);
}

/* ???? Tournaments ????? */
.earn-method-card:nth-child(4) .earn-method-card__icon {
  background:
    radial-gradient(ellipse at 38% 28%, rgba(255,255,255,0.38) 0%, transparent 52%),
    radial-gradient(ellipse at 75% 80%, rgba(20,83,45,0.45) 0%, transparent 55%),
    linear-gradient(148deg, #86efac 0%, #22c55e 50%, #15803d 100%);
  border: 1px solid rgba(21,128,61,0.35);
  box-shadow: 0 4px 14px rgba(21,128,61,0.4), inset 0 1px 0 rgba(187,247,208,0.5);
}

.earn-method-card__body h3.earn-method-card__label {
  margin: 0 0 5px;
  font-size: 0.97rem;
  font-weight: 700;
  color: #15803d;
}

.earn-method-card__body p {
  margin: 0;
  font-size: 0.88rem;
  color: #292524;
  line-height: 1.58;
}

.earn-method-card__body p strong {
  color: #9a3412;
  font-weight: 700;
}

@media (max-width: 560px) {
  .earn-methods-grid {
    grid-template-columns: 1fr;
  }
}

/* Green theme: "How to Download" card */
.content-section .prose-panel.prose-panel--green {
  background: linear-gradient(105deg, #0f5862 0%, #0c464e 48%, #093a41 100%);
  border: 1px solid rgba(14, 116, 144, 0.3);
  border-top: 2px solid rgba(186, 230, 253, 0.15);
  box-shadow: 0 4px 20px rgba(9, 58, 65, 0.2);
}

.content-section .prose-panel.prose-panel--green h2 {
  color: #e0f2fe;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 58%),
    linear-gradient(102deg, #0a3d46 0%, #0c4a54 38%, #0a3d46 100%);
  border: 1px solid rgba(14, 116, 144, 0.3);
  border-left: 3px solid #0e7490;
  box-shadow:
    0 2px 12px rgba(22, 101, 52, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 4px rgba(22, 101, 52, 0.08);
}

.content-section .prose-panel.prose-panel--green > p {
  color: #bae6fd;
}

.content-section .prose-panel.prose-panel--green > p strong {
  color: #ffffff;
}

.content-section .prose-panel.prose-panel--green ol {
  background: linear-gradient(165deg, #0a3d46 0%, #083840 55%, #062e36 100%);
  border: 1px solid rgba(14, 116, 144, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 5px rgba(22, 101, 52, 0.06),
    0 1px 2px rgba(255, 255, 255, 0.6);
}

.content-section .prose-panel.prose-panel--green ol li {
  color: #bae6fd;
}

.content-section .prose-panel.prose-panel--green ol li strong {
  color: #ffffff;
}

.content-section .prose-panel.prose-panel--green a {
  color: #7dd3fc;
}

.content-section .prose-panel.prose-panel--green a:hover {
  color: #bae6fd;
}

@keyframes section-title-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* 子页面默认：浅蓝色左边框样式 */
.section-title {
  display: block;
  font-size: clamp(19px, 2.75vw, 26px);
  font-weight: 700;
  margin: 0 0 16px;
  padding: 8px 14px 8px 12px;
  border-radius: 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--intro-h2-text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 52%),
    linear-gradient(102deg, #f4f9fc 0%, var(--intro-h2-bar-mid) 38%, var(--intro-h2-bar-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-left: 3px solid var(--intro-h2-bar-edge);
  box-shadow:
    0 2px 12px rgba(15, 23, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  position: static;
}

.section-title::before {
  display: none;
}

/* 首页专属：深青色金字闪光样式 */
.page-home .section-title {
  display: inline-block;
  font-size: clamp(20px, 2.8vw, 27px);
  font-weight: 700;
  margin: 0 0 16px;
  padding: 10px 22px;
  position: relative;
  border-radius: 10px;
  border: none;
  border-bottom: 3px solid #0e7490;
  box-shadow:
    0 4px 14px rgba(9, 58, 65, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  letter-spacing: 0.02em;
  background: linear-gradient(105deg, #0f5862 0%, #0c464e 48%, #093a41 100%);
  color: #fde68a;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    105deg,
    #fde68a 0%,
    #fde68a 30%,
    #fffbeb 48%,
    #fef08a 52%,
    #fde68a 70%,
    #fde68a 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: section-title-shimmer 4s ease-in-out infinite;
}

.page-home .section-title::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 10px;
  background: linear-gradient(105deg, #0f5862 0%, #0c464e 48%, #093a41 100%);
}

/* ?????? Sub-page panel h2: light blue bar style ?????? */
.panel > h2 {
  display: block;
  font-size: clamp(19px, 2.75vw, 26px);
  font-weight: 700;
  margin: 0 0 14px;
  padding: 8px 14px 8px 12px;
  border-radius: 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--intro-h2-text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 52%),
    linear-gradient(102deg, #f4f9fc 0%, var(--intro-h2-bar-mid) 38%, var(--intro-h2-bar-deep) 100%);
  border: 1px solid rgba(255,255,255,0.92);
  border-left: 3px solid var(--intro-h2-bar-edge);
  box-shadow:
    0 2px 12px rgba(15,23,42,0.055),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

/* 游戏详情页主标题 —— 专属样式 */
.detail-main > h2 {
  display: block;
  font-size: clamp(17px, 3vw, 24px);
  font-weight: 800;
  margin: 0 0 16px;
  padding: 16px 22px;
  border-radius: 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
  background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 50%, #1a472a 100%);
  border: 1px solid #3a8c6e;
  border-bottom: 3px solid #3a8c6e;
  box-shadow:
    0 4px 16px rgba(26, 71, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.detail-main > h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%);
  pointer-events: none;
}

.detail-main > h2::after {
  display: none;
}

.detail-main > h2 .h2-game-name {
  color: #fbbf24;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.faq-section {
  padding: 30px 0 10px;
}

.faq-section h2 {
  font-size: clamp(20px, 3vw, 28px);
  margin: 0 0 16px;
  color: #0c4a6e;
}

.search-terms-section {
  border-top: 3px solid #ffffff;
  padding-top: 10px;
}

.search-terms-section h2 {
  font-size: clamp(20px, 3vw, 28px);
  color: #0c4a6e;
}

.final-section {
  border-top: 3px solid #ffffff;
  margin-top: -25px;
  padding-top: 10px;
}

.final-section h2 {
  font-size: clamp(20px, 3vw, 28px);
  color: #166534;
  margin-top: -6px;
  text-align: center;
}

.final-section > .container {
  max-width: min(860px, 92%);
  margin-top: 14px;
  padding: clamp(20px, 3vw, 28px) clamp(18px, 3vw, 28px);
  background: linear-gradient(155deg, #c4d9eb 0%, var(--prose-panel-bg) 55%, #a9c4d8 100%);
  border-radius: 14px;
  border: 1px solid rgba(14, 116, 144, 0.1);
  border-top: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 16px rgba(6, 72, 84, 0.09);
}

.final-section > .container p {
  color: var(--prose-body);
  line-height: 1.78;
  font-size: 1.05rem;
}

.final-section > .container strong {
  color: var(--prose-strong);
  font-weight: 700;
}

.search-terms-section .search-terms-list {
  list-style: none;
  padding: 14px 18px;
  margin: 12px 0;
  border-radius: 12px;
  background: linear-gradient(165deg, #f5f7fa 0%, #fafbfc 55%, #f7f8fb 100%);
  border: 1.5px solid #b0bec9;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 2px rgba(255, 255, 255, 0.6);
  columns: 2;
  column-gap: 24px;
}

.search-terms-section .search-terms-list li {
  position: relative;
  padding: 5px 0 5px 1.5em;
  color: #1e3a5f;
  font-size: 0.95rem;
  break-inside: avoid;
}

.search-terms-section .search-terms-list li::before {
  content: "🔍";
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 0.8em;
}

.faq-list {
  max-width: 860px;
}

.faq-item {
  border: 1px solid #b8c9d8;
  border-left: 4px solid #0e7490;
  border-radius: 10px;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
  border-color: #94b8c8;
}

.faq-item[open] {
  border-left-color: #0e7490;
  background: linear-gradient(180deg, #f0f7fb 0%, #ffffff 100%);
}

.faq-item summary {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0c4a6e;
  transition: color 0.2s;
}

.faq-item summary:hover {
  color: #0e7490;
}

.faq-item summary::before {
  content: "???;
  color: #0e7490;
  font-size: 14px;
  transition: transform 0.2s;
}

.faq-item[open] summary::before {
  transform: rotate(90deg);
  color: #0c4a6e;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 18px 16px 32px;
  margin: 0;
  color: #475569;
  line-height: 1.75;
  font-size: 14.5px;
  border-top: 1px solid #94a3b8;
  padding-top: 12px;
}

.faq-item a {
  color: #0369a1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item a:hover {
  color: #0e7490;
}

.footer-seo {
  margin: 6px 0 0;
  font-size: 12px;
  color: #9ca3af;
}

.footer-links {
  margin: 8px 0 0;
}

.footer-links a {
  color: #475569;
}

.seo-hub-section {
  padding-top: 10px;
  background: #e4ecf4;
}

.seo-hub-section h2 {
  font-size: clamp(20px, 3vw, 28px);
  margin: 0 0 16px;
  color: #0c4a6e;
}

.faq-section,
.search-terms-section,
.final-section,
.site-footer {
  background: #e4ecf4;
}

.hub-intro {
  color: var(--muted);
  max-width: 840px;
}

.hub-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: min(900px, 92%);
}


.hub-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.hub-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.hub-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.hub-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.detail-faq {
  margin-top: 20px;
}

.detail-faq h3 {
  margin: 0 0 10px;
}

.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 18px;
  font-size: 0.88rem;
  background: #fff;
  border: 1px solid #2d6a4f;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(6, 78, 59, 0.18);
}

.info-table tr:nth-child(odd) {
  background: #fff;
}

.info-table tr:nth-child(even) {
  background: #dff0e5;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid #c8ddd0;
  vertical-align: middle;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table th {
  width: 120px;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: #2d6a4f;
  border-right: 1px solid #c8ddd0;
}

.info-table td {
  color: #1e293b;
  font-weight: 500;
}

/* detail-main ?????? h3 ?????*/
.detail-main h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0c4a5a;
  margin: 22px 0 10px;
  padding: 7px 14px 7px 14px;
  border-left: 4px solid #0e7490;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 1px 5px rgba(15, 23, 42, 0.08);
  letter-spacing: 0.01em;
}

/* detail-main ??????? */
.detail-main p {
  color: #0f172a;
  line-height: 1.82;
  font-size: 0.97rem;
  font-weight: 500;
  margin: 0 0 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 7px;
}

.detail-main p:last-child {
  margin-bottom: 0;
}

/* detail-main ??????????/???????? */
.detail-main ol,
.detail-main ul {
  margin: 6px 0 14px;
  padding: 12px 16px 12px 2.1em;
  list-style-position: outside;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  border: 1px solid rgba(14, 116, 144, 0.14);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.05);
}

.detail-main ol li,
.detail-main ul li {
  color: #0f172a;
  line-height: 1.7;
  font-size: 0.97rem;
  font-weight: 500;
  margin-bottom: 7px;
}

.detail-main ol li:last-child,
.detail-main ul li:last-child {
  margin-bottom: 0;
}

.detail-main ol li strong,
.detail-main ul li strong {
  color: #0e7490;
  font-weight: 700;
}

@media (max-width: 900px) {
  .card-body {
    text-align: center;
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-wrap {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > li > a {
    padding: 10px 12px;
    border-radius: 6px;
  }

  .dropdown {
    position: static;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0 0 0 16px;
  }

  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown {
    display: none;
  }

  .has-dropdown.open > .dropdown {
    display: block;
  }
}

@media (max-width: 480px) {
  .page-home .section-title {
    display: block;
    text-align: center;
  }

  .thumb {
    padding: 10px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    row-gap: 18px;
  }

  .card-body {
    padding: 4px 8px;
  }

  .card h3 {
    font-size: 14px;
  }

  .btn-row {
    flex-wrap: wrap;
    gap: 6px;
    margin: 4px 0 2px;
  }

  .btn {
    font-size: 13px;
    padding: 5px 10px;
  }

  .search-terms-section .search-terms-list {
    columns: 1;
  }
}

/* ===== H5 详情页排版优化 ===== */
@media (max-width: 600px) {
  /* 减少 panel 内边距 */
  .panel {
    padding: 14px;
  }

  /* 图标 + 标题横排：grid 布局 */
  .detail-main {
    display: grid;
    grid-template-columns: 90px 1fr;
    column-gap: 14px;
  }

  .detail-main .detail-thumb {
    grid-column: 1;
    grid-row: 1;
    width: 90px;
    height: 90px;
    border-radius: 18px;
    margin-bottom: 0;
    align-self: center;
  }

  /* h2 位于图标右侧 */
  .detail-main > h2 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    font-size: clamp(13px, 3.8vw, 17px) !important;
    line-height: 1.3;
    padding: 10px 12px 10px 12px;
    border-left-width: 3px;
  }

  /* 其余子元素全部跨两列（含局内游戏视频块） */
  .detail-main > .info-table,
  .detail-main > h3,
  .detail-main > p,
  .detail-main > ol,
  .detail-main > ul,
  .detail-main > .btn-row,
  .detail-main > .detail-faq,
  .detail-main > .game-title-row,
  .detail-main > .game-video,
  .detail-main > .game-video-meta,
  .detail-main > .game-risk-note,
  .detail-main > .game-play-strip,
  .detail-main > .related-mini-games {
    grid-column: 1 / -1;
  }

  /* in-app 详情页：标题行后的章节 h2 全宽，避免叠进图标旁那一格 */
  .detail-main > .game-title-row ~ h2 {
    grid-column: 1 / -1;
    grid-row: auto;
    align-self: stretch;
    margin: 14px 0 8px;
    font-size: 0.93rem !important;
  }

  .detail-main > .game-title-row {
    margin-bottom: 10px;
  }

  .detail-main > .game-video {
    margin-top: 12px;
    border-radius: 10px 10px 0 0;
  }

  .detail-main > .game-video video {
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .detail-main > .game-video-meta {
    padding: 10px 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
  }

  .detail-main > .game-play-strip a {
    flex: 1 1 calc(50% - 10px);
    min-width: 140px;
  }

  .detail-main > .info-table {
    margin-top: 14px;
  }

  /* info-table 紧凑化 */
  .info-table th,
  .info-table td {
    padding: 8px 10px;
    font-size: 0.83rem;
  }

  .info-table th {
    width: 82px;
    font-size: 0.72rem;
  }

  /* h3 紧凑化 */
  .detail-main h3 {
    margin: 14px 0 8px;
    font-size: 0.93rem;
    padding: 6px 12px;
  }

  /* 段落紧凑化 */
  .detail-main p {
    font-size: 0.91rem;
    line-height: 1.72;
    padding: 7px 10px;
    margin-bottom: 8px;
  }

  /* 列表紧凑化 */
  .detail-main ol,
  .detail-main ul {
    padding: 10px 12px 10px 1.8em;
    margin-bottom: 10px;
  }

  .detail-main ol li,
  .detail-main ul li {
    font-size: 0.91rem;
    margin-bottom: 6px;
  }

  /* 下载按钮区域 */
  .detail-main .btn-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 14px 0;
  }

  .detail-main .btn-row .btn {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 10px 14px;
  }

  /* FAQ 紧凑化 */
  .faq-item summary {
    font-size: 0.91rem;
    padding: 10px 14px;
  }

  .faq-item p {
    font-size: 0.88rem;
  }
}

/* In-app mini-game hub + detail video blocks */
.in-app-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin: 18px 0 8px;
}

.in-app-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.in-app-game-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.12);
}

.in-app-game-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  background: #eef6fb;
}

.game-play-strip img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  background: #eef6fb;
  flex-shrink: 0;
}

.in-app-game-card span {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
}

.game-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
}

.game-title-row img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.game-video {
  margin: 16px 0 0;
  background: #0f172a;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.game-video video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.game-video-meta {
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  margin: 0 0 18px;
}

.game-video-meta ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
}

.game-video-meta li {
  margin-bottom: 4px;
  font-size: 0.92rem;
  color: var(--prose-body);
}

.game-risk-note {
  margin: 14px 0;
  padding: 12px 14px;
  border-left: 4px solid #f59e0b;
  background: #fffbeb;
  border-radius: 0 10px 10px 0;
  color: #78350f;
  font-size: 0.93rem;
}

.game-play-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 4px;
}

.game-play-strip a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
}

.game-play-strip a:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.related-mini-games {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

@media (max-width: 700px) {
  .related-mini-games {
    grid-template-columns: 1fr;
  }

  .in-app-game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .in-app-game-card {
    padding: 12px 8px;
  }

  .in-app-game-card span {
    font-size: 0.82rem;
  }

  .game-title-row {
    gap: 10px;
  }

  .game-title-row img {
    width: 48px;
    height: 48px;
  }

  .game-title-row h2 {
    font-size: 1rem;
    line-height: 1.3;
  }

  .game-play-strip {
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .in-app-game-grid {
    grid-template-columns: 1fr 1fr;
  }

  .game-play-strip a {
    flex: 1 1 100%;
  }
}

/* Editorial launch layout and small-screen overflow controls */
.prose-panel,
.content-section article,
.card-body,
.site-footer .container {
  min-width: 0;
  overflow-wrap: anywhere;
}

.under-review {
  margin-top: 28px;
}

.under-review ul {
  columns: 3;
  column-gap: 28px;
  padding-left: 1.2rem;
}

.under-review li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.under-review li span {
  color: var(--muted);
  font-size: 0.85em;
}

video,
iframe {
  max-width: 100%;
}

@media (max-width: 700px) {
  .under-review ul {
    columns: 1;
  }

  .prose-panel .info-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .btn-row {
    flex-wrap: wrap;
  }

  .btn-row .btn {
    max-width: 100%;
    white-space: normal;
  }
}
