* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #0f0f14;
  color: white;
  font-family: system-ui, -apple-system, sans-serif;
}

.header {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #222;
}

.header p {
  color: #aaa;
  font-size: 14px;
}

.game {
  background: #16161d;
  border-radius: 16px;
  margin: 16px;
  padding: 16px;
}

.game-title {
  font-size: 18px;
  margin-bottom: 12px;
}

.product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #222;
}

.product:first-child {
  border-top: none;
}

.product-name {
  font-size: 14px;
}

.product-status {
  font-size: 12px;
  color: #aaa;
}

.buy-btn {
  padding: 6px 14px;
  border-radius: 10px;
  border: none;
  background: #22c55e;
  color: #000;
  cursor: pointer;
  font-weight: 600;
}

.buy-btn.disabled {
  background: #333;
  color: #777;
  cursor: not-allowed;
}

