:root{
  --black:#0a0a0a;
  --dark:#222;
  --mid:#555;
  --light-gray:#aaa;
  --lighter:#ddd;
  --white:#f5f5f5;
}

*{box-sizing:border-box;}

body{
  margin:0;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:radial-gradient(circle at 50% 0%, #3a3a3a 0%, #111 70%);
  font-family:'Courier New', Courier, monospace;
  color:var(--white);
  filter:grayscale(1);
}

.frame{
  background:var(--dark);
  border:3px solid var(--white);
  border-radius:8px;
  padding:36px 40px;
  max-width:680px;
  width:92vw;
  text-align:center;
  box-shadow:0 0 0 6px var(--black), 0 0 30px rgba(255,255,255,0.15);
}

h1{
  font-size:2.4rem;
  letter-spacing:3px;
  line-height:1.25;
  margin:0 0 8px;
  text-shadow:2px 2px 0 var(--black);
}

.subtitle{color:var(--light-gray);margin-bottom:28px;}

.game-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:20px;
}

.game-card{
  display:block;
  background:var(--black);
  border:2px solid var(--white);
  border-radius:6px;
  padding:22px 16px;
  text-decoration:none;
  color:var(--white);
  transition:transform .1s ease, background .15s ease;
}
.game-card:hover{background:#111;transform:translateY(-3px);}
.game-card:active{transform:scale(0.97);}

.game-card h2{
  margin:14px 0 8px;
  font-size:1.15rem;
  letter-spacing:1px;
}
.game-card p{
  margin:0;
  color:var(--light-gray);
  font-size:0.85rem;
  line-height:1.5;
}

.card-icon{
  width:48px;height:48px;
  margin:0 auto;
  position:relative;
}
.runner-icon{
  width:30px;height:40px;
  background:var(--white);
  border-radius:4px 4px 0 0;
}
.runner-icon::after{
  content:"";
  position:absolute;
  top:-14px;left:7px;
  width:16px;height:16px;
  background:var(--white);
  border-radius:50%;
}
.shooter-icon{
  width:30px;height:40px;
  background:var(--white);
  border-radius:4px 4px 0 0;
}
.shooter-icon::after{
  content:"";
  position:absolute;
  top:-14px;left:7px;
  width:16px;height:16px;
  background:var(--white);
  border-radius:50%;
}
.shooter-icon::before{
  content:"";
  position:absolute;
  top:8px;left:28px;
  width:16px;height:5px;
  background:var(--white);
}

.car-icon{
  width:44px;height:18px;
  margin-top:14px;
  background:var(--white);
  border-radius:6px 10px 2px 2px;
}
.car-icon::before,
.car-icon::after{
  content:"";
  position:absolute;
  bottom:-8px;
  width:12px;height:12px;
  background:var(--black);
  border:2px solid var(--white);
  border-radius:50%;
}
.car-icon::before{left:2px;}
.car-icon::after{right:2px;}
