@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@1,9..144,500;1,9..144,600&display=swap");

@font-face {
  font-family: "TT Rounds Neue Trl Cnd";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/TT-Rounds-Neue-Trl-Cnd-Bold.woff") format("woff");
}

@font-face {
  font-family: "TT Rounds Neue Trl Cnd";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../assets/fonts/TT-Rounds-Neue-Trl-Cnd-ExtraBold.woff") format("woff");
}

@font-face {
  font-family: "TT Rounds Neue Trl Cnd";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../assets/fonts/TT-Rounds-Neue-Trl-Cnd-Black.woff") format("woff");
}

/* Skin Aurore — classic + mix. Backup: css/style.classic.css + js/main.classic.js */
:root{
  --rush-a: #0e66c2;
  --rush-b: #09b4f6;
  --ink: #f4fbff;
  --mute: #d5eefb;
  --paper: rgb(255 255 255 / 0.14);
  --pill: #ffffff;
  --night: #0a4a96;
  --glow: rgb(9 180 246 / 0.45);
  --ease: cubic-bezier(0.22, 0.8, 0.28, 1);
  --display: "TT Rounds Neue Trl Cnd", sans-serif;
  --sans: "Outfit", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

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

html{
  scroll-behavior: smooth;
  background: var(--rush-a);
}

body{
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  background: linear-gradient(165deg, #0b58b0 0%, var(--rush-a) 42%, var(--rush-b) 100%);
  background-attachment: fixed;
}

.cosmos-canvas{
  position: fixed;
  inset: 0;
  z-index: 12;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.82;
}

body.inner .cosmos-canvas{
  opacity: 0.55;
}

.fx-grain{
  position: fixed;
  inset: 0;
  z-index: 13;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.team-loop{
  position: fixed;
  inset: 0;
  z-index: 12;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.9;
}

body.equipe{
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgb(9 180 246 / 0.16), transparent 52%),
    linear-gradient(180deg, #05275c 0%, #0a4a96 48%, #0e66c2 100%);
}

body.equipe .page-head::before{
  display: none;
}

body.uv .cosmos-canvas,
body.ena .cosmos-canvas,
body.shadow .cosmos-canvas,
body.snowgrave .cosmos-canvas{
  opacity: 0.48;
}

.fx-aurora{
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.fx-aurora span{
  position: absolute;
  display: block;
  filter: blur(56px);
  opacity: 0.38;
  animation: aurora-drift 26s ease-in-out infinite;
}

.fx-aurora span:nth-child(1){
  width: 72vw;
  height: 38vh;
  top: 8%;
  left: -8%;
  background: linear-gradient(100deg, transparent, rgb(9 180 246 / 0.42), rgb(170 140 255 / 0.22), transparent);
}

.fx-aurora span:nth-child(2){
  width: 64vw;
  height: 34vh;
  right: -12%;
  bottom: 12%;
  background: linear-gradient(80deg, transparent, rgb(180 240 255 / 0.28), rgb(9 180 246 / 0.16), transparent);
  animation-duration: 34s;
  animation-delay: -10s;
}

.fx-aurora span:nth-child(3){
  width: 48vw;
  height: 40vh;
  top: 38%;
  left: 28%;
  background: linear-gradient(120deg, transparent, rgb(255 106 213 / 0.16), rgb(9 180 246 / 0.1), transparent);
  animation-duration: 40s;
  animation-delay: -18s;
}

body.uv .fx-aurora span:nth-child(1){
  background: linear-gradient(100deg, transparent, rgb(244 198 255 / 0.36), rgb(255 154 60 / 0.18), transparent);
}

body.ena .fx-aurora span:nth-child(1){
  background: linear-gradient(100deg, transparent, rgb(126 184 224 / 0.36), rgb(255 243 160 / 0.16), transparent);
}

body.shadow .fx-aurora span:nth-child(1){
  background: linear-gradient(100deg, transparent, rgb(255 122 42 / 0.32), rgb(255 214 168 / 0.16), transparent);
}

body.snowgrave .fx-aurora span:nth-child(1){
  background: linear-gradient(100deg, transparent, rgb(180 240 255 / 0.34), rgb(255 70 90 / 0.16), transparent);
}

@keyframes aurora-drift {
  0%,
100%{
    transform: translate(0, 0) rotate(-6deg);
  }
  50%{
    transform: translate(6%, -4%) rotate(8deg);
  }
}

.fx-wait{
  opacity: 0;
  transform: translateY(1.6rem) scale(0.98);
}

.fx-in{
  opacity: 1;
  transform: none;
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

a{
  color: inherit;
  text-decoration: none;
}

img{
  max-width: 100%;
}

.top{
  position: fixed;
  inset: 0.85rem 1.1rem auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.7rem 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgb(10 48 112 / 0.28);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgb(255 255 255 / 0.16);
  box-shadow: 0 10px 32px rgb(4 20 60 / 0.18);
  transition: background 0.45s var(--ease), border-color 0.45s ease;
}

.top.is-solid,
body.inner .top{
  background: rgb(10 58 140 / 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-color: rgb(158 220 255 / 0.28);
}

.brand img{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: block;
}

.menu-btn{
  display: none;
  background: #fff;
  color: var(--rush-a);
  border: 0;
  border-radius: 0.5rem;
  padding: 0.4rem 0.8rem;
  font: 600 0.85rem var(--sans);
  cursor: pointer;
}

nav{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.15rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-glider{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 999px;
  background: #fff;
  pointer-events: none;
  opacity: 0;
}

nav.is-ready .nav-glider{
  opacity: 1;
  transition:
    transform 0.45s var(--ease),
    width 0.45s var(--ease),
    height 0.45s var(--ease);
}

nav:not(.is-ready) a.is-on{
  background: #fff;
}

nav a{
  position: relative;
  z-index: 1;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  transition: color 0.28s ease;
}

nav a:hover,
nav a.is-on{
  background: transparent;
  color: var(--rush-a);
}

.hero,
.discord-banner,
.page-head,
.show-hero{
  position: relative;
  isolation: isolate;
  clip-path: inset(0);
}

.hero::before,
.discord-banner::before,
.page-head::before,
.show-hero::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero{
  min-height: 100dvh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 1.4rem 4rem;
}

.hero::before{
  background-image:
    linear-gradient(rgb(12 8 24 / 0.42), rgb(12 8 24 / 0.42)),
    url("../assets/ciel.png");
  background-position: center;
}

.hero-inner{
  position: relative;
  z-index: 16;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(760px, 100%);
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.hero-halo{
  position: absolute;
  left: 50%;
  top: 59px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border: 1px solid rgb(9 180 246 / 0.35);
  box-shadow: 0 0 24px rgb(9 180 246 / 0.18);
  animation: beacon-pulse 4.8s ease-out infinite;
}

@keyframes beacon-pulse {
  0%{
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0.65;
  }
  100%{
    transform: translate(-50%, -50%) scale(1.55);
    opacity: 0;
  }
}

.hero-inner::before,
.hero-inner::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 59px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-inner::before{
  width: 168px;
  height: 168px;
  border: 1px solid rgb(255 255 255 / 0.22);
  box-shadow: 0 0 28px rgb(9 180 246 / 0.16);
  animation: orbit-spin 22s linear infinite;
}

.hero-inner::after{
  width: 214px;
  height: 214px;
  border: 1px dashed rgb(158 220 255 / 0.2);
  animation: orbit-spin 38s linear infinite reverse;
}

.hero-mark{
  position: relative;
  z-index: 1;
  display: block;
  width: 118px;
  height: 118px;
  margin-inline: auto;
  border-radius: 50%;
  animation: hero-float 5.5s ease-in-out infinite;
  filter: drop-shadow(0 12px 28px rgb(9 180 246 / 0.45));
}

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

@keyframes orbit-spin {
  to{
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-word{
  --word-w: min(560px, 90vw);
  position: relative;
  display: block;
  width: max-content;
  max-width: none;
  padding-inline: 0.08em;
  margin: 1rem 0 0;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 900;
  font-size: calc(var(--word-w) * 0.2);
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  background-image: linear-gradient(
    115deg,
    #5cf4ff 0%,
    #2f7dff 16%,
    #c084ff 32%,
    #ff5ec8 48%,
    #5cffc8 64%,
    #4aa8ff 80%,
    #5cf4ff 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0;
  filter:
    drop-shadow(-2px 0 0 rgb(92 244 255 / 0.55))
    drop-shadow(2px 0 0 rgb(255 106 213 / 0.45))
    drop-shadow(0 8px 18px rgb(9 180 246 / 0.3));
  animation: holo-shift 6.5s linear infinite;
}

.hero-word::before{
  content: "RUSHVERSE";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: none;
  color: transparent;
  -webkit-text-stroke: 0.07em #fff;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  animation: none;
  filter: none;
  pointer-events: none;
}

.hero-word::after{
  content: "RUSHVERSE";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    105deg,
    transparent 38%,
    rgb(255 255 255 / 0.72) 50%,
    transparent 62%
  );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: holo-sheen 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes holo-shift{
  to{
    background-position: -220% 0;
  }
}

@keyframes holo-sheen{
  0%,
  100%{
    background-position: 130% 0;
  }
  50%{
    background-position: -30% 0;
  }
}

.hero h1{
  width: 100%;
  margin: 1.15rem 0 0;
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-shadow: 0 4px 22px rgb(0 0 0 / 0.4);
}

#qui,
#discord{
  scroll-margin-top: 4.5rem;
}

.panel{
  padding: 5rem 1.4rem;
}

.discord-banner{
  min-height: 32rem;
  display: grid;
  align-items: center;
}

.discord-banner::before{
  background-image:
    linear-gradient(90deg, rgb(12 6 36 / 0.78) 0%, rgb(18 8 48 / 0.42) 48%, rgb(20 10 50 / 0.12) 100%),
    url("../assets/discord.png");
  background-position: center right;
}

.discord-banner .wrap{
  position: relative;
  z-index: 1;
}

.discord-split{
  display: grid;
  gap: 1.6rem 2.2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .discord-split{
    grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  }
}

.discord-wumpus{
  width: 100%;
  max-width: 340px;
  justify-self: center;
  display: block;
  mix-blend-mode: lighten;
}

@media (min-width: 860px) {
  .discord-wumpus{
    justify-self: end;
  }
}

.discord-banner h2{
  color: #fff;
}

.discord-banner .kicker{
  color: #e4d4ff;
}

.discord-banner .prose p{
  color: #f4efff;
}

.wrap{
  max-width: 1080px;
  margin: 0 auto;
}

.section-title{
  margin-bottom: 1.8rem;
}

.section-title h2,
.page-head h1,
.community h1{
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.section-title h2,
.panel > .wrap > h2{
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.panel > .wrap > h2{
  margin: 0 0 1.2rem;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

@keyframes holo-shift {
  0%{
    background-position: 0% 50%;
  }
  100%{
    background-position: 220% 50%;
  }
}

.section-title h2,
.page-head h1,
.community h1,
.panel > .wrap > h2,
.show-hero h1,
.discord-banner h2,
.team-group-title,
.log-mark h2{
  background-image: linear-gradient(
    105deg,
    #ffffff 0%,
    #7cecff 14%,
    #ffffff 28%,
    #ff6ad5 46%,
    #ffffff 62%,
    #5cf4ff 78%,
    #ffffff 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: holo-shift 8s linear infinite;
  text-shadow: none;
  filter: drop-shadow(0 4px 16px rgb(9 180 246 / 0.32));
}

.kicker{
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  color: #b8e9ff;
}

.page-head{
  min-height: 38dvh;
  display: grid;
  align-items: end;
  padding: 7.5rem 1.4rem 2.2rem;
  color: #fff;
}

.page-head::before{
  background-image:
    linear-gradient(rgb(12 8 24 / 0.48), rgb(12 8 24 / 0.48)),
    url("../assets/ciel.png");
  background-position: center;
}

.page-head .wrap{
  position: relative;
  z-index: 1;
}

.show-hero{
  min-height: 72dvh;
  display: grid;
  align-items: end;
  padding: 8rem 1.4rem 11rem;
  color: #fff;
}

.show-hero.is-short{
  min-height: 48dvh;
  padding-bottom: 3.2rem;
}

.show-hero::before{
  background-image:
    linear-gradient(180deg, rgb(20 8 0 / 0.12) 0%, rgb(8 20 40 / 0.35) 42%, rgb(4 10 28 / 0.78) 100%),
    url("../assets/projets/underverse-fond.png");
  background-position: center 40%;
}

body.uv{
  --rush-a: #6b1f6e;
  --rush-b: #ff9a3c;
  --ink: #fff4fb;
  --mute: #e8c8ee;
  --paper: rgb(255 255 255 / 0.1);
  --night: #2a1030;
  --glass: rgb(236 210 255 / 0.12);
  --glass-line: rgb(232 190 255 / 0.28);
  background: url("../assets/projets/underverse-fond.png") center 30% / cover no-repeat fixed;
  position: relative;
}

html:has(body.uv){
  background: #160814;
}

body.ena{
  --rush-a: #265de6;
  --rush-b: #7eb8e0;
  --ink: #f4f7fb;
  --mute: #d5e2ee;
  --paper: rgb(255 255 255 / 0.12);
  --night: #3a4a5c;
  --glass: rgb(20 24 40 / 0.28);
  --glass-line: rgb(180 210 255 / 0.22);
  background: url("../assets/projets/ena-fond.jpg") center / cover no-repeat fixed;
  position: relative;
}

html:has(body.ena){
  background: #050508;
}

body.shadow{
  --rush-a: #9a1518;
  --rush-b: #ff7a2a;
  --ink: #fff6f0;
  --mute: #f0c8b4;
  --paper: rgb(255 255 255 / 0.1);
  --night: #3a1410;
  --glass: rgb(36 8 6 / 0.38);
  --glass-line: rgb(255 140 70 / 0.32);
  background: url("../assets/projets/shadow-fond.jpg") center / cover no-repeat fixed;
  position: relative;
}

html:has(body.shadow){
  background: #140806;
}

body.snowgrave{
  --rush-a: #0b1c28;
  --rush-b: #8fe7ff;
  --ink: #f4fbff;
  --mute: #c8e4ee;
  --paper: rgb(255 255 255 / 0.08);
  --night: #061018;
  --glass: rgb(8 16 24 / 0.52);
  --glass-line: rgb(180 236 255 / 0.24);
  background: url("../assets/projets/snowgrave-fond.png") center / cover no-repeat fixed;
  position: relative;
}

html:has(body.snowgrave){
  background: #05080c;
}

.uv-glass-floor{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-top: 1px solid var(--glass-line);
}

body.uv > .top,
body.ena > .top,
body.shadow > .top,
body.snowgrave > .top{
  z-index: 40;
}

body.uv > main,
body.uv > .foot,
body.ena > main,
body.ena > .foot,
body.shadow > main,
body.shadow > .foot,
body.snowgrave > main,
body.snowgrave > .foot{
  position: relative;
  z-index: 1;
}

body.uv .top,
body.uv.inner .top,
body.uv .foot,
body.uv .ep-item,
body.uv .cast article,
body.uv .uv-watch-label,
body.ena .top,
body.ena.inner .top,
body.ena .foot,
body.ena .ep-item,
body.ena .cast article,
body.ena .uv-watch-label,
body.shadow .top,
body.shadow.inner .top,
body.shadow .foot,
body.shadow .ep-item,
body.shadow .cast article,
body.shadow .uv-watch-label,
body.snowgrave .crew article,
body.snowgrave .top,
body.snowgrave.inner .top,
body.snowgrave .foot,
body.snowgrave .ep-item,
body.snowgrave .uv-watch-label,
body.snowgrave .cast article{
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-line);
}

body.uv .top,
body.uv.inner .top,
body.ena .top,
body.ena.inner .top,
body.shadow .top,
body.shadow.inner .top,
body.snowgrave .top,
body.snowgrave.inner .top{
  border: 0;
  border-bottom: 1px solid var(--glass-line);
}

body.uv .foot,
body.ena .foot,
body.shadow .foot,
body.snowgrave .foot{
  border: 0;
  border-top: 1px solid var(--glass-line);
}

body.uv .show-hero::before{
  background-image: url("../assets/projets/underverse-fond.png");
  background-position: center 30%;
}

body.ena .show-hero::before{
  background-image: url("../assets/projets/ena-fond.jpg");
  background-position: center;
}

body.shadow .show-hero::before{
  background-image: url("../assets/projets/shadow-fond.jpg");
  background-position: center;
}

body.snowgrave .show-hero::before{
  background-image:
    linear-gradient(180deg, rgb(4 8 14 / 0.28) 0%, rgb(4 10 18 / 0.46) 50%, rgb(4 8 12 / 0.82) 100%),
    url("../assets/projets/snowgrave-fond.png");
  background-position: center;
}

body.shadow .show-hero h1{
  font-size: clamp(1.8rem, 5vw, 3.4rem);
}

body.uv .kicker{
  color: #e8b4ff;
}

body.ena .kicker{
  color: #c5e0f4;
}

body.shadow .kicker{
  color: #ffc4a0;
}

body.snowgrave .kicker{
  color: #8fe7ff;
}

body.snowgrave .show-hero h1{
  font-size: clamp(1.8rem, 5vw, 3.4rem);
}

body.snowgrave .foot a,
body.snowgrave .foot p{
  color: var(--mute);
}

body.snowgrave .btn-ghost{
  background: rgb(8 16 24 / 0.28);
}

body.snowgrave .chip-fandub{
  background: #c8f4ff;
  color: #0b1c28;
}

body.snowgrave nav a:hover,
body.snowgrave nav a.is-on{
  background: #fff;
  color: #0b1c28;
}

body.uv .chip-fandub{
  background: #f4c6ff;
  color: #6a1578;
}

body.ena .chip-fandub{
  background: #fff3a0;
  color: #265de6;
}

body.shadow .chip-fandub{
  background: #ffd6a8;
  color: #7a1512;
}

body.uv .ep-note{
  background: rgb(232 160 255 / 0.22);
  color: #f4c6ff;
}

body.uv .cast article,
body.ena .cast article,
body.shadow .cast article,
body.snowgrave .cast article{
  background: var(--glass);
}

body.uv .cast-meta,
body.ena .cast-meta,
body.shadow .cast-meta,
body.snowgrave .cast-meta{
  background: rgb(12 6 0 / 0.18);
  border-bottom-color: var(--rush-b);
}

body.uv .foot a,
body.uv .foot p{
  color: #e8c8ee;
}

body.ena .foot a,
body.ena .foot p{
  color: #d5e2ee;
}

body.shadow .foot a,
body.shadow .foot p{
  color: #f0c8b4;
}

body.uv .btn-ghost,
body.ena .btn-ghost,
body.shadow .btn-ghost,
body.snowgrave .btn-ghost{
  background: var(--glass);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-color: var(--glass-line);
}

.show-hero .wrap{
  position: relative;
  z-index: 1;
}

.show-meta{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
}

.show-year{
  font-size: 0.9rem;
  color: rgb(255 255 255 / 0.88);
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.75), 0 4px 16px rgb(0 0 0 / 0.55);
}

.show-hero h1{
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.show-creator{
  margin: 0;
  color: rgb(255 255 255 / 0.9);
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.75), 0 4px 16px rgb(0 0 0 / 0.55);
}

.show-creator strong{
  color: #fff;
}

.back-link{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgb(255 255 255 / 0.88);
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.75), 0 4px 16px rgb(0 0 0 / 0.55);
}

.back-link:hover{
  color: #fff;
}

.show-player{
  position: relative;
  z-index: 2;
  margin-top: -8.5rem;
  padding: 0 1.4rem 4rem;
  scroll-margin-top: 5.2rem;
}

.show-frame{
  position: relative;
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1rem;
  background: #000;
  box-shadow: 0 24px 60px rgb(0 20 60 / 0.45);
}

.show-frame img,
.show-frame iframe{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.show-frame iframe{
  position: absolute;
  inset: 0;
  object-fit: unset;
  border: 0;
}

.uv-watch{
  position: absolute;
  inset: 0;
  display: block;
  color: #fff;
}

.uv-watch img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.uv-watch::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(8 30 70 / 0.32);
}

.uv-play{
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 4.2rem;
  height: 4.2rem;
  margin: -2.1rem 0 0 -2.1rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 28px rgb(0 0 0 / 0.35);
  transition: transform 0.2s ease;
}

.uv-play::before{
  content: "";
  position: absolute;
  left: 1.55rem;
  top: 1.25rem;
  border-style: solid;
  border-width: 0.85rem 0 0.85rem 1.35rem;
  border-color: transparent transparent transparent var(--rush-a);
}

.uv-watch:hover .uv-play{
  transform: scale(1.06);
}

.uv-watch-label{
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgb(8 40 90 / 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.show-soon{
  position: absolute;
  inset: auto 1rem 1rem auto;
  margin: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgb(8 40 90 / 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.show-about{
  max-width: 46rem;
  margin: 0 0 3.2rem;
}

.show-about h2{
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.ep-block{
  max-width: 900px;
  margin: 0 auto;
}

.ep-block h2{
  margin: 0 0 1.2rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.ep-list{
  display: grid;
  gap: 0.65rem;
}

.ep-item{
  display: grid;
  grid-template-columns: 8.2rem 1fr;
  gap: 0.9rem;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0.5rem;
  border: 0;
  border-radius: 0.85rem;
  background: var(--paper);
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.ep-item:hover,
.ep-item.is-on{
  outline: 2px solid #fff;
}

.ep-item.is-soon{
  cursor: default;
  opacity: 0.82;
}

.ep-item.is-soon:hover{
  outline: 0;
}

.ep-item img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0.5rem;
  display: block;
  background: #000;
}

.ep-copy{
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.ep-title{
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.15;
}

.ep-meta{
  color: var(--mute);
  font-size: 0.85rem;
}

.ep-note{
  display: inline-flex;
  margin-left: 0.45rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: rgb(255 200 140 / 0.2);
  color: #ffd7a8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cast{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
  gap: 0.9rem;
}

.cast + .kicker,
.crew + .kicker{
  margin-top: 3.2rem;
}

.crew{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.crew article{
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: min(100%, 34rem);
  padding: 0.55rem 1.15rem 0.55rem 0.55rem;
  border-radius: 999px;
}

.crew img{
  width: 4.4rem;
  height: 4.4rem;
  flex: 0 0 4.4rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  background: #fff;
}

.crew img.crew-center{
  object-fit: contain;
  object-position: center;
  background: #000;
}

.crew-avatar{
  width: 4.4rem;
  height: 4.4rem;
  flex: 0 0 4.4rem;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  background: #1a0e18;
}

.crew-avatar img.crew-tseko{
  width: 100%;
  height: 100%;
  flex: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.38);
  background: transparent;
}

.crew .cast-meta,
body.shadow .crew .cast-meta,
body.snowgrave .crew .cast-meta{
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
}

.crew .cast-name{
  max-width: 24rem;
  line-height: 1.35;
}

body.shadow .crew article,
body.snowgrave .crew article{
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-line);
}

.cast article{
  overflow: hidden;
  border-radius: 0.7rem;
  background: rgb(6 28 72 / 0.72);
}

.cast img{
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.cast-meta{
  padding: 0.7rem 0.85rem 0.8rem;
  color: var(--ink);
  border-bottom: 2px solid var(--rush-b);
}

.cast-role,
.cast-name{
  margin: 0;
}

.cast-role{
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.25;
}

.cast-name{
  margin-top: 0.12rem;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--mute);
}

.cast-fit{
  object-fit: contain;
  object-position: center;
  background: #000;
}

.cast img.cast-noelle{
  object-position: 82% 28%;
}

.page-head h1{
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.page-head .kicker{
  color: #c9f0ff;
}

.head-desc{
  margin: 0.7rem 0 0;
  max-width: 32rem;
  color: rgb(255 255 255 / 0.82);
  font-size: 1.05rem;
}

.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 2.2rem;
}

#chips{
  position: relative;
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0.15rem;
  padding: 0.28rem;
  margin-bottom: 2.2rem;
  border-radius: 999px;
  background: rgb(8 55 120 / 0.45);
  overflow-x: auto;
  scrollbar-width: none;
}

#chips::-webkit-scrollbar{
  display: none;
}

#chips .chips-glider{
  position: absolute;
  top: 0.28rem;
  left: 0;
  z-index: 0;
  height: calc(100% - 0.56rem);
  border-radius: 999px;
  background: #fff;
  pointer-events: none;
}

#chips.is-ready .chips-glider{
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.chip{
  display: inline-flex;
  align-items: center;
  margin: 0;
  border: 0;
  padding: 0.32rem 0.72rem;
  border-radius: 0.45rem;
  background: #f3f1f8;
  color: #48485f;
  font: 700 0.72rem/1.2 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

#chips .chip{
  position: relative;
  z-index: 1;
  background: transparent;
  color: #c6c0d6;
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  transition: color 0.28s ease;
}

#chips .chip:hover{
  color: #fff;
}

#chips .chip.is-on,
#chips .chip-fandub.is-on{
  background: transparent;
  color: var(--rush-a);
}

button.chip{
  font: 700 0.72rem/1.2 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip-fandub{ background: #cceeff; color: #154a73; }

.log-card .chip{
  cursor: default;
  margin-bottom: 0.45rem;
  border-radius: 999px;
}

.log-card,
.log-mark{
  transition:
    opacity 0.42s ease,
    transform 0.42s ease,
    margin 0.42s ease,
    padding 0.42s ease,
    max-height 0.42s ease;
}

.log-card.is-off,
.log-mark.is-off{
  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  pointer-events: none;
  border: 0;
  outline: none;
}

.log-card.is-slide{
  animation: log-slide 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes log-slide {
  from{
    opacity: 0;
    transform: translateY(18px);
  }
  to{
    opacity: 1;
    transform: none;
  }
}

.log{
  border-left: 2px solid rgb(255 255 255 / 0.35);
  padding-left: 1.4rem;
}

.log-mark{
  scroll-margin-top: 5rem;
  margin: 0 0 1.1rem;
  max-height: 6rem;
}

.log-mark + .log-card{
  margin-top: 0.2rem;
}

.log-mark h2{
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.log-card{
  display: grid;
  gap: 1.1rem 1.4rem;
  align-items: center;
  margin: 0 0 1.15rem;
  padding: 0.7rem;
  max-height: 22rem;
  border-radius: 1.1rem;
  background: var(--paper);
}

@media (min-width: 760px) {
  .log-card{
    grid-template-columns: 160px 1fr;
  }
}

.log-card img{
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.85rem;
  display: block;
}

.log-card h3{
  margin: 0.1rem 0 0.35rem;
}

.log-card p{
  margin: 0;
  color: var(--mute);
}

.log-card .credit{
  display: block;
  margin-top: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  font-style: normal;
}

.log-card:hover{
  outline: 2px solid #fff;
}

body.catalog,
body.catalog .panel{
  background: transparent;
}

body.catalog .log{
  border-left-color: rgb(255 255 255 / 0.35);
}

body.catalog .log-card{
  background: var(--paper);
}

body.catalog .log-card p{
  color: var(--mute);
}

body.catalog .log-card .credit{
  color: var(--ink);
}

body.catalog .log-card .chip{
  background: #cceeff;
  color: #154a73;
}

body.catalog .log-card .chip-fandub{
  background: #cceeff;
  color: #154a73;
}

.tiles{
  display: grid;
  gap: 0.85rem;
  align-items: start;
}

@media (min-width: 860px) {
  .tiles{
    grid-template-columns: repeat(3, 1fr);
  }

  .tiles-2{
    grid-template-columns: repeat(2, 1fr);
  }
}

.tile{
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 0.7rem;
  background: #000;
}

.tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.tile span{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tile-ena span{ background: linear-gradient(90deg, rgb(38 93 230 / 0.52), rgb(249 220 0 / 0.52)); }
.tile-underverse span{ background: rgb(149 125 173 / 0.52); }
.tile-shadow span{ background: rgb(180 50 20 / 0.52); }
.tile-snowgrave span{ background: rgb(8 20 32 / 0.55); }

.tile:hover img,
.tile:focus-visible img{
  transform: scale(1.05);
}

.tile:hover span,
.tile:focus-visible span{
  opacity: 1;
}

.intro{
  display: grid;
  gap: 1.8rem 2.6rem;
  align-items: center;
}

@media (min-width: 860px) {
  .intro{
    grid-template-columns: minmax(200px, 280px) 1fr;
  }
}

.intro-art{
  width: 100%;
  max-width: 280px;
  display: block;
  border-radius: 1.4rem;
}

.intro .prose{
  max-width: none;
  font-size: 1.22rem;
  line-height: 1.7;
}

.prose{
  max-width: 42rem;
}

.prose p,
.lead,
.people p,
.fine,
.legal,
.foot a,
.foot p{
  color: var(--mute);
}

.people{
  display: grid;
  gap: 1rem;
  margin-top: 2.4rem;
}

@media (min-width: 760px) {
  .people{
    grid-template-columns: repeat(3, 1fr);
  }
}

.people article{
  padding: 1.2rem 1.15rem 1.3rem;
  border-top: 2px solid #fff;
  background: var(--paper);
  border-radius: 0 0 0.7rem 0.7rem;
}

.team-groups{
  display: grid;
  gap: 3.4rem;
}

.team-group{
  text-align: center;
}

.team-group-title{
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1;
}

.team-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 2.5rem;
}

.member-mini{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  width: 10rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.member-mini img,
.member-mark{
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  background: rgb(255 255 255 / 0.16);
}

.member-mark{
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.2rem;
}

.member-mini img{
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.member-mini:hover img,
.member-mini:focus-visible img{
  transform: scale(1.05);
  box-shadow: 0 0 0 3px rgb(255 255 255 / 0.42);
}

.member-mini:focus-visible{
  outline: none;
}

.member-name,
.member-mini h3{
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
}

.member-mini p{
  margin: 0;
  max-width: 13rem;
  color: var(--mute);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
}

.member-pixel{
  object-position: center;
}

body.is-pop{
  overflow: hidden;
}

.member-pop{
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1.4rem;
}

.member-pop[hidden]{
  display: none;
}

.member-pop-dim{
  position: absolute;
  inset: 0;
  background: rgb(6 32 78 / 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.member-pop-card{
  position: relative;
  z-index: 1;
  width: min(100%, 22rem);
  padding: 2.4rem 1.6rem 1.8rem;
  border-radius: 1.4rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, rgb(14 70 150 / 0.92), rgb(8 42 108 / 0.94));
  border: 1px solid rgb(255 255 255 / 0.22);
  box-shadow: 0 18px 50px rgb(4 20 60 / 0.35);
  animation: pop-in 0.22s ease;
}

.member-pop-x{
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2.1rem;
  height: 2.1rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.member-pop-x svg{
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  margin: auto;
  fill: currentColor;
}

.member-pop-x:hover,
.member-pop-x:focus-visible{
  background: rgb(255 255 255 / 0.14);
}

.member-pop-photo{
  width: 8.4rem;
  height: 8.4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  background: rgb(255 255 255 / 0.16);
  box-shadow: 0 0 0 3px rgb(255 255 255 / 0.28);
}

.member-pop-card h2{
  margin: 0;
  font-family: var(--sans);
  font-size: 1.55rem;
  font-weight: 700;
}

.member-pop-role{
  margin: 0.45rem 0 0;
  color: var(--rush-b);
  font-size: 0.95rem;
  font-weight: 600;
}

.member-pop-desc{
  margin: 0.7rem 0 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.45;
}

.member-pop-socials{
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.member-pop-socials a{
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.12);
  color: #d5eefb;
}

.member-pop-socials svg{
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.member-pop-socials a:hover{
  background: rgb(255 255 255 / 0.22);
  color: #fff;
}

@keyframes pop-in {
  from{
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  to{
    opacity: 1;
    transform: none;
  }
}

.avatar{
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  margin: 0 0 0.85rem;
  background: #fff;
}

.tag{
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8e9ff;
}

h3{
  margin: 0.35rem 0 0.4rem;
  font-family: var(--display);
  font-size: 1.45rem;
}

.dossier{
  display: grid;
  gap: 2.2rem;
  align-items: start;
}

@media (min-width: 860px) {
  .dossier{
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.cover-img{
  width: 100%;
  border-radius: 0.7rem;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

.lead{
  max-width: 38rem;
  margin: 0;
  font-size: 1.05rem;
}

.fine{
  margin-top: 1.2rem;
  font-size: 0.9rem;
  max-width: 40rem;
}

.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.btn{
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.45rem 1.15rem;
  border-radius: 0.45rem;
  background: #fff;
  color: var(--rush-a);
  font-weight: 600;
  isolation: isolate;
  box-shadow: 4px 4px 0 rgb(9 180 246 / 0.55);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}

.btn::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 28%, rgb(9 180 246 / 0.4) 48%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 0.65s var(--ease);
}

.btn:hover{
  transform: translate(-2px, -3px);
  box-shadow: 7px 7px 0 rgb(9 180 246 / 0.7), 0 0 22px rgb(9 180 246 / 0.28);
}

.btn:hover::after{
  transform: translateX(130%);
}

.btn-ghost{
  background: transparent;
  border: 1px solid rgb(255 255 255 / 0.45);
  color: #fff;
}

.community{
  min-height: 70dvh;
  display: grid;
  place-content: center;
  padding: 8rem 1.4rem 5rem;
}

.community h1{
  font-size: clamp(2.4rem, 7vw, 4.4rem);
}

.foot{
  position: relative;
  background: rgb(8 55 120 / 0.55);
  color: #fff;
  padding: 2.8rem 1.4rem 2rem;
}

.foot::before{
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(9 180 246 / 0.85), rgb(255 106 213 / 0.4), transparent);
}

.foot-grid{
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 760px) {
  .foot-grid{
    grid-template-columns: 1.2fr 1fr 1.35fr;
  }
}

.foot-grid > div:first-child img{
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.foot h3{
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  font-family: var(--sans);
}

.foot a,
.foot p{
  display: block;
  color: #d5eefb;
  margin: 0.25rem 0;
}

.foot a:hover{
  color: #fff;
}

.foot-socials{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.foot-socials a{
  display: flex;
  margin: 0;
  color: #d5eefb;
}

.foot-socials img,
.foot-socials svg{
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0;
  fill: currentColor;
}

.foot-socials a:hover img,
.foot-socials a:hover svg{
  filter: brightness(1.35) drop-shadow(0 0 6px rgb(9 180 246 / 0.75));
}

.foot-mail{
  margin-top: 0.75rem;
  font-size: 0.86rem;
  word-break: break-word;
}

.foot-credit{
  margin: 1.6rem auto 0;
  font-size: 0.82rem;
  opacity: 0.88;
}

.legal{
  max-width: 1080px;
  margin: 1.8rem auto 0;
  font-size: 0.8rem;
}

.toast{
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  z-index: 60;
  background: #fff;
  border: 1px solid var(--rush-a);
  color: var(--rush-a);
  padding: 0.7rem 1rem;
  border-radius: 0.55rem;
  max-width: min(90vw, 28rem);
  text-align: center;
  font-weight: 600;
}

.toast[hidden]{
  display: none;
}

@media (max-width: 860px) {
  .top{
    inset: 0.55rem 0.65rem auto;
  }

  .menu-btn{
    display: inline-flex;
  }

  .nav-glider{
    display: none;
  }

  nav a:hover,
nav a.is-on{
    background: #fff;
  }

  nav{
    display: none;
    position: absolute;
    top: 100%;
    right: 0.8rem;
    left: 0.8rem;
    flex-direction: column;
    background: rgb(8 55 120 / 0.96);
    border-radius: 0.6rem;
    padding: 0.45rem;
  }

  body.uv nav,
body.ena nav,
body.shadow nav,
body.snowgrave nav{
    background: var(--glass);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid var(--glass-line);
  }

  .top.is-open nav{
    display: flex;
  }

  .hero::before,
.discord-banner::before,
.page-head::before,
.show-hero::before{
    position: absolute;
  }

  .show-hero{
    padding-bottom: 8rem;
  }

  .show-hero.is-short{
    padding-bottom: 3.2rem;
  }

  .show-player{
    margin-top: -5rem;
  }

  .ep-item{
    grid-template-columns: 6.2rem 1fr;
    gap: 0.7rem;
  }

  .cosmos-canvas,
.team-loop{
    opacity: 0.48;
  }

  .fx-aurora span{
    filter: blur(40px);
    opacity: 0.28;
  }

  .fx-grain{
    opacity: 0.03;
  }

  .hero-inner::before,
.hero-inner::after,
.hero-halo{
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html{
    scroll-behavior: auto;
  }

  .fx-aurora,
.cosmos-canvas,
.team-loop,
.fx-grain,
.hero-halo,
.hero-inner::before,
.hero-inner::after{
    display: none;
  }

  .hero-mark,
.hero-word,
.hero-word::after,
.fx-aurora span,
.btn::after,
.nav-glider,
#chips.is-ready .chips-glider,
.log-card,
.log-mark{
    animation: none;
    transition: none;
  }

  .section-title h2,
.page-head h1,
.community h1,
.panel > .wrap > h2,
.show-hero h1,
.discord-banner h2,
.team-group-title,
.log-mark h2{
    animation: none;
    background-position: 40% 50%;
  }

  .log-card.is-slide{
    animation: none;
  }

  .fx-wait,
.fx-in,
.btn:hover{
    opacity: 1;
    transform: none;
  }

  .member-mini img,
.member-pop-card{
    animation: none;
    transition: none;
  }

  .member-mini:hover img,
.member-mini:focus-visible img{
    transform: none;
  }
}
