.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.shark-shell {
  padding-top: 48px;
}

.shark-hero {
  align-items: stretch;
}

.shark-highlight h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-grid strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.join-help {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  line-height: 1.6;
}

.drops-panel {
  margin-top: 18px;
  padding: 24px;
}

.drops-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.drop-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.drop-card.rarity-secret {
  border-color: rgba(210, 210, 220, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 45%);
}

.drop-card.rarity-knife {
  border-color: rgba(255, 92, 92, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top right, rgba(255, 76, 76, 0.15), transparent 50%);
}

.drop-card.rarity-common {
  border-color: rgba(255, 184, 92, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top right, rgba(255, 176, 64, 0.12), transparent 50%);
}

.drop-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.drop-title {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.1;
}

.drop-player {
  margin-top: 8px;
}

.player-link {
  color: var(--accent-cyan);
  text-decoration: none;
}

.player-link:hover {
  text-decoration: underline;
}

.drop-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.drop-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.drop-pill.joinable {
  color: #9ef1c1;
  background: rgba(51, 209, 122, 0.12);
}

.drop-pill.unavailable {
  color: #ffd59e;
  background: rgba(255, 204, 102, 0.12);
}

.drop-pill.rarity-secret {
  color: #f2f4ff;
  background: rgba(201, 207, 255, 0.16);
}

.drop-pill.rarity-knife {
  color: #ffb3b3;
  background: rgba(255, 76, 76, 0.16);
}

.drop-pill.rarity-common {
  color: #ffd8a3;
  background: rgba(255, 174, 66, 0.16);
}

.drop-item {
  margin: 0;
  font-size: 1.05rem;
}

.drop-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.meta-chip {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.meta-chip span {
  display: block;
  margin-bottom: 6px;
}

.meta-chip strong {
  font-size: 0.98rem;
}

.drop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.drop-actions .primary-button,
.drop-actions .ghost-button {
  flex: 1 1 180px;
}

.join-note {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 1100px) {
  .drops-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .shark-shell {
    padding-top: 22px;
  }

  .hero,
  .shark-hero {
    grid-template-columns: 1fr;
  }

  .highlight-grid,
  .drop-meta,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .drop-top {
    flex-direction: column;
  }

  .drop-pill-row {
    justify-content: flex-start;
  }
}
