:root{
  --bg:#0b1020;--card:rgba(255,255,255,0.06);--text:#f4f7fb;--muted:#a9b4c7;
  --accent:#6ee7b7;--accent2:#60a5fa;--border:rgba(255,255,255,0.12);
  --radius:20px;--shadow:0 20px 60px rgba(0,0,0,.35);--max:1100px;
}

*{box-sizing:border-box;margin:0;padding:0}

body{
  font-family:Inter,system-ui;
  background:linear-gradient(180deg,#0a0f1d,#0b1020);
  color:var(--text)
}

a{text-decoration:none;color:inherit}

.container{
  width:min(var(--max),calc(100% - 32px));
  margin:auto
}

header{
  position:sticky;
  top:0;
  background:rgba(11,16,32,.7);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08)
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700
}

.logo-box{
  width:40px;
  height:40px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#07111f
}

h1{
  font-size:clamp(2rem,4vw,3rem);
  margin:40px 0 10px
}

.sub{
  color:var(--muted);
  margin-bottom:30px
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:var(--shadow);
  transition:.25s
}

.card:hover{
  transform:translateY(-4px)
}

.cover{
  aspect-ratio:1/1;
  background:linear-gradient(135deg,#1f2937,#111827);
  display:grid;
  place-items:center;
  font-size:1.2rem;
  color:var(--muted)
}
.cover img{
  width:100%;
  height:100%;
  object-fit:cover
}

.content{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1
}

.title{
  font-weight:600
}

.desc{
  font-size:.9rem;
  color:var(--muted);
  flex:1
}

.links{
  display:flex;
  gap:10px;
  margin-top:8px
}

.btn{
  padding:10px 12px;
  border-radius:10px;
  font-size:.85rem;
  font-weight:600
}

.play{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#06101c
}

.store{
  border:1px solid var(--border);
  background:rgba(255,255,255,.05)
}

footer{
  margin-top:60px;
  border-top:1px solid rgba(255,255,255,.08);
  padding:20px 0;
  color:var(--muted);
  font-size:.9rem;
  text-align:center
}

@media(max-width:900px){
  .grid{grid-template-columns:1fr 1fr}
}

@media(max-width:600px){
  .grid{grid-template-columns:1fr}
}
