body{
  margin:0;
  font-family: system-ui, -apple-system, sans-serif;
  background:#0f1115;
  color:#e8eaf0;
}

.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 16px 60px;
}

header{
  display:flex;
  align-items:center;
  gap:16px;
  padding: 14px 0 18px;
}

.brand{
  width:72px;
  height:72px;
  border-radius:18px;
  object-fit:cover;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

h1{
  font-size: 26px;
  margin:0;
}

.lead{
  margin:6px 0 0;
  color: rgba(232,234,240,0.78);
  line-height:1.5;
}

.section{
  margin-top: 26px;
}

.section h2{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: .2px;
}

.section-lead{
  margin: 0 0 16px;
  color: rgba(232,234,240,0.78);
  line-height: 1.6;
}

.game-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.game-item{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap:14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 25px rgba(0,0,0,0.30);
}

.game-thumb{
  width:160px;
  height:120px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(255,255,255,0.05);
}

.game-text h3{
  margin:0 0 6px;
  font-size: 18px;
}

.game-text p{
  margin:0;
  color: rgba(232,234,240,0.78);
  line-height: 1.6;
}

.actions{
  margin-top: 10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 800;
  background: #ffffff;
  color:#111;
}

.btn.primary{
  background:#0d6efd;
  color:#fff;
}

small.note{
  display:block;
  margin-top:10px;
  color: rgba(232,234,240,0.6);
}

/* ===== Base ===== */
body{
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", sans-serif;
  background:#ffffff;
  color:#111;
  padding:24px;
  line-height:1.6;
}

h1,h2{ margin:0 0 12px; }
p{ margin:0 0 12px; }

.section-lead{
  color:#333;
  max-width: 920px;
}

/* ===== Header (brand) ===== */
.site-header{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.brand-logo{
  width:64px;
  height:64px;
  border-radius:14px;
  object-fit:cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

.tagline{
  color:#333;
  max-width: 920px;
}

/* ===== Game card ===== */
.game-card{
  display:flex;
  gap:18px;
  align-items:flex-start;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:16px;
  padding:16px;
  margin:18px 0;
  max-width: 920px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

/* Thumbnail: "about 5cm" look */
.game-card img{
  width: 200px;     /* ←ここがサイズ。小さすぎたら 220/240 に */
  height: 140px;    /* ←縦も固定で整う */
  border-radius:14px;
  object-fit:cover;
  flex: 0 0 auto;
  background:#f3f5f7;
  border:1px solid rgba(0,0,0,0.06);
}

/* Text area */
.game-info{ flex:1; }

.game-info h2{
  font-size:20px;
  margin:0 0 6px;
}

.date{
  font-size:13px;
  color:#666;
  margin-bottom:10px;
}

.comment{
  color:#222;
  margin-bottom:14px;
}

/* Cute clean button */
.play-btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background: linear-gradient(135deg, #4f9cff, #79ddff);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  box-shadow: 0 10px 18px rgba(79,156,255,0.25);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.play-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(79,156,255,0.30);
  opacity: 0.95;
}

/* Small screens */
@media (max-width: 680px){
  .game-card{ flex-direction:column; }
  .game-card img{
    width: 100%;
    height: 180px;
  }
}

/* ===== 文字をはっきり表示する調整 ===== */

body {
  color: #222;
}

.section-lead,
.comment,
.tagline {
  color: #333;
}

.date {
  color: #777;
}

/* ===== 強制的に本文を濃くする（最終上書き） ===== */
.tagline,
.section-lead,
.comment,
.game-info p,
.game-card p,
p {
  color: #222 !important;
  opacity: 1 !important;
  filter: none !important;
}


/* === Game card layout adjustment === */
.game-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* サムネイルを小さく */
.game-card img {
  width: 220px;      /* ←ここで大きさ調整 */
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* 右側テキスト */
.game-info {
  flex: 1;
}

/* コメント読みやすく */
.comment {
  color: #333;
  opacity: 1;
  line-height: 1.7;
}

.game-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.game-card img {
  width: 260px;   /* ← ここで画像サイズ調整 */
  height: auto;
  border-radius: 12px;
  flex-shrink: 0;
}

.game-info {
  flex: 1;
}

