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

:root {
  --black:   #080808;
  --dark:    #0e0e0e;
  --card:    #141414;
  --card2:   #1a1a1a;
  --border:  #242424;
  --red:     #c0392b;
  --red2:    #e74c3c;
  --gold:    #c9920a;
  --gold2:   #f0b429;
  --white:   #f5f5f5;
  --grey:    #777777;
  --grey2:   #aaaaaa;
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* ── NAV ──────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; gap: 32px;
  padding: 0 40px; height: 64px;
  background: rgba(8,8,8,0.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: 0.9rem; letter-spacing: 0.15em; color: var(--gold2);
  text-decoration: none; white-space: nowrap;
}
.nav-links { display: flex; gap: 24px; margin-left: auto; }
.nav-links a {
  color: var(--grey2); text-decoration: none; font-size: 0.875rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-yt {
  display: flex; align-items: center; gap: 6px;
  background: var(--red); color: var(--white);
  padding: 7px 16px; border-radius: 6px; font-size: 0.8rem;
  font-weight: 600; text-decoration: none; transition: background 0.2s;
}
.nav-yt:hover { background: var(--red2); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 199;
  background: var(--dark); border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 16px 0;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 14px 32px; color: var(--grey2); text-decoration: none;
  font-size: 1rem; font-weight: 500; border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-link:hover, .mobile-link:last-child { border-bottom: none; }
.mobile-yt { color: var(--red2); font-weight: 600; }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 6px; font-size: 0.875rem;
  font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none;
}
.btn-red   { background: var(--red);  color: var(--white); }
.btn-red:hover { background: var(--red2); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--grey2); border: 1px solid rgba(255,255,255,0.22); }
.btn-ghost:hover { border-color: var(--gold2); color: var(--gold2); }
.btn-gold  { background: var(--gold2); color: #000; }
.btn-gold:hover { background: #ffc94d; transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 100px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 70%, rgba(192,57,43,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(201,146,10,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201,146,10,0.05) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold2); margin-bottom: 24px;
}
.hero-title {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(4rem, 14vw, 9rem); line-height: 0.9;
  letter-spacing: 0.04em;
  background: linear-gradient(160deg, #ffffff 0%, #f0b429 45%, #c0392b 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 20px;
}
.hero-quote {
  font-size: 0.85rem; color: var(--gold); letter-spacing: 0.1em;
  font-style: italic; margin-bottom: 16px;
}
.hero-desc { font-size: 1rem; color: var(--grey2); line-height: 1.7; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 28px; }
.stat { text-align: center; }
.stat-n { display: block; font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold2); }
.stat-l { font-size: 0.7rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.12em; }
.stat-sep { width: 1px; height: 36px; background: var(--border); }
.hero-nowrap { white-space: nowrap; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--grey); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── SECTIONS ─────────────────────────────────── */
.section { padding: 100px 40px; max-width: 1280px; margin: 0 auto; }
.section-dark {
  background: var(--dark); max-width: 100%;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.section-dark > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section-dark.section { padding: 100px 40px; }

.section-label {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red2); font-weight: 700; margin-bottom: 12px;
}
.section-head { margin-bottom: 56px; }
.section-head h2 {
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px;
}
.section-head p { color: var(--grey2); font-size: 1rem; }
.section-footer { text-align: center; margin-top: 48px; }

/* ── MERCH GRID ───────────────────────────────── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.merch-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  text-decoration: none; color: var(--white);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.merch-card:hover {
  border-color: var(--red); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(192,57,43,0.15);
}
.merch-thumb {
  width: 100%; aspect-ratio: 4/3; background: var(--card2);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; overflow: hidden;
}
.merch-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.merch-card:hover .merch-thumb img { transform: scale(1.05); }
.merch-body { padding: 18px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.merch-tag { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold2); font-weight: 700; }
.merch-body h3 { font-size: 0.95rem; font-weight: 600; line-height: 1.3; }
.merch-body p { font-size: 0.82rem; color: var(--grey); }
.merch-cta { margin-top: auto; padding-top: 14px; font-size: 0.82rem; font-weight: 600; color: var(--red2); transition: color 0.2s; }
.merch-card:hover .merch-cta { color: var(--gold2); }

/* skeleton loader */
.skeleton {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  height: 320px; animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0%,100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* ── ARC GUIDE ────────────────────────────────── */
.arc-filter {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.arc-btn {
  padding: 8px 18px; border-radius: 100px; border: 1px solid var(--border);
  background: transparent; color: var(--grey2); font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif;
}
.arc-btn:hover { border-color: var(--gold2); color: var(--gold2); }
.arc-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

.arc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.arc-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.arc-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-3px); }
.arc-banner {
  height: 80px; display: flex; align-items: center; padding: 0 20px; gap: 12px;
  position: relative; overflow: hidden;
}
.arc-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.arc-num {
  font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 900;
  color: rgba(255,255,255,0.15); position: relative; z-index: 1;
}
.arc-name-banner {
  font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700;
  color: var(--white); position: relative; z-index: 1; line-height: 1.2;
}
.arc-body { padding: 18px; }
.arc-saga { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold2); font-weight: 700; margin-bottom: 6px; }
.arc-desc { font-size: 0.85rem; color: var(--grey2); line-height: 1.6; margin-bottom: 12px; }
.arc-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.arc-eps { font-size: 0.75rem; color: var(--grey); }
.arc-hype { font-size: 0.85rem; letter-spacing: 1px; }
.arc-watch {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 12px; font-size: 0.78rem; font-weight: 600;
  color: var(--red2); text-decoration: none; transition: color 0.2s;
}
.arc-watch:hover { color: var(--gold2); }
.arc-card[data-filter="all"] { display: block; }

/* ── CLOTHING ─────────────────────────────────── */
.clothing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.clothing-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; text-decoration: none; color: var(--white);
  transition: border-color 0.2s, transform 0.2s;
}
.clothing-card:hover { border-color: var(--gold2); transform: translateY(-3px); }
.clothing-icon {
  width: 60px; height: 60px; border-radius: 12px;
  background: var(--card2); display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; flex-shrink: 0;
}
.clothing-info { flex: 1; }
.clothing-tag { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold2); font-weight: 700; margin-bottom: 4px; }
.clothing-brand { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.clothing-desc { font-size: 0.82rem; color: var(--grey); line-height: 1.5; }
.clothing-arrow { font-size: 1.2rem; color: var(--grey); transition: color 0.2s; flex-shrink: 0; }
.clothing-card:hover .clothing-arrow { color: var(--gold2); }

/* ── SUPPORT ──────────────────────────────────── */
.support-wrap {
  max-width: 1000px; margin: 0 auto; padding: 100px 40px;
  display: flex; align-items: center; gap: 80px; flex-wrap: wrap;
}
.support-left { flex: 1; min-width: 280px; }
.support-left h2 {
  font-family: 'Cinzel', serif; font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700; margin-bottom: 16px;
}
.support-left p { color: var(--grey2); line-height: 1.75; margin-bottom: 32px; font-size: 1rem; }
.support-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.support-right { display: flex; justify-content: center; }
.crew-badge {
  width: 200px; text-align: center;
  border: 1px solid var(--border); border-radius: 16px; padding: 32px 24px;
  background: var(--card);
}
.crew-ring {
  width: 80px; height: 80px; margin: 0 auto 16px;
  border-radius: 50%; border: 2px solid var(--gold2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  background: radial-gradient(circle, rgba(240,180,41,0.1) 0%, transparent 70%);
  animation: glow 3s ease-in-out infinite;
}
@keyframes glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(240,180,41,0.3); }
  50% { box-shadow: 0 0 0 10px rgba(240,180,41,0); }
}
.crew-name { font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 700; color: var(--gold2); margin-bottom: 4px; }
.crew-sub { font-size: 0.72rem; color: var(--grey); margin-bottom: 16px; }
.crew-line { width: 40px; height: 1px; background: var(--border); margin: 0 auto 16px; }
.crew-quote { font-size: 0.72rem; color: var(--grey2); font-style: italic; line-height: 1.5; }

/* ── FOOTER ───────────────────────────────────── */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 48px 40px; }
.footer-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.footer-logo { font-family: 'Cinzel', serif; font-weight: 900; color: var(--gold2); font-size: 0.9rem; letter-spacing: 0.15em; margin-bottom: 20px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.footer-links a { color: var(--grey2); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-disclaimer { font-size: 0.72rem; color: var(--grey); max-width: 560px; margin: 0 auto; line-height: 1.6; }


/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 768px) {
  /* Touch feel */
  * { -webkit-tap-highlight-color: transparent; }
  a, button { touch-action: manipulation; }

  /* Nav */
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-yt { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero — cut height so content is reachable faster */
  .hero {
    min-height: auto;
    padding: 100px 24px 60px;
  }
  .hero-eyebrow { font-size: 0.65rem; margin-bottom: 14px; }
  .hero-title { font-size: clamp(3.2rem, 13vw, 5rem); }
  .hero-quote { font-size: 0.8rem; margin-bottom: 12px; }
  .hero-desc { font-size: 0.88rem; line-height: 1.6; margin-bottom: 28px; }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 36px;
  }
  .hero-btns .btn { justify-content: center; padding: 15px 24px; font-size: 0.95rem; }
  .hero-stats { gap: 16px; }
  .stat-n { font-size: 1.2rem; }
  .hero-scroll { display: none; }

  /* Sections */
  .section, .section-dark.section { padding: 52px 20px; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 1.5rem; }
  .section-head p { font-size: 0.88rem; }

  /* Merch — horizontal scroll carousel */
  .merch-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 4px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .merch-grid::-webkit-scrollbar { display: none; }
  .merch-card {
    flex: 0 0 68vw;
    max-width: 260px;
    scroll-snap-align: start;
  }
  .merch-thumb { font-size: 3rem; }
  .merch-body { padding: 14px; }
  .merch-body h3 { font-size: 0.88rem; }
  .merch-body p { font-size: 0.78rem; }
  .skeleton { flex: 0 0 68vw; max-width: 260px; height: 260px; }

  /* Arc filter — horizontal scroll */
  .arc-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -20px 24px;
    padding: 0 20px 6px;
  }
  .arc-filter::-webkit-scrollbar { display: none; }
  .arc-btn { flex-shrink: 0; padding: 9px 18px; font-size: 0.82rem; }

  /* Arc grid — horizontal swipe carousel */
  .arc-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    margin: 0 -20px;
    padding: 0 20px 4px;
  }
  .arc-grid::-webkit-scrollbar { display: none; }
  .arc-card {
    flex: 0 0 80vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
  .arc-banner { height: 70px; }
  .arc-body { padding: 14px; }
  .arc-watch { padding: 8px 0; min-height: 44px; display: flex; align-items: center; }

  /* Clothing */
  .clothing-grid { gap: 10px; }
  .clothing-card { padding: 16px 14px; gap: 12px; min-height: 72px; }
  .clothing-icon { width: 48px; height: 48px; font-size: 1.4rem; flex-shrink: 0; }
  .clothing-brand { font-size: 0.9rem; }
  .clothing-desc { font-size: 0.78rem; }

  /* Support */
  .support-wrap { padding: 52px 20px; gap: 32px; }
  .support-right { display: none; }
  .support-left h2 { font-size: 1.5rem; }
  .support-btns { flex-direction: column; }
  .support-btns .btn { justify-content: center; }

  /* Footer */
  .footer { padding: 32px 20px 24px; }
  .footer-links { gap: 16px; flex-wrap: wrap; justify-content: center; }

}

/* Very small screens */
@media (max-width: 360px) {
  .hero-title { font-size: 3rem; }
  .merch-card { flex: 0 0 78vw; }
  .skeleton { flex: 0 0 78vw; }
}
