body {
  background: #121212;
  color: #eaeaea;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

header {
  text-align: center;
  padding: 20px;
  background: #1e1e1e;
}

h1 {
  color: #a855f7;
  margin-bottom: 10px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tab-button {
  background: #2d2d2d;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.tab-button.active {
  background: #a855f7;
}

main {
  padding: 20px;
}

section {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  border-radius: 6px;
  border: 1px solid #333;
  background: #2b2b2b;
  color: #eee;
}

button.action {
  background: #a855f7;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  border-radius: 6px;
}

footer {
  text-align: center;
  color: #888;
  padding: 10px;
  border-top: 1px solid #2d2d2d;
  font-size: 13px;
}
