@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Press Start 2P", monospace;
  background: #3b5b8a;
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.wrap {
  background: #3b5b8a;
  border: 12px solid #f2b33d; 
  padding: 20px;

  /* pixel border effect */
  image-rendering: pixelated;
}

header h1 {
  font-size: 28px;
  text-align: center;
  color: #f2b33d;
  margin-bottom: 20px;
}

.info {
  font-size: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.info span {
  color: #f2b33d;
}

main {
  display: flex;
  gap: 25px;
}

#board {
  border: 6px solid #f2b33d;
  background: #2a4067;
  image-rendering: pixelated;
}

.side {
  width: 230px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #2a4067;
  border: 4px solid #f2b33d;
  padding: 15px;
  font-size: 10px;
  line-height: 18px;
  image-rendering: pixelated;
}

.card h3 {
  color: #f2b33d;
  margin-bottom: 10px;
  font-size: 12px;
}

#next {
  background: #3b5b8a;
  border: 3px solid #f2b33d;
  image-rendering: pixelated;
}

#startBtn {
  font-family: "Press Start 2P", monospace;
  font-size: 12px;
  padding: 12px;
  background: #f2b33d;
  color: #3b5b8a;
  border: 4px solid #3b5b8a;
  cursor: pointer;
  transition: 0.1s;
  image-rendering: pixelated;
}

#startBtn:hover {
  transform: translateY(-2px);
  background: #ffcc4d;
}
footer {
  margin-top: 20px;
  text-align: center;
  font-size: 10px;
}

footer a {
  color: #f2b33d;
  text-decoration: none;
}
