#vtuber {
  position: relative;
  overflow: hidden;
  background-image: url('../assets/vtuber_neru.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 100vh;
}
#vtuber .section-bg-accent {
  z-index: 2;
}
#vtuber .inner-wrap {
  position: relative;
  z-index: 3;
  padding: 60px 80px 60px 0;
  display: grid;
  grid-template-columns: 30% 1fr 320px;
  grid-template-rows: auto 1fr;
  column-gap: 40px;
  min-height: 100vh;
  box-sizing: border-box;
}
.page-header {
  grid-column: 2 / 4;
  grid-row: 1;
  margin-bottom: 32px;
  padding-top: 60px;
}
.page-header-title--neru {
  margin-left: 0.45em;
  color: var(--pink);
}
.vtuber-layout {
  display: contents;
}
.vtuber-text {
  grid-column: 2;
  grid-row: 2;
}
.vtuber-cta {
  grid-column: 3;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: start;
  padding-left: 30px
}
.vtuber-text-lead {
  font-size: clamp(14px, 1.15vw, 17px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.8;
  color: var(--cream);
  opacity: 1;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.vtuber-text p {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.75;
  margin-bottom: 16px;
}
.vtuber-lore-img {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.vtuber-lore-img-wrap {
  position: relative;
  max-width: 320px;
  width: 100%;
}
.vtuber-text {
  grid-column: 2;
  grid-row: 2;
  margin-left: clamp(-100px, -5vw, -70px);
  width: calc(100% + clamp(125px, 3.3vw, 105px));
  max-width: 640px;
  box-sizing: border-box;
}
.vtuber-text p strong {
  font-weight: 600;
  color: var(--gold);
  opacity: 1;
  font-style: normal;
}
.vtuber-text-closing {
  font-size: clamp(13px, 1.1vw, 16px);
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
  opacity: 0.9;
  line-height: 1.9;
  margin-bottom: 20px;
}
.vtuber-lore-img {
  margin-bottom: 28px;
}
.vtuber-lore-img-wrap {
  position: relative;
  max-width: 320px;
}
.vtuber-lore-img-wrap img {
  width: 100%;
  display: block;
  filter: saturate(0.85);
  transition: filter 0.4s;
}
.vtuber-lore-img-wrap:hover img {
  filter: saturate(1);
}
.vtuber-lore-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(232, 114, 114, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.vtuber-card {
  position: relative;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.vtuber-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}
body.light .vtuber-card {
  border: 1px solid rgba(0, 0, 0, 0.09);
  background: rgba(0, 0, 0, 0.025);
}
body.light .vtuber-card:hover {
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.05);
}
.vtuber-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(143, 168, 50, 0.75), transparent);
}
.vtuber-card-row {
  display: flex;
  align-items: center;
  gap: 9px;
}
.vtuber-card-row--top {
  margin-bottom: 2px;
}
.vtuber-card-toplabel {
  font-family: "Cinzel", serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
body.light .vtuber-card-toplabel {
  color: rgba(0, 0, 0, 0.55);
}
.vtuber-card-icon {
  font-size: 13px;
  color: var(--gold);
  opacity: 0.8;
  line-height: 1;
  flex-shrink: 0;
}
.vtuber-card-main {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 400;
  letter-spacing: 4px;
  color: #ffffff;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(245, 232, 168, 0.4), 0 0 30px rgba(240, 168, 192, 0.15);
}
.vtuber-card-main--sm {
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 400;
  letter-spacing: 3px;
}
.vtuber-card-sub {
  font-family: "Cinzel", serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
body.light .vtuber-card-sub {
  color: rgba(0, 0, 0, 0.55);
}
.vtuber-card--discord {
  cursor: pointer;
  border-color: rgba(173, 140, 255, 0.25);
  background: rgba(173, 140, 255, 0.04);
}
.vtuber-card--discord:hover {
  border-color: rgba(173, 140, 255, 0.6);
  background: rgba(173, 140, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(173, 140, 255, 0.15), 0 8px 32px rgba(173, 140, 255, 0.15);
  transform: translateY(-4px);
}
body.light .vtuber-card--discord:hover {
  border-color: rgba(120, 80, 220, 0.3);
  background: rgba(120, 80, 220, 0.05);
}
.vtuber-card-accent--discord {
  background: linear-gradient(to right, rgba(173, 140, 255, 0.85), rgba(145, 70, 255, 0.3), transparent);
}
.vtuber-card-icon--discord {
  color: rgba(173, 140, 255, 0.9);
  opacity: 1;
}
.vtuber-card-cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.vtuber-card-cta-pill {
  font-family: "Cinzel", serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(173, 140, 255, 0.9);
  padding: 5px 12px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.vtuber-card--discord:hover .vtuber-card-cta-pill {
  background: rgba(173, 140, 255, 0.25);
  border-color: rgba(173, 140, 255, 0.7);
  color: #fff;
}
.vtuber-card-cta-arrow {
  color: rgba(173, 140, 255, 0.7);
  transition: transform 0.25s, color 0.25s;
  flex-shrink: 0;
}
.vtuber-card--discord:hover .vtuber-card-cta-arrow {
  transform: translateX(5px);
  color: rgba(173, 140, 255, 1);
}
.vtuber-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  margin-top: 4px;
  border: 1px solid rgba(245, 232, 168, 0.5);
  background: rgba(245, 232, 168, 0.06);
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(245, 232, 168, 0.3);
  transition: background 0.3s, border-color 0.3s, transform 0.25s, text-shadow 0.3s;
}
.vtuber-cta-btn:hover {
  background: rgba(245, 232, 168, 0.14);
  border-color: var(--gold);
  transform: translateY(-2px);
  text-shadow: 0 0 20px rgba(245, 232, 168, 0.6);
}
.vtuber-cta-btn svg {
  transition: transform 0.25s;
}
.vtuber-cta-btn:hover svg {
  transform: translateX(4px);
}
.vtuber-lore-img-wrap .vtuber-lore-img-light {
  display: none;
}
body.light-mode .vtuber-lore-img-wrap .vtuber-lore-img-dark {
  display: none;
}
body.light-mode .vtuber-lore-img-wrap .vtuber-lore-img-light {
  display: block;
}