.game-page{
  border-radius:12px;
  border:1px solid rgba(170,190,255,.12);
  box-shadow:0 26px 80px rgba(0,0,0,.55);
  background:
    radial-gradient(760px 280px at 14% 0%, rgba(67,217,255,.16), transparent 58%),
    radial-gradient(760px 280px at 86% 0%, rgba(143,124,255,.18), transparent 58%),
    linear-gradient(180deg, rgba(14,20,42,.82), rgba(7,10,24,.72));
  padding:28px;
  gap:26px;
}

.game-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
  align-items:start;
}

header.game-hero{
  background:transparent;
  border:0;
  box-shadow:none;
  backdrop-filter:none;
}

.game-hero-title{
  display:grid;
  gap:10px;
  max-width:820px;
}

.game-hero-title h1{
  margin:0;
  font-size:38px;
  line-height:1.08;
  letter-spacing:-.6px;
  font-weight:950;
}

.game-hero-title p{
  margin:0;
  max-width:720px;
  color:var(--muted);
  font-size:15px;
  line-height:1.65;
}

.game-hero-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  font-size:12px;
  color:var(--muted);
}

.game-hero-meta .badge{
  border-radius:8px;
  padding:6px 9px;
}

.download-big{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:230px;
  padding:15px 22px;
  border-radius:9px;
  border:1px solid rgba(67,217,255,.5);
  background:linear-gradient(135deg, rgba(67,217,255,.24), rgba(143,124,255,.34));
  color:#fff;
  font-weight:950;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  cursor:pointer;
  overflow:hidden;
  box-shadow:0 18px 42px rgba(67,217,255,.14);
  transition:.16s ease;
}

.download-big span.icon{
  font-size:18px;
}

.download-big:hover{
  transform:translateY(-1px);
  border-color:rgba(67,217,255,.72);
  box-shadow:0 22px 52px rgba(67,217,255,.2);
}

.download-big::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.18), transparent);
  transform:translateX(-120%);
  transition:transform .45s ease;
}

.download-big:hover::before{
  transform:translateX(120%);
}

.game-summary{
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
  gap:26px;
  align-items:start;
}

.game-cover{
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(170,190,255,.14);
  background:linear-gradient(135deg, rgba(67,217,255,.14), rgba(143,124,255,.18));
  aspect-ratio:3 / 4.15;
  position:relative;
  box-shadow:0 22px 60px rgba(0,0,0,.45);
}

.game-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.96;
  transform:scale(1.015);
  filter:saturate(1.04) contrast(1.04);
}

.game-cover::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 44%, rgba(5,7,17,.72));
}

.game-summary-info{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  align-content:flex-start;
}

.info-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.info-chips .badge{
  font-size:11px;
  border-radius:8px;
}

.info-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  font-size:12px;
  color:var(--muted);
}

.info-stats .stat-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:11px 12px;
}

.game-summary-download{
  margin-top:2px;
}

.game-section{
  padding:18px;
}

.game-section + .game-section{
  margin-top:0;
}

.game-section h2{
  margin:0 0 12px;
  font-size:18px;
  letter-spacing:-.15px;
}

.game-section h3{
  margin:10px 0 7px;
  font-size:12px;
  color:#9aa8c7;
  text-transform:uppercase;
  letter-spacing:.1em;
}

.game-section p,
.game-section li{
  font-size:14px;
  color:#dfe6ff;
  line-height:1.7;
}

.game-section ul{
  margin:6px 0 0;
  padding-left:19px;
}

.requirements-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.requirements-block{
  border-radius:8px;
  border:1px solid rgba(170,190,255,.12);
  background:rgba(7,10,24,.72);
  padding:14px;
}

.screenshots{
  margin-top:0;
}

.screenshots-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.screenshot{
  border-radius:9px;
  overflow:hidden;
  border:1px solid rgba(170,190,255,.12);
  background:#02040a;
  cursor:pointer;
  transition:.16s ease;
}

.screenshot:hover{
  transform:translateY(-2px);
  border-color:rgba(67,217,255,.38);
}

.screenshot img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio:16 / 9;
  display:block;
}

.tags{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.tags li{
  font-size:12px;
}

.tags .tag-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 10px;
  border-radius:8px;
  border:1px solid rgba(170,190,255,.12);
  background:rgba(5,7,17,.36);
  color:var(--muted);
}

.info-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 7px;
  font-size:13px;
}

.info-table tr{
  background:rgba(7,10,24,.58);
}

.info-table tr:nth-child(odd){
  background:rgba(255,255,255,.035);
}

.info-table th,
.info-table td{
  padding:10px 12px;
  border:0;
}

.info-table th{
  text-align:left;
  color:var(--muted);
  width:34%;
  border-radius:8px 0 0 8px;
}

.info-table td{
  border-radius:0 8px 8px 0;
}

.comments{
  margin-top:0;
}

.comment-form{
  border-radius:10px;
  border:1px solid rgba(170,190,255,.12);
  background:rgba(7,10,24,.72);
  padding:16px;
  display:grid;
  gap:11px;
}

.comment-form-row{
  display:grid;
  gap:7px;
}

.comment-form label{
  font-size:12px;
  color:var(--muted);
}

.comment-form input,
.comment-form textarea{
  border-radius:8px;
  border:1px solid rgba(170,190,255,.14);
  background:rgba(5,7,17,.72);
  color:var(--text);
  padding:10px 11px;
  font-size:13px;
  resize:vertical;
}

.comment-form textarea{
  min-height:110px;
}

.comment-form input:focus,
.comment-form textarea:focus{
  outline:none;
  border-color:rgba(67,217,255,.46);
  box-shadow:0 0 0 4px rgba(67,217,255,.08);
}

.comment-form-actions{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.comment-submit{
  border-radius:8px;
  border:1px solid rgba(67,217,255,.55);
  background:linear-gradient(135deg, rgba(67,217,255,.24), rgba(143,124,255,.34));
  padding:10px 17px;
  font-size:13px;
  font-weight:900;
  cursor:pointer;
  color:white;
}

.cf-placeholder{
  font-size:11px;
  color:var(--muted);
  padding:9px 10px;
  border-radius:8px;
  border:1px dashed rgba(170,190,255,.18);
}

.comments-list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.comment{
  border-radius:9px;
  border:1px solid rgba(170,190,255,.12);
  background:rgba(7,10,24,.72);
  padding:12px 14px;
}

.comment-header{
  display:flex;
  justify-content:space-between;
  gap:8px;
  align-items:baseline;
  margin-bottom:7px;
}

.comment-author{
  font-weight:800;
  font-size:13px;
}

.comment-date{
  font-size:11px;
  color:var(--muted);
}

.comment-body{
  font-size:13px;
  color:#dfe6ff;
  line-height:1.55;
}

@media (max-width:900px){
  .game-page{
    padding:20px;
  }

  .game-hero{
    grid-template-columns:1fr;
  }

  .game-hero-title h1{
    font-size:30px;
  }

  .download-big{
    width:100%;
  }

  .game-summary{
    grid-template-columns:220px minmax(0,1fr);
    gap:18px;
  }

  .info-stats{
    grid-template-columns:1fr;
  }
}

@media (max-width:650px){
  .game-page{
    padding:14px 12px 18px;
  }

  .game-summary{
    grid-template-columns:1fr;
  }

  .game-cover{
    max-width:260px;
  }

  .requirements-grid,
  .screenshots-grid{
    grid-template-columns:1fr;
  }

  .game-hero-title h1{
    font-size:25px;
  }
}