:root {
  color-scheme: dark;
  --bg: #0b0d0e;
  --text: #f4f0e8;
  --muted: #c6bcae;
  --line: rgba(255, 255, 255, 0.18);
  --panel: rgba(12, 14, 15, 0.74);
  --gold: #d6b25e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.52), rgba(5, 6, 7, 0.92)),
    url("image/backgroud.png") center / cover fixed,
    var(--bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
  padding: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(4, 5, 6, 0.66);
  backdrop-filter: blur(14px);
}

.brand {
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a {
  padding: 9px 12px;
  border-radius: 4px;
}

.nav a:hover,
.nav a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.shop-hero {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 56px;
  text-align: center;
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.72);
}

.shop-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.products {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.featured {
  border-color: rgba(214, 178, 94, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.tag {
  align-self: flex-start;
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin: 34px 0 12px;
  color: #ffffff;
  font-size: 1.55rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.product strong {
  margin-top: auto;
  color: #ffffff;
  font-size: 1.6rem;
}

.button,
.discord-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  border-radius: 4px;
  font-weight: 900;
}

.button {
  margin-top: 18px;
  color: #111111;
  background: #ffffff;
}

.button:hover,
.button:focus-visible {
  background: #efe5c9;
}

.payment {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.payment h2 {
  margin-top: 0;
}

.discord-button {
  min-width: 180px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.discord-button:hover,
.discord-button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.footer {
  padding: 24px;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 780px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
  }

  .shop-hero {
    padding-top: 64px;
  }

  .products {
    grid-template-columns: 1fr;
  }

  .payment {
    align-items: stretch;
    flex-direction: column;
    padding: 22px 18px;
  }
}
