@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&family=Share+Tech+Mono&family=Raleway:wght@200;300;400;500&display=swap');

:root {
  --bg-void: #0c0c0c;
  --bg-deep: #12110f;
  --bg-navy: #141311;
  --bg-charcoal: #181715;
  --bg-panel: rgba(18, 17, 15, 0.94);
  --bg-glass: rgba(20, 19, 17, 0.86);
  --border-dim: rgba(238, 232, 220, 0.1);
  --border-active: rgba(204, 172, 73, 0.32);
  --border-gold: rgba(204, 172, 73, 0.35);
  --glow-blue: #ccac49;
  --glow-blue-soft: rgba(204, 172, 73, 0.08);
  --glow-blue-mid: rgba(204, 172, 73, 0.18);
  --gold: #ccac49;
  --gold-soft: rgba(204, 172, 73, 0.1);
  --silver: #b8b0a3;
  --white: #eee8dc;
  --red-alert: #ff4d4d;
  --red-soft: rgba(255, 77, 77, 0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'Share Tech Mono', 'Courier New', monospace;
  --font-body: 'Raleway', sans-serif;
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1280px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-void);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--border-active); border-radius: 2px; }
::selection { background: rgba(204, 172, 73, 0.3); color: #fff; }
a, button { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(16px, 4vw, 60px); }
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}
.bracket-corner { position: relative; }
.bracket-corner::before,
.bracket-corner::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--gold);
  border-style: solid;
}
.bracket-corner::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.bracket-corner::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.mono-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--glow-blue);
  text-transform: uppercase;
  opacity: 1;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  margin-top: 12px;
}
.section-subtitle {
  color: var(--silver);
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.8;
  font-weight: 400;
  margin-top: 18px;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

#intro-overlay {
  position: fixed;
  inset: 0;
  background: #050810;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease;
}
#intro-overlay.hidden { opacity: 0; pointer-events: none; }
.intro-inner { text-align: center; max-width: 480px; padding: 40px; width: 100%; }
.intro-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}
.intro-logo-text {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(204, 172, 73, 0.4);
}
.intro-logo-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--silver);
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: -5px;
}
.intro-lines {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--silver);
  line-height: 2;
  text-align: left;
  min-height: 120px;
}
.intro-bar-wrap {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 24px 0;
  overflow: hidden;
}
.intro-bar {
  height: 100%;
  background: var(--glow-blue);
  width: 0%;
  animation: loadBar 2.5s ease forwards;
  animation-delay: 0.5s;
  box-shadow: 0 0 8px var(--glow-blue);
}
.intro-status {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--glow-blue);
  letter-spacing: 0.2em;
}

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#main-nav.scrolled, #main-nav.open {
  background: rgba(8, 11, 18, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-dim);
  padding: 14px 0;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo { text-decoration: none; display: flex; flex-direction: column; gap: 0; flex-shrink: 0; }
.nav-logo-text { font-family: var(--font-display); font-size: 26px; font-weight: 300; letter-spacing: 0.25em; color: var(--gold); text-shadow: 0 0 12px rgba(201,168,76,0.3); }
.nav-logo-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--silver) !important;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: -3px;
  text-decoration: none !important;
}
.nav-logo-tag:visited, .nav-logo-tag:active, .nav-logo-tag:hover {
  color: var(--silver) !important;
}
.nav-links { display: flex; gap: clamp(20px, 3vw, 36px); align-items: center; }
.nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.15em;
  opacity: 0.7;
  padding: 6px 0;
  position: relative;
  transition: var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--glow-blue);
  transition: var(--transition);
  box-shadow: 0 0 8px var(--glow-blue);
}
.nav-link:hover { opacity: 1; color: var(--glow-blue); }
.nav-link:hover::after { width: 100%; }
.nav-cart {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--border-active);
  padding: 8px 16px;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cart:hover { background: var(--glow-blue-soft); box-shadow: 0 0 20px var(--glow-blue-mid); }
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--glow-blue);
  color: #ffffff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.nav-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border-dim);
  cursor: pointer;
}
.nav-hamburger span { width: 18px; height: 1px; background: var(--silver); }

#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 104px 0 62px;
  background: 
    linear-gradient(to bottom, rgba(8, 11, 18, 0.95) 0%, rgba(8, 11, 18, 0.6) 20%, rgba(8, 11, 18, 0.6) 80%, rgba(8, 11, 18, 0.95) 100%),
    url('../assets/hero-bg.jpg') 70% center / cover no-repeat,
    var(--bg-void);
}
#particle-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }
.hero-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(8, 11, 18, 0) 0%, rgba(8, 11, 18, 0) 30%, rgba(8, 11, 18, 0.8) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 clamp(20px, 4vw, 60px);
  margin: auto 0;
}
.hero-pre { margin-bottom: 12px; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  text-shadow: 0 4px 16px rgba(0,0,0,0.6);
  position: relative;
}
.hero-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
}
.hero-title-line {
  font-size: clamp(54px, 8.2vw, 100px);
  color: var(--white);
  letter-spacing: 0;
}
.hero-title-accent {
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.8);
  text-shadow: none;
}
.hero-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.65vw, 20px);
  color: var(--white);
  opacity: 0.9;
  line-height: 1.65;
  margin-bottom: 26px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-series-tag {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 24px;
  border: 1px solid var(--border-gold);
  background: rgba(8, 11, 18, 0.75);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: inline-flex;
  width: min(100%, 420px);
  margin-inline: auto;
  text-align: center;
}
.series-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.series-desc { font-family: var(--font-body); font-size: 14px; color: var(--white); opacity: 0.78; font-weight: 500; }
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid var(--border-dim);
  padding: 12px 0;
  z-index: 2;
  background: rgba(8, 11, 18, 0.88);
  backdrop-filter: blur(8px);
}
.marquee-track { display: flex; white-space: nowrap; animation: marqueeScroll 30s linear infinite; }
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--silver);
  opacity: 0.62;
  letter-spacing: 0.05em;
}

.btn-primary, .btn-ghost, .btn-danger, .btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}
.btn-primary {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 32px;
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, rgba(204, 172, 73, 0.18), rgba(204, 172, 73, 0.07));
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.btn-primary:hover {
  box-shadow: 0 0 22px rgba(204, 172, 73, 0.2);
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(204, 172, 73, 0.28), rgba(204, 172, 73, 0.12));
  border-color: var(--gold);
  color: var(--white);
}
.btn-shop-packs {
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(204, 172, 73, 0.24), rgba(204, 172, 73, 0.1));
  border-color: var(--gold);
  color: var(--white);
}
.btn-shop-packs:hover {
  background: linear-gradient(180deg, rgba(204, 172, 73, 0.35), rgba(204, 172, 73, 0.15));
  border-color: var(--gold);
  box-shadow: 0 0 26px rgba(204, 172, 73, 0.3);
  color: var(--white);
}
.btn-ghost {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 32px;
  border: 2px solid rgba(238, 232, 220, 0.2);
  background: rgba(238, 232, 220, 0.03);
  transition: var(--transition);
}
.btn-ghost:hover {
  color: var(--bg-void);
  border-color: var(--white);
  background: var(--white);
  transform: translateY(-2px);
}
.btn-danger {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 16px;
  border: 1px solid var(--red-soft);
  background: var(--red-soft);
}
.btn-small {
  padding: 9px 13px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  border: 1px solid var(--border-active);
  background: transparent;
  color: var(--silver);
}

.section-world { padding: clamp(72px, 8vw, 112px) 0 var(--section-pad); background: var(--bg-deep); position: relative; }
.section-world::before, .page-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.world-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(36px, 6vw, 72px); align-items: center; margin-bottom: 72px; position: relative; }
.world-heading { font-family: var(--font-display); font-size: clamp(46px, 5.4vw, 72px); font-weight: 400; line-height: 1.02; color: var(--white); margin: 16px 0 24px; }
.world-redacted { display: inline-flex; gap: 12px; align-items: center; font-family: var(--font-mono); color: var(--silver); font-size: 11px; opacity: 0.6; }
.redacted-bar { width: 90px; height: 11px; background: var(--white); opacity: 0.2; display: inline-block; }
.world-doc { padding: clamp(28px, 4vw, 40px); }
.world-doc-text { color: var(--white); opacity: 0.82; font-size: 16px; line-height: 1.85; font-weight: 500; margin: 16px 0; }
.world-doc-redacted { font-family: var(--font-mono); font-size: 11px; background: rgba(255,255,255,0.04); color: var(--silver); padding: 10px 16px; margin-top: 24px; letter-spacing: 0.1em; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--border-dim); position: relative; }
.pillar { padding: 36px 28px; border-right: 1px solid var(--border-dim); transition: var(--transition); }
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--glow-blue-soft); }
.pillar-icon { font-size: 24px; color: var(--glow-blue); display: block; margin-bottom: 16px; opacity: 0.7; }
.pillar h3 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 12px; }
.pillar p { font-size: 14px; color: var(--white); opacity: 0.78; line-height: 1.75; font-weight: 500; }

.section-series { padding: var(--section-pad) 0; background: var(--bg-navy); }
.series-header, .packs-header, .coming-header, .archive-header { text-align: center; margin-bottom: 56px; }
.series-story { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr); gap: 2px; }
.story-panel { padding: clamp(32px, 5vw, 56px); }
.story-text { color: var(--white); opacity: 0.82; line-height: 1.85; font-size: 17px; font-weight: 500; margin-top: 18px; }
.story-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.stat-block { border: 1px solid var(--border-dim); background: var(--bg-panel); display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 160px; }
.stat-num { font-family: var(--font-display); font-size: 58px; color: var(--gold); line-height: 1; }
.stat-label { font-family: var(--font-mono); color: var(--silver); font-size: 11px; letter-spacing: 0.12em; margin-top: 10px; }
.alert-stat { border-color: var(--red-soft); animation: alertPulse 3s ease-in-out infinite; }

.section-packs { padding: var(--section-pad) 0; background: var(--bg-void); }
.packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 2px; }
.pack-card { background: var(--bg-charcoal); border: 1px solid var(--border-dim); border-radius: 8px; cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; }
.pack-card::before { content: ''; position: absolute; inset: 0; background: var(--glow-blue-soft); opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.pack-card:hover { border-color: var(--border-active); transform: translateY(-4px); box-shadow: 0 18px 42px rgba(24,34,48,0.11); }
.pack-card:hover::before { opacity: 1; }
.pack-image { width: 100%; aspect-ratio: 4 / 3; position: relative; overflow: hidden; background: linear-gradient(135deg, #121212 0%, #1c1c1c 100%); }
.pack-image img { width: 100%; height: 100%; object-fit: cover; }
.pack-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
.pack-placeholder::before { content: ''; width: 44%; aspect-ratio: 1; border: 1px solid var(--border-active); transform: rotate(45deg); position: absolute; opacity: 0.35; }
.pack-badge { position: absolute; top: 16px; right: 16px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; background: var(--gold); color: #ffffff; padding: 4px 10px; }
.pack-info { padding: 24px; }
.pack-timeline { margin-bottom: 8px; }
.pack-name { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--white); margin-bottom: 10px; }
.pack-desc { font-size: 14px; color: var(--white); opacity: 0.78; line-height: 1.7; margin-bottom: 20px; font-weight: 500; min-height: 72px; }
.pack-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.pack-price { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--gold); }
.btn-acquire {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(180deg, rgba(204, 172, 73, 0.18), rgba(204, 172, 73, 0.07));
  border: 1px solid var(--gold);
  padding: 10px 20px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-acquire:hover {
  background: linear-gradient(180deg, rgba(204, 172, 73, 0.28), rgba(204, 172, 73, 0.12));
  box-shadow: 0 0 22px rgba(204, 172, 73, 0.2);
  transform: translateY(-2px);
}
.packs-final { margin-top: 2px; }
.final-pack-teaser { padding: 40px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; animation: alertPulse 3s ease-in-out infinite; }
.final-pack-teaser h3 { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--white); }
.final-pack-teaser p { font-size: 14px; color: var(--silver); max-width: 480px; line-height: 1.7; }
.final-lock { font-family: var(--font-mono); font-size: 11px; color: var(--red-alert); letter-spacing: 0.12em; opacity: 0.8; }

.section-universe { padding: var(--section-pad) 0; background: var(--bg-navy); }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.bento-tile { padding: 36px; border: 1px solid var(--border-dim); background: var(--bg-panel); transition: var(--transition); position: relative; overflow: hidden; min-height: 240px; }
.bento-tile:hover { border-color: var(--border-active); }
.bento-large { grid-column: span 2; }
.bento-tile h3 { font-family: var(--font-display); font-size: 30px; font-weight: 400; color: var(--white); margin: 12px 0 14px; }
.bento-tile p { font-size: 15px; color: var(--white); opacity: 0.78; line-height: 1.75; font-weight: 500; }
.alert-tile { border-color: var(--red-soft); animation: alertPulse 3s ease-in-out infinite; }
.alert-tile h3 { color: #ff6b6b; }
.gold-tile { border-color: var(--border-gold); background: linear-gradient(135deg, var(--bg-panel), rgba(201,168,76,0.06)); }
.gold-tile h3 { color: var(--gold); }
.glow-tile { border-color: var(--border-active); background: var(--glow-blue-soft); }
.bento-pulse { position: absolute; right: 30px; bottom: 30px; width: 60px; height: 60px; border: 1px solid var(--red-alert); border-radius: 50%; opacity: 0.3; animation: glowPulse 2s ease-in-out infinite; }

.section-archive { padding: var(--section-pad) 0; background: var(--bg-void); }
.timeline-scroll-wrap { overflow-x: auto; padding: 40px 0; margin: 0 -20px; padding-left: 20px; scrollbar-width: thin; }
.timeline-track { display: flex; align-items: center; gap: 0; min-width: max-content; position: relative; }
.timeline-track::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border-dim); transform: translateY(-50%); }
.timeline-node { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 0 32px; position: relative; cursor: pointer; text-decoration: none; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--glow-blue); background: var(--bg-void); position: relative; z-index: 1; transition: var(--transition); }
.timeline-dot.active { background: var(--glow-blue); box-shadow: 0 0 16px var(--glow-blue); animation: glowPulse 2s ease-in-out infinite; }
.timeline-dot.locked { border-color: var(--border-dim); }
.timeline-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--silver); text-align: center; white-space: nowrap; }
.timeline-label.locked { opacity: 0.3; }
.timeline-num { font-family: var(--font-display); font-size: 13px; color: var(--white); }
.archive-log { padding: 32px; margin-top: 40px; }
.log-entry { display: flex; gap: 20px; padding: 10px 0; border-bottom: 1px solid var(--border-dim); font-family: var(--font-mono); font-size: 12px; }
.log-entry:last-child { border-bottom: none; }
.log-time { color: var(--glow-blue); opacity: 0.7; white-space: nowrap; min-width: 60px; }
.log-text { color: var(--silver); }

.section-transmissions { padding: var(--section-pad) 0; background: var(--bg-deep); }
.characters-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.char-card { overflow: hidden; transition: var(--transition); }
.char-card:hover { border-color: var(--border-active); transform: translateY(-4px); }
.char-image { width: 100%; aspect-ratio: 3 / 2; position: relative; overflow: hidden; }
.char-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3)); opacity: 0; transition: opacity 0.3s ease; }
.char-card:hover .char-image::after { opacity: 1; }
.char-info { padding: 28px; }
.char-name { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--white); margin: 10px 0 14px; letter-spacing: 0.05em; }
.char-quote { font-size: 15px; color: var(--silver); line-height: 1.7; font-style: italic; margin-bottom: 20px; font-family: var(--font-display); }
.char-status { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; padding: 6px 12px; display: inline-block; }
.status-active { color: #4aff9e; border: 1px solid rgba(74,255,158,0.3); background: rgba(74,255,158,0.08); }
.status-unknown { color: var(--gold); border: 1px solid var(--border-gold); background: var(--gold-soft); }
.status-classified { color: var(--silver); border: 1px solid var(--border-dim); opacity: 0.5; }

.section-coming { padding: var(--section-pad) 0; background: var(--bg-void); }
.coming-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.coming-tile { border: 1px solid var(--border-dim); background: var(--bg-panel); padding: 34px; min-height: 270px; }
.coming-tile h3 { font-family: var(--font-display); font-size: 32px; font-weight: 300; margin: 16px 0; color: var(--white); }
.coming-tile p { color: var(--white); opacity: 0.78; line-height: 1.75; font-size: 15px; font-weight: 500; }
.coming-lock { margin-top: 28px; font-family: var(--font-mono); color: var(--gold); font-size: 10px; letter-spacing: 0.12em; opacity: 0.75; }

.section-agency { padding: var(--section-pad) 0; background: var(--bg-charcoal); }
.agency-inner { padding: clamp(48px, 6vw, 80px); text-align: center; }
.agency-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); font-weight: 300; color: var(--white); margin: 16px 0; }
.agency-sub { font-size: 16px; color: var(--white); opacity: 0.8; margin-bottom: 48px; font-weight: 500; line-height: 1.8; }
.agency-form { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.terminal-input-wrap { display: flex; align-items: center; gap: 8px; border: 1px solid var(--border-active); padding: 14px 20px; background: rgba(0,0,0,0.3); min-width: 340px; }
.terminal-prefix { font-family: var(--font-mono); font-size: 11px; color: var(--glow-blue); opacity: 0.7; white-space: nowrap; }
.terminal-input { background: none; border: none; outline: none; color: var(--white); font-family: var(--font-mono); font-size: 13px; flex: 1; min-width: 0; }
.terminal-input::placeholder { color: var(--silver); opacity: 0.3; }
.terminal-cursor { font-family: var(--font-mono); color: var(--glow-blue); animation: cursorBlink 1.2s step-end infinite; }
.agency-confirm { font-family: var(--font-mono); font-size: 13px; color: #4aff9e; margin-top: 20px; letter-spacing: 0.1em; text-shadow: 0 0 10px rgba(74,255,158,0.3); }

#footer { background: var(--bg-void); border-top: 1px solid var(--border-dim); }
.footer-terminal-bar { background: var(--bg-charcoal); border-bottom: 1px solid var(--border-dim); display: flex; justify-content: space-between; padding: 10px clamp(20px,4vw,60px); font-family: var(--font-mono); font-size: 10px; color: var(--silver); opacity: 0.6; flex-wrap: wrap; gap: 8px; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-top: 60px; padding-bottom: 60px; }
.footer-logo { font-family: var(--font-display); font-size: 28px; font-weight: 300; letter-spacing: 0.3em; color: var(--gold); display: block; margin-bottom: 12px; }
.footer-tagline { color: var(--silver); font-size: 14px; margin-bottom: 16px; font-weight: 200; }
.footer-copy { font-family: var(--font-mono); font-size: 10px; color: var(--silver); opacity: 0.4; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links .mono-label { margin-bottom: 6px; }
.footer-links a { color: var(--silver); text-decoration: none; font-size: 14px; opacity: 0.8; transition: opacity 0.2s; font-weight: 400; }
.footer-links a:hover { opacity: 1; color: var(--white); }
.footer-status { padding: 24px; }
.status-line { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--silver); margin-bottom: 10px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.status-dot.green { background: #4aff9e; box-shadow: 0 0 6px #4aff9e; }
.status-dot.red { background: var(--red-alert); box-shadow: 0 0 6px var(--red-alert); animation: glowPulse 2s infinite; }
.status-dot.amber { background: var(--gold); opacity: 0.7; }
.footer-bottom { border-top: 1px solid var(--border-dim); text-align: center; padding: 20px; }

.page-shell { position: relative; padding: 150px 0 var(--section-pad); min-height: 80vh; background: var(--bg-deep); }
.page-header { text-align: center; margin-bottom: 56px; position: relative; }
.split-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr); gap: 32px; align-items: start; position: relative; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.input, .textarea, .select {
  width: 100%;
  background: rgba(3, 6, 12, 0.56);
  border: 1px solid var(--border-dim);
  border-radius: 0;
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  outline: none;
  transition: var(--transition-fast);
}
.textarea { min-height: 120px; resize: vertical; }
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(204, 172, 73, 0.24);
}
.form-section { padding: 28px; margin-bottom: 18px; }
.form-section h2, .panel-title { font-family: var(--font-display); font-size: 28px; font-weight: 300; margin: 10px 0 20px; color: var(--white); }
.error-text { color: var(--red-alert); font-family: var(--font-mono); font-size: 11px; margin-top: 8px; min-height: 14px; }
.summary-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-dim); color: var(--silver); font-size: 14px; }
.summary-row.total { border-bottom: none; color: var(--gold); font-family: var(--font-display); font-size: 28px; }
.quantity-control { display: inline-flex; align-items: center; border: 1px solid var(--border-active); background: rgba(0,0,0,0.3); height: 42px; }
.quantity-control button { width: 40px; height: 40px; border: 0; background: transparent; color: var(--glow-blue); cursor: pointer; font-family: var(--font-mono); }
.quantity-control span, .quantity-control input { width: 42px; text-align: center; background: transparent; border: 0; color: var(--white); font-family: var(--font-mono); outline: none; }

.product-hero { min-height: 55vh; padding-top: 120px; display: flex; align-items: end; background: radial-gradient(circle at 50% 20%, rgba(201, 168, 76, 0.07), transparent 45%), linear-gradient(135deg, var(--bg-navy), var(--bg-void)); border-bottom: 1px solid var(--border-dim); }
.product-hero-inner { padding-bottom: 60px; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr); gap: 40px; padding-top: 140px; padding-bottom: 70px; }
.gallery-main { aspect-ratio: 4 / 3; background: linear-gradient(135deg, #121212, #1c1c1c); border: 1px solid var(--border-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.gallery-thumb { aspect-ratio: 1; border: 1px solid var(--border-dim); border-radius: 6px; background: linear-gradient(135deg, #121212, #1c1c1c); cursor: pointer; }
.product-title { font-family: var(--font-display); font-size: clamp(44px, 6vw, 78px); font-weight: 300; line-height: 1; margin: 14px 0 18px; }
.product-lore { color: var(--white); opacity: 0.82; line-height: 1.85; font-size: 16px; font-weight: 500; }
.inside-list { list-style: none; margin-top: 16px; display: grid; gap: 10px; }
.inside-list li { font-family: var(--font-mono); font-size: 12px; color: var(--silver); padding-left: 18px; position: relative; }
.inside-list li::before { content: '//'; position: absolute; left: 0; color: var(--glow-blue); }
.fragment-notice, .warning-note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; padding: 14px 16px; border: 1px solid var(--border-gold); color: var(--gold); background: var(--gold-soft); margin: 18px 0; }
.warning-note { border-color: var(--red-soft); color: var(--red-alert); background: var(--red-soft); }
.product-purchase { display: grid; gap: 16px; margin-top: 24px; }
.product-price-large { font-family: var(--font-display); font-size: 42px; color: var(--gold); }
.related-section { padding-bottom: var(--section-pad); }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-family: var(--font-mono); color: var(--glow-blue); font-size: 11px; letter-spacing: 0.12em; padding: 14px; border-bottom: 1px solid var(--border-dim); }
.cart-table td { padding: 16px 14px; border-bottom: 1px solid var(--border-dim); vertical-align: middle; color: var(--silver); }
.cart-product { display: flex; gap: 14px; align-items: center; min-width: 240px; }
.cart-thumb { width: 74px; height: 64px; background: linear-gradient(135deg, #121212, #1c1c1c); border: 1px solid var(--border-dim); border-radius: 6px; flex-shrink: 0; }
.cart-name { font-family: var(--font-display); font-size: 22px; color: var(--white); }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state p { font-family: var(--font-mono); color: var(--silver); margin-bottom: 24px; letter-spacing: 0.08em; }

#card-element { padding: 15px 16px; background: rgba(0,0,0,0.3); border: 1px solid var(--border-dim); border-radius: 6px; min-height: 50px; }
.checkout-items { display: grid; gap: 12px; margin-bottom: 20px; }
.checkout-item { display: flex; justify-content: space-between; gap: 14px; color: var(--silver); font-size: 13px; }

.confirmation-shell { min-height: 100vh; padding: 150px 0 var(--section-pad); display: flex; align-items: center; background: radial-gradient(circle at center, rgba(201, 168, 76, 0.06), transparent 50%), var(--bg-void); }
.confirmation-inner { max-width: 820px; margin: 0 auto; text-align: center; padding: 0 20px; }
.seal { width: 160px; height: 160px; margin: 0 auto 34px; animation: rotateSeal 16s linear infinite; color: var(--gold); }
.confirmation-title { font-family: var(--font-display); font-size: clamp(44px, 8vw, 88px); font-weight: 300; line-height: 1; }
.order-ref { font-family: var(--font-mono); color: var(--glow-blue); margin: 18px 0 36px; letter-spacing: 0.12em; }
.confirmation-panel { padding: 34px; text-align: left; }
.next-steps { list-style: none; display: grid; gap: 10px; margin-top: 24px; }
.next-steps li { font-family: var(--font-mono); color: var(--silver); font-size: 12px; }

.not-found { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px; background: var(--bg-void); }
.not-found h1 { font-family: var(--font-display); font-size: clamp(80px, 18vw, 180px); font-weight: 300; color: var(--gold); }
.not-found p { color: var(--silver); font-family: var(--font-mono); margin: 20px 0 34px; }

@media (max-width: 1024px) {
  .world-grid, .series-story, .split-layout, .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; }
  .characters-grid, .coming-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .packs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 24px;
    background: rgba(8,11,18,0.96);
    border-bottom: 1px solid var(--border-dim);
  }
  #main-nav.open .nav-links { display: flex; }
  .nav-link, .nav-cart { padding: 14px; border-bottom: 1px solid var(--border-dim); }
  .nav-hamburger { display: flex; }
}
@media (max-width: 640px) {
  #hero { padding-top: 108px; }
  .hero-title-line { font-size: 16vw; }
  .pillars-grid, .bento-grid, .packs-grid, .footer-main, .field-grid, .story-stats { grid-template-columns: 1fr; }
  .bento-large { grid-column: span 1; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .agency-form { flex-direction: column; align-items: stretch; }
  .terminal-input-wrap { min-width: unset; }
  .cart-table { display: block; overflow-x: auto; }
  .product-hero { min-height: 46vh; }
}

/* Premium Product Page Elements */
.sticky-purchase-column {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.small-badge {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--border-gold);
  background: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.italic-tagline {
  font-style: italic;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--gold);
  margin: 16px 0;
  font-weight: 300;
}
.divider-line {
  height: 1px;
  background: var(--border-dim);
  margin: 32px 0;
}
.section-label-caps {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--silver);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.whats-inside-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
  margin-top: 16px;
}
.inside-grid-item {
  display: flex;
  gap: 16px;
  align-items: start;
}
.inside-icon-wrap {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-gold);
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.inside-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.inside-item-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}
.inside-item-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--silver);
  line-height: 1.5;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.stat-pill-card {
  border: 1px solid var(--border-dim);
  background: var(--bg-panel);
  padding: 20px;
  text-align: center;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-pill-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  color: var(--gold);
  line-height: 1;
}
.stat-pill-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--silver);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.pill-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  border: 1px solid var(--border-dim);
  padding: 6px 12px;
  background: rgba(255,255,255,0.02);
  color: var(--silver);
  border-radius: 40px;
}
.series-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.series-pack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border: 1px solid var(--border-dim);
  background: var(--bg-panel);
  border-radius: 4px;
  transition: var(--transition-fast);
}
.series-pack-item:hover {
  border-color: var(--border-active);
  background: var(--glow-blue-soft);
}
.series-pack-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
}
.series-status-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}
.badge-green {
  background: rgba(74,255,158,0.08);
  border: 1px solid rgba(74,255,158,0.3);
  color: #4aff9e;
}
.badge-grey {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dim);
  color: var(--silver);
}
.badge-amber {
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.faq-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-question {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}
.faq-answer {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
}
.purchase-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.price-large {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}
.price-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--silver);
  letter-spacing: 0.05em;
}
.purchase-short-line {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.5;
  font-weight: 500;
}
.trust-lines-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.trust-line-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--silver);
  opacity: 0.8;
}
.trust-line-item svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}
.checklist-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.checklist-item {
  display: flex;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  color: var(--silver);
  line-height: 1.5;
  font-weight: 500;
}
.checklist-item svg {
  width: 14px;
  height: 14px;
  fill: #4aff9e;
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .sticky-purchase-column {
    position: static;
  }
}

@media (max-width: 640px) {
  .whats-inside-grid, .stats-row {
    grid-template-columns: 1fr;
  }
}

/* Staggered 3D Letters Animation */
.animate-letters-3d {
  display: inline-block;
}
.letter-3d {
  display: inline-block;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease, text-shadow 0.3s ease;
  will-change: transform;
}
.letter-3d:hover {
  transform: translate3d(0, -6px, 15px) rotateY(25deg) rotateX(15deg);
  color: var(--gold) !important;
  text-shadow: 0 0 15px rgba(201, 168, 76, 0.6);
}

@keyframes rotateLetterIn {
  0% {
    opacity: 0;
    transform: rotateX(-90deg) translate3d(0, 40px, -50px);
  }
  100% {
    opacity: 1;
    transform: rotateX(0) translate3d(0, 0, 0);
  }
}
.letter-3d-in {
  display: inline-block;
  opacity: 0;
  animation: rotateLetterIn 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: calc(var(--index) * 0.04s + 0.5s);
}

/* Premium Scroll Reveal Animations */
.reveal-fade, .reveal-scale, .reveal-left, .reveal-right, .reveal-3d {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), 
              transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform, opacity;
}
.reveal-fade { transform: translateY(30px); }
.reveal-scale { transform: scale(0.94) translateY(20px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-3d {
  perspective: 1000px;
  transform: rotateX(12deg) translateY(40px) scale(0.97);
}

.reveal-fade.visible, .reveal-scale.visible, .reveal-left.visible, .reveal-right.visible, .reveal-3d.visible {
  opacity: 1;
  transform: translate(0) scale(1) rotate(0);
}

/* Gallery Thumb Focus Border Glow */
.gallery-thumb.active {
  border-color: var(--gold) !important;
  box-shadow: 0 0 12px var(--border-gold);
}

/* ==========================================================================
   Lorexa Premium Upgrades - Light Theme & Custom Additions
   ========================================================================== */

/* Brand Logo animations */
.nav-brand-logo {
  height: 28px;
  width: auto;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.floating-bob {
  animation: floatingBob 3s ease-in-out infinite;
}
@keyframes floatingBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.brand-symbol {
  display: block;
  margin: 0 auto 30px;
  width: 120px;
  height: 120px;
}

/* 3D Tilt background styling */
#hero {
  perspective: 1000px;
  transform-style: preserve-3d;
}
#hero-3d-bg {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.15) 0%, rgba(8, 8, 8, 0) 75%), url('/assets/uploads/pack-1778730649637.png') no-repeat center center;
  background-size: cover;
  opacity: 0.25;
  z-index: 0;
  transform: translateZ(-100px);
  pointer-events: none;
  transition: transform 0.1s ease-out;
}

body.light-theme #hero-3d-bg {
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.25) 0%, rgba(247, 248, 250, 0) 75%), url('/assets/uploads/pack-1778730649637.png') no-repeat center center;
  background-size: cover;
  opacity: 0.18;
}

/* Order Status Badges in profile */
.order-status-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: bold;
}
.badge-pending {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}
.badge-dispatched {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.4);
}
.badge-delivered {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.4);
}
