body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #121212;
  color: #f1f1f1;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

h1, h2, h3, h4 {
  color: #ffffff;
}

.hero {
  background: #1e1e1e;
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid #2e2e2e;
}

.hero p {
  color: #bbb;
}

.hero .btn {
  background: #3c82f5;
  color: #fff;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
  transition: background 0.2s;
}

.hero .btn:hover {
  background: #2f6fd1;
}

section {
  margin: 60px 0;
}

.code-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.code-card {
  background: #1f1f1f;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.code-card span {
  font-weight: bold;
  color: #e0e0e0;
}

.code-card button {
  background: #3c82f5;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.code-card button:hover {
  background: #2f6fd1;
}

.update-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.update-card {
  background: #1f1f1f;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(255,255,255,0.04);
}

.update-card p {
  color: #ccc;
}

.games-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background: #1f1f1f;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(255,255,255,0.04);
}

.faq-item {
  background: #1f1f1f;
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(255,255,255,0.04);
}

.faq-item p {
  color: #ccc;
}

footer {
  text-align: center;
  padding: 40px 0;
  color: #888;
  font-size: 0.9rem;
}

.updates,
.minigames,
.faq {
  padding-left: 5%;
  padding-right: 5%;
  max-width: 1000px;
  margin: 0 auto;
}
