/* Harpoon Hobby Co. — clean, bold, card-shop */

:root {
  --bg: #070f18;
  --bg-elevated: #0d1b2a;
  --bg-card: #112233;
  --border: rgba(148, 163, 184, 0.18);
  --text: #e8eef5;
  --muted: #94a3b8;
  --accent: #2dd4bf;
  --accent-2: #f59e0b;
  --accent-soft: rgba(45, 212, 191, 0.12);
  --danger: #f87171;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --max: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(45, 212, 191, 0.12), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(245, 158, 11, 0.08), transparent 50%),
    var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(7, 15, 24, 0.75);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 650;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--border);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.btn-primary {
  color: #041016;
  background: linear-gradient(135deg, var(--accent), #5eead4);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ebay {
  color: #041016;
  background: linear-gradient(135deg, var(--accent-2), #fbbf24);
  width: 100%;
}

.btn-ebay:hover {
  filter: brightness(1.05);
}

/* Hero */
.hero {
  padding: 4.5rem 0 3rem;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero h1 span {
  background: linear-gradient(120deg, var(--text) 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin: 1rem auto 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Sections */
.section {
  padding: 1.5rem 0 4rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Drops grid */
.drops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.1rem;
}

.drop-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.drop-card:hover {
  border-color: rgba(45, 212, 191, 0.4);
  transform: translateY(-2px);
}

.drop-card.is-ended {
  opacity: 0.72;
}

.drop-media {
  position: relative;
  aspect-ratio: 5 / 7;
  background: var(--bg-elevated);
  overflow: hidden;
}

.drop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-live {
  color: #041016;
  background: var(--accent);
}

.badge-ended {
  color: #fff;
  background: #475569;
}

.badge-example {
  top: auto;
  bottom: 0.7rem;
  left: 0.7rem;
  color: #041016;
  background: var(--accent-2);
}

.drop-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem;
  flex: 1;
}

.drop-player {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.drop-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.drop-meta {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.8rem;
}

.drop-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.drop-note a {
  color: var(--accent-2);
}

.drop-actions {
  margin-top: auto;
  padding-top: 0.35rem;
}

/* Empty / status states */
.state-box {
  text-align: center;
  padding: 2.5rem 1.25rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: rgba(17, 34, 51, 0.45);
  color: var(--muted);
}

.state-box strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.state-box.error {
  border-color: rgba(248, 113, 113, 0.4);
  color: #fecaca;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0 2.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 520px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 3rem;
  }

  .btn {
    width: 100%;
  }

  .nav-links {
    width: 100%;
  }

  .nav-links .btn {
    flex: 1;
  }
}
