:root {
  --bg: #05050a;
  --bg-card: #0e0e18;
  --neon-green: #7CFC00;
  --neon-blue: #3b6bff;
  --neon-purple: #9b5bff;
  --text: #e8e8f0;
  --text-dim: #9a9ab0;
}

* { box-sizing: border-box; }

body {
  background: radial-gradient(circle at 50% -10%, #14142a 0%, var(--bg) 60%);
  color: var(--text);
  font-family: "Segoe UI", system-ui, sans-serif;
  margin: 0;
  min-height: 100vh;
}

a { color: var(--neon-green); text-decoration: none; }
a:hover { text-decoration: underline; }

header.site-header {
  text-align: center;
  padding: 1.5rem 1rem 0.5rem;
}

header.site-header img {
  max-width: 420px;
  width: 90%;
  filter: drop-shadow(0 0 20px rgba(123, 92, 255, 0.5));
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
}

h1, h2, h3 { color: #fff; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(123, 92, 255, 0.25);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 0 20px rgba(123, 92, 255, 0.35);
  transform: translateY(-3px);
}

.card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: #111;
}

.card-body { padding: 0.9rem 1rem 1.2rem; }
.card-body h3 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.price { color: var(--neon-green); font-weight: 600; }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: 2.5rem;
}

.detail-hero {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.detail-hero img {
  width: 280px;
  max-width: 90vw;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(59, 107, 255, 0.35);
}

.buy-box {
  background: var(--bg-card);
  border: 1px solid rgba(123, 92, 255, 0.25);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  max-width: 420px;
}

.buy-box input[type=email] {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  border: 1px solid #333;
  background: #0a0a12;
  color: var(--text);
  margin: 0.5rem 0 1rem;
}

button, .btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  padding: 0.7rem 1.3rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.btn-stripe { background: var(--neon-blue); color: #fff; }
.btn-paypal { background: #ffc439; color: #003087; }
.btn-stripe:hover, .btn-paypal:hover { filter: brightness(1.1); text-decoration: none; }

audio { width: 100%; margin-top: 1rem; }

footer {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  padding: 2rem 1rem;
}
