:root {
  --bg1: #111214;
  --bg2: #1b1c20;
  --panel: rgba(40, 40, 42, 0.92);
  --panel2: rgba(52, 52, 56, 0.92);
  --border: rgba(255,255,255,0.12);
  --text: #eee;
  --muted: #c8c8c8;
  --note: #ffcc80;
  --amazon: #ffa41c;
}
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 20% 0%, #2a2b31 0%, transparent 55%),
    radial-gradient(1200px 800px at 80% 100%, #25262b 0%, transparent 55%),
    linear-gradient(135deg, var(--bg2), var(--bg1));
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("/assets/FractalTexture11.png");
  background-repeat: repeat;
  background-size: 1024px 1024px;
  opacity: 0.26;
  mix-blend-mode: screen;
  filter: saturate(0.95) contrast(1.05) brightness(1.15);
  transform: translate3d(0,0,0);
  animation: textureDrift 80s linear infinite;
}
@keyframes textureDrift {
  0% { transform: translate3d(0,0,0) scale(1.02); }
  100% { transform: translate3d(-240px,-160px,0) scale(1.02); }
}
#bgParticles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}
.main-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 12px 30px;
  position: relative;
  z-index: 2;
}
.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.panel + .panel { margin-top: 14px; }

h1,h2,h3 { margin: 0 0 10px; font-weight: 700; letter-spacing: 0.2px; }
.small { color: var(--muted); font-size: 0.95rem; }
a { color: #ffe9b2; }

.breadcrumbs { font-size: 0.95rem; color: var(--muted); }
.breadcrumbs a { color: #ffe9b2; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

.table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 10px; }
.table th, .table td { border: 1px solid rgba(255,255,255,0.10); padding: 10px; vertical-align: top; }
.table th { text-align: left; color: #fff; background: rgba(255,255,255,0.06); }

.buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amazon);
  color: #000;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95em;
  min-width: 140px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.25);
}
.buy-button:hover { filter: brightness(1.06); }

footer { text-align:center; color:#aaa; font-size:0.88rem; margin-top: 22px; }

.grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.card { background: var(--panel2); border:1px solid var(--border); border-radius:12px; padding: 12px; }
.card a { text-decoration:none; }

@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}
