/* main09 — 派生自 main04：暖色柔光、通栏首屏、下区收窄、商品卡格、去粗野网纹与等宽字 */

:root{
  --bg:#fff5ee;
  --peach:#ffe0d0;
  --coral:#e86a4a;
  --ink:#2a1f1c;
  --soft:#6b5d56;
  --line: rgba(42,31,28,.12);
  --radius: 18px;
  --container: 900px;
  --wide: 1120px;
}

*{ box-sizing: border-box; }
html, body{ min-height: 100%; }
body.m09{
  margin: 0;
  font-family: "Avenir Next", "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
a{ color: inherit; text-decoration: none; }
button{ font: inherit; }

.m09 .frame{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.m09 .main-tight{ width: min(var(--container), calc(100% - 32px)); }

.m09 .bar{
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 8;
  box-shadow: 0 1px 0 rgba(255,255,255,.7);
}
.m09 .bar .frame{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  padding: 10px 0 12px;
  min-height: 52px;
  box-sizing: content-box;
}
.m09 .bar .brand{ flex: 0 0 auto; }
.m09 .bar .nav{
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 2px;
  min-width: 0;
  padding: 0 8px;
}
.m09 .bar .cta{ flex: 0 0 auto; display: flex; gap: 8px; align-items: center; }
.m09 .block{
  border: 0;
  border-radius: 12px;
  background: linear-gradient(140deg, #e86a4a, #ffb59a);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  width: 40px;
  height: 40px;
  box-shadow: 0 8px 22px rgba(232, 106, 74, .28);
}
.m09 .title{ font-size: 14px; }
.m09 .nav a{
  border: 0;
  background: transparent;
  color: #6a5e58;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
}
.m09 .nav a:hover{ color: #e86a4a; background: rgba(232,106,74,.08); }
.m09 .nav a.active{ color: #b84228; background: rgba(255, 200, 180, .4); }
.m09 .bar .btn{
  border: 0;
  border-radius: 999px;
  background: #f4ebe6;
  color: #3a302c;
  font-weight: 700;
}
.m09 .bar .btn.solid{ background: var(--coral); color: #fff; }

/* 通栏首屏 */
.m09 .hero-bleed{
  width: 100%;
  background: linear-gradient(120deg, #ffdad0, #fff5ee 45%, #e8f4f1 100%);
  border-bottom: 1px solid rgba(232,106,74,.15);
}
.m09 .hero-bleed .hero{
  width: min(var(--wide), calc(100% - 32px));
  margin: 0 auto;
}
.m09 .hero{ padding: 36px 0 32px; }
.m09 .hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  align-items: start;
}
.m09 .hero-left{
  border: 0;
  min-height: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.m09 .hero-left .label{ margin-bottom: 12px; }
.m09 .hero-left h1{ margin-top: 0; }
.m09 .label{
  display: inline-block;
  border: 0;
  color: #c14b32;
  background: rgba(255,255,255,.55);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.m09 .hero h1{ font-size: 36px; line-height: 1.2; color: #2a1f1c; letter-spacing: -0.01em; }
.m09 .hero p{ color: #5a504c; font-size: 15px; line-height: 1.8; }
.m09 .hero-actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.m09 .hero .btn{
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: inherit;
}
.m09 .hero .btn.solid{ background: var(--coral); color: #fff; border: 0; }
.m09 .hero .btn:not(.solid){
  background: #fff;
  color: #3a302c;
  border: 1px solid var(--line);
}

.m09 .hero-right{
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 20px 50px rgba(60, 40, 30, .12);
  border-radius: var(--radius);
  min-height: 0;
  overflow: hidden;
  padding-bottom: 6px;
}
.m09 .hero-right .stripe{
  height: 4px;
  margin: 0 20px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--coral), rgba(31,24,21,.35), transparent);
  opacity: 0.85;
}
.m09 .panel{ padding: 20px; }
.m09 .hero-feats.panel{ padding-bottom: 12px; }
.m09 .feat-row{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid #f0e8e2;
  border-radius: 0;
  background: transparent;
  padding: 14px 0;
}
.m09 .feat-row:last-of-type{ border-bottom: 0; }
.m09 .feat-n{
  flex: 0 0 auto;
  min-width: 40px;
  text-align: center;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 0;
  color: #fff;
  background: var(--coral);
  border-radius: 8px;
}
.m09 .feat-main{ min-width: 0; flex: 1; }
.m09 .feat-title{
  color: #2a1f1c;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
}
.m09 .feat-desc{ color: #6b5d56; font-size: 13px; line-height: 1.55; }

/* 热门游戏道具：浅色底、网格卡片（无价格） */
.m09 .section{ padding: 28px 0; }
.m09 .games-section.section{
  margin: 0;
  padding: clamp(48px, 8vw, 88px) 0 clamp(72px, 10vw, 120px);
  background: var(--bg);
}
.m09 .section .head{
  max-width: 38em;
  margin: 0 0 26px;
  text-align: left;
}
.m09 .section .head h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.m09 .section .head p{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--soft);
}

.m09 .glist{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.m09 .gitem{
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(30, 20, 12, .1);
  border: 1px solid rgba(42, 31, 28, 0.09);
  transition: transform .15s ease, box-shadow .15s ease;
}
.m09 .gitem:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(30, 20, 12, .14);
}
.m09 .gleft{ display: flex; flex-direction: row; align-items: flex-start; gap: 12px; }
.m09 .gthumb{
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 0;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
}
.m09 .gthumb--has-img{
  background: #f0eae6 none !important;
}
.m09 .gthumb img{
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m09 .gthumb.a{ background: linear-gradient(120deg, #ffcdb8, #ffe0d0); }
.m09 .gthumb.b{ background: linear-gradient(120deg, #c8e8e0, #e8f4f1); }
.m09 .gthumb.c, .m09 .gthumb.d, .m09 .gthumb.e, .m09 .gthumb.f, .m09 .gthumb.g,
.m09 .gthumb.h, .m09 .gthumb.i, .m09 .gthumb.j{ background: linear-gradient(120deg, #ffe8e0, #e8f4f1); }

.m09 .gmeta{ min-width: 0; flex: 1; }
.m09 .gmeta .code{
  display: block;
  border: 0;
  background: none;
  padding: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.35;
}
.m09 .td{
  font-size: 12px;
  color: #84756d;
  line-height: 1.4;
}

.m09 .gitem a.buy{
  box-sizing: border-box;
  width: 100%;
  border-radius: 10px;
  border: 0;
  background: #1f1815;
  color: #fff;
  height: 40px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity .15s ease, transform .05s ease;
}
.m09 .gitem a.buy:hover{ opacity: .92; color: #fff; }
.m09 .gitem a.buy:active{ transform: translateY(1px); }

.m09 .glist-pagination{
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.m09 .games-view-all{
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
.m09 .games-empty{
  grid-column: 1 / -1;
  margin: 0;
  padding: 36px 16px;
  text-align: center;
  color: var(--soft);
  font-size: 14px;
}

.m09 .section.why{ border: 0; }
.m09 .section.why.why-section{
  padding: clamp(40px, 6vw, 64px) 0 clamp(48px, 8vw, 80px);
  background: var(--bg);
}
.m09 .why .head{
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 22px;
  max-width: 36em;
}
.m09 .why .head h2{
  font-size: clamp(22px, 2.8vw, 26px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.m09 .why .head p{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--soft);
}
.m09 .why-zine{ display: block; }
.m09 .keys{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: #fff0e8;
  border: 0;
  border-radius: 14px;
  padding: 4px 4px 6px 4px;
  box-shadow: 0 10px 30px rgba(50, 30, 20, .08);
}
.m09 .key{
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  padding: 14px 12px 16px 12px;
  background: #fff7f2;
  border: 0;
  border-radius: 12px;
  border-bottom: 0;
  gap: 0 8px;
}
.m09 .key > div:not(.n){ min-width: 0; }
.m09 .n{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fff;
  color: #e86a4a;
  font-size: 12px;
  font-weight: 800;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.m09 .key h3{
  color: #2a1f1c;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
}
.m09 .key p{
  color: #6b5d56;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}
@media (min-width: 800px){
  .m09 .glist{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px){
  .m09 .hero-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .m09 .glist{ grid-template-columns: 1fr; }
  .m09 .keys{ grid-template-columns: 1fr; }
  .m09 .hero-bleed .frame{ width: 100%; padding: 0 16px; }
}
.m09 .footer{ background: #2a1f1c; color: #e8d8cc; padding: 0 0 20px; }
.m09 .foot{
  max-width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 24px;
  padding: 24px 16px 4px;
}
.m09 .foot .left{ flex: 0 0 auto; min-width: 160px; }
.m09 .foot .ftitle, .m09 .foot, .m09 .foot a{ color: #e8d8cc; }
.m09 .foot .right{ display: flex; flex-wrap: wrap; align-items: center; gap: 10px 8px; justify-content: flex-end; flex: 1 1 auto; }
.m09 .foot .right a{ border: 0; color: #e8d8cc; padding: 6px 10px; border-radius: 8px; }
.m09 .foot .right a:hover{ color: #ffb8a0; }
.m09 .foot .sub{ color: #c4b4a6; }
.m09 .copy{
  text-align: center;
  color: rgba(255, 220, 200, .45);
  font-size: 12px;
  max-width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 16px 8px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.m09 .bar .nav a{ font-size: 12px; padding: 6px 10px; }

/* 清理 main04 的全页网格与零圆角继承 */
.m09 body{
  background-image: none;
}
