/* ============================================================
   ONGROUP — home.css (top page + opening)
   Type: Shippori Mincho B1 / Noto Serif JP / Anton·Playfair·Cinzel
   ============================================================ */

/* Angel Tears (self-hosted .ttf in /fonts) — the real font now present. */
@font-face {
  font-family: "Angel Tears";
  src: url("../fonts/angel-tears.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   OPENING SEQUENCE (overlay)
   ============================================================ */
.opening-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0a0a0a;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.opening-overlay.fade-out {
  animation: openingFadeOut 0.8s ease-out forwards;
}
@keyframes openingFadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

.opening-content { text-align: center; }

.opening-text-1 {
  display: block;
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: clamp(40px, 8vw, 120px);
  color: #ffffff;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(-100px);
  animation: openingDropDown 0.8s ease-out forwards;
  animation-delay: 1.6s;
}

.opening-text-2 {
  display: block;
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: clamp(80px, 18vw, 280px);
  color: #FF073A;
  opacity: 0;
  transform: translateX(100vw) rotateY(180deg) scale(0.5);
  text-shadow:
    0 0 10px #FF073A,
    0 0 20px #FF073A,
    0 0 40px rgba(255, 7, 58, 0.8),
    0 0 80px rgba(255, 7, 58, 0.6),
    0 0 120px rgba(255, 7, 58, 0.4),
    0 0 200px rgba(255, 7, 58, 0.2);
  animation: openingFlyIn 0.8s ease-out forwards;
  animation-delay: 0.8s;
}

@keyframes openingFlyIn {
  0%   { transform: translateX(100vw) rotateY(180deg) scale(0.5); opacity: 0; }
  60%  { transform: translateX(0) rotateY(0) scale(1.15); opacity: 1; }
  75%  { transform: translateX(0) rotateY(0) scale(0.95); }
  90%  { transform: translateX(0) rotateY(0) scale(1.05); }
  100% { transform: translateX(0) rotateY(0) scale(1); opacity: 1; }
}
@keyframes openingDropDown {
  0%   { opacity: 0; transform: translateY(-100px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .opening-overlay { display: none !important; }
}

/* ============================================================
   HERO  (S1)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 60px;
  overflow: hidden;
}
.hero__bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(58% 60% at 74% 42%, rgba(255,215,0,0.12), transparent 70%),
    radial-gradient(80% 50% at 50% 100%, rgba(0,0,0,0.5), transparent);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  width: min(100% - 48px, var(--maxw));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.hero__content { max-width: 680px; }
.hero__brand {
  font-family: var(--font-anton);
  font-weight: 400;
  font-size: clamp(46px, 7.5vw, 116px);
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: clamp(34px, 4.5vw, 56px);
}
.hero__titles { margin-bottom: 34px; }
.hero__role {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: 0.02em;
  color: var(--gray-1);
}
.hero__role .slash { color: var(--gold); margin: 0 0.5em; font-weight: 400; }
.hero__role .hl { color: var(--gold-light); }
.hero__name {
  margin: 12px 0 6px;
  font-family: var(--font-anton);
  font-size: clamp(34px, 5.6vw, 72px);
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
}
.hero__post { font-family: var(--font-serif); font-size: clamp(12px, 1.4vw, 14px); letter-spacing: 0.02em; color: var(--gray-2); }

.hero__statement {
  font-family: var(--font-mincho);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 30px;
}
.hero__statement .line { display: block; white-space: nowrap; }
.hero__statement .line-1 { font-size: clamp(42px, 8vw, 100px); color: var(--white); }
.hero__statement .line-2 { font-size: clamp(48px, 9vw, 108px); }
.hero__statement .gold { color: var(--gold); text-shadow: 0 0 44px rgba(255,215,0,0.4); }

.hero__lede {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: clamp(20px, 2.8vw, 38px);
  line-height: 1.6;
  color: var(--white);
  max-width: 30ch;
}
.hero__lede .hl { color: var(--gold-light); font-weight: 800; }
.hero__lede p + p { margin-top: 1.1em; }

.hero__figure { position: relative; justify-self: center; cursor: pointer; }
.hero__figure::before {
  content: "";
  position: absolute;
  inset: -5% -8%;
  background: radial-gradient(48% 54% at 52% 40%, rgba(255,215,0,0.30), transparent 68%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease);
}
/* dedicated white aura — fades in on hover */
.hero__figure::after {
  content: "";
  position: absolute;
  inset: -14% -16%;
  background: radial-gradient(ellipse at 52% 42%,
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0.32) 30%,
    rgba(255,255,255,0.12) 58%,
    rgba(255,255,255,0) 80%);
  filter: blur(40px);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease);
}
.hero__img {
  position: relative;
  z-index: 1;
  width: min(440px, 80vw);
  border-radius: 4px;
  -webkit-mask-image: linear-gradient(to bottom, #000 80%, transparent);
  mask-image: linear-gradient(to bottom, #000 80%, transparent);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.6s cubic-bezier(0.4,0,0.2,1);
}
.hero__figure:hover .hero__img {
  transform: scale(1.05) translateY(-8px);
  filter: brightness(1.2) drop-shadow(0 0 30px rgba(255,255,255,0.8)) drop-shadow(0 0 60px rgba(255,255,255,0.5)) drop-shadow(0 0 100px rgba(255,255,255,0.3));
}
.hero__figure:hover::before { opacity: 0; }
.hero__figure:hover::after { opacity: 1; }
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-en-body);
  font-size: 10px; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--gold-light);
}
.hero__scroll svg { width: 16px; height: 16px; animation: bounceDown 1.8s ease infinite; }
@keyframes bounceDown { 0%,100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(6px); opacity: 1; } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { position: relative; padding: clamp(64px, 8vw, 110px) 0; }
.section--full { min-height: auto; display: grid; align-items: center; }
.section__head { margin-bottom: clamp(36px, 5vw, 60px); }
.section__head.center { text-align: center; }
.section__eyebrow {
  font-family: var(--font-en-body);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section__title {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: clamp(30px, 5.4vw, 76px);
  color: var(--gold);
  letter-spacing: 0.03em;
}
.section__title.white { color: var(--white); }
.section__title .gold { color: var(--gold); }
.worlds__title { line-height: 1.5; }
.worlds__title .line { display: block; }
.worlds__title .line + .line { margin-top: 12px; }

/* ============================================================
   S2 — ESSENCE DECLARATION (本質宣言)
   ============================================================ */
.essence { text-align: center; }
.essence__inner { width: min(100% - 48px, 980px); margin-inline: auto; }
.essence__title {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: clamp(32px, 6vw, 84px);
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: clamp(56px, 9vw, 120px);
  text-shadow: 0 0 50px rgba(255,215,0,0.3);
}
.essence__body { display: flex; flex-direction: column; gap: clamp(40px, 7vw, 88px); }
.essence__p {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(20px, 3.2vw, 44px);
  line-height: 1.75;
  color: var(--white);
  letter-spacing: 0.03em;
}
.essence__p .hl { color: var(--gold-light); }
.essence__p.lg {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: clamp(24px, 4.2vw, 58px);
  color: var(--gold-light);
  line-height: 1.5;
}

/* ============================================================
   S3 — THREE WORLDS
   ============================================================ */
.worlds__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.world-card {
  position: relative;
  display: block;
  min-height: clamp(460px, 64vh, 640px);
  border: 1px solid var(--black-line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--black-pure);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.world-card__media { position: absolute; inset: 0; overflow: hidden; }
.world-card__media img,
.world-card__media .ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.6) contrast(1.05);
  transition: transform 0.6s var(--ease), filter 0.5s var(--ease);
}
.world-card__media img.pos-top { object-position: center 12%; }
.world-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.5) 45%, rgba(0,0,0,0.94) 100%);
  transition: background 0.5s var(--ease);
}
.world-card__glow {
  position: absolute; inset: 0; z-index: 2;
  box-shadow: inset 0 0 0 1px transparent, inset 0 0 60px -20px transparent;
  pointer-events: none;
  transition: box-shadow 0.45s var(--ease);
}
.world-card__body {
  position: absolute; z-index: 3;
  inset: auto 0 0 0;
  padding: clamp(24px, 3vw, 36px);
}
.world-card__index { font-family: var(--font-num); font-size: 13px; letter-spacing: 0.02em; color: var(--gold-deep); }
.world-card__label {
  font-family: "Angel Tears", "Allura", "Pinyon Script", "Playfair Display", serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(64px, 8vw, 116px);
  letter-spacing: 0.01em;
  color: var(--white);
  margin: 6px 0 12px;
  line-height: 1.04;
  white-space: nowrap;
  transition: color 0.4s var(--ease), text-shadow 0.4s var(--ease);
}
.world-card__sub { font-family: var(--font-serif); font-weight: 700; font-size: 13px; letter-spacing: 0.02em; color: var(--white); margin-bottom: 16px; }
.world-card__desc { display: flex; flex-direction: column; gap: 6px; }
.world-card__desc p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.6;
  color: var(--gray-1);
  white-space: nowrap;
}
.world-card__cue {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--gold);
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.world-card__cue svg { width: 16px; height: 16px; }

.world-card:hover { transform: scale(1.03); border-color: rgba(255,215,0,0.5); box-shadow: 0 30px 70px -30px rgba(0,0,0,0.9); z-index: 4; }
.world-card:hover .world-card__media img,
.world-card:hover .world-card__media .ph { transform: scale(1.07); filter: grayscale(0.04) brightness(0.78) contrast(1.05); }
.world-card:hover .world-card__media::after { background: linear-gradient(180deg, rgba(10,10,10,0.12) 0%, rgba(10,10,10,0.35) 45%, rgba(0,0,0,0.9) 100%); }
.world-card:hover .world-card__glow { box-shadow: inset 0 0 0 1px rgba(255,215,0,0.55), inset 0 0 70px -10px rgba(255,215,0,0.35); }
.world-card:hover .world-card__label { color: var(--gold-light); text-shadow: 0 0 30px rgba(255,215,0,0.5); }
.world-card:hover .world-card__cue { opacity: 1; transform: none; }

.ph-cosmic {
  background:
    radial-gradient(40% 30% at 30% 24%, rgba(255,215,0,0.5), transparent 60%),
    radial-gradient(50% 40% at 74% 64%, rgba(155,124,30,0.55), transparent 62%),
    repeating-linear-gradient(125deg, #0d0d0d 0 12px, #080808 12px 24px);
}
.ph-cosmic::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(1.5px 1.5px at 20% 30%, #FFD700 50%, transparent),
                    radial-gradient(1px 1px at 60% 50%, #FFD700 50%, transparent),
                    radial-gradient(1.5px 1.5px at 80% 22%, #fff 50%, transparent),
                    radial-gradient(1px 1px at 38% 72%, #FFD700 50%, transparent),
                    radial-gradient(1px 1px at 70% 80%, #FFD700 50%, transparent);
  opacity: 0.85;
}

/* ============================================================
   S4 — AESTHETIC OF BLACK
   ============================================================ */
.aesthetic { text-align: center; }
.aesthetic__lines { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 56px); align-items: center; }
.aesthetic__line {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: clamp(26px, 4.6vw, 64px);
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--white);
  max-width: 24ch;
}
.aesthetic__line .hl { color: var(--gold-light); }

/* ============================================================
   S5 — FINAL DECLARATION (最終宣言)
   ============================================================ */
.manifesto { text-align: center; }
.manifesto__inner { width: min(100% - 48px, 1080px); margin-inline: auto; }
.manifesto__eyebrow {
  font-family: var(--font-en-body); font-size: clamp(11px,1vw,13px); font-weight: 500;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 22px;
}
.manifesto__title {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: clamp(40px, 7.4vw, 104px);
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: clamp(56px, 9vw, 120px);
  text-shadow: 0 0 60px rgba(255,215,0,0.35);
}
.manifesto__body { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 56px); }
.manifesto__p {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: clamp(26px, 4.6vw, 66px);
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--white);
}
.manifesto__p .hl { color: var(--gold-light); }

/* ============================================================
   S6 — NEWS
   ============================================================ */
.news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--black-line);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(12,12,12,0.72);
  backdrop-filter: blur(6px);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.news-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.news-card__media .ph {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, #141414 0 14px, #0e0e0e 14px 28px);
  display: grid; place-items: center;
}
.news-card__media .ph span { font-family: var(--font-num); font-size: 11px; letter-spacing: 0.02em; color: var(--gray-3); }
.news-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3) brightness(0.7); transition: transform 0.5s var(--ease), filter 0.4s var(--ease); }
.news-card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.news-card__meta { display: flex; align-items: center; gap: 14px; }
.news-card__tag {
  font-family: var(--font-en-body); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--gold-light);
  padding: 4px 10px; border: 1px solid var(--gold-deep); border-radius: 999px;
}
.news-card__date { font-family: var(--font-num); font-size: 12.5px; letter-spacing: 0.02em; color: var(--gray-2); }
.news-card__title { font-family: var(--font-serif); font-weight: 700; font-size: clamp(17px, 1.8vw, 21px); line-height: 1.55; color: var(--white); transition: color 0.3s var(--ease); }
.news-card__excerpt { font-family: var(--font-serif); font-size: 13.5px; line-height: 1.85; color: var(--gray-1); margin-top: auto; }
.news-card:hover { transform: scale(1.02); border-color: var(--gold); box-shadow: 0 26px 56px -28px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,215,0,0.25); }
.news-card:hover .news-card__media img { transform: scale(1.06); filter: grayscale(0.05) brightness(0.85); }
.news-card:hover .news-card__title { color: var(--gold-light); }
.news__more { margin-top: clamp(44px, 5vw, 64px); text-align: center; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-en-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em; text-transform: uppercase;
  padding: 16px 34px; border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--gold { background: var(--gold); color: var(--black-pure); }
.btn--gold:hover { background: var(--gold-light); box-shadow: 0 0 30px -2px var(--gold); transform: scale(1.03); }
.btn--ghost { border: 1px solid var(--gold); color: var(--white); background: var(--black-pure); }
.btn--ghost:hover { background: var(--gold); color: var(--black-pure); box-shadow: 0 0 24px -6px var(--gold); transform: scale(1.03); }
.btn--outline { border: 1px solid var(--gold-deep); color: var(--gold); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-light); box-shadow: 0 0 24px -6px var(--gold); transform: scale(1.03); }

/* ============================================================
   S7 — CTA
   ============================================================ */
.cta {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../images/chairman-dragon.png");
  background-size: cover; background-position: center 18%;
  filter: grayscale(0.5) brightness(0.32) blur(9px);
  transform: scale(1.08);
}
.cta__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 50%, rgba(10,10,10,0.45), rgba(0,0,0,0.88)); }
.cta__inner { position: relative; z-index: 2; padding: 80px 24px; }
.cta__title {
  font-family: var(--font-mincho); font-weight: 800;
  font-size: clamp(44px, 8.4vw, 116px);
  color: var(--white); line-height: 1.04; margin-bottom: 20px;
  text-shadow: 0 0 60px rgba(0,0,0,0.7);
}
.cta__title .gold { color: var(--gold); text-shadow: 0 0 50px rgba(255,215,0,0.5); }
.cta__sub { font-family: var(--font-mincho); font-weight: 800; font-size: clamp(28px, 4.5vw, 64px); line-height: 1.4; color: var(--gold-light); margin-bottom: 56px; }
.cta__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__content { max-width: 100%; margin-inline: auto; order: 2; }
  .hero__lede { margin-inline: auto; }
  .hero__figure { order: 1; }
  .worlds__grid { grid-template-columns: 1fr; }
  .world-card { min-height: 420px; }
  .world-card__cue { opacity: 1; transform: none; }
  .news__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 540px) {
  .hero__scroll { display: none; }
  .hero__img { width: min(280px, 72vw); }
}

/* ============================================================
   ALL-WHITE TEXT OVERRIDE  (gold reserved for hover only)
   Keeps gold borders/glows/particles/opening; text → white.
   ============================================================ */
/* hero */
.hero__role .slash { color: rgba(255,255,255,0.5); }
.hero__role .hl { color: var(--white); }
.hero__statement .gold,
.hero__statement .line-2 { color: var(--white); text-shadow: none; }
.hero__lede { color: var(--white); }
.hero__lede .hl { color: var(--white); }
.hero__scroll { color: rgba(255,255,255,0.65); }

/* section chrome */
.section__eyebrow { color: rgba(255,255,255,0.55); }
.section__title,
.section__title .gold { color: var(--white); }

/* essence */
.essence__title { color: var(--white); text-shadow: none; }
.essence__p .hl { color: var(--white); }
.essence__p.lg { color: var(--white); }

/* worlds */
.world-card__index { color: rgba(255,255,255,0.55); }
.world-card__label { color: var(--white); }
.world-card__sub { color: var(--white); }
.world-card__desc p { color: var(--white); }
.world-card__cue { color: var(--white); }
.world-card:hover .world-card__label { color: var(--gold-light); }
.world-card:hover .world-card__cue { color: var(--gold-light); }

/* aesthetic */
.aesthetic__line { color: var(--white); }
.aesthetic__line .hl { color: var(--white); }

/* manifesto */
.manifesto__eyebrow { color: rgba(255,255,255,0.55); }
.manifesto__title { color: var(--white); text-shadow: none; }
.manifesto__p .hl { color: var(--white); }

/* news */
.section__title.white { color: var(--white); }
.news-card__tag { color: var(--white); border-color: rgba(255,255,255,0.35); }
.news-card__date { color: rgba(255,255,255,0.6); }
.news-card__excerpt { color: rgba(255,255,255,0.82); }
.news-card__title { color: var(--white); }
.news-card:hover .news-card__title { color: var(--gold-light); }

/* cta */
.cta__title .gold { color: var(--white); text-shadow: none; }
.cta__sub { color: var(--white); }

/* ============================================================
   FINAL WHITE-UNIFICATION (global rule)
   All text white; gold #FFD700 only on hover. gold-light retired.
   ============================================================ */
.world-card:hover .world-card__label,
.world-card:hover .world-card__cue,
.news-card:hover .news-card__title { color: var(--neon-red); text-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--neon-red), 0 0 40px rgba(255,215,0,0.5); }
.news-card__tag { color: var(--white); border-color: rgba(255,255,255,0.3); }
.world-card:hover { box-shadow: 0 30px 70px -30px rgba(0,0,0,0.9), 0 0 30px rgba(255,215,0,0.45), 0 0 60px rgba(255,215,0,0.2); }
.world-card:hover .world-card__glow { box-shadow: inset 0 0 0 1px rgba(255,215,0,0.6), inset 0 0 70px -10px rgba(255,215,0,0.35); }
.news-card:hover { border-color: var(--neon-red); box-shadow: 0 26px 56px -28px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,215,0,0.4), 0 0 28px rgba(255,215,0,0.3); }
.btn--ghost, .btn--outline { border-color: rgba(255,255,255,0.5); color: var(--white); background: transparent; }
.btn--ghost:hover, .btn--outline:hover {
  border-color: var(--neon-red);
  color: var(--neon-red);
  background: transparent;
  box-shadow: 0 0 20px rgba(255,215,0,0.6), 0 0 40px rgba(255,215,0,0.3), inset 0 0 20px rgba(255,215,0,0.1);
  text-shadow: 0 0 5px var(--neon-red), 0 0 10px var(--neon-red);
}
.btn--ghost:hover svg, .btn--outline:hover svg { transform: translateX(4px); }
