
body {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: linear-gradient(160deg, #000000 0%, #080808 50%, #151515 100%);
  color: #e7e7e7;
  min-height: 100vh;
}

.partners-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 32px 100px;
}

.partners-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 36px;
}

.partners-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.partners-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-width: 200px;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  text-decoration: none;
  color: #e7e7e7;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}

.partner-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.55);
}

.partner-card img {
  width: 42px;
  height: 42px;
  border-radius: 0;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.credits-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  padding: 22px;
  min-width: 280px;
  flex-shrink: 0;
}

.credits-card h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 16px;
}

.credit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 0;
  text-decoration: none;
  color: rgba(226, 212, 240, 0.85);
  font-size: 0.83rem;
  margin-bottom: 6px;
  transition: background 0.15s;
}

.credit-row:hover {
  background: rgba(255, 255, 255, 0.15);
}

.credit-row img {
  width: 38px;
  height: 38px;
  border-radius: 0;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.credits-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 12px 0;
}

.credits-thanks {
  font-size: 0.78rem;
  color: rgba(245, 245, 245, 0.5);
  margin-top: 12px;
  text-align: center;
}