body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
}

header {
  background: #1e293b;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.upload-btn {
  background: #22c55e;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.mods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  padding: 30px;
}

.mod-card {
  background: #1e293b;
  padding: 20px;
  border-radius: 12px;
}

.download-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #3b82f6;
  border-radius: 6px;
  text-decoration: none;
  color: white;
}

.upload-container {
  max-width: 400px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumb {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
