body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #111;
  color: #f0f0f0;
  text-align: center;
}

header .banner {
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  display: block;
}

main {
  padding: 20px;
}

.description h1 {
  font-size: 2.5em;
  margin-bottom: 0;
}

.description p {
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: left;
}

.gallery {
  margin: 40px 0;
}

.nft-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.nft-grid img {
  width: 200px;
  border-radius: 10px;
  border: 2px solid #444;
}

.buttons {
  margin: 40px 0;
}

.btn {
  background: #ffcc00;
  color: #000;
  text-decoration: none;
  padding: 12px 24px;
  margin: 10px;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #ffe066;
}

.btn.telegram {
  background: #34aadc;
  color: white;
}

.btn.telegram:hover {
  background: #60c4f5;
}

footer {
  margin-top: 40px;
  padding: 20px;
  font-size: 0.9em;
  color: #888;
}