body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #1c1c1c, #2e2e2e);
  font-family: 'Segoe UI', sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.panel {
  background-color: #121212;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 1500px;
  height: 600px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.name {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}

.sections {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: wrap;
}

.section {
  background-color: #1f1f1f;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
  text-align: center;
  min-width: 150px;
}

.section:hover {
  background-color: #333;
}

.section.active {
  background-color: #00bfff;
  color: black;
  font-weight: bold;
}

.content {
  margin-top: 30px;
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;   /* <== Butonları ortalamak için */
  justify-content: flex-start;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.item-button {
  display: block;
  background-color: #2c2c2c;
  color: white;
  padding: 12px 20px;
  margin: 10px auto;     /* <== Ortalamayı sağlar */
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  width: 60%;
  max-width: 500px;
  transition: background 0.3s;
  text-align: center;
}

.item-button:hover {
  background-color: #444;
  color: #00bfff;
}

.game-card {
  background-color: #2a2a2a;
  padding: 20px;
  margin: 15px auto;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  text-align: center;
}

.game-title {
  display: block;
  font-size: 22px;
  color: #00bfff;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 8px;
}

.game-title:hover {
  text-decoration: underline;
}

.game-desc {
  font-size: 16px;
  color: #ccc;
  margin: 0;
}
