* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange:    #ff6b00;
  --amber:     #ffaa00;
  --lime:      #7ed321;
  --green:     #39ff14;
  --dark-green:#1a3a0a;
  --bg:        #080807;
  --bg-card:   #0f0f0b;
  --bg-mid:    #131310;
  --text:      #e8e4d8;
  --muted:     rgba(200, 185, 150, 0.5);
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Orbitron', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ANIMATED GRID */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gridDrift 24s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 56px 56px; }
}

/* SCANLINES */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.08) 3px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
  z-index: 1;
}

header, nav, section, footer, .page-hero, .page-content {
  position: relative;
  z-index: 2;
}

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(8, 8, 7, 0.94);
  border-bottom: 1px solid rgba(255, 107, 0, 0.25);
  backdrop-filter: blur(16px);
}

.nav-brand {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-decoration: none;
  color: var(--orange);
  text-shadow: 0 0 14px rgba(255, 107, 0, 0.7);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 7px 14px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(210, 190, 140, 0.65);
  border: 1px solid transparent;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber);
  border-color: rgba(255, 170, 0, 0.3);
  background: rgba(255, 107, 0, 0.07);
  text-shadow: 0 0 10px rgba(255, 170, 0, 0.6);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  box-shadow: 0 0 6px var(--orange);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: rgba(8, 8, 7, 0.97);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    padding: 16px 24px 20px;
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 0.7rem; padding: 12px 14px; }
}

/* ── HEADER ─────────────────────────────────────────── */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 24px 32px;
  background: radial-gradient(ellipse at 50% -10%, #2a1200 0%, var(--bg) 65%);
}

.logo {
  width: min(520px, 90vw);
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 20px rgba(255, 107, 0, 0.8))
    drop-shadow(0 0 56px rgba(255, 107, 0, 0.3));
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.8)) drop-shadow(0 0 56px rgba(255, 107, 0, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 28px rgba(126, 211, 33, 0.9)) drop-shadow(0 0 64px rgba(126, 211, 33, 0.4));
  }
}

.tagline {
  margin-top: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  text-shadow: 0 0 14px rgba(255, 170, 0, 0.7);
  animation: flicker 8s infinite;
}

@keyframes flicker {
  0%, 94%, 100% { opacity: 1; }
  95%           { opacity: 0.3; }
  96%           { opacity: 1; }
  97%           { opacity: 0.1; }
  98%           { opacity: 1; }
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 88px 24px;
  background: radial-gradient(ellipse at 50% 0%, #1f0e00 0%, var(--bg) 65%);
  border-top: 1px solid rgba(255, 107, 0, 0.2);
  border-bottom: 1px solid rgba(126, 211, 33, 0.15);
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--lime), var(--orange));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: chromaShift 5s linear infinite;
  margin-bottom: 20px;
}

@keyframes chromaShift {
  from { background-position: 0% center; }
  to   { background-position: 300% center; }
}

.hero p {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 2.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── PRODUCTS (homepage) ─────────────────────────────── */
.products {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.products h2,
.shop h2 {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 44px;
  color: var(--orange);
  text-shadow: 0 0 18px rgba(255, 107, 0, 0.6);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 107, 0, 0.18);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card::before,
.product-card::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--amber);
  border-style: solid;
}
.product-card::before { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.product-card::after  { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

.product-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 28px rgba(255, 107, 0, 0.2),
    0 12px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 170, 0, 0.4);
}

.img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a0d00, #0a1400);
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px dashed rgba(255, 107, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 107, 0, 0.1) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: shimmer 2.8s infinite;
}

@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position:  200% 0; }
}

.product-card p {
  color: rgba(255, 170, 0, 0.45);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ── SHOP SECTION (homepage) ─────────────────────────── */
.shop {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #0c0800 100%);
  border-top: 1px solid rgba(126, 211, 33, 0.12);
}

.shop-sub {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.shop-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* ── BUTTON ──────────────────────────────────────────── */
.shop-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--amber);
  border: 1px solid rgba(255, 170, 0, 0.5);
  box-shadow:
    0 0 14px rgba(255, 107, 0, 0.25),
    inset 0 0 14px rgba(255, 107, 0, 0.04);
  transition: all 0.2s;
  cursor: pointer;
}

.shop-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 107, 0, 0.1);
  border-color: var(--orange);
  color: #fff;
  box-shadow:
    0 0 32px rgba(255, 107, 0, 0.5),
    inset 0 0 20px rgba(255, 107, 0, 0.08);
}

.shop-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
  border-color: rgba(180, 150, 80, 0.2);
  color: rgba(180, 150, 80, 0.3);
  box-shadow: none;
}

/* ── POPUP DISCLAIMERS ───────────────────────────────── */
.popup-disclaimer {
  position: fixed;
  z-index: 50;
  background: rgba(8, 8, 7, 0.93);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.popup-disclaimer.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── DISCLAIMER BAR ──────────────────────────────────── */
.disclaimer-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 18px 24px;
  background: rgba(8, 8, 7, 0.97);
  border-top: 1px solid rgba(255, 107, 0, 0.35);
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
  text-align: center;
}

.disclaimer-item {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.disclaimer-item:nth-child(1) {
  color: var(--amber);
  text-shadow: 0 0 12px rgba(255, 170, 0, 0.9);
  animation: flashAmber 1.8s ease-in-out infinite;
}

.disclaimer-item:nth-child(2) {
  color: var(--lime);
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.9);
  animation: flashLime 1.8s ease-in-out 0.6s infinite;
}

.disclaimer-item:nth-child(3) {
  color: var(--orange);
  text-shadow: 0 0 12px rgba(255, 107, 0, 0.9);
  animation: flashOrange 1.8s ease-in-out 1.2s infinite;
}

@keyframes flashAmber {
  0%, 100% { opacity: 1; text-shadow: 0 0 16px rgba(255, 170, 0, 1); }
  50%       { opacity: 0.2; text-shadow: none; }
}

@keyframes flashLime {
  0%, 100% { opacity: 1; text-shadow: 0 0 16px rgba(57, 255, 20, 1); }
  50%       { opacity: 0.2; text-shadow: none; }
}

@keyframes flashOrange {
  0%, 100% { opacity: 1; text-shadow: 0 0 16px rgba(255, 107, 0, 1); }
  50%       { opacity: 0.2; text-shadow: none; }
}

.footer-email {
  margin-top: 10px;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: rgba(180, 150, 80, 0.7);
}

.footer-email a {
  color: var(--amber);
  text-decoration: none;
  text-shadow: 0 0 8px rgba(255, 170, 0, 0.5);
  transition: color 0.2s;
}

.footer-email a:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 170, 0, 0.9);
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  padding: 56px 24px 36px;
  text-align: center;
  border-top: 1px solid rgba(255, 107, 0, 0.15);
  background: linear-gradient(180deg, #0c0800 0%, #050503 100%);
}

.footer-logo {
  width: min(300px, 65vw);
  opacity: 0.55;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(255, 107, 0, 0.4));
}

footer p {
  color: rgba(150, 120, 60, 0.6);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ── PAGE HERO ───────────────────────────────────────── */
.page-hero {
  text-align: center;
  padding: 80px 24px 52px;
  background: radial-gradient(ellipse at 50% 0%, #1f0e00 0%, var(--bg) 65%);
  border-bottom: 1px solid rgba(255, 107, 0, 0.18);
}

.page-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--lime), var(--orange));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: chromaShift 5s linear infinite;
  margin-bottom: 12px;
}

.page-sub {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── PAGE CONTENT ────────────────────────────────────── */
.page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  text-shadow: 0 0 14px rgba(255, 107, 0, 0.5);
  margin-bottom: 18px;
}

/* ── ABOUT ───────────────────────────────────────────── */
.about-block {
  margin-bottom: 24px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
}

.about-block p {
  font-size: 0.76rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: rgba(220, 200, 160, 0.8);
  margin-top: 10px;
}

/* ── SHOWROOM ────────────────────────────────────────── */
.showroom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}

.category-section {
  margin-bottom: 64px;
}

.category-section:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  text-shadow: 0 0 14px rgba(255, 107, 0, 0.5);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #0a0a08;
  display: block;
}

.listing-desc {
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 14px;
}


.listings-note {
  text-align: center;
  margin-bottom: 52px;
}

.badge {
  display: inline-block;
  padding: 4px 18px;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--lime);
  color: var(--lime);
  text-shadow: 0 0 8px rgba(126, 211, 33, 0.7);
  box-shadow: 0 0 14px rgba(126, 211, 33, 0.15);
  border-radius: 20px;
  margin-bottom: 16px;
}

.listings-note p {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  line-height: 2;
}

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

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 24px rgba(255, 107, 0, 0.2),
    0 12px 40px rgba(0, 0, 0, 0.5);
}

.listing-info {
  padding: 20px;
}

.listing-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(230, 210, 170, 0.9);
  margin-bottom: 8px;
}

.listing-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--lime);
  text-shadow: 0 0 12px rgba(126, 211, 33, 0.5);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.listing-btn {
  width: 100%;
  text-align: center;
  font-size: 0.62rem;
  padding: 10px 16px;
}

/* ── SHOW OFF ────────────────────────────────────────── */
.submit-box {
  text-align: center;
  padding: 44px 32px;
  margin-bottom: 56px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 107, 0, 0.18);
  border-radius: 12px;
}

.submit-desc {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  line-height: 2.1;
  color: var(--muted);
  margin: 14px 0 28px;
}

.showoff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.showoff-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.showoff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(255, 107, 0, 0.15);
}

.showoff-card .img-placeholder { margin-bottom: 14px; }

.showoff-user {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--amber);
  text-shadow: 0 0 8px rgba(255, 170, 0, 0.5);
  margin-bottom: 6px;
}

.showoff-caption {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ── SHOW OUT / EVENTS ───────────────────────────────── */
.event-card {
  display: flex;
  gap: 28px;
  padding: 28px;
  margin-bottom: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(126, 211, 33, 0.18);
  border-radius: 12px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(126, 211, 33, 0.12);
}

.event-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 68px;
  padding: 14px 10px;
  background: rgba(126, 211, 33, 0.06);
  border: 1px solid rgba(126, 211, 33, 0.25);
  border-radius: 10px;
}

.event-month {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--lime);
  text-shadow: 0 0 8px rgba(126, 211, 33, 0.7);
}

.event-day {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.event-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(230, 210, 160, 0.9);
  margin-bottom: 6px;
}

.event-meta {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--amber);
  margin-bottom: 14px;
  text-shadow: 0 0 8px rgba(255, 170, 0, 0.4);
}

.event-desc {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 20px;
}

@media (max-width: 500px) {
  .event-card { flex-direction: column; }
}

/* ── HELP / FAQ ──────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 107, 0, 0.18);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(220, 200, 160, 0.85);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--orange);
  text-shadow: 0 0 8px rgba(255, 107, 0, 0.6);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question {
  color: var(--amber);
  text-shadow: 0 0 8px rgba(255, 170, 0, 0.3);
  border-bottom: 1px solid rgba(255, 107, 0, 0.12);
}

.faq-item[open] .faq-question::after {
  content: '−';
  color: var(--amber);
}

.faq-answer {
  padding: 16px 24px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  line-height: 2.1;
  color: var(--muted);
}
