/* DogeSoft orbit strip — canonical styles match drc20_swap_amm EcosystemLogosStrip.css */
.ecosystem-strip {
  margin-top: 28px;
  padding: 12px 0 2px;
}

.ecosystem-strip__powered {
  margin: 0 0 12px;
  text-align: center;
  font-size: 14px;
  color: var(--text-tertiary, rgba(17, 24, 39, 0.62));
}
.ecosystem-strip__powered a {
  color: inherit;
  text-decoration: none;
}
.ecosystem-strip__powered a:hover {
  color: inherit;
  text-decoration: none;
}

.ecosystem-strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  align-items: flex-start;
  padding-bottom: 8px;
}
.ecosystem-strip__ic {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 88px;
  text-align: center;
  text-decoration: none;
  color: var(--text-tertiary, rgba(17, 24, 39, 0.62));
  font-size: 12px;
  line-height: 1.2;
  padding: 6px 0;
  border-radius: 12px;
  transition: background 0.15s ease, color 0.15s;
}
.ecosystem-strip__ic:hover {
  background: rgba(70, 230, 199, 0.08);
  color: var(--text-primary, #111827);
  text-decoration: none;
}
.ecosystem-strip__ic--here {
  cursor: default;
  color: var(--accent-gold, #f5c45c);
  background: rgba(245, 196, 92, 0.1);
  outline: 1px solid rgba(245, 196, 92, 0.3);
  outline-offset: 1px;
}
.ecosystem-strip__img {
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.ecosystem-strip__label {
  display: block;
  max-width: 7.2rem;
}

@media (max-width: 768px) {
  .ecosystem-strip__row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: thin;
  }
}

[data-theme="dark"] .ecosystem-strip__ic:hover {
  background: rgba(70, 230, 199, 0.12);
  color: var(--text-primary, #ffffff);
}
[data-theme="dark"] .ecosystem-strip__img {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
