@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@10..72,500;10..72,600;10..72,700&family=Source+Sans+3:wght@400;500;600&display=swap');

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

:root{
  --bg:#f8f4ef;
  --bg-card:#fffbf7;
  --panel:#fffbf7;
  --border:#e8dfd4;
  --accent:#b85c38;
  --accent-hover:#9a4a2a;
  --accent-soft:rgba(184,92,56,0.12);
  --text:#2c2420;
  --muted:#6b5b54;
  --warm-white:#fefdfb;
}

html,body{height:100%}
body{
  font-family:"Source Sans 3",system-ui,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 90%, rgba(184,92,56,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(184,92,56,0.04) 0%, transparent 50%);
  background-attachment:fixed;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.container{
  max-width:1380px;
  margin:0 auto;
  padding:0 1.5rem;
}

/* HEADER – warm top bar */
.site-header{
  position:sticky;
  top:0;
  z-index:40;
  background:var(--bg-card);
  border-bottom:1px solid var(--border);
  box-shadow:0 1px 0 rgba(44,36,32,0.04);
}
.site-header .container{
  display:flex;
  flex-direction:column;
  gap:0.75rem;
  padding:0.9rem 1.5rem 1rem;
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.site-logo{
  font-family:Fraunces,serif;
  font-weight:700;
  font-size:1.35rem;
  letter-spacing:-0.02em;
  color:var(--accent);
  text-decoration:none;
}
.nav-toggle{
  display:none;
  padding:0.5rem 0.75rem;
  font-size:1.2rem;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:8px;
  cursor:pointer;
  color:var(--text);
}
@media (min-width:769px){
  .nav-toggle{display:none !important}
  .site-nav{display:flex !important; flex-direction:row; flex-wrap:wrap}
}
@media (max-width:768px){
  .nav-toggle{display:block}
  .site-nav{
    display:none !important;
    order:3;
    width:100%;
    flex-direction:column;
    padding:0.75rem 0;
    margin:0.5rem 0 0;
    gap:0;
    border-top:1px solid var(--border);
    background:var(--bg);
    list-style:none;
  }
  .site-nav.is-open{display:flex !important}
  .site-nav li{margin:0; padding:0}
  .site-nav a{
    display:block;
    padding:0.75rem 1rem;
    min-height:48px;
    line-height:1.4;
    border-radius:0;
    border-bottom:1px solid var(--border);
  }
  .site-nav a:last-child{border-bottom:none}
}

.header-search{width:100%}
.header-search-form{
  display:flex;
  align-items:center;
  gap:0.5rem;
  padding:0.45rem 0.65rem;
  border-radius:10px;
  background:var(--bg);
  border:1px solid var(--border);
}
.header-search-input{
  flex:1;
  border:none;
  outline:none;
  background:transparent;
  font:inherit;
  font-size:0.9rem;
  color:var(--text);
  padding:0.25rem 0.4rem;
}
.header-search-input::placeholder{color:var(--muted)}
.header-search-btn{
  border:none;
  border-radius:8px;
  padding:0.45rem 0.9rem;
  font-size:0.85rem;
  font-weight:500;
  background:var(--accent);
  color:var(--warm-white);
  cursor:pointer;
}
.header-search-btn:hover{background:var(--accent-hover)}

/* 桌面端显示横向导航，移动端默认隐藏、点击 ☰ 后展开 */
.site-nav{
  list-style:none;
  display:none;
  flex-wrap:wrap;
  gap:0.3rem;
}
@media (min-width:769px){
  .site-nav{display:flex !important}
}
.site-nav a{
  font-size:0.85rem;
  padding:0.4rem 0.8rem;
  border-radius:8px;
  color:var(--muted);
}
.site-nav a:hover{
  color:var(--accent);
  background:var(--accent-soft);
}

/* 广告位 */
.ad-slot{
  background:var(--bg);
  border-bottom:1px solid var(--border);
}
.ad-slot--header{
  padding:0.75rem 0;
}
.ad-slot--middle{
  padding:1rem 0;
}
.ad-slot .container{
  max-width:1380px;
  margin:0 auto;
  padding:0 1.5rem;
}
.ad-slot-inner{
  text-align:center;
  min-height:90px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--panel);
  border:1px dashed var(--border);
  border-radius:12px;
}
.ad-slot--header .ad-slot-inner{min-height:90px}
.ad-slot--middle .ad-slot-inner{min-height:120px}
.ad-placeholder{
  font-size:0.85rem;
  color:var(--muted);
}

/* HERO */
.hero{
  padding:2.25rem 0 1.75rem;
  background:linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
  border-bottom:1px solid var(--border);
}
.hero .container{text-align:center}
.hero-label{
  font-size:0.8rem;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:var(--accent);
  margin-bottom:0.5rem;
}
.hero-title{
  font-family:Fraunces,serif;
  font-weight:700;
  font-size:clamp(1.85rem,4.5vw,2.5rem);
  letter-spacing:-0.03em;
  color:var(--text);
  margin-bottom:0.6rem;
}
.hero-desc{
  font-size:1.02rem;
  color:var(--muted);
  max-width:540px;
  margin:0 auto 1.5rem;
}
.hero-categories{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:0.5rem;
}
.hero-categories a{
  font-size:0.85rem;
  padding:0.45rem 1rem;
  border-radius:999px;
  background:var(--warm-white);
  border:1px solid var(--border);
  color:var(--text);
  text-decoration:none;
}
.hero-categories a:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:var(--warm-white);
}

/* HOME BOARD – masonry sections */
.home-board{padding:1.25rem 0 1.75rem}
.home-board .container{
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}
.home-row{padding:0}
.home-row-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  margin-bottom:1rem;
}
.home-row-title h2{
  font-family:Fraunces,serif;
  font-size:0.95rem;
  font-weight:700;
  color:var(--text);
  text-transform:uppercase;
  letter-spacing:0.2em;
  border-left:5px solid var(--accent);
  padding-left:0.85rem;
  line-height:1.3;
}
.home-row-title .see-all{
  font-size:0.8rem;
  font-weight:600;
  color:var(--accent);
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:0.08em;
}
.home-row-title .see-all:hover{text-decoration:underline}

/* Bento grid: first = 2×2 hero, every 6th = wide, rest dense */
.game-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:1rem;
  grid-auto-flow:dense;
  grid-auto-rows:minmax(0,auto);
}
.game-card{
  display:flex;
  flex-direction:column;
  border-radius:12px;
  overflow:hidden;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-top:4px solid var(--accent);
  box-shadow:0 3px 12px rgba(44,36,32,0.07);
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
  position:relative;
}
.game-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:var(--accent);
  opacity:0;
  transition:opacity 0.2s;
  z-index:1;
  border-radius:12px 0 0 12px;
}
.game-card:hover{
  transform:translateY(-4px) scale(1.01);
  box-shadow:0 14px 36px rgba(44,36,32,0.12);
  border-top-color:var(--accent-hover);
}
.game-card:hover::before{opacity:1}

/* Standard cards – 固定比例容器防拉伸，图片绝对定位填满，绝不拉伸 */
.game-card .thumb-wrap{
  display:block;
  width:100%;
  height:100px;
  min-height:100px;
  max-height:100px;
  overflow:hidden;
  flex-shrink:0;
  position:relative;
  background:var(--bg);
}
@media (min-width:769px){
  .game-card .thumb-wrap{
    height:auto;
    min-height:0;
    max-height:none;
    aspect-ratio:16/10;
  }
  .game-strip .game-card .thumb-wrap{
    height:auto;
    min-height:0;
    max-height:none;
    aspect-ratio:16/10;
  }
  /* PC 端第一板块：横向滚动改为网格，一屏展示多张卡片 */
  .game-strip{
    overflow:visible;
    margin:0;
    padding:0;
    scroll-snap-type:none;
  }
  .game-strip-inner{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    width:100%;
    gap:1rem;
    padding-right:0;
  }
  .game-strip .game-card{
    width:auto;
    min-width:0;
  }
  /* PC 端游戏网格：4 列，卡片更大更易点 */
  .game-grid{
    grid-template-columns:repeat(4,1fr);
  }
}
.game-card .thumb-wrap img{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
/* 无 JS 时未包在 thumb-wrap 里的缩略图也不拉伸 */
.game-card > img.thumb{
  width:100%;
  height:auto;
  aspect-ratio:16/10;
  object-fit:cover;
  object-position:center;
  display:block;
  background:var(--bg);
}
.game-card .thumb-wrap::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:60%;
  background:linear-gradient(to top, rgba(44,36,32,0.25) 0%, transparent 100%);
  pointer-events:none;
}
.game-card .body{
  padding:0.7rem 0.8rem 0.8rem;
  display:flex;
  flex-direction:column;
  min-height:0;
}
.game-card .cat{
  font-size:0.65rem;
  text-transform:uppercase;
  letter-spacing:0.12em;
  font-weight:600;
  color:var(--accent);
  margin-bottom:0.3rem;
  display:inline-block;
  padding:0.2em 0.5em;
  background:var(--accent-soft);
  border-radius:5px;
  width:fit-content;
}
.game-card h3{
  font-family:Fraunces,serif;
  font-size:0.9rem;
  font-weight:600;
  color:var(--text);
  margin-bottom:0.28rem;
}
.game-card .desc,
.game-card .snippet,
.game-card p{
  font-size:0.76rem;
  color:var(--muted);
  line-height:1.4;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* ─── Section 1: Horizontal strip (Pick & play) ─── */
.game-strip{
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  margin:0 -1.5rem;
  padding:0.5rem 1.5rem 1rem;
}
.game-strip-inner{
  display:flex;
  gap:1rem;
  padding-right:1rem;
  width:max-content;
}
.game-strip .game-card{
  flex-shrink:0;
  width:260px;
  min-width:260px;
  scroll-snap-align:start;
}
.game-strip .game-card .thumb-wrap{
  height:100px;
  min-height:100px;
  max-height:100px;
}
.game-strip .game-card .thumb-wrap::after{height:50%}

/* Think first / Move & shoot 均使用 .game-grid，见上方 .game-grid 规则 */

/* ─── Section 4: List (More to try) – row cards ─── */
.game-list{
  display:flex;
  flex-direction:column;
  gap:0.5rem;
}
.game-list .game-card{
  display:grid;
  grid-template-columns:80px 1fr;
  grid-template-rows:auto;
  align-items:center;
  gap:0;
  border-top:none;
  border-left:4px solid var(--accent);
  padding:0;
  min-height:0;
  grid-column:unset;
  grid-row:unset;
}
.game-list .game-card .thumb-wrap{
  width:80px;
  height:80px;
  min-height:80px;
  max-height:80px;
  flex-shrink:0;
  border-radius:0;
}
.game-list .game-card .thumb-wrap::after{display:none}
.game-list .game-card .body{
  padding:0.7rem 1rem;
  min-height:0;
}
.game-list .game-card .cat{
  margin-bottom:0.2rem;
}
.game-list .game-card h3{font-size:0.95rem}
.game-list .game-card .snippet,
.game-list .game-card p{-webkit-line-clamp:2}

/* TAGS / SEARCH / DETAIL HEADERS – editorial */
.tags-header,.search-header,.detail-header{
  padding:2.25rem 0 1.25rem;
}
.tags-header h1,.search-header h1,.detail-header h1{
  font-family:Fraunces,serif;
  font-size:1.5rem;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--text);
  border-left:5px solid var(--accent);
  padding-left:0.9rem;
  line-height:1.3;
}
.tags-desc,.search-desc{
  font-size:0.95rem;
  color:var(--muted);
  margin-top:0.6rem;
  margin-left:1.4rem;
  max-width:42ch;
}
.detail-meta{
  margin-top:0.35rem;
  font-size:0.8rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--accent);
}

/* HOME PROMISE */
.home-promise{
  padding:2.75rem 0 3.25rem;
  background:var(--bg-card);
  border-top:1px solid var(--border);
}
.promise-title{
  font-family:Fraunces,serif;
  font-size:1.55rem;
  font-weight:600;
  text-align:center;
  margin-bottom:1.75rem;
  color:var(--text);
}
.promise-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
  max-width:1020px;
  margin:0 auto;
}
.promise-item{
  text-align:center;
  padding:1.1rem 0.75rem;
  border-radius:12px;
  background:var(--warm-white);
  border:1px solid var(--border);
}
.promise-item h3{
  font-family:Fraunces,serif;
  font-size:1rem;
  font-weight:600;
  color:var(--accent);
  margin-bottom:0.5rem;
}
.promise-item p{
  font-size:0.88rem;
  color:var(--muted);
  line-height:1.5;
}

/* DETAIL GAME AREA */
.game-load-area{
  margin:1.75rem 0 2rem;
  border-radius:14px;
  border:1px solid var(--border);
  overflow:hidden;
  background:var(--bg);
}
.game-placeholder{
  position:relative;
  aspect-ratio:16/9;
  background:var(--bg);
}
.game-preview-image{
  width:100%;
  height:100%;
  object-fit:cover;
}
.game-loader-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:0.65rem;
  padding:2rem 1.6rem;
}
.game-loader-content h2{
  font-family:Fraunces,serif;
  font-size:1.15rem;
  font-weight:600;
  color:var(--text);
}
.game-loader-content p{
  font-size:0.9rem;
  color:var(--muted);
  max-width:34ch;
  text-align:center;
}
.start-btn{
  border-radius:10px;
  border:none;
  background:var(--accent);
  color:var(--warm-white);
  font:inherit;
  font-size:0.9rem;
  font-weight:600;
  padding:0.65rem 1.9rem;
  cursor:pointer;
}
.start-btn:hover{background:var(--accent-hover)}
.game-iframe-wrap{
  display:none;
  background:#000;
}
.game-iframe-wrap iframe{
  width:100%;
  aspect-ratio:16/9;
  border:none;
  min-height:500px;
}

.detail-content{
  margin:2rem 0 1.75rem;
  padding:2rem 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.detail-content h2{
  font-family:Fraunces,serif;
  font-size:1.08rem;
  font-weight:600;
  margin:1.5rem 0 0.7rem;
  color:var(--text);
}
.detail-content p{
  font-size:0.95rem;
  color:var(--text);
  margin-bottom:1rem;
}

/* Game description – explicit block */
.game-description{
  margin:0 0 1.5rem;
}

/* Share bar – detail & info pages */
.share-bar{
  display:flex;
  align-items:center;
  gap:0.6rem;
  flex-wrap:wrap;
  margin:1rem 0 1.5rem;
}
.share-bar .share-label{
  font-size:0.8rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--muted);
}
.share-bar .share-links{
  display:flex;
  align-items:center;
  gap:0.5rem;
}
.share-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--bg-card);
  color:var(--text);
  text-decoration:none;
  font-size:1rem;
  transition:background 0.2s, border-color 0.2s;
}
.share-btn:hover{
  background:var(--accent-soft);
  border-color:var(--accent);
  color:var(--accent);
}
.share-btn.share-copy{
  cursor:pointer;
  font-size:0.85rem;
  width:auto;
  padding:0 0.75rem;
  gap:0.35rem;
}

/* 页脚分享本站 */
.site-footer .share-bar-site{
  margin:1.25rem 0 1rem;
  padding-top:1.25rem;
  border-top:1px solid var(--border);
}

/* 详情页评论区块 */
.comments-section{
  margin:2.5rem 0 2rem;
  padding-top:2rem;
  border-top:1px solid var(--border);
}
.comments-section h2{
  font-family:Fraunces,serif;
  font-size:1.15rem;
  font-weight:600;
  margin-bottom:1.25rem;
  color:var(--text);
}
.comment-list{
  list-style:none;
  padding:0;
  margin:0;
}
.comment-item{
  padding:1rem 0 1.25rem;
  border-bottom:1px solid var(--border);
}
.comment-item:last-child{border-bottom:none}
.comment-meta{
  display:flex;
  align-items:center;
  gap:0.6rem;
  margin-bottom:0.5rem;
  flex-wrap:wrap;
}
.comment-author{
  font-weight:600;
  font-size:0.9rem;
  color:var(--text);
}
.comment-date{
  font-size:0.78rem;
  color:var(--muted);
}
.comment-text{
  font-size:0.9rem;
  color:var(--text);
  line-height:1.5;
}

/* 评论表单 */
.comment-form{
  margin-top:2rem;
  padding-top:1.5rem;
  border-top:1px solid var(--border);
}
.comment-form-label{
  display:block;
  font-size:0.85rem;
  font-weight:600;
  color:var(--text);
  margin-bottom:0.35rem;
}
.comment-form-input,
.comment-form-textarea{
  width:100%;
  max-width:420px;
  padding:0.6rem 0.75rem;
  margin-bottom:1rem;
  font:inherit;
  font-size:0.9rem;
  border:1px solid var(--border);
  border-radius:8px;
  background:var(--bg-card);
  color:var(--text);
}
.comment-form-input:focus,
.comment-form-textarea:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 2px var(--accent-soft);
}
.comment-form-textarea{
  resize:vertical;
  min-height:80px;
}
.comment-form-btn{
  padding:0.55rem 1.25rem;
  font:inherit;
  font-size:0.9rem;
  font-weight:600;
  color:var(--warm-white);
  background:var(--accent);
  border:none;
  border-radius:8px;
  cursor:pointer;
}
.comment-form-btn:hover{
  background:var(--accent-hover);
}

.more-head{
  font-family:Fraunces,serif;
  font-size:1.15rem;
  font-weight:600;
  margin:2.5rem 0 1.2rem;
  color:var(--text);
}
.more-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1.1rem;
  margin-bottom:2.8rem;
}
.more-card{
  border-radius:14px;
  overflow:hidden;
  background:var(--bg-card);
  border:1px solid var(--border);
  box-shadow:0 2px 8px rgba(44,36,32,0.06);
  transition:border-color 0.2s, box-shadow 0.2s;
}
.more-card:hover{
  border-color:var(--accent);
  box-shadow:0 4px 16px rgba(44,36,32,0.08);
}
.more-card img{
  width:100%;
  height:90px;
  object-fit:cover;
  background:var(--bg);
}
.more-body{
  padding:0.7rem 0.85rem;
  font-size:0.9rem;
  font-weight:500;
  color:var(--text);
}

/* INFO PAGES */
.info-page{
  max-width:720px;
  margin:2.5rem auto 3rem;
  padding:0 1.6rem;
}
.info-page h1{
  font-family:Fraunces,serif;
  font-size:1.8rem;
  font-weight:600;
  letter-spacing:-0.04em;
  margin-bottom:1.25rem;
  color:var(--text);
}
.info-page h2{
  font-family:Fraunces,serif;
  font-size:1.05rem;
  font-weight:600;
  margin:1.75rem 0 0.6rem;
  color:var(--text);
}
.info-page p,.info-page li{
  font-size:0.95rem;
  color:var(--text);
  margin-bottom:1rem;
}
.info-page ul{
  padding-left:1.4rem;
  margin-bottom:0.8rem;
}
.info-page a{color:var(--accent)}

/* FOOTER – multi-column (index) */
.site-footer{
  border-top:1px solid var(--border);
  background:var(--bg-card);
  padding:2.25rem 0 1.5rem;
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
  margin-bottom:2rem;
}
.footer-col{min-width:0}
.footer-brand{
  font-family:Fraunces,serif;
  font-weight:700;
  font-size:1.15rem;
  color:var(--accent);
  margin-bottom:0.75rem;
}
.footer-heading{
  font-size:0.9rem;
  font-weight:600;
  color:var(--text);
  margin-bottom:0.75rem;
}
.footer-links{list-style:none}
.footer-links li{margin-bottom:0.45rem}
.footer-links a{
  font-size:0.88rem;
  color:var(--muted);
  text-decoration:none;
}
.footer-links a:hover{color:var(--accent)}
.footer-copy{
  font-size:0.85rem;
  color:var(--muted);
  text-align:center;
  padding-top:1rem;
  border-top:1px solid var(--border);
}

/* Footer inner (single row for tags/search/detail/info) */
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:1.5rem;
}
.footer-inner .footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  list-style:none;
}
.footer-inner .footer-links a{
  font-size:0.88rem;
  color:var(--muted);
  text-decoration:none;
}
.footer-inner .footer-links a:hover{color:var(--accent)}
.footer-inner + .footer-copy,
.footer-inner ~ .footer-copy{
  padding-top:1rem;
  border-top:1px solid var(--border);
  margin-top:0;
}

/* RESPONSIVE – unified card sizes */
@media (min-width:1280px){
  .game-grid{grid-template-columns:repeat(4,1fr)}
}
@media (max-width:1100px){
  .game-grid{grid-template-columns:repeat(4,1fr)}
}
@media (max-width:960px){
  .game-grid{grid-template-columns:repeat(4,1fr)}
  .more-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
  .promise-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:768px){
  .game-grid{grid-template-columns:repeat(3,1fr)}
  .more-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .game-strip{margin:0 -1.1rem; padding-left:1.1rem; padding-right:1.1rem}
  .game-strip .game-card{width:82vw; min-width:240px}
}
@media (max-width:640px){
  .container{padding:0 1.1rem}
  .game-strip .game-card{width:85vw; min-width:220px}
  .game-list .game-card{grid-template-columns:72px 1fr}
  .game-list .game-card .thumb-wrap{width:72px; height:72px; min-height:72px; max-height:72px}
  .game-grid{grid-template-columns:repeat(2,1fr); gap:0.85rem}
  .game-card .thumb-wrap{height:100px; min-height:100px; max-height:100px}
  .more-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .promise-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-inner{flex-direction:column; align-items:flex-start}
  .home-row-title h2{font-size:0.85rem; letter-spacing:0.12em}
}
@media (max-width:420px){
  .game-grid{grid-template-columns:1fr}
  .more-grid{grid-template-columns:1fr}
  .game-strip .game-card{min-width:88vw}
  .game-list .game-card .thumb-wrap{width:64px; height:64px; min-height:64px; max-height:64px}
  .game-list .game-card{grid-template-columns:64px 1fr}
}
