.creator-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: #111;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
  color: #eee;
  font-family: "Segoe UI", sans-serif;
}

.creator-container h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}

.creator-container h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 20px;
  border-left: 4px solid #0af;
  padding-left: 10px;
  color: #0af;
}

.section {
  margin-bottom: 25px;
}

.section input[type="text"],
.section input[type="url"],
.section input[type="number"],
.section input[type="file"],
.section select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 12px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #222;
  color: #fff;
  font-size: 14px;
}

.section input[type="checkbox"],
.section input[type="radio"] {
  margin-right: 8px;
}

.section label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  cursor: pointer;
}

button {
  background: #0af;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background: #09c;
}

#priceEstimate {
  font-size: 18px;
  font-weight: bold;
  color: #6f6;
  margin-top: 8px;
}

.chain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.chain-tile {
  background: #1b1b1b;
  border: 1px solid #333;
  padding: 12px;
  border-radius: 8px;
  color: #eee;
}

.chain-tile input[type="number"] {
  width: 60px;
  margin-left: 10px;
}

.chain-tile label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.chain-tile img {
  height: 20px;
  margin-right: 4px;
}

.logo-preview-wrapper {
  text-align: center;
  margin-bottom: 12px;
}

.logo-preview {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #555;
  object-fit: cover;
  background: #222;
}

@media (max-width: 768px) {
  .creator-container {
    margin: 16px 10px;
    padding: 16px;
    max-width: calc(100% - 20px);
  }

  .creator-container h1 {
    font-size: 26px;
  }

  .creator-container h3 {
    font-size: 18px;
    margin-top: 18px;
  }

  .section input[type="text"],
  .section input[type="url"],
  .section input[type="number"],
  .section input[type="file"],
  .section select,
  button {
    min-height: 44px;
    font-size: 16px;
  }

  .chain-grid {
    grid-template-columns: 1fr;
  }

  .chain-tile {
    padding: 10px;
  }
}
