:root {
  --bg: #04070f;
  --panel: #0c1320;
  --muted: #94a3b8;
  --text: #eef8ff;
  --line: rgba(94, 163, 255, 0.14);
  --brand: #d17cfa;
  --brand2: #7d82ff;
  --danger: #ff6e95;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: radial-gradient(
    circle at top left,
    #15233c 0,
    #080b12 36%,
    #05070b 100%
  );
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    Segoe UI,
    Arial,
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  backdrop-filter: blur(18px);
  background: rgba(8, 11, 18, 0.72);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
}
.brand span {
  color: var(--brand);
}
nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
nav a,
.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
nav a,
.locale a,
.site-footer a {
  color: #dbeafe;
  text-decoration: none;
}
.pill {
  border: 1px solid var(--line);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}
.locale {
  display: flex;
  gap: 0.45rem;
  font-size: 0.85rem;
  align-items: center;
}
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.toast-stack {
  position: fixed;
  top: 5.4rem;
  right: clamp(1rem, 4vw, 3rem);
  z-index: 40;
  display: grid;
  gap: 0.75rem;
  width: min(420px, calc(100vw - 2rem));
}
.toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(9, 14, 24, 0.96);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
  color: var(--text);
  transform: translateY(0);
  opacity: 1;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.toast.error {
  border-left-color: var(--danger);
}
.toast.success {
  border-left-color: #5cf2d8;
}
.toast-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
}
.toast-close {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}
.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 3rem;
  align-items: center;
  padding: 4rem clamp(1rem, 5vw, 6rem) 6rem;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  margin: 0.2rem 0 1rem;
  letter-spacing: -0.07em;
}
.hero p {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 720px;
}
.hero-copy {
  max-width: 760px;
}
.eyebrow {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.78rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hero-badges {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: rgba(92, 242, 216, 0.08);
  color: #dffcf7;
  font-weight: 900;
  font-size: 0.9rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.15rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #06111c;
}
.hero-downloads {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.9rem;
}
.release-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  color: #dbeafe;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}
.release-status strong {
  color: #fff;
}
.release-assets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}
.release-asset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 104px;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.release-asset:hover {
  transform: translateY(-3px);
  border-color: rgba(209, 124, 250, 0.58);
  background:
    linear-gradient(180deg, rgba(209, 124, 250, 0.22), rgba(125, 130, 255, 0.1));
}
.release-asset i {
  font-size: 1.7rem;
}
.release-asset small {
  max-width: 100%;
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--line);
}
.danger-btn {
  border-color: rgba(255, 110, 149, 0.48);
  color: #ffd0dc;
}
.danger-btn:hover {
  background: rgba(255, 110, 149, 0.16);
}
.hero-image {
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top right,
      rgba(92, 242, 216, 0.18),
      transparent 45%
    ),
    linear-gradient(180deg, rgba(12, 19, 32, 0.96), rgba(4, 7, 15, 0.96));
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.15);
}
.window-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid var(--line);
}
.window-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #94a3b8;
}
.window-top b {
  margin-left: 1rem;
}
.app-ui {
  display: grid;
  grid-template-columns: 1fr 190px;
  grid-template-rows: 1fr 140px;
  height: calc(100% - 53px);
  gap: 1rem;
  padding: 1rem;
}
.video-pane {
  background: linear-gradient(135deg, #172554, #111827);
  border-radius: 18px;
}
.timeline {
  grid-column: 1/3;
  background: #0f172a;
  border-radius: 18px;
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: end;
}
.timeline i {
  display: block;
  height: 70%;
  flex: 1;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--brand2), transparent);
}
.timeline i:nth-child(even) {
  height: 42%;
}
.side-list {
  display: grid;
  gap: 0.75rem;
}
.side-list p {
  margin: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
}
section {
  padding: 5rem clamp(1rem, 5vw, 6rem);
}
.content-section h2,
.split-section h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  margin: 0 0 1.25rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.card,
.glass-panel,
.form-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.card h3 {
  margin-top: 0;
}
.card p,
.wide-text,
.glass-panel p,
.contact p {
  color: #cbd5e1;
}
.split-section,
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.steps {
  padding-left: 1.25rem;
}
.steps li {
  margin: 0.7rem 0;
}
.steps i {
  width: 1.5rem;
  color: var(--brand);
}
.cross-os {
  text-align: center;
}
.cross-os .wide-text {
  max-width: 900px;
  margin: 0 auto 2rem;
}
.os-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.os-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 3rem;
}
.sponsors {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 11, 18, 0.8), rgba(8, 11, 18, 0.92)),
    var(--sponsors-bg) center / cover fixed;
}
.sponsors > * {
  position: relative;
  z-index: 1;
}
.sponsors::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 15, 0.46);
  pointer-events: none;
}
.sponsor-marquees {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: marquee 34s linear infinite;
}
.marquee.reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 42s;
}
.sponsor-chip,
.review-bubble {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}
.sponsor-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 260px;
  max-width: 360px;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
}
.sponsor-chip img,
.review-head img,
.user-cell img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.12);
}
.sponsor-chip small,
.review-bubble small {
  display: block;
  color: #cbd5e1;
}
.review-cloud {
  margin: 2rem 0;
}
.review-cloud.static-cloud .marquee-track {
  width: auto;
  animation: none;
}
.review-cloud.static-cloud {
  display: flex;
  justify-content: center;
  overflow: visible;
  mask-image: none;
}
.review-cloud .marquee-track {
  align-items: stretch;
  animation-duration: 48s;
}
.review-bubble {
  width: min(360px, 82vw);
  border-radius: 22px;
  padding: 1rem;
}
.review-head,
.user-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-head span,
.user-cell span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(209, 124, 250, 0.22);
  color: #fff;
  font-weight: 900;
}
.review-bubble h3 {
  margin: 0.9rem 0 0.35rem;
}
.review-bubble p {
  color: #cbd5e1;
  margin: 0;
}
.review-bubble:nth-child(3n) {
  transform: translateY(18px);
}
.review-bubble:nth-child(4n) {
  transform: translateY(-10px);
}
.reviews .stars {
  color: #fde68a;
}
.sponsors,
.reviews-section {
  text-align: center;
}
.form-card {
  display: grid;
  gap: 1rem;
}
.form-card label {
  display: grid;
  gap: 0.4rem;
  color: #dbeafe;
  font-weight: 700;
}
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  border: 1px solid var(--line);
  background: #0b1220;
  color: #fff;
  border-radius: 14px;
  padding: 0.85rem;
}
.form-card textarea {
  min-height: 140px;
}
.narrow {
  max-width: 820px;
  margin: auto;
}
.oauth-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.oauth-row .btn {
  min-height: 2.75rem;
}
.review-page {
  max-width: 1080px;
}
.review-shell {
  margin-top: 1.5rem;
}
.review-form-wrap {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.review-panel,
.review-profile-strip {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}
.review-panel {
  padding: 1.3rem;
}
.review-profile-strip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
  max-width: 100%;
  padding: 0.65rem 0.8rem;
}
.review-profile-avatar img,
.review-profile-avatar span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}
.review-profile-avatar img {
  object-fit: cover;
}
.review-profile-avatar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #06111c;
  font-size: 1.1rem;
  font-weight: 900;
}
.review-profile-strip .eyebrow {
  margin: 0;
  font-size: 0.65rem;
}
.review-form-card {
  border-radius: 16px;
}
.review-auth-note p {
  margin: 0;
}
.review-auth-note p + p {
  margin-top: 0.4rem;
}
.review-provider-actions {
  display: grid;
  gap: 0.65rem;
  padding-top: 0.25rem;
}
.review-provider-actions > p {
  margin: 0;
  font-weight: 800;
}
.review-support-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.review-support-note a {
  color: #dbeafe;
  font-weight: 800;
}
.muted {
  color: var(--muted);
}
.ad-wrap {
  padding: 1rem clamp(1rem, 5vw, 6rem);
  min-height: 110px;
}
.admin-list {
  display: grid;
  gap: 1rem;
}
.admin-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
  margin-bottom: 1rem;
}
.admin-panel h2 {
  margin: 0 0 0.9rem;
  font-size: 1.45rem;
  line-height: 1.2;
}
.compact-form,
.form-grid {
  display: grid;
  gap: 0.75rem;
}
.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form-grid .wide {
  grid-column: 1 / -1;
}
.toggle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.check {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.admin-panel label {
  display: grid;
  gap: 0.3rem;
  color: #dbeafe;
  font-weight: 700;
}
.admin-panel input,
.admin-panel select,
.admin-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #0b1220;
  color: #fff;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
}
.admin-panel input[type="checkbox"] {
  width: auto;
}
.table-wrap {
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}
.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0.65rem;
  text-align: left;
  vertical-align: middle;
}
.admin-table th {
  color: #dbeafe;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.admin-table p {
  margin: 0.25rem 0 0;
  color: #cbd5e1;
  max-width: 520px;
}
.admin-table .actions {
  min-width: 360px;
  white-space: normal;
}
.admin-table .actions form {
  display: inline-flex;
  margin: 0 0.4rem 0.4rem 0;
  vertical-align: middle;
}
.admin-table .btn {
  min-height: 2.35rem;
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
  white-space: nowrap;
}
.status {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  color: #dbeafe;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.status.published {
  background: rgba(92, 242, 216, 0.16);
  color: #9fffea;
}
.status.pending {
  background: rgba(253, 230, 138, 0.14);
  color: #fde68a;
}
.status.rejected {
  background: rgba(255, 110, 149, 0.16);
  color: #ffadc4;
}
.empty {
  color: var(--muted);
  text-align: center;
}
.settings {
  max-width: 900px;
}
.row-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem clamp(1rem, 5vw, 6rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: #94a3b8;
}
.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.legal-hero,
.not-found {
  min-height: 48vh;
  display: grid;
  align-items: center;
  padding: 5rem clamp(1rem, 5vw, 6rem) 3rem;
}
.legal-hero {
  max-width: 1120px;
}
.legal-hero h1,
.not-found h1 {
  max-width: 980px;
  margin: 0.2rem 0 1rem;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.98;
}
.legal-hero p,
.not-found p {
  max-width: 820px;
  color: #cbd5e1;
  font-size: 1.08rem;
}
.legal-page {
  padding-top: 1rem;
}
.legal-grid,
.legal-page {
  display: grid;
  gap: 1rem;
}
.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.legal-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
}
.legal-panel h2 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
}
.legal-panel p {
  color: #cbd5e1;
}
.legal-panel a:not(.btn),
.cookie-consent a {
  color: #dbeafe;
  font-weight: 800;
}
.not-found {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 2rem;
}
.not-found-panel {
  min-height: 300px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(92, 242, 216, 0.16), transparent 44%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}
.not-found-panel i {
  font-size: 3rem;
  color: var(--brand);
}
.not-found-panel strong {
  display: block;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
}
.not-found-panel span {
  color: var(--muted);
  font-weight: 800;
}
.cookie-consent {
  position: fixed;
  left: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  bottom: 1rem;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem 3.2rem 1rem 1rem;
  background: rgba(9, 14, 24, 0.97);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}
.cookie-consent__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}
.cookie-consent strong,
.cookie-consent p {
  margin: 0;
}
.cookie-consent p {
  color: #cbd5e1;
}
.cookie-consent__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cookie-consent__actions .btn {
  min-width: 6.5rem;
  min-height: 2.8rem;
  color: #fff;
}
.cookie-consent__actions .primary {
  color: #06111c;
}
.floating-actions {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: 1.2rem;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.jump-top,
.youtube-subscribe-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 14, 24, 0.94);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  cursor: pointer;
}
.youtube-subscribe-tab {
  color: #ff4d4d;
}
.jump-top {
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  position: fixed;
}
.jump-top.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
.youtube-subscribe-toast {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: 5rem;
  z-index: 44;
  width: min(520px, calc(100vw - 2rem));
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.youtube-subscribe-toast.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
}
.youtube-subscribe-toast__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-left: 4px solid #ff4d4d;
  border-radius: 20px;
  padding: 0.85rem;
  background: rgba(9, 14, 24, 0.96);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}
.youtube-subscribe-toast__avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.youtube-subscribe-toast p {
  margin: 0;
}
.youtube-subscribe-toast__eyebrow {
  color: #ff9a9a;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.youtube-subscribe-toast__title {
  font-weight: 900;
}
.youtube-subscribe-toast__meta {
  color: #cbd5e1;
  font-size: 0.88rem;
}
.youtube-subscribe-toast__cta {
  border-radius: 999px;
  background: #ff1f1f;
  color: #fff;
  padding: 0.6rem 0.85rem;
  text-decoration: none;
  font-weight: 900;
}
.youtube-subscribe-toast__hide {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
}
.distort-active {
  transform: translateY(-8px) skewY(-1.2deg) scale(1.015);
  transition: transform 0.45s ease;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
.cut-window {
  clip-path: inset(0 0 0 0 round 28px);
}
@media (max-width: 920px) {
  .hero,
  .split-section,
  .contact {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 100vh;
    align-items: end;
    padding-bottom: 0;
    overflow: hidden;
  }
  .hero-copy {
    position: relative;
    z-index: 2;
    padding-bottom: 2rem;
  }
  .release-assets {
    grid-template-columns: 1fr;
  }
  .release-asset {
    min-height: 78px;
  }
  .hero-window,
  .hero-image {
    margin-right: 0;
    min-height: 300px;
    height: 34vh;
    width: calc(100% + 2rem);
    margin-left: -1rem;
    border-radius: 24px 24px 0 0;
    opacity: 0.72;
    mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .site-header nav {
    position: fixed;
    inset: 4.6rem 1rem auto 1rem;
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(9, 14, 24, 0.98);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }
  .mobile-nav-open .site-header nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-header nav .locale {
    margin-top: 0.45rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
    justify-content: flex-start;
    gap: 0.75rem;
  }
  .site-header nav .locale a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
  }
  .os-row span {
    width: 5rem;
    height: 5rem;
    font-size: 2.45rem;
  }
  .sponsors {
    background-attachment: scroll;
  }
  .admin-heading,
  .admin-grid,
  .legal-grid,
  .not-found,
  .cookie-consent {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .cookie-consent {
    padding: 1rem;
    padding-top: 3.25rem;
  }
  .cookie-consent__actions,
  .cookie-consent__actions .btn,
  .cookie-consent__actions a {
    width: 100%;
  }
  .cookie-consent__actions {
    justify-content: stretch;
  }
  .review-shell {
    margin-top: 1rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .youtube-subscribe-toast {
    right: 1rem;
    bottom: 5rem;
  }
  .youtube-subscribe-toast__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .youtube-subscribe-toast__cta {
    grid-column: 2 / 3;
    width: max-content;
  }
  .youtube-subscribe-toast__hide {
    grid-column: 3;
    grid-row: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .distort-active {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee-track {
    animation: none;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
