/* /doss3/games/games.css */
:root{
  --bg:#05070a;
  --card:#0c1016;
  --card2:#10161f;
  --txt:#e9f1ff;
  --muted:#9fb2cc;
  --accent:#35ff7a;
  --warn:#ffcf5a;
  --danger:#ff4d6d;
  --radius:16px;
}
*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 10% 0%, #0c1a2a 0%, var(--bg) 55%);
  color:var(--txt);
}
.wrap{ max-width:980px; margin:0 auto; padding:18px; }
.top{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  margin-bottom:14px;
}
.brand{
  display:flex; flex-direction:column;
}
.brand .t{ font-weight:800; letter-spacing:0.2px; }
.brand .s{ color:var(--muted); font-size:13px; margin-top:2px; }

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
@media(min-width:880px){
  .grid{ grid-template-columns: 1.25fr 0.75fr; }
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding:14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.h2{ margin:0 0 10px 0; font-size:16px; color:#d7e6ff; }

.gamesList{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
@media(min-width:560px){
  .gamesList{ grid-template-columns: 1fr 1fr; }
}
.gameBtn{
  display:flex; flex-direction:column; gap:6px;
  text-decoration:none;
  padding:14px;
  border-radius:14px;
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  color:var(--txt);
  transition: transform .08s ease, border-color .12s ease;
}
.gameBtn:hover{ transform: translateY(-1px); border-color: rgba(53,255,122,0.45); }
.gameBtn .name{ font-weight:800; }
.gameBtn .desc{ color:var(--muted); font-size:13px; }

.ctaBlink{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  background: rgba(53,255,122,0.12);
  border:1px solid rgba(53,255,122,0.45);
  color:var(--txt);
  font-weight:900;
  letter-spacing:0.2px;
  animation: blink 1.05s infinite;
}
@keyframes blink{
  0%{ filter:brightness(1); transform:scale(1); box-shadow:0 0 0 rgba(53,255,122,0); }
  50%{ filter:brightness(1.25); transform:scale(1.02); box-shadow:0 0 22px rgba(53,255,122,0.25); }
  100%{ filter:brightness(1); transform:scale(1); box-shadow:0 0 0 rgba(53,255,122,0); }
}

.adBox{
  display:block;
  text-decoration:none;
  padding:12px;
  border-radius:14px;
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  color:var(--txt);
}
.adBox:hover{ border-color: rgba(255,207,90,0.5); }
.adMuted{ opacity:0.75; }
.adBadge{
  display:inline-flex;
  font-size:12px;
  color:#111;
  background: var(--warn);
  padding:4px 8px;
  border-radius:999px;
  font-weight:800;
}
.adTitle{ margin-top:10px; font-weight:900; }
.adCta{ margin-top:6px; color:var(--muted); font-size:13px; }

.small{ color:var(--muted); font-size:12px; line-height:1.35; }
.back{
  color:var(--muted);
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.back:hover{ border-color: rgba(255,255,255,0.14); }
.hr{ height:1px; background: rgba(255,255,255,0.06); margin:12px 0; }

.adMedia{
  width:100%;
  aspect-ratio: 16/9;
  border-radius:12px;
  overflow:hidden;
  margin-top:10px;
  border:1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.adMedia .adImg{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.adMedia.adPh{ background: rgba(255,255,255,0.04); }
.adLoading{ opacity:0.85; }

.adMedia{width:100%;aspect-ratio:16/9;border-radius:12px;overflow:hidden;margin-top:10px;border:1px solid rgba(255,255,255,0.08);background: rgba(255,255,255,0.02);}
.adMedia .adImg{width:100%;height:100%;object-fit:cover;display:block;}
.adMedia.adPh{background: rgba(255,255,255,0.04);}
.adLoading{opacity:0.85;}


