body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #ffffff, #f5faff);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.game-wrapper {
  background: #fff;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  text-align: center;
  width: 360px;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.controls {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.btn {
  flex: 1;
  padding: 14px;
  border-radius: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn.match {
  background: #2ecc71;
  color: #fff;
  box-shadow: 0 10px 25px rgba(46,204,113,.35);
}

.btn.nomatch {
  background: #e74c3c;
  color: #fff;
  box-shadow: 0 10px 25px rgba(231,76,60,.35);
}

.btn:hover {
  transform: translateY(-3px);
}

.stats {
  display: flex;
  justify-content: space-between;
  color: #555;
  font-size: .95rem;
}
