/* =============================================
   GASHAPOINT — Global Stylesheet
   Design: Neo-Collector | Dark + Electric Red
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ── Variables ─────────────────────────────── */
:root {
  --void:     #07070F;
  --dark:     #0C0C1A;
  --surface:  #121224;
  --elevated: #1A1A30;
  --card:     #171730;
  --border:   rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.14);

  --red:        #FF3548;
  --red-dim:    #CC2A3B;
  --red-glow:   rgba(255, 53, 72, 0.18);
  --red-subtle: rgba(255, 53, 72, 0.08);

  --gold:       #FFB300;
  --gold-glow:  rgba(255, 179, 0, 0.15);

  --cyan:       #0DCCFF;
  --cyan-glow:  rgba(13, 204, 255, 0.15);

  --purple:     #9B6DFF;
  --green:      #00E88F;

  --text:   #EEEEF5;
  --text-2: #B0B0CC;
  --muted:  #6B6B92;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-card:   0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-red:    0 0 40px rgba(255, 53, 72, 0.25);
  --shadow-gold:   0 0 32px rgba(255, 179, 0, 0.2);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }

/* ── Scrollbar ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--elevated); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-dim); }

/* ── Selection ─────────────────────────────── */
::selection { background: var(--red-subtle); color: var(--red); }

/* ── Container ─────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1440px; }

/* ── Navigation ────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: rgba(12, 12, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(7, 7, 15, 0.95);
  border-bottom-color: rgba(255, 53, 72, 0.1);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.nav__logo-icon {
  width: 32px; height: 32px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.nav__logo-text span { color: var(--red); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--transition);
}
.nav__link:hover { color: var(--text); background: var(--border); }
.nav__link--active { color: var(--text); }
.nav__link .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.nav__link:hover .dot { opacity: 1; transform: scale(1.3); }
.nav__link--capsule .dot { background: var(--red); box-shadow: 0 0 6px var(--red); opacity: 0.8; }
.nav__link--gacha   .dot { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); opacity: 0.8; }
.nav__link--blind   .dot { background: var(--purple); box-shadow: 0 0 6px var(--purple); opacity: 0.8; }
.nav__link--culture .dot { background: var(--gold); box-shadow: 0 0 6px var(--gold); opacity: 0.8; }
.nav__link--business .dot { background: var(--green); box-shadow: 0 0 6px var(--green); opacity: 0.8; }
.nav__link--capsule:hover .dot,
.nav__link--gacha:hover .dot,
.nav__link--blind:hover .dot,
.nav__link--culture:hover .dot,
.nav__link--business:hover .dot { opacity: 1; transform: scale(1.4); }
.nav__link--play {
  background: var(--red-subtle);
  color: var(--red) !important;
  border: 1px solid rgba(255, 53, 72, 0.2);
}
.nav__link--play:hover { background: var(--red); color: var(--text) !important; }
.nav__divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 4px;
  align-self: center;
}
.nav__link--util {
  font-size: 0.8rem;
  color: var(--muted) !important;
  padding: 6px 10px;
}
.nav__link--util:hover { color: var(--text) !important; background: transparent; }
.nav__mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.nav__mobile-link--util {
  font-size: 0.9rem;
  color: var(--muted);
  opacity: 0.75;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--void);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
}
.nav__mobile.open { display: block; }
.nav__mobile-links { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-2);
  transition: var(--transition);
}
.nav__mobile-link:hover { color: var(--text); background: var(--surface); }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 53, 72, 0.35);
}
.btn--primary:hover {
  background: var(--red-dim);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(255, 53, 72, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn--ghost:hover { border-color: var(--text); background: rgba(255,255,255,0.04); }
.btn--gold {
  background: var(--gold);
  color: var(--void);
  box-shadow: 0 4px 20px rgba(255, 179, 0, 0.3);
}
.btn--gold:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(255, 179, 0, 0.4); }
.btn--cyan {
  background: var(--cyan);
  color: var(--void);
}
.btn--cyan:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(13, 204, 255, 0.4); }
.btn--sm { padding: 8px 16px; font-size: 0.8rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }

/* ── Tags / Badges ─────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tag--red    { background: var(--red-subtle); color: var(--red); border: 1px solid rgba(255,53,72,0.2); }
.tag--gold   { background: var(--gold-glow); color: var(--gold); border: 1px solid rgba(255,179,0,0.2); }
.tag--cyan   { background: var(--cyan-glow); color: var(--cyan); border: 1px solid rgba(13,204,255,0.2); }
.tag--purple { background: rgba(155,109,255,0.1); color: var(--purple); border: 1px solid rgba(155,109,255,0.2); }
.tag--green  { background: rgba(0,232,143,0.1); color: var(--green); border: 1px solid rgba(0,232,143,0.2); }
.tag--gray   { background: rgba(255,255,255,0.05); color: var(--muted); border: 1px solid var(--border); }

/* ── Cards ─────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.card--glow:hover {
  border-color: rgba(255, 53, 72, 0.3);
  box-shadow: 0 12px 40px rgba(255, 53, 72, 0.15);
}
.card__img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--elevated);
  overflow: hidden;
  position: relative;
}
.card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.card__body { padding: 20px; }
.card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.card__title a { transition: var(--transition); }
.card__title a:hover { color: var(--red); }
.card__excerpt {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.card__read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.card__read-more:hover { gap: 8px; }

/* ── Section Hub Cards (Homepage) ─────────── */
.hub-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.hub-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
  border-radius: inherit;
}
.hub-card:hover { transform: translateY(-6px); border-color: var(--border-hover); }
.hub-card:hover::before { opacity: 1; }
.hub-card--red::before    { background: radial-gradient(ellipse at top left, var(--red-glow) 0%, transparent 60%); }
.hub-card--gold::before   { background: radial-gradient(ellipse at top left, var(--gold-glow) 0%, transparent 60%); }
.hub-card--cyan::before   { background: radial-gradient(ellipse at top left, var(--cyan-glow) 0%, transparent 60%); }
.hub-card--purple::before { background: radial-gradient(ellipse at top left, rgba(155,109,255,0.15) 0%, transparent 60%); }
.hub-card--green::before  { background: radial-gradient(ellipse at top left, rgba(0,232,143,0.12) 0%, transparent 60%); }
.hub-card--orange::before { background: radial-gradient(ellipse at top left, rgba(255,140,0,0.15) 0%, transparent 60%); }
.hub-card__img {
  margin: -28px -28px 20px -28px;
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}
.hub-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hub-card:hover .hub-card__img img { transform: scale(1.06); }
.hub-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--card) 100%);
}
/* Brand cards with blurred background images */
.brand-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  text-align: center;
}
.brand-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(14px) saturate(0.7);
  opacity: 0.18;
  transform: scale(1.08);
  transition: opacity 0.4s ease, filter 0.4s ease;
  pointer-events: none;
}
.brand-card:hover .brand-card__bg {
  opacity: 0.28;
  filter: blur(10px) saturate(0.9);
}
.brand-card__content {
  position: relative;
  z-index: 1;
}

.hub-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.hub-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hub-card__desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
}
.hub-card__arrow {
  position: absolute;
  bottom: 28px; right: 28px;
  font-size: 1.2rem;
  transition: var(--transition);
  opacity: 0.4;
}
.hub-card:hover .hub-card__arrow { opacity: 1; transform: translate(4px, -4px); }
.hub-card__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ── Hero Sections ─────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(255,53,72,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(13,204,255,0.05) 0%, transparent 50%),
    var(--void);
  z-index: 0;
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  z-index: 0;
  opacity: 0.4;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--red);
}
.hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 24px;
}
.hero__title .accent { color: var(--red); }
.hero__title .accent--gold { color: var(--gold); }
.hero__title .accent--cyan { color: var(--cyan); }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  display: block;
}
.hero__stat-value span { color: var(--red); }
.hero__stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── Machine Art ────────────────────────────── */
.machine-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.machine-svg-wrap {
  position: relative;
  width: 280px;
  filter: drop-shadow(0 0 60px rgba(255, 53, 72, 0.3));
  animation: machine-float 4s ease-in-out infinite;
}

@keyframes machine-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.floating-capsule {
  position: absolute;
  border-radius: 50%;
  animation: capsule-orbit 6s ease-in-out infinite;
  opacity: 0.8;
}
.floating-capsule:nth-child(1) { width: 28px; height: 40px; top: 10%; left: -20%; animation-delay: 0s; background: linear-gradient(135deg, #FF3548 50%, #fff 50%); border-radius: 50px; }
.floating-capsule:nth-child(2) { width: 22px; height: 32px; top: 60%; right: -15%; animation-delay: -2s; background: linear-gradient(135deg, #FFB300 50%, #fff 50%); border-radius: 50px; }
.floating-capsule:nth-child(3) { width: 20px; height: 30px; bottom: 20%; left: -25%; animation-delay: -4s; background: linear-gradient(135deg, #0DCCFF 50%, #fff 50%); border-radius: 50px; }
.floating-capsule:nth-child(4) { width: 18px; height: 26px; top: 40%; right: -30%; animation-delay: -1s; background: linear-gradient(135deg, #9B6DFF 50%, #fff 50%); border-radius: 50px; }
.floating-capsule:nth-child(5) { width: 24px; height: 34px; bottom: 10%; right: -10%; animation-delay: -3s; background: linear-gradient(135deg, #00E88F 50%, #fff 50%); border-radius: 50px; }

@keyframes capsule-orbit {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(15deg); }
  66% { transform: translateY(10px) rotate(-10deg); }
}

/* ── Gashapon Machine SVG Component ─────────── */
.gasha-machine {
  width: 100%;
  height: auto;
}

/* ── Stats Bar ─────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  display: block;
}
.stat-item__value .accent { color: var(--red); }
.stat-item__label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.stat-item__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Section Layouts ───────────────────────── */
.section {
  padding: 80px 0;
}
.section--dark   { background: var(--void); }
.section--darker { background: var(--surface); }
.section__header {
  margin-bottom: 48px;
}
.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section__eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--red);
}
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.7;
}
.section__header--center { text-align: center; }
.section__header--center .section__eyebrow { justify-content: center; }
.section__header--center .section__eyebrow::before { display: none; }
.section__header--center .section__subtitle { margin: 0 auto; }

/* ── Grid Layouts ──────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.grid-hub  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ── Featured Content ──────────────────────── */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.featured-article:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.featured-article__img {
  background: var(--elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.featured-article__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-subtle) 0%, transparent 50%);
}
.featured-article__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ── Section Page Hero ─────────────────────── */
.section-hero {
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}
.section-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-hero__content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--border-hover); }

/* ── Pillar Content ────────────────────────── */
.pillar-content {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
}
.pillar-content h2 {
  font-size: 1.75rem;
  color: var(--text);
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  letter-spacing: -0.025em;
}
.pillar-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.pillar-content h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin: 32px 0 12px;
  letter-spacing: -0.02em;
}
.pillar-content p { margin-bottom: 20px; }
.pillar-content strong { color: var(--text); font-weight: 600; }
.pillar-content ul, .pillar-content ol {
  margin: 0 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar-content ul { list-style: disc; }
.pillar-content ol { list-style: decimal; }
.pillar-content a { color: var(--red); text-decoration: underline; text-decoration-color: rgba(255,53,72,0.3); }
.pillar-content a:hover { text-decoration-color: var(--red); }

/* ── Info Box ──────────────────────────────── */
.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 28px 0;
}
.info-box--gold { border-left-color: var(--gold); }
.info-box--cyan { border-left-color: var(--cyan); }
.info-box__title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--red);
}
.info-box--gold .info-box__title { color: var(--gold); }
.info-box--cyan .info-box__title { color: var(--cyan); }

/* ── TOC ───────────────────────────────────── */
.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.toc__title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.toc__list { display: flex; flex-direction: column; gap: 4px; }
.toc__item {
  display: block;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-2);
  transition: var(--transition);
  border-left: 2px solid transparent;
}
.toc__item:hover { color: var(--text); background: var(--elevated); border-left-color: var(--red); }
.toc__item.active { color: var(--red); border-left-color: var(--red); }
.toc__item--sub { padding-left: 22px; font-size: 0.8rem; }

/* ── Layout with Sidebar ───────────────────── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: start;
}
.content-layout__main { min-width: 0; }
.content-layout__sidebar { position: sticky; top: 80px; }

/* ── Rarity Indicator ──────────────────────── */
.rarity {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.rarity-stars { color: var(--gold); letter-spacing: -2px; }
.rarity--secret .rarity-stars { color: var(--red); }
.rarity--common .rarity-stars { color: var(--muted); }

/* ── Price Tag ─────────────────────────────── */
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.price-tag__currency { font-size: 0.8em; color: var(--muted); }
.price-tag__value { font-family: var(--font-mono); font-weight: 700; font-size: 1.1em; color: var(--gold); }
.price-tag__note { font-size: 0.75em; color: var(--muted); }

/* ── Progress Bar ──────────────────────────── */
.progress-bar {
  height: 6px;
  background: var(--elevated);
  border-radius: 3px;
  overflow: hidden;
}
.progress-bar__fill {
  height: 100%;
  border-radius: 3px;
  background: var(--red);
  transition: width 0.8s ease;
}
.progress-bar__fill--gold { background: var(--gold); }
.progress-bar__fill--cyan { background: var(--cyan); }

/* ── Play Section ──────────────────────────── */
.machine-simulator {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.machine-3d {
  position: relative;
  width: 320px;
  cursor: pointer;
  user-select: none;
}
.machine-3d svg { filter: drop-shadow(0 20px 60px rgba(255, 53, 72, 0.3)); }
.machine-3d:hover svg { filter: drop-shadow(0 20px 80px rgba(255, 53, 72, 0.5)); }
.machine-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--red);
  color: white;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 32px rgba(255, 53, 72, 0.4);
  transition: var(--transition);
  border: none;
}
.machine-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255, 53, 72, 0.55); }
.machine-btn:active { transform: translateY(0); }
.machine-btn .coin-icon { font-size: 1.4rem; }
.machine-btn--disabled { opacity: 0.5; cursor: not-allowed; }
.capsule-drop-zone {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 60px;
  pointer-events: none;
}
.capsule-dropping {
  width: 44px; height: 64px;
  border-radius: 50px;
  position: absolute;
  animation: capsule-fall 0.8s cubic-bezier(0.4, 0, 1, 1) forwards;
  left: 50%; transform: translateX(-50%) translateY(-200px);
}
@keyframes capsule-fall {
  0%  { transform: translateX(-50%) translateY(-200px) rotate(0deg); opacity: 1; }
  80% { opacity: 1; }
  100%{ transform: translateX(-50%) translateY(0) rotate(360deg); opacity: 0; }
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 600px;
}
.collection-slot {
  aspect-ratio: 1;
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.collection-slot.filled {
  border-style: solid;
  border-color: var(--border-hover);
  animation: slot-fill 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes slot-fill {
  0%  { transform: scale(0); }
  100%{ transform: scale(1); }
}
.collection-slot.filled.rare    { border-color: rgba(255,179,0,0.4); box-shadow: 0 0 16px rgba(255,179,0,0.2); }
.collection-slot.filled.secret  { border-color: rgba(255,53,72,0.4); box-shadow: 0 0 16px rgba(255,53,72,0.2); }
.rarity-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,179,0,0.4), transparent);
  animation: flash 0.6s ease forwards;
}
@keyframes flash { 0%{opacity:1;} 100%{opacity:0;} }
.prize-reveal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7,7,15,0.8);
  backdrop-filter: blur(12px);
  animation: reveal-in 0.3s ease;
}
@keyframes reveal-in { from{opacity:0;} to{opacity:1;} }
.prize-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  border: 1px solid var(--border);
  max-width: 380px;
  width: 90%;
  animation: prize-bounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes prize-bounce { from{transform:scale(0.5);opacity:0;} to{transform:scale(1);opacity:1;} }
.prize-card.rare   { border-color: rgba(255,179,0,0.4); box-shadow: 0 0 60px rgba(255,179,0,0.2); }
.prize-card.secret { border-color: rgba(255,53,72,0.5); box-shadow: 0 0 60px rgba(255,53,72,0.3); }
.prize-card__emoji { font-size: 5rem; margin-bottom: 16px; display: block; }
.prize-card__rarity {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.prize-card.rare   .prize-card__rarity { color: var(--gold); }
.prize-card.secret .prize-card__rarity { color: var(--red); }
.prize-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.prize-card__desc { font-size: 0.9rem; color: var(--text-2); margin-bottom: 28px; }
.prize-close {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.prize-close:hover { color: var(--text); border-color: var(--border-hover); }
.pull-counter {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}
.pull-counter span { color: var(--red); font-weight: 700; }
.pity-bar {
  width: 200px;
  margin: 8px auto 0;
}

/* ── CTA Band ───────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, rgba(255,53,72,0.08) 0%, rgba(13,204,255,0.05) 100%);
  border: 1px solid rgba(255,53,72,0.15);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,53,72,0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(13,204,255,0.08) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  pointer-events: none;
}
.cta-band__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-band__sub { color: var(--text-2); max-width: 480px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-band__form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}
.cta-band__input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.cta-band__input::placeholder { color: var(--muted); }
.cta-band__input:focus { border-color: var(--red); }

/* ── Footer ─────────────────────────────────── */
.footer {
  background: var(--void);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand { max-width: 280px; }
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.footer__brand-logo .icon {
  width: 30px; height: 30px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.footer__tagline { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__link {
  font-size: 0.875rem;
  color: var(--text-2);
  transition: var(--transition);
}
.footer__link:hover { color: var(--red); }
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy { font-size: 0.8rem; color: var(--muted); }
.footer__copy span { color: var(--red); }
.footer__socials { display: flex; gap: 8px; }
.footer__social {
  width: 34px; height: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  transition: var(--transition);
}
.footer__social:hover { color: var(--text); border-color: var(--border-hover); background: var(--elevated); }

/* ── Comparison Table ──────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); color: var(--text); }
.compare-table .check { color: var(--green); }
.compare-table .cross { color: var(--red); }

/* ── Scroll Reveal ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Utilities ─────────────────────────────── */
.text-red    { color: var(--red); }
.text-gold   { color: var(--gold); }
.text-cyan   { color: var(--cyan); }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }
.fw-700      { font-weight: 700; }
.font-mono   { font-family: var(--font-mono); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ── Mobile Responsive ─────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-hub { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-layout { grid-template-columns: 1fr; }
  .content-layout__sidebar { display: none; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .grid-2, .grid-3, .grid-hub { grid-template-columns: 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-article__img { min-height: 200px; }
  .cta-band { padding: 40px 24px; }
  .cta-band__form { flex-direction: column; }
  .stats-bar__inner { justify-content: center; }
  .stat-item__divider { display: none; }
  .section { padding: 56px 0; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .collection-grid { grid-template-columns: repeat(4, 1fr); }
  .machine-3d { width: 260px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: 20px; }
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
}
