:root{
  --bg:#05050a;
  --panel:#0f0f14;
  --accent:#00f5ff;
  --accent-2:#8a2be2;
  --muted:#9aa3a8;
}
*{box-sizing:border-box}
body{
  margin:0;font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
  background:var(--bg);color:#fff;line-height:1.5;
}
header{
  display:flex;align-items:center;justify-content:space-between;padding:14px 20px;border-bottom:2px solid rgba(0,245,255,0.08);
  backdrop-filter: blur(6px);position:sticky;top:0;background:linear-gradient(90deg, rgba(10,10,15,0.85), rgba(10,10,20,0.6));z-index:60;
}
.logo{display:flex;align-items:center;gap:10px;font-weight:700;color:var(--accent);text-shadow:0 0 12px rgba(0,245,255,0.12)}
nav a{color:#ddd;margin-left:18px;text-decoration:none;padding:6px 8px;border-radius:6px;font-weight:600}
nav a:hover{color:var(--accent);box-shadow:0 6px 20px rgba(0,245,255,0.06)}

/* container / hero */
.container{max-width:1150px;margin:28px auto;padding:0 18px}
.hero{padding:40px 0;text-align:center}
.hero h1{font-size:34px;color:var(--accent);text-shadow:0 0 24px rgba(0,245,255,0.06)}
.hero p{color:var(--muted);margin-top:8px}

/* games grid on homepage */
.games-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:18px;margin-top:22px}
.card{background:linear-gradient(180deg,var(--panel),#121217);border-radius:12px;padding:28px;border:1px solid rgba(0,245,255,0.06);
  display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:120px;transition:transform .22s ease,box-shadow .22s}
.card h3{color:var(--accent);margin-bottom:8px}
.card:hover{transform:translateY(-8px);box-shadow:0 18px 50px rgba(0,245,255,0.06)}

/* news grid & cards */
.hero-small{padding:18px 0 8px}
.news-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:18px;margin-top:18px}
.news-card{background:linear-gradient(180deg,#0e0e12,#16161b);border-radius:10px;overflow:hidden;border:1px solid rgba(138,43,226,0.06);display:flex;gap:12px}
.news-thumb{flex:0 0 140px;min-height:100px}
.news-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.news-body{padding:12px 14px;flex:1}
.news-title{font-size:18px;margin:0 0 8px}
.news-title a{color:var(--accent);text-decoration:none}
.news-excerpt{color:var(--muted);font-size:14px;margin-bottom:8px}
.news-meta{font-size:12px;color:#7a8085}

/* footer */
footer{padding:22px 0;text-align:center;color:#98a0a4;border-top:1px solid rgba(0,245,255,0.04);margin-top:30px}

/* responsive tweaks */
@media(max-width:720px){
  .news-card{flex-direction:column}
  .news-thumb{flex:0 0 auto;height:160px}
  header nav{display:none}
}