@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&family=Syne:wght@600;700&display=swap");

:root {
  --bg: #160815;
  --bg-alt: #2c0b2a;
  --ink: #fff1f6;
  --muted: #e3b4cc;
  --accent: #ff5fa2;
  --accent-2: #ff94c2;
  --card: rgba(36, 12, 36, 0.82);
  --stroke: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 70px rgba(20, 5, 17, 0.5);
  --radius: 22px;
  --font: "Manrope", "Gill Sans", "Optima", sans-serif;
  --display: "Syne", "Impact", "Trebuchet MS", sans-serif;
  --mono: "Consolas", "Courier New", monospace;
  --bg-image: none;
}

body[data-theme="rose"] {
  --bg: #160815;
  --bg-alt: #2c0b2a;
  --ink: #fff1f6;
  --muted: #e3b4cc;
  --accent: #ff5fa2;
  --accent-2: #ff94c2;
  --card: rgba(36, 12, 36, 0.82);
  --stroke: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 70px rgba(20, 5, 17, 0.5);
}

body[data-theme="sunset"] {
  --bg: #241013;
  --bg-alt: #3a1414;
  --ink: #fff0e6;
  --muted: #f0b7a1;
  --accent: #ff7a45;
  --accent-2: #ffd166;
  --card: rgba(42, 16, 18, 0.86);
  --stroke: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 60px rgba(26, 10, 10, 0.5);
}

body[data-theme="mint"] {
  --bg: #0c1513;
  --bg-alt: #0f2620;
  --ink: #e9fff7;
  --muted: #a8ddcc;
  --accent: #2fd7b0;
  --accent-2: #7dffe1;
  --card: rgba(10, 28, 22, 0.86);
  --stroke: rgba(255, 255, 255, 0.14);
  --shadow: 0 26px 60px rgba(6, 20, 16, 0.45);
}

body[data-theme="noir"] {
  --bg: #0b0b0f;
  --bg-alt: #15151d;
  --ink: #f6f6f9;
  --muted: #b8b8c7;
  --accent: #6e7cff;
  --accent-2: #9ea7ff;
  --card: rgba(13, 13, 20, 0.88);
  --stroke: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 55px rgba(6, 6, 12, 0.5);
}

body[data-theme="transparent"] {
  --bg: #0a0a10;
  --bg-alt: rgba(8, 10, 16, 0.08);
  --ink: #eef2fb;
  --muted: #b8c0d1;
  --accent: #8ecbff;
  --accent-2: #b9deff;
  --card: rgba(10, 12, 18, 0.35);
  --stroke: rgba(255, 255, 255, 0.16);
  --shadow: 0 18px 40px rgba(6, 8, 12, 0.22);
}

html {
  overflow-x: hidden;
  overflow-y: hidden;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

*:not(html):not(body) {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*:not(html):not(body)::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background-image: var(--bg-image),
    radial-gradient(120% 140% at 15% 10%, var(--bg-alt) 0%, var(--bg) 55%, transparent 85%),
    radial-gradient(120% 140% at 85% 20%, rgba(255, 94, 164, 0.16) 0%, transparent 70%),
    radial-gradient(120% 140% at 50% 80%, rgba(0, 0, 0, 0.35) 0%, transparent 75%);
  background-size: cover, cover, cover, cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body.no-scroll {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 94, 164, 0.25), transparent 65%);
  filter: blur(12px);
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
}


body[data-theme="transparent"]::before,
body[data-theme="transparent"]::after {
  opacity: 0;
}body::before {
  top: -120px;
  right: -80px;
  animation: float 10s ease-in-out infinite;
}

body::after {
  bottom: -140px;
  left: -100px;
  animation: float 12s ease-in-out infinite reverse;
}


body[data-theme="transparent"]::before,
body[data-theme="transparent"]::after {
  opacity: 0;
}.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.bg-video.is-visible {
  opacity: 0.35;
}

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

.bg-smooth {
  position: fixed;
  inset: -40%;
  background:
    radial-gradient(120% 60% at 50% 20%, rgba(0, 0, 0, 0.35), transparent 70%),
    radial-gradient(140% 80% at 50% 60%, rgba(0, 0, 0, 0.18), transparent 75%),
    radial-gradient(140% 80% at 50% 90%, rgba(0, 0, 0, 0.4), transparent 80%);
  filter: blur(18px);
  opacity: 0.75;
  z-index: 1;
  pointer-events: none;
}

body[data-theme="transparent"] .bg-smooth {
  opacity: 0.45;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 336px;
  gap: 24px;
  padding: 72px clamp(24px, 6vw, 96px) 48px;
  align-items: start;
  z-index: 12;
  isolation: isolate;
}

.donate-bubble {
  position: absolute;
  right: 6%;
  top: 78%;
  transform: translateY(-50%);
  background: rgba(10, 12, 18, 0.55);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 10px;
  width: 320px;
  max-width: 320px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.donate-bubble--footer {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  margin: 24px auto 0;
}

.site-info-bubble {
  position: relative;
  top: auto;
  right: auto;
  transform: none;
  margin-top: 0;
  width: 320px;
  max-width: 100%;
  z-index: 50;
  pointer-events: auto;
}

.site-info-links,
.site-info-links * {
  pointer-events: auto;
}

.donate-title {
  font-weight: 700;
}

.site-info-title {
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.2;
}

.site-info-text {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-info-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.88rem;
  display: grid;
  gap: 4px;
}

.site-info-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-info-links a {
  position: relative;
  z-index: 60;
  text-decoration: none;
  border: 1px solid var(--stroke);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.site-info-links a:hover {
  transform: translateY(-1px);
}

.hero__art {
  pointer-events: auto;
}

.hero::after {
  pointer-events: none;
}

.donate-qr {
  display: block;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: #0c0f16;
  image-rendering: crisp-edges;
  object-fit: contain;
}

.donate-address {
  font-size: 0.75rem;
  word-break: break-all;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 102, 173, 0.18),
    transparent 60%
  );
  filter: blur(24px);
  opacity: 0.7;
  z-index: -1;
}


body[data-theme="transparent"] .hero::after {
  opacity: 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}


.brand-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  align-self: flex-start;
}

.brand img {
  width: 340px;
  max-width: 75vw;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(255, 94, 164, 0.4));
}.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--muted);
}


.disclaimer {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 520px;
}h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.1;
  background: linear-gradient(120deg, #ffd4e5, var(--accent) 60%, #ff9cc8);
  background-size: 220% auto;
  -webkit-background-clip: text;
  color: transparent;
  animation: titleShift 7s ease-in-out infinite;
}


body[data-theme="transparent"] h1 {
  background: none;
  color: var(--ink);
}.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -140%;
  width: 42%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-22deg);
  pointer-events: none;
}

.btn--solid {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #280519;
  box-shadow: 0 18px 35px rgba(255, 94, 164, 0.4);
}

.btn--ghost {
  border: 1px solid var(--stroke);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

.btn--xs {
  padding: 6px 12px;
  font-size: 0.75rem;
  box-shadow: none;
}

body[data-theme="transparent"] .btn--solid {
  background: rgba(255, 255, 255, 0.22);
  color: var(--ink);
  border: 1px solid var(--stroke);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

body[data-theme="transparent"] .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn:hover::before {
  animation: btnSweep 0.75s ease;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero__auxcards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 18px;
  align-items: start;
  width: 100%;
  max-width: 658px;
}

.giveaway-hero-link {
  display: grid;
  gap: 8px;
  align-items: flex-start;
}

.giveaway-hero-link span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__trustpilot-inline {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  width: min(340px, 100%);
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero__trustpilot-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.hero__trustpilot-inline .trustpilot-widget {
  width: 320px !important;
  max-width: 100% !important;
  margin: 0 !important;
  display: block;
}

.hero__trustpilot-inline .trustpilot-widget > div,
.hero__trustpilot-inline .trustpilot-widget iframe {
  margin: 0 !important;
}

.hero__trustpilot-inline .trustpilot-widget iframe {
  width: 320px !important;
  max-width: 100% !important;
  border-radius: 12px;
  overflow: hidden;
}

.giveaway-hero-link__btn {
  width: fit-content;
  border-color: rgba(255, 95, 162, 0.38);
  background: rgba(255, 95, 162, 0.12);
}

.stats-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stats-panel__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.stats-toggle {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.stats-toggle .btn {
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.stats-toggle .is-active {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #280519;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(255, 94, 164, 0.35);
}

.stat__label {
  font-size: 0.85rem;
  color: var(--muted);
}

.stat__value {
  font-size: 1.15rem;
  font-weight: 700;
}

.hero__art {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  padding-top: 48px;
  overflow: visible;
}

.hero__trustpilot {
  width: min(320px, 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-right: 0;
  margin-top: 24px;
}

.hero__aside {
  width: min(320px, 100%);
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.kofi-glass {
  display: grid;
  place-items: start center;
  width: 320px;
  max-width: 100%;
  margin: 0;
  padding: 8px;
  height: 586px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(125%);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.kofi-glass__viewport {
  width: 304px;
  height: 570px;
  overflow: hidden;
  border-radius: 12px;
}

.kofi-glass iframe {
  display: block;
  width: 380px;
  height: 712px;
  margin: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f9f9f9 !important;
  transform: scale(0.8);
  transform-origin: top left;
}

body[data-theme="transparent"] .kofi-glass {
  background: rgba(255, 255, 255, 0.06);
}

.hero-sidecard {
  position: relative;
  display: grid;
  gap: 12px;
  width: 320px;
  max-width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(8, 10, 16, 0.52);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.hero-sidecard::before {
  content: "";
  position: absolute;
  inset: auto -20% 72% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 110, 176, 0.26), transparent 66%);
  pointer-events: none;
}

.hero-sidecard--accent {
  background:
    linear-gradient(145deg, rgba(255, 91, 163, 0.22), rgba(106, 195, 255, 0.08)),
    rgba(8, 10, 16, 0.52);
}

.hero-sidecard--compact {
  gap: 10px;
}

.hero-sidecard__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.hero-sidecard__title {
  margin: 0;
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-sidecard__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-sidecard__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-sidecard__links a {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-sidecard__links a:hover {
  transform: translateY(-1px);
}

.hero-sidecard__metric {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.hero-sidecard__value {
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ink);
}

.hero-sidecard__label {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.discord-glass {
  width: 320px;
  max-width: 100%;
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(160deg, rgba(88, 101, 242, 0.26), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(125%);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.discord-glass__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.discord-glass__title {
  margin: 0;
  font-family: var(--display);
  font-size: 1.16rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 11ch;
}

.discord-glass__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.discord-glass__cta {
  margin-top: 2px;
  width: fit-content;
  min-width: 220px;
  justify-content: center;
  padding-inline: 18px;
}

.orb {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    #ffd4e5,
    var(--accent) 55%,
    #c5166a
  );
  filter: blur(0);
  box-shadow: 0 25px 60px rgba(255, 94, 164, 0.45);
  animation: float 6s ease-in-out infinite;
}

.card {
  position: absolute;
  bottom: -40px;
  right: 6%;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 20px;
  width: 340px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: fadeUp 0.8s ease forwards;
}

body[data-theme="transparent"] .card {
  background: rgba(10, 12, 18, 0.4);
  backdrop-filter: blur(16px);
}

.card__title {
  font-weight: 700;
  margin-bottom: 6px;
}

.card__text {
  font-size: 0.95rem;
  color: var(--muted);
}

.card__chips {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.card__chips span {
  border: 1px solid var(--stroke);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.section {
  padding: 60px clamp(24px, 8vw, 120px);
  position: relative;
  z-index: 2;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  filter: blur(2px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease,
    filter 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.section__title {
  display: grid;
  gap: 6px;
}

.section__hint {
  color: var(--muted);
  font-size: 0.95rem;
}

.section__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.vip-card {
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: rgba(18, 10, 22, 0.78);
  box-shadow: 0 16px 36px rgba(8, 4, 12, 0.35);
  padding: 20px;
  display: grid;
  gap: 12px;
}

body[data-theme="transparent"] .vip-card {
  background: rgba(10, 12, 18, 0.35);
  backdrop-filter: blur(12px);
}

.vip-card--main {
  background:
    linear-gradient(120deg, rgba(255, 94, 164, 0.16), rgba(124, 214, 255, 0.08)),
    rgba(18, 10, 22, 0.82);
}

.vip-kicker {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.vip-card h3 {
  font-size: 1.4rem;
  margin: 0;
}

.vip-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 2px 0 0;
}

.vip-price strong {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  line-height: 1;
  font-family: var(--display);
  color: var(--accent-2);
}

.vip-price span {
  color: var(--muted);
  font-size: 1rem;
}

.vip-note {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 54ch;
}

.vip-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vip-foot {
  color: var(--muted);
  font-size: 0.78rem;
  opacity: 0.92;
}

.vip-perks,
.vip-steps {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.93rem;
}

.vip-perks strong,
.vip-steps strong {
  color: var(--ink);
}

.vip-faq {
  display: grid;
  gap: 10px;
}

.vip-faq p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.vip-faq strong {
  color: var(--ink);
}

.vip-card--lab {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at top left, rgba(255, 214, 102, 0.08), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(124, 214, 255, 0.1), transparent 34%),
    rgba(18, 10, 22, 0.82);
}

.vip-lab__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vip-lab__badge {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  background: rgba(255, 255, 255, 0.05);
}

.vip-lab__badge.is-live {
  color: #baffd5;
  border-color: rgba(120, 255, 177, 0.26);
  background: rgba(90, 255, 166, 0.08);
}

.vip-lab__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vip-lab__tool {
  display: grid;
  gap: 8px;
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.vip-lab__tool strong {
  font-size: 1rem;
}

.vip-lab__tool span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.vip-lab__tool:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 24px rgba(8, 4, 12, 0.2);
}

.vip-lab__tool.is-active {
  border-color: rgba(255, 214, 102, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 214, 102, 0.16), rgba(124, 214, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.vip-lab__tool.is-locked {
  opacity: 0.62;
  filter: saturate(0.72);
}

.vip-lab__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vip-lab__meta span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--muted);
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.04);
}

.vip-lab__meta strong {
  color: var(--ink);
}

.vip-hub {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 221;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.vip-hub__toggle {
  position: relative;
  width: 62px;
  height: 62px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.24s ease, filter 0.24s ease;
  animation: vipHubFloat 5.4s ease-in-out infinite;
}

.vip-hub__toggle:hover {
  transform: translateY(-3px) scale(1.03);
}

.vip-hub__toggle-ring,
.vip-hub__toggle-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.vip-hub__toggle-ring {
  border: 1px solid rgba(255, 220, 143, 0.38);
  background:
    conic-gradient(from 180deg, rgba(255, 208, 94, 0.22), rgba(255, 120, 176, 0.12), rgba(138, 214, 255, 0.18), rgba(255, 208, 94, 0.22));
  box-shadow:
    0 16px 40px rgba(7, 4, 12, 0.34),
    0 0 0 1px rgba(255, 238, 196, 0.08) inset;
  animation: vipHubRotate 12s linear infinite;
}

.vip-hub__toggle-core {
  inset: 6px;
  display: grid;
  place-items: center;
  gap: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 250, 230, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(32, 19, 12, 0.96), rgba(20, 10, 18, 0.92));
  border: 1px solid rgba(255, 232, 180, 0.22);
  color: #fff6d7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}

.vip-hub__toggle-core strong {
  font-size: 0.92rem;
  line-height: 1;
}

.vip-hub__toggle-core small {
  font-size: 0.54rem;
  opacity: 0.82;
}

.vip-hub__panel {
  width: min(390px, calc(100vw - 28px));
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 225, 158, 0.14);
  background:
    radial-gradient(circle at top left, rgba(255, 206, 104, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(123, 215, 255, 0.14), transparent 38%),
    rgba(12, 8, 14, 0.88);
  box-shadow:
    0 24px 60px rgba(4, 2, 8, 0.42),
    0 0 0 1px rgba(255, 236, 180, 0.05) inset;
  backdrop-filter: blur(18px);
  transform-origin: right bottom;
  pointer-events: auto;
}

.vip-hub__panel[hidden] {
  display: none;
}

.vip-hub__panel.is-entering {
  animation: vipHubPanelIn 0.34s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.vip-hub__panel.is-closing {
  animation: vipHubPanelOut 0.22s ease both;
}

.vip-hub__panel-head,
.vip-hub__panel-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.vip-hub__eyebrow {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffdf96;
}

.vip-hub__panel-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.36rem;
  line-height: 1.05;
}

.vip-hub__close {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  cursor: pointer;
}

.vip-hub__intro,
.vip-hub__status {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.vip-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vip-hub__tool {
  display: grid;
  gap: 6px;
  text-align: left;
  min-height: 92px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  padding: 14px;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.vip-hub__tool strong {
  font-size: 0.96rem;
}

.vip-hub__tool span {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--muted);
}

.vip-hub__tool:hover,
.vip-hub__close:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.vip-hub__tool.is-active {
  border-color: rgba(255, 220, 138, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 206, 104, 0.18), rgba(123, 215, 255, 0.12)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 28px rgba(5, 3, 9, 0.24);
}

.vip-hub__tool.is-locked {
  opacity: 0.64;
  filter: saturate(0.68);
}

.vip-hub__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vip-hub__meta span {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vip-hub__meta strong {
  color: var(--ink);
}

.vip-cinema-shell {
  position: fixed;
  inset: 0;
  z-index: 205;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(119, 42, 16, 0.38), transparent 34%),
    linear-gradient(180deg, rgba(5, 4, 10, 0.9), rgba(4, 4, 8, 0.98));
}

.vip-cinema-shell[hidden] {
  display: none;
}

.vip-cinema-shell__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 12, 0.58), rgba(8, 7, 12, 0.96)),
    var(--hero-bg, url("/assets/images/logo.png")) center / cover no-repeat;
  opacity: 0.3;
  filter: blur(4px) saturate(0.95);
  transform: scale(1.05);
}

.vip-cinema-shell__content {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
}

.vip-cinema-shell__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px 10px;
  position: sticky;
  top: 0;
  z-index: 4;
  background: linear-gradient(180deg, rgba(8, 7, 12, 0.88), rgba(8, 7, 12, 0.46), transparent);
  backdrop-filter: blur(16px);
}

.vip-cinema-shell__brand,
.vip-cinema-shell__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vip-cinema-shell__brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.vip-cinema-shell__badge {
  border-radius: 999px;
  padding: 8px 14px;
  background: linear-gradient(120deg, #bb3129, #e6583f);
  color: #fff8f2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vip-cinema-shell__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.vip-cinema-shell__nav-btn,
.vip-cinema-shell__exit {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #f7edf6;
  font-family: var(--font);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.vip-cinema-shell__nav-btn:hover,
.vip-cinema-shell__exit:hover,
.vip-cinema-shell__nav-btn.is-active {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 212, 150, 0.28);
}

.vip-cinema-shell__scroller {
  overflow-y: auto;
  padding: 10px 28px 56px;
  scrollbar-width: thin;
}

.vip-cinema-hero {
  margin-bottom: 22px;
}

.vip-cinema-hero__card {
  position: relative;
  min-height: 420px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(8, 6, 10, 0.96) 8%, rgba(8, 6, 10, 0.58) 52%, rgba(8, 6, 10, 0.2) 100%),
    var(--cinema-hero-bg) center / cover no-repeat,
    rgba(18, 10, 22, 0.86);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.vip-cinema-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 40%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 149, 86, 0.08), transparent 28%);
  pointer-events: none;
}

.vip-cinema-hero__body {
  position: relative;
  z-index: 1;
  max-width: 620px;
  display: grid;
  gap: 16px;
  padding: 54px 42px;
}

.vip-cinema-hero__tag {
  justify-self: start;
  border-radius: 999px;
  padding: 8px 16px;
  background: linear-gradient(120deg, #b92e24, #e46648);
  color: #fff8f2;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.vip-cinema-hero__body h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.96;
}

.vip-cinema-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 246, 251, 0.84);
  font-size: 0.96rem;
}

.vip-cinema-hero__meta span {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vip-cinema-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vip-cinema-hero__chips span {
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(248, 239, 245, 0.92);
  font-size: 0.9rem;
}

.vip-cinema-hero__stars {
  color: #ffcb64;
  letter-spacing: 0.08em;
}

.vip-cinema-hero__body p {
  margin: 0;
  max-width: 52ch;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(250, 241, 247, 0.9);
}

.vip-cinema-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vip-cinema-hero__actions a,
.vip-cinema-hero__actions button {
  text-decoration: none;
  border-radius: 16px;
  padding: 14px 18px;
  font-weight: 800;
  font-family: var(--font);
  cursor: pointer;
}

.vip-cinema-hero__primary {
  background: linear-gradient(120deg, #b92e24, #e05d42);
  color: #fff8f2;
  border: 0;
}

.vip-cinema-hero__secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #f8eff5;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.vip-cinema-hero__empty {
  margin: 0;
  padding: 36px;
  color: var(--muted);
}

.vip-cinema-row-section {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.vip-cinema-row-section__head {
  display: grid;
  gap: 4px;
}

.vip-cinema-row-section__head h2 {
  margin: 0;
  font-size: 2rem;
}

.vip-cinema-row-section__head p {
  margin: 0;
  color: rgba(247, 238, 245, 0.72);
}

.vip-cinema-row-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.vip-cinema-row-shell__nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 11, 16, 0.76);
  color: #fff5ef;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.vip-cinema-row-shell__nav:hover {
  transform: scale(1.04);
  background: rgba(32, 20, 18, 0.94);
  border-color: rgba(255, 221, 152, 0.24);
}

.vip-cinema-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 280px);
  gap: 16px;
  overflow-x: auto;
  padding: 6px 2px 10px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.vip-cinema-row::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.vip-cinema-card {
  position: relative;
  min-height: 164px;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(22, 14, 26, 0.8);
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  animation: vipCinemaCardIn 0.48s cubic-bezier(0.2, 0.9, 0.2, 1) both;
  scroll-snap-align: start;
}

.vip-cinema-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--cinema-card-bg) center / cover no-repeat, rgba(22, 14, 26, 0.8);
  transform: scale(1.001);
}

.vip-cinema-card:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(255, 221, 152, 0.28);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.vip-cinema-card__shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 4, 8, 0.04) 0%, rgba(5, 4, 8, 0.18) 42%, rgba(5, 4, 8, 0.82) 100%);
}

.vip-cinema-card__label {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(124, 255, 211, 0.92);
  color: #032119;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vip-cinema-card__body {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 2;
  display: grid;
  gap: 4px;
}

.vip-cinema-card__body strong {
  font-size: 1.08rem;
}

.vip-cinema-card__body span,
.vip-cinema-row__empty {
  color: rgba(250, 241, 247, 0.76);
}

.vip-cinema-card__body span {
  font-size: 0.94rem;
}

.vip-cinema-card__actions {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 3;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.vip-cinema-card:hover .vip-cinema-card__actions,
.vip-cinema-card:focus-within .vip-cinema-card__actions {
  opacity: 1;
  transform: translateY(0);
}

.vip-cinema-card:hover .vip-cinema-card__body,
.vip-cinema-card:focus-within .vip-cinema-card__body {
  opacity: 0;
  transform: translateY(10px);
}

.vip-cinema-card__body {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.vip-cinema-card__action {
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  background: linear-gradient(120deg, #b92e24, #e05d42);
  color: #fff8f2;
  font-family: var(--font);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.vip-cinema-card__action--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.vip-cinema-categories {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.vip-cinema-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vip-cinema-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vip-cinema-category-tab {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff6fb;
  font-family: var(--font);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.vip-cinema-category-tab:hover,
.vip-cinema-category-tab.is-active {
  transform: translateY(-1px);
  background: linear-gradient(120deg, rgba(185, 46, 36, 0.88), rgba(224, 93, 66, 0.88));
  border-color: rgba(255, 214, 154, 0.32);
}

.vip-cinema-category-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.vip-cinema-category-results .vip-cinema-card {
  min-height: 182px;
}

.vip-cinema-category {
  display: grid;
  gap: 8px;
  text-align: left;
  min-height: 110px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(226, 90, 64, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.05);
  color: #fff6fb;
  cursor: pointer;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.vip-cinema-category:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 214, 154, 0.24);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.vip-cinema-category strong {
  font-size: 1.08rem;
}

.vip-cinema-category span {
  color: rgba(247, 238, 245, 0.72);
  font-size: 0.92rem;
}

.vip-cinema-detail {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
}

.vip-cinema-detail[hidden] {
  display: none;
}

.vip-cinema-detail__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 2, 6, 0.74);
  backdrop-filter: blur(12px);
}

.vip-cinema-detail__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 40px));
  max-height: calc(100vh - 54px);
  overflow-y: auto;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(226, 90, 64, 0.14), transparent 28%),
    rgba(10, 9, 14, 0.94);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
  padding: 22px;
}

.vip-cinema-detail__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff6fb;
  cursor: pointer;
  z-index: 2;
}

.vip-cinema-detail__body {
  display: grid;
  gap: 20px;
}

.vip-cinema-detail__hero {
  position: relative;
  min-height: 360px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 6, 10, 0.96) 8%, rgba(7, 6, 10, 0.56) 52%, rgba(7, 6, 10, 0.18) 100%),
    var(--cinema-detail-bg) center / cover no-repeat,
    rgba(18, 10, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-cinema-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 102, 74, 0.08), transparent 30%);
}

.vip-cinema-detail__hero-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 620px;
  padding: 34px;
}

.vip-cinema-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vip-cinema-detail__action {
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  background: linear-gradient(120deg, #b92e24, #e05d42);
  color: #fff8f2;
  text-decoration: none;
  font-weight: 800;
  font-family: var(--font);
  cursor: pointer;
}

.vip-cinema-detail__action--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.vip-cinema-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
}

.vip-cinema-detail__card {
  display: grid;
  gap: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
}

.vip-cinema-detail__card h3,
.vip-cinema-detail__card p {
  margin: 0;
}

.vip-cinema-detail__link-list {
  display: grid;
  gap: 10px;
}

.vip-cinema-detail__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff6fb;
  text-decoration: none;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.95rem;
  cursor: pointer;
}

.vip-cinema-row__empty {
  margin: 0;
  padding: 14px 0;
}

.vip-cinema-intro {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 122, 64, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(7, 5, 10, 0.62), rgba(2, 2, 4, 0.96));
  opacity: 0;
  pointer-events: none;
}

.vip-cinema-intro__flare {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 118, 58, 0.18), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(255, 210, 146, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(4, 3, 8, 0.22), rgba(4, 3, 8, 0.8));
  filter: blur(20px);
  transform: scale(1.08);
}

.vip-cinema-intro::before,
.vip-cinema-intro::after {
  content: "";
  position: absolute;
  inset: 0;
}

.vip-cinema-intro::before {
  background:
    linear-gradient(90deg, rgba(4, 3, 8, 0.82) 0%, rgba(4, 3, 8, 0.14) 24%, rgba(4, 3, 8, 0.14) 76%, rgba(4, 3, 8, 0.82) 100%),
    radial-gradient(circle at 90% 12%, rgba(4, 3, 8, 0.92), transparent 18%),
    linear-gradient(180deg, rgba(4, 3, 8, 0.9) 0%, rgba(4, 3, 8, 0.08) 18%, rgba(4, 3, 8, 0.08) 82%, rgba(4, 3, 8, 0.92) 100%);
  z-index: 1;
}

.vip-cinema-intro::after {
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 233, 188, 0.08);
  box-shadow:
    inset 0 0 120px rgba(255, 132, 74, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  z-index: 3;
}

.vip-cinema-intro__core {
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: scale(1);
}

.vip-cinema-intro__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 54%;
  transform: scale(1.08);
  filter:
    saturate(1.04)
    contrast(1.03)
    brightness(0.9)
    drop-shadow(0 0 80px rgba(255, 114, 64, 0.12));
}

.vip-cinema-intro.is-visible {
  animation: vipCinemaIntroIn 1.35s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.vip-cinema-intro.is-visible .vip-cinema-intro__core {
  animation: vipCinemaLogoPulse 2.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.vip-cinema-intro.is-visible .vip-cinema-intro__flare {
  animation: vipCinemaIntroFlare 2.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.vip-cinema-intro.is-hiding {
  animation: vipCinemaIntroOut 0.55s ease both;
}

.home-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.home-tab {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.home-tab:hover {
  transform: translateY(-1px);
}

.home-tab.is-active {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #280519;
  border-color: transparent;
}

.home-tab-hint {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.catalogue-rail {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
}

.catalogue-rail__intro {
  display: grid;
  gap: 2px;
}

.catalogue-rail__intro strong {
  font-size: 0.95rem;
}

.catalogue-rail__intro span,
.catalogue-state {
  color: var(--muted);
  font-size: 0.88rem;
}

.recently-viewed {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.recently-viewed__chip {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font);
  font-size: 0.82rem;
  cursor: pointer;
}

.recently-viewed__chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.catalogue-state {
  margin: 0 0 14px;
}

.home-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
}

.home-grid .game {
  min-height: 170px;
  padding-top: 42px;
}

.tag-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tag-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.tag-btn {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.tag-btn.is-active {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #280519;
  border-color: transparent;
}

.tag-btn:hover {
  transform: translateY(-1px);
}

.theme {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.theme.is-disabled {
  opacity: 0.6;
}

.theme.is-disabled select {
  cursor: not-allowed;
}

.theme select {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font);
  outline: none;
}

.theme select option {
  color: #0e0a12;
  background: #f7e9f1;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
}

body[data-theme="transparent"] .search,
body[data-theme="transparent"] .theme select {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.search input {
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  min-width: 320px;
}

.count {
  background: var(--accent-2);
  color: #29051b;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pager-wrap {
  margin-top: 20px;
  display: grid;
  gap: 6px;
  justify-items: center;
}

.pager {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.pager-btn {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.pager-btn.is-active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.14);
}

.pager-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pager-ellipsis {
  color: var(--muted);
  padding: 0 4px;
}

.pager-info {
  color: var(--muted);
  font-size: 0.85rem;
}

.game {
  background-image: var(--card-bg);
  background-size: var(--card-size, cover);
  background-position: var(--card-pos, center);
  background-repeat: no-repeat;
  position: relative;
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 44px;
  min-height: 210px;
  --rx: 0deg;
  --ry: 0deg;
  --lift: 0px;
  animation: fadeUp 0.6s ease forwards;
  transform: perspective(900px) translateY(var(--lift)) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.25s ease;
  will-change: transform;
}

.game::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    130deg,
    rgba(10, 6, 12, 0.6),
    rgba(10, 6, 12, 0.35)
  );
  z-index: 0;
}

.game.is-clicked::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

body[data-theme="transparent"] .game::before {
  background: linear-gradient(
    130deg,
    rgba(6, 8, 12, 0.45),
    rgba(6, 8, 12, 0.2)
  );
}

.game > * {
  position: relative;
  z-index: 2;
}

.game__gold-frame {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(242, 196, 94, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 230, 155, 0.35) inset,
    0 0 18px rgba(242, 196, 94, 0.32);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.game:hover {
  --lift: -6px;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 26px 60px rgba(255, 94, 164, 0.18);
}

.game:hover .game__gold-frame {
  opacity: 1;
  animation: goldShine 1.6s ease-in-out infinite;
}

.game__title {
  font-weight: 700;
  font-size: 1.1rem;
}

.game__meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.game__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--stroke);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.game__labels {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: calc(100% - 28px);
  z-index: 2;
}

.game__label {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  border: 1px solid var(--stroke);
}

.game__label--new {
  background: linear-gradient(120deg, #ff5fa2, #ff94c2);
  color: #2b051a;
  box-shadow: 0 10px 25px rgba(255, 94, 164, 0.25);
}

.game__label--update {
  background: linear-gradient(120deg, #7dffe1, #2fd7b0);
  color: #032019;
  box-shadow: 0 10px 25px rgba(47, 215, 176, 0.25);
}

.game__label--pin {
  background: linear-gradient(120deg, #ffe38a, #ffc357);
  color: #3b2500;
  box-shadow: 0 10px 25px rgba(255, 195, 87, 0.3);
}

.game__label--trend {
  background: linear-gradient(120deg, #9ea7ff, #6e7cff);
  color: #0f123a;
  box-shadow: 0 10px 25px rgba(110, 124, 255, 0.28);
}

.game__actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-right: 148px;
}

.game__actions a,
.game__actions button {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--stroke);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: background 0.2s ease;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.game__actions .vip-favorite-btn.is-active {
  border-color: rgba(255, 214, 102, 0.42);
  background: rgba(255, 214, 102, 0.14);
}

body.vip-cinema-mode .hero__aside,
body.vip-cinema-mode .hero__trustpilot,
body.vip-cinema-mode #requests,
body.vip-cinema-mode #chat,
body.vip-cinema-mode #support,
body.vip-cinema-mode #comment,
body.vip-cinema-mode .footer {
  opacity: 0.32;
  filter: saturate(0.8) blur(1px);
}

body.vip-cinema-mode .hero,
body.vip-cinema-mode #vip,
body.vip-cinema-mode #jeux {
  opacity: 1;
  filter: none;
}

body.vip-cinema-mode .game,
body.vip-cinema-mode .hero-sidecard,
body.vip-cinema-mode .site-info-bubble {
  box-shadow: 0 22px 44px rgba(8, 4, 12, 0.34);
}

body.vip-cinema-mode > .grain,
body.vip-cinema-mode > .bg-smooth,
body.vip-cinema-mode > .bg-video,
body.vip-cinema-mode > .hero,
body.vip-cinema-mode > main,
body.vip-cinema-mode > .footer {
  opacity: 0;
  pointer-events: none;
}

body.vip-cinema-mode {
  overflow: hidden;
}

body.vip-cinema-mode::before,
body.vip-cinema-mode::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 18;
}

body.vip-cinema-mode::before {
  background:
    radial-gradient(circle at center, transparent 32%, rgba(5, 3, 8, 0.1) 54%, rgba(5, 3, 8, 0.58) 100%),
    linear-gradient(180deg, rgba(3, 2, 6, 0.86), rgba(3, 2, 6, 0.12) 18%, rgba(3, 2, 6, 0.18) 82%, rgba(3, 2, 6, 0.88));
  animation: vipCinemaOverlayIn 0.6s ease both;
}

body.vip-cinema-mode::after {
  inset: 14px 10px;
  border-radius: 28px;
  border: 1px solid rgba(255, 232, 190, 0.06);
  box-shadow:
    0 0 0 999px rgba(0, 0, 0, 0.02),
    inset 0 0 120px rgba(255, 210, 96, 0.04);
}

body.vip-cinema-mode main {
  position: relative;
  z-index: 19;
}

body.vip-cinema-mode #jeux {
  position: relative;
}

body.vip-cinema-mode #jeux::before {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(255, 214, 111, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  border: 1px solid rgba(255, 236, 184, 0.08);
  box-shadow: 0 30px 80px rgba(4, 3, 7, 0.38);
  z-index: -1;
  animation: vipCinemaStageIn 0.55s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

body.vip-cinema-mode .hero {
  transform: translateY(-4px);
}

body.vip-cinema-mode .home-grid .game,
body.vip-cinema-mode .games .game {
  transition: transform 0.28s ease, opacity 0.28s ease, filter 0.28s ease, box-shadow 0.28s ease;
}

body.vip-cinema-mode.vip-spotlight-mode .home-grid:hover .game,
body.vip-cinema-mode.vip-spotlight-mode .games:hover .game {
  opacity: 0.62;
  filter: saturate(0.78) blur(0.6px);
  transform: scale(0.985);
}

body.vip-cinema-mode.vip-spotlight-mode .home-grid .game:hover,
body.vip-cinema-mode.vip-spotlight-mode .games .game:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 28px 60px rgba(3, 2, 7, 0.48),
    0 0 0 1px rgba(255, 224, 150, 0.12) inset;
}

body.vip-ambient-mode .vip-hub__toggle-ring,
body.vip-ambient-mode .vip-card--lab,
body.vip-ambient-mode .hero__content,
body.vip-ambient-mode #jeux .section__header {
  box-shadow:
    0 20px 50px rgba(4, 3, 8, 0.28),
    0 0 50px rgba(255, 207, 96, 0.1);
}

body.vip-ambient-mode .vip-card--lab,
body.vip-ambient-mode #jeux::before {
  border-color: rgba(255, 225, 150, 0.14);
}

.game__actions a:hover,
.game__actions button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.game__delete {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 120, 120, 0.55);
  background: rgba(36, 8, 14, 0.72);
  color: #ffd8d8;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.game__delete:hover {
  transform: translateY(-1px) scale(1.04);
  background: rgba(94, 14, 26, 0.82);
  border-color: rgba(255, 130, 130, 0.85);
}

.game__edit {
  position: absolute;
  right: 50px;
  bottom: 12px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(153, 219, 255, 0.55);
  background: rgba(8, 26, 40, 0.72);
  color: #dff3ff;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.game__edit:hover {
  transform: translateY(-1px) scale(1.04);
  background: rgba(8, 42, 66, 0.82);
  border-color: rgba(171, 230, 255, 0.85);
}

.game__pin {
  position: absolute;
  right: 108px;
  bottom: 12px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 104, 0.58);
  background: rgba(42, 30, 4, 0.74);
  color: #ffeec3;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.game__pin:hover {
  transform: translateY(-1px) scale(1.04);
  background: rgba(66, 43, 6, 0.84);
  border-color: rgba(255, 223, 130, 0.9);
}

.game__pin.is-active {
  background: rgba(120, 80, 10, 0.88);
  border-color: rgba(255, 228, 152, 0.96);
  color: #fff6d8;
}

.section--split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  background: rgba(20, 6, 20, 0.7);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

body[data-theme="transparent"] .section--split {
  background: rgba(10, 12, 18, 0.35);
  backdrop-filter: blur(12px);
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-left: 18px;
}

.steps li {
  color: var(--muted);
}

.tips {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--stroke);
  display: grid;
  gap: 12px;
}

body[data-theme="transparent"] .tips {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.request-card {
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(12, 8, 14, 0.75);
  padding: 20px;
  display: grid;
  gap: 12px;
}

body[data-theme="transparent"] .request-card {
  background: rgba(10, 12, 18, 0.35);
  backdrop-filter: blur(12px);
}

.legal-card {
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(12, 8, 14, 0.75);
  padding: 20px;
  display: grid;
  gap: 12px;
}

body[data-theme="transparent"] .legal-card {
  background: rgba(10, 12, 18, 0.35);
  backdrop-filter: blur(12px);
}

.legal-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.legal-card h3 {
  font-size: 1.1rem;
}

.request-form {
  display: grid;
  gap: 12px;
}

.request-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.request-form input,
.request-form textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--ink);
  font-family: var(--font);
}

.request-status,
.request-login {
  color: var(--muted);
  font-size: 0.85rem;
}

.chat-card {
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(12, 8, 14, 0.75);
  padding: 20px;
  display: grid;
  gap: 12px;
  overflow: hidden;
}

body[data-theme="transparent"] .chat-card {
  background: rgba(10, 12, 18, 0.35);
  backdrop-filter: blur(12px);
}

.chat-list {
  display: grid;
  gap: 10px;
  max-height: min(52vh, 520px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
  -ms-overflow-style: auto;
}

.chat-list::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.chat-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.chat-list::-webkit-scrollbar-track {
  background: transparent;
}

.chat-message {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  overflow-wrap: anywhere;
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--stroke);
}

.chat-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.chat-time {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--muted);
}

.chat-body {
  color: var(--muted);
  font-size: 0.9rem;
}

.chat-message--admin .chat-name {
  color: #ff4d4d;
}

.chat-message--admin::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 215, 130, 0.6), transparent 35%),
    radial-gradient(circle at 85% 30%, rgba(255, 224, 160, 0.5), transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(255, 200, 120, 0.45), transparent 40%);
  opacity: 0.25;
  animation: sparkle 3s ease-in-out infinite;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.chat-form input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--ink);
  font-family: var(--font);
  min-width: 0;
}

.chat-status,
.chat-login {
  color: var(--muted);
  font-size: 0.85rem;
}

.ai-assistant {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 220;
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: none;
}

.ai-assistant__toggle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  padding: 0;
  background: rgba(12, 8, 14, 0.56);
  color: #fff6fb;
  box-shadow: 0 12px 28px rgba(10, 5, 12, 0.22);
  cursor: pointer;
  backdrop-filter: blur(12px);
  opacity: 0.84;
  transition: transform 0.22s ease, opacity 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  animation: aiAssistantFloat 4.8s ease-in-out infinite;
  pointer-events: auto;
}

.ai-assistant__toggle:hover {
  transform: translateY(-2px) scale(1.02);
  opacity: 1;
  background: rgba(18, 12, 20, 0.74);
  box-shadow: 0 18px 34px rgba(10, 5, 12, 0.28);
}

.ai-assistant__toggle-icon {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.96;
}

.ai-assistant__panel {
  width: min(360px, calc(100vw - 28px));
  max-height: min(68vh, 600px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(255, 95, 162, 0.08), transparent 42%),
    rgba(12, 8, 14, 0.72);
  box-shadow: 0 18px 46px rgba(10, 5, 12, 0.24);
  backdrop-filter: blur(14px);
  padding: 16px;
  opacity: 0.96;
  transform-origin: right bottom;
  transform: translateY(0) scale(1);
  transition: opacity 0.24s ease, transform 0.24s ease, filter 0.24s ease;
  pointer-events: auto;
}

body[data-theme="transparent"] .ai-assistant__panel {
  background:
    radial-gradient(circle at top left, rgba(142, 203, 255, 0.1), transparent 40%),
    rgba(10, 12, 18, 0.38);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 34px rgba(6, 8, 12, 0.14);
  backdrop-filter: blur(10px);
}

.ai-assistant__panel[hidden] {
  display: none;
}

.ai-assistant__panel.is-entering {
  animation: aiAssistantPanelIn 0.28s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.ai-assistant__panel.is-closing {
  animation: aiAssistantPanelOut 0.2s ease both;
}

.ai-assistant__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.ai-assistant__panel-head h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.1;
}

.ai-assistant__eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.ai-assistant__close {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
}

.ai-assistant__messages {
  display: grid;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
}

.ai-assistant__message {
  display: grid;
  gap: 8px;
  max-width: 92%;
}

.ai-assistant__message.is-new {
  animation: aiAssistantMessageIn 0.34s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.ai-assistant__message p {
  padding: 10px 12px;
  border-radius: 16px;
  line-height: 1.45;
  font-size: 0.92rem;
}

.ai-assistant__message--bot p {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--ink);
}

.ai-assistant__message--user {
  justify-self: end;
}

.ai-assistant__message--user p {
  background: linear-gradient(135deg, rgba(255, 95, 162, 0.18), rgba(255, 148, 194, 0.12));
  border: 1px solid rgba(255, 148, 194, 0.22);
  color: #fff6fb;
}

.ai-assistant__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-assistant__actions button,
.ai-assistant__actions a,
.ai-assistant__suggestions button {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  padding: 8px 12px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.ai-assistant__actions button:hover,
.ai-assistant__actions a:hover,
.ai-assistant__suggestions button:hover,
.ai-assistant__close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
}

.ai-assistant__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-assistant__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.ai-assistant__form input {
  min-width: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  padding: 12px 14px;
  font-family: var(--font);
}

@keyframes aiAssistantFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes aiAssistantPanelIn {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.94);
    filter: blur(6px);
  }
  100% {
    opacity: 0.96;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes aiAssistantPanelOut {
  0% {
    opacity: 0.96;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    filter: blur(4px);
  }
}

@keyframes aiAssistantMessageIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes vipHubFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes vipHubRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes vipHubPanelIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.92);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes vipHubPanelOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(16px) scale(0.95);
    filter: blur(5px);
  }
}

@keyframes vipCinemaOverlayIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes vipCinemaStageIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes vipCinemaIntroIn {
  0% {
    opacity: 0;
    filter: blur(12px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes vipCinemaIntroOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes vipCinemaLogoPulse {
  0% {
    opacity: 0;
    transform: scale(0.92);
    filter: blur(18px);
  }
  38% {
    opacity: 1;
    transform: scale(1.02);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes vipCinemaIntroFlare {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  40% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.56;
    transform: scale(1.12);
    filter: blur(0);
  }
}

@keyframes vipCinemaCardIn {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vip-hub__toggle,
  .vip-hub__panel,
  .vip-hub__tool,
  .vip-cinema-intro,
  .vip-cinema-intro__core,
  .vip-cinema-card,
  .ai-assistant__toggle,
  .ai-assistant__panel,
  .ai-assistant__message,
  .ai-assistant__actions button,
  .ai-assistant__actions a,
  .ai-assistant__suggestions button,
  .ai-assistant__close {
    animation: none !important;
    transition: none !important;
  }
}

.mono {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: #ffd4e5;
}

.footer {
  padding: 30px 24px 50px;
  text-align: center;
  color: var(--muted);
}

.mobile-ad-rail {
  display: none;
  margin: 18px auto 0;
  width: min(100%, 420px);
  gap: 8px;
  justify-items: center;
}

.mobile-ad-rail__label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.mobile-ad-rail__slot {
  width: 100%;
  min-height: 52px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.donate {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  font-size: 0.9rem;
}

.auth-bar {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.user-bar-toggle {
  display: none;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 700;
  cursor: pointer;
}

.user-bar-menu {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.lang-switch select {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font);
  outline: none;
}

.lang-switch select option {
  color: #0e0a12;
  background: #f7e9f1;
}

.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  object-fit: cover;
}

.user-avatar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

  .user-float {
  position: fixed;
  top: 18px;
  right: 24px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(12, 8, 14, 0.75);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  z-index: 20;
  justify-content: flex-end;
}

body[data-theme="transparent"] .user-float {
  background: rgba(10, 12, 18, 0.4);
}

.auth-badge {
  border: 1px solid var(--stroke);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
}

.is-hidden {
  display: none;
}

.live-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.admin-locked {
  opacity: 0;
  pointer-events: none;
}

.admin {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 24px;
  background: rgba(12, 8, 14, 0.75);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 24px;
}

body[data-theme="transparent"] .admin {
  background: rgba(10, 12, 18, 0.35);
  backdrop-filter: blur(14px);
}

.admin__form {
  display: grid;
  gap: 14px;
}

.admin__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin__form label {
  display: grid;
  gap: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: left;
  justify-items: stretch;
  position: relative;
}

.admin__form .admin__check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  position: static;
}

.admin__form .admin__check input {
  margin: 0;
  width: 16px;
  height: 16px;
}

.admin__form .admin__check span {
  color: var(--ink);
  font-size: 0.92rem;
}

.admin-links {
  display: grid;
  gap: 8px;
}

.admin-links__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-links__list {
  display: grid;
  gap: 8px;
}

.admin-links__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.admin-links__row input {
  padding-top: 10px;
}

.admin__label {
  position: absolute;
  top: 8px;
  left: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.admin__form input,
.admin__form textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 28px 12px 10px;
  color: var(--ink);
  font-family: var(--font);
}

.admin__status {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin__list {
  display: grid;
  gap: 12px;
}

.admin__section {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
}

.admin__section-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.admin__section-actions--tight {
  margin: -2px 0 10px;
}

.admin__section--wide {
  grid-column: 1 / -1;
}

.admin-tabs {
  display: flex;
  gap: 10px;
  margin: 0 0 16px;
  flex-wrap: wrap;
}

.admin-tabs--flat .btn {
  border-radius: 12px;
  padding-inline: 16px;
}

.admin-shell {
  max-width: 1320px;
  margin-inline: auto;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.admin-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.admin-overview-grid--mini {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-overview-card {
  display: grid;
  gap: 4px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(14, 10, 18, 0.72);
  padding: 14px 16px;
}

.admin-overview-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-overview-card strong {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.1;
}

.admin-overview-card small {
  color: var(--muted);
  font-size: 0.75rem;
}

.admin-overview-card--hero {
  background: linear-gradient(120deg, rgba(255, 94, 164, 0.24), rgba(124, 214, 255, 0.14));
  border-color: rgba(255, 255, 255, 0.22);
}

.admin-overview-card--vip {
  background: linear-gradient(120deg, rgba(255, 214, 94, 0.18), rgba(255, 122, 179, 0.12));
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.admin-layout--single {
  grid-template-columns: 1fr;
}

.admin-column {
  display: grid;
  gap: 14px;
  align-content: start;
}

.admin-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(12, 8, 14, 0.64);
}

.admin-panel h3 {
  margin: 0;
}

body[data-theme="transparent"] .admin-panel,
body[data-theme="transparent"] .admin-overview-card {
  background: rgba(10, 12, 18, 0.35);
  backdrop-filter: blur(12px);
}

.auth-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.auth-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: rgba(12, 8, 14, 0.72);
  box-shadow: var(--shadow);
}

body[data-theme="transparent"] .auth-card {
  background: rgba(10, 12, 18, 0.35);
  backdrop-filter: blur(14px);
}

.auth-header {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.auth-title {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--ink);
}

.auth-hint {
  color: var(--muted);
  font-size: 0.95rem;
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-field {
  display: grid;
  gap: 8px;
}

.auth-field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.auth-field input:not([type="checkbox"]) {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  padding: 12px 14px;
  min-height: 48px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-family: var(--font);
}

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.9rem;
}

.auth-checkbox input[type="checkbox"] {
  width: auto;
}

.auth-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.auth-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-status {
  color: var(--muted);
  font-size: 0.9rem;
}

.account-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, rgba(24, 10, 22, 0.88), rgba(10, 6, 14, 0.7));
  box-shadow: 0 24px 55px rgba(10, 6, 14, 0.45);
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.account-card {
  border-radius: 20px;
  border: 1px solid var(--stroke);
  padding: 18px;
  background: rgba(18, 10, 22, 0.82);
  display: grid;
  gap: 12px;
  box-shadow: 0 18px 35px rgba(10, 6, 14, 0.35);
}

.account-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-card h3 {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.account-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: var(--ink);
}

.account-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6bffbf;
  box-shadow: 0 0 10px rgba(107, 255, 191, 0.5);
}

.account-pill--muted::before {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.account-pill--accent::before {
  background: #ff7ab3;
  box-shadow: 0 0 10px rgba(255, 122, 179, 0.55);
}

.account-pill--muted {
  color: var(--muted);
}

.account-pill--accent {
  border-color: rgba(255, 94, 164, 0.6);
  color: #ffe0ef;
  background: rgba(255, 94, 164, 0.18);
}

.account-card--wide {
  grid-column: 1 / -1;
}

.account-upload input[type="file"] {
  width: 100%;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  padding: 10px 12px;
  min-height: 48px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.account-upload input[type="file"]::file-selector-button {
  border: 0;
  padding: 6px 12px;
  margin-right: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
  cursor: pointer;
}

.account-upload button {
  width: fit-content;
}

.account-upload label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

body[data-theme="transparent"] .account-card {
  background: rgba(10, 12, 18, 0.35);
  backdrop-filter: blur(12px);
}

.account-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.account-actions .btn,
.auth-actions .btn,
.auth-links .btn {
  min-width: 0;
}

.admin__notice {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(12, 8, 14, 0.6);
  margin-bottom: 18px;
  align-items: center;
  justify-content: space-between;
}

.admin__notice-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.stats-board {
  display: grid;
  gap: 20px;
}

.stats-live {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
}

.stats-live__status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.stats-live__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #57ffb1;
  box-shadow: 0 0 10px rgba(87, 255, 177, 0.6);
}

.stats-live__note {
  color: var(--muted);
  font-size: 0.85rem;
}

.stats-live__meta {
  display: grid;
  gap: 2px;
  font-size: 0.85rem;
  color: var(--muted);
}

.stats-live__meta strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.stats-live__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stats-live__label {
  color: var(--muted);
  font-size: 0.85rem;
}

.stats-live select {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font);
}

.stats-live select option {
  color: #0e0a12;
  background: #f7e9f1;
}

.stats-live.is-offline .stats-live__dot {
  background: #ff6b6b;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.stats-live.is-offline .stats-live__note {
  color: #ff9aa2;
}

.stats-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.stats-card {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.stats-card strong {
  font-size: 1.6rem;
  color: var(--ink);
}

.stats-card small {
  font-size: 0.75rem;
  color: var(--muted);
}

.stats-card--accent {
  background: linear-gradient(120deg, rgba(255, 94, 164, 0.28), rgba(124, 214, 255, 0.18));
  border-color: rgba(255, 255, 255, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.stats-grid--charts {
  grid-template-columns: 1fr;
}

.stats-panel {
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(12, 8, 14, 0.7);
  padding: 16px;
  display: grid;
  gap: 12px;
  overflow: hidden;
  min-width: 0;
}

body[data-theme="transparent"] .stats-panel {
  background: rgba(10, 12, 18, 0.35);
  backdrop-filter: blur(12px);
}

.stats-panel h3 {
  margin: 0;
  font-size: 1rem;
}

.stats-panel canvas {
  width: 100%;
  max-width: 100%;
  height: 220px;
  display: block;
}


.stats-list {
  display: grid;
  gap: 10px;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.85rem;
}

.stats-row strong {
  color: var(--ink);
}

.stats-empty {
  color: var(--muted);
  font-size: 0.85rem;
}

.admin-users-grid {
  display: grid;
  gap: 14px;
}

.admin-catalogue-tools--users {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 14px;
}

.admin-subtabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.admin-inline-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-inline-tools__label {
  color: var(--muted);
  font-size: 0.85rem;
}

.admin-inline-tools select {
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  padding: 0 14px;
  font-family: var(--font);
}

.admin-inline-tools select option {
  color: #0e0a12;
}

.admin-user-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.admin-user-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-user-card__identity {
  display: grid;
  gap: 4px;
}

.admin-user-card__identity strong {
  font-size: 1.05rem;
  color: var(--ink);
}

.admin-user-card__identity span {
  color: var(--muted);
  word-break: break-word;
}

.admin-user-card__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-user-card__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-user-field {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  min-width: 0;
}

.admin-user-field small {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.admin-user-field > div {
  word-break: break-word;
}

.admin-user-field--wide {
  grid-column: 1 / -1;
}

.admin-user-card__action {
  display: flex;
  justify-content: flex-end;
}

.admin-device-list {
  display: grid;
  gap: 10px;
}

.admin-device-card {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.admin-device-card strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.admin-device-card span,
.admin-device-card small {
  color: var(--muted);
  word-break: break-word;
}

.admin-device-card small {
  font-size: 0.76rem;
}

.admin-pill-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.avatar-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.avatar-preview {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  object-fit: cover;
  display: none;
}

.avatar-form {
  display: grid;
  gap: 8px;
}

.admin__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.admin__stats--grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.admin__stats--compact {
  margin-bottom: 12px;
}

.admin__stat {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.85rem;
}

.admin__stat small {
  color: var(--muted);
  font-size: 0.75rem;
}

.admin__stat--hero {
  background: linear-gradient(120deg, rgba(255, 94, 164, 0.25), rgba(124, 214, 255, 0.18));
  border-color: rgba(255, 255, 255, 0.2);
}

.admin__stat strong {
  font-size: 1.35rem;
  color: var(--ink);
}

.admin__chart-wrap {
  border-radius: 16px;
  border: 1px solid var(--stroke);
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.admin__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--stroke);
  font-size: 0.75rem;
  margin-left: 8px;
}

.admin__chart {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
}

body[data-theme="transparent"] .admin__section {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.admin__bg {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin__bg-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin__bg-option {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font);
  cursor: pointer;
}

.admin__bg-option.is-active {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #2b051a;
  border-color: transparent;
}

.admin__items {
  display: grid;
  gap: 10px;
}

.admin__pager {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.admin__pager-btn.is-active {
  border-color: var(--primary);
  color: var(--primary);
}

.admin__pager-ellipsis {
  color: var(--muted);
  padding: 0 6px;
}

.admin__item {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin__item--game {
  align-items: center;
  padding: 10px 14px;
  gap: 14px;
}

.admin__item-info {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.admin__item-title {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.2;
}

.admin__item-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.admin__item-link:hover {
  color: var(--ink);
}

.admin__item-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.admin__item-actions .btn {
  min-width: 98px;
  justify-content: center;
}

.admin-catalogue-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 10px;
  margin-bottom: 12px;
}

.admin-catalogue-tools input,
.admin-catalogue-tools select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-family: var(--font);
}

.admin-catalogue-tools select option {
  color: #1a1a1a;
  background: #ffffff;
}

.admin-user-agent {
  line-height: 1.35;
  word-break: break-word;
}

.admin-secret {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.74rem;
  line-height: 1.6;
}

.admin-secret.is-hidden {
  display: none;
}

.admin-secret-wrap {
  display: grid;
  gap: 10px;
}

.admin-link-inline {
  color: var(--ink);
  text-decoration: none;
  word-break: break-all;
}

.admin-link-inline:hover {
  color: var(--accent-2);
}

.account-referral {
  display: grid;
  gap: 8px;
  margin: 12px 0 14px;
}

.account-referral__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.account-referral__actions input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.admin-user-link {
  min-width: 0;
}

@media (max-width: 860px) {
  .admin-catalogue-tools--users {
    grid-template-columns: 1fr;
  }

  .admin-user-card__body {
    grid-template-columns: 1fr;
  }

  .admin-user-card__action {
    justify-content: stretch;
  }

  .admin-user-card__action .btn {
    width: 100%;
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
  z-index: 320;
}

.modal.is-open {
  display: flex;
}

body.vip-cinema-mode .modal.is-open {
  z-index: 340;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 4, 10, 0.7);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  width: min(900px, 92vw);
  background: rgba(14, 8, 18, 0.9);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 24px;
  max-height: calc(100dvh - 32px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

body[data-theme="transparent"] .modal__panel {
  background: rgba(10, 12, 18, 0.45);
  backdrop-filter: blur(16px);
}

.modal__close {
  position: sticky;
  top: 0;
  right: 0;
  margin-left: auto;
  display: block;
  width: fit-content;
  margin-bottom: 14px;
  z-index: 3;
  background: rgba(10, 12, 18, 0.72);
  color: var(--ink);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.modal__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 20px;
  align-items: center;
}

.modal__info h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.modal__meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.modal__desc {
  color: var(--muted);
  font-size: 0.98rem;
}

.modal__links {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.modal__links a,
.modal__links button {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--stroke);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.modal__comments {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.modal__comments h4 {
  font-size: 1.05rem;
  margin: 0;
}

.comment-list {
  display: grid;
  gap: 10px;
  max-height: 220px;
  overflow: auto;
  padding-right: 6px;
}

.comment-card {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
}

.comment-head {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.comment-user {
  display: flex;
  gap: 10px;
  align-items: center;
}

.comment-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--stroke);
}

.comment-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.comment-rating {
  font-size: 0.8rem;
  color: var(--accent);
}

.comment-form {
  display: grid;
  gap: 10px;
}

.comment-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.comment-form textarea,
.comment-form select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 8px 10px;
  color: var(--ink);
  font-family: var(--font);
}

.comment-form select option {
  color: #1a1a1a;
  background: #ffffff;
}

.comment-status {
  color: var(--muted);
  font-size: 0.85rem;
}

.comment-login {
  color: var(--muted);
  font-size: 0.85rem;
}

.modal__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stroke);
}

.modal__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.giveaway-modal {
  width: min(560px, 92vw);
  padding: 28px;
  overflow: auto;
}

.giveaway-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 95, 162, 0.24), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.giveaway-modal__content {
  position: relative;
  display: grid;
  gap: 18px;
}

.giveaway-modal__cover {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.giveaway-modal__eyebrow {
  margin: 6px 0 0;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bfd7ff;
  font-weight: 700;
}

.giveaway-modal h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
  color: #f7f4ff;
  text-shadow: 0 10px 30px rgba(10, 8, 18, 0.35);
}

.giveaway-modal__text {
  margin: 0;
  color: rgba(240, 236, 248, 0.86);
  font-size: 1rem;
  line-height: 1.62;
  max-width: 48ch;
}

.giveaway-modal__steps {
  display: grid;
  gap: 12px;
}

.giveaway-modal__steps span {
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  color: #f3effb;
  font-size: 0.95rem;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

.giveaway-modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.giveaway-modal__status {
  color: rgba(234, 227, 245, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
  min-height: 1.2em;
}

.admin-edit-panel {
  width: min(720px, 94vw);
}

.admin-edit-wrap {
  display: grid;
  gap: 14px;
}

.admin-edit-wrap h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin: 0;
}

.admin-edit-form {
  display: grid;
  gap: 10px;
}

.admin-edit-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.admin-edit-form input,
.admin-edit-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-family: var(--font);
}

.admin-edit-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-edit-status {
  color: var(--muted);
  font-size: 0.85rem;
}

.ad-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.ad-gate.is-hidden {
  display: none;
}

.ad-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 4, 10, 0.75);
  backdrop-filter: blur(6px);
}

.ad-gate__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 94vw);
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: rgba(12, 8, 14, 0.92);
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  gap: 14px;
}

.ad-gate__hint {
  color: var(--muted);
  font-size: 0.95rem;
}

.ad-gate__ad {
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  padding: 22px;
  min-height: 140px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.ad-gate__tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ad-gate__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ad-gate__count {
  font-family: var(--mono);
  color: var(--muted);
}

@media (max-width: 800px) {
  .modal__content {
    grid-template-columns: 1fr;
  }
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.01);
  }
}

@keyframes btnSweep {
  from {
    left: -140%;
  }
  to {
    left: 170%;
  }
}

@keyframes titleShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes goldShine {
  0%,
  100% {
    border-color: rgba(242, 196, 94, 0.9);
    box-shadow:
      0 0 0 1px rgba(255, 230, 155, 0.3) inset,
      0 0 14px rgba(242, 196, 94, 0.25);
  }
  50% {
    border-color: rgba(255, 223, 136, 1);
    box-shadow:
      0 0 0 1px rgba(255, 242, 194, 0.55) inset,
      0 0 24px rgba(255, 211, 102, 0.5);
  }
}


@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }

  .hero__auxcards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    max-width: 100%;
  }

  .admin-overview-grid,
  .admin-overview-grid--mini,
  .admin-layout {
    grid-template-columns: 1fr 1fr;
  }

  .hero__art {
    min-height: 240px;
  }

  .hero__trustpilot {
    justify-content: center;
    padding-right: 0;
    align-items: center;
  }

  .hero__aside {
    justify-items: center;
  }

  .card {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: -40px;
  }

  .donate-bubble {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    margin-top: 20px;
    max-width: 100%;
  }

  .site-info-bubble {
    top: 0;
    right: 0;
  }
}

@media (max-width: 700px) {
  body {
    padding-top: 84px;
  }

  #userBar.user-float {
    position: fixed;
    top: 10px;
    right: 10px;
    left: 10px;
    margin: 0;
    width: calc(100% - 20px);
    max-width: none;
    padding: 8px;
    gap: 8px;
    border-radius: 22px;
    justify-content: stretch;
    background: rgba(12, 8, 14, 0.85);
  }

  .user-bar-toggle {
    display: inline-flex;
    width: 100%;
  }

  #userBar.user-float .user-bar-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 6px;
  }

  #userBar.user-float.is-open .user-bar-menu {
    display: flex;
  }

  #userBar.user-float .lang-switch,
  #userBar.user-float .user-avatar-link,
  #userBar.user-float .auth-badge,
  #userBar.user-float .btn {
    width: 100%;
  }

  #userBar.user-float .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    border-radius: 14px;
    justify-content: center;
  }

  #userBar.user-float .btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
  }

  #userBar.user-float .auth-badge {
    text-align: center;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .lang-switch {
    width: 100%;
  }

  .lang-switch select {
    width: 100%;
  }

  .brand-wrap {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .live-counter {
    font-size: 0.8rem;
    padding: 6px 10px;
    align-self: flex-start;
  }

  .brand img {
    width: 280px;
    height: auto;
    max-width: 90vw;
  }

  .brand {
    margin: 0 auto;
  }

  .hero {
    padding: 84px 16px 28px;
    gap: 18px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .disclaimer,
  .lead {
    max-width: 100%;
  }

  .hero__actions {
    flex-direction: row;
    gap: 12px;
  }

  .hero__actions .btn {
    flex: 1 1 46%;
    justify-content: center;
    min-height: 44px;
  }

  .hero__trustpilot-inline {
    width: min(320px, 100%);
    padding: 9px 10px;
  }

  .hero__trustpilot-inline .trustpilot-widget iframe {
    width: 100% !important;
  }

  .hero__art {
    display: grid;
    min-height: 0;
  }

  .hero__auxcards {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero__trustpilot {
    justify-content: center;
    width: 100%;
    align-items: center;
  }

  .hero__aside {
    width: 100%;
    justify-items: center;
  }

  .kofi-glass {
    width: min(320px, 100%);
    height: 586px;
  }

  .kofi-glass iframe {
    width: 380px;
    height: 712px;
    transform: scale(0.8);
  }

  .discord-glass {
    width: min(320px, 100%);
    padding: 14px 16px;
    gap: 8px;
  }

  .discord-glass__title {
    font-size: 1.08rem;
    max-width: none;
  }

  .discord-glass__text {
    font-size: 0.8rem;
  }

  .discord-glass__cta {
    min-width: 0;
    width: 100%;
  }

  .hero-sidecard {
    width: min(320px, 100%);
    padding: 14px 16px;
    gap: 10px;
  }

  .hero-sidecard__title {
    font-size: 1.06rem;
  }

  .site-info-bubble {
    position: relative;
    top: 0;
    right: auto;
    transform: none;
    width: min(320px, 92vw);
    margin: 0 auto;
    padding: 12px;
    gap: 8px;
  }

  .site-info-title {
    font-size: 1.05rem;
  }

  .site-info-text,
  .site-info-list {
    font-size: 0.84rem;
  }

  .section {
    padding: 36px 16px;
  }

  .section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .section__controls {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
  }

  .home-tabs {
    width: 100%;
  }

  .home-tab {
    flex: 1 1 31%;
    min-width: 120px;
    text-align: center;
  }

  .tag-filter,
  .theme,
  .search {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .theme {
    flex-direction: column;
    align-items: stretch;
  }

  .catalogue-rail {
    padding: 12px 14px;
  }

  .theme select {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .search {
    width: 100%;
    padding: 6px 10px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .search .count {
    font-size: 0.75rem;
    padding: 3px 8px;
  }

  .tag-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .tag-btn {
    white-space: nowrap;
  }

  .search input {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    font-size: 0.9rem;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

  .game {
    min-height: 190px;
  }

  .donate-bubble--footer {
    width: min(340px, 92vw);
  }

  .donate-qr {
    width: 200px;
    height: 200px;
  }

  .modal__panel {
    width: 94vw;
    padding: 18px;
    max-height: calc(100dvh - 24px);
    border-radius: 22px;
  }

  .giveaway-modal {
    padding: 22px 18px;
  }

  .modal__close {
    top: 0;
    margin-bottom: 12px;
    padding: 10px 14px;
  }

  .giveaway-modal__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .modal__content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .chat-form .btn {
    width: 100%;
    justify-content: center;
  }

  .chat-list {
    max-height: min(46vh, 420px);
  }

  .ai-assistant {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-items: stretch;
  }

  .vip-lab__grid,
  .vip-hub__grid {
    grid-template-columns: 1fr;
  }

  .vip-hub {
    right: 14px;
    bottom: 86px;
    left: 14px;
    justify-items: end;
  }

  .vip-hub__panel {
    width: 100%;
  }

  .vip-cinema-shell__topbar {
    padding: 18px 16px 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .vip-cinema-shell__scroller {
    padding: 8px 16px 32px;
  }

  .vip-cinema-row-shell {
    grid-template-columns: 1fr;
  }

  .vip-cinema-row-shell__nav {
    display: none;
  }

  .vip-cinema-hero__card {
    min-height: 420px;
  }

  .vip-cinema-hero__body {
    padding: 28px 22px;
  }

  .vip-cinema-hero__body h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .vip-cinema-row {
    grid-auto-columns: minmax(210px, 78vw);
  }

  .vip-cinema-category-grid {
    grid-template-columns: 1fr;
  }

  .vip-cinema-category-results {
    grid-template-columns: 1fr;
  }

  .vip-cinema-detail__panel {
    width: min(100vw - 24px, 1120px);
    max-height: calc(100vh - 24px);
    padding: 16px;
  }

  .vip-cinema-detail__hero-body {
    padding: 20px;
  }

  .vip-cinema-detail__grid {
    grid-template-columns: 1fr;
  }

  .ai-assistant__toggle {
    justify-self: end;
  }

  .ai-assistant__panel {
    width: 100%;
    max-height: min(64vh, 540px);
  }

  .ai-assistant__form {
    grid-template-columns: 1fr;
  }

  .stats-hero,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .admin-overview-grid,
  .admin-overview-grid--mini,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin__item--game {
    align-items: flex-start;
  }

  .admin__item-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .admin-catalogue-tools {
    grid-template-columns: 1fr;
  }

  .vip-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .vip-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .auth-card,
  .account-wrap {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .auth-actions,
  .auth-links,
  .account-actions,
  .account-referral__actions,
  .avatar-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .auth-actions .btn,
  .auth-links .btn,
  .account-actions .btn,
  .account-upload button,
  .account-referral__actions .btn {
    width: 100%;
  }

  .account-card {
    padding: 16px;
  }

  .account-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .avatar-row {
    gap: 12px;
  }

  .avatar-preview {
    width: 88px;
    height: 88px;
  }

  .account-upload label {
    align-items: flex-start;
  }

  .account-referral__actions {
    display: grid;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 84px 14px 28px;
  }

  .brand img {
    width: 240px;
  }

  .user-bar-toggle,
  #userBar.user-float .btn,
  .auth-badge {
    font-size: 0.88rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .home-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .bg-video.is-visible {
    opacity: 0.5;
  }

  .mobile-ad-rail {
    display: grid;
  }

  .account-grid {
    grid-template-columns: 1fr;
  }

  .account-wrap {
    padding: 18px;
  }
}






