body {
  margin: 0;
  padding: 0;
  background-color: #1e1f00;
  font-family: monospace;
  color: yellow;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.frame-wrapper {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  max-height: 760px;
  border-radius: 20px;
  background-color: #2a2a00;
  box-shadow: 0 0 20px #111;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.frame-header {
  background-color: #908200;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: yellow;
  font-size: 1.2em;
}

.frame-title {
  font-weight: bold;
  text-transform: lowercase;
}

.frame-controls {
  display: flex;
  gap: 10px;
}

.frame-button {
  background: none;
  border: 1px solid yellow;
  color: yellow;
  padding: 5px 10px;
  font-family: monospace;
  cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
}

.frame-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e1f00;
}

.game-frame {
  width: 960px;
  height: 540px; /* reduced from 680px */
  border: none;
}

.back-button {
  display: inline-block;
  margin: 20px 0;
  padding: 8px 16px;
  font-family: monospace;
  font-size: 1em;
  color: yellow;
  background-color: #908200;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 10px #222;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px yellow;
}

