:root {
  --bg: #161b21;
  --bg-2: #1b2128;
  --panel: rgba(28, 35, 44, 0.92);
  --panel-solid: #1c232c;
  --cyan: #4f8ef7;
  --cyan-dim: rgba(79, 142, 247, 0.12);
  --violet: #6b7c90;
  --lime: #3dba7a;
  --text: #e8edf3;
  --muted: #9aa6b4;
  --line: rgba(255, 255, 255, 0.08);
  --danger: #e15b6e;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --header-h: 72px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-y: auto;
}

html,
body {
  margin: 0;
  min-height: 100%;
  height: auto;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0.01em;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

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

[hidden] {
  display: none !important;
}

.is-item-page #listView {
  display: none !important;
}

img {
  max-width: 100%;
}

button,
input {
  font-family: inherit;
}

.bg-root {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 8% -8%, rgba(79, 142, 247, 0.09), transparent 55%),
    radial-gradient(700px 460px at 92% 8%, rgba(61, 186, 122, 0.05), transparent 50%),
    var(--bg);
}

.grid-floor {
  display: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.28;
}

.orb-a {
  width: 280px;
  height: 280px;
  background: #3a5a80;
  top: 12%;
  left: -60px;
}

.orb-b {
  width: 340px;
  height: 340px;
  background: #2f3d4d;
  right: -80px;
  top: 28%;
}

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

#net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.22;
}

.scanlines {
  display: none;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(22, 27, 33, 0.92), rgba(22, 27, 33, 0.4) 80%, transparent);
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  border-bottom-color: var(--line);
  background: rgba(22, 27, 33, 0.92);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  filter: none;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name strong {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.brand-name span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

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

.nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: #fff;
  background: #3d7be8;
}

.nav a.nav-cta {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 9px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.nav a.nav-cta:hover,
.nav a.nav-cta.is-active {
  color: #fff;
  background: #3d7be8;
  border-color: #3d7be8;
  box-shadow: 0 8px 20px rgba(61, 123, 232, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-cyan {
  color: #fff;
  background: #3d7be8;
  box-shadow: 0 8px 20px rgba(61, 123, 232, 0.22);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.home-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  display: grid;
  place-items: center;
  padding: 24px 0 40px;
}

.home-page .hero {
  flex: 1;
  min-height: 0;
  padding: 16px 0 20px;
}

.home-apps {
  padding: 12px 0 56px;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.home-apps .page-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  margin: 10px 0 8px;
  letter-spacing: -0.02em;
}

.home-apps .page-head p {
  max-width: 640px;
}

.home-apps .brand-grid {
  margin-top: 8px;
}

.hero-card {
  width: min(880px, 100%);
  text-align: center;
  padding: 40px 24px 22px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #1c232c;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.hero-card::before,
.hero-card::after,
.core {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(79, 142, 247, 0.08);
  color: var(--cyan);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.ssl-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(61, 186, 122, 0.35);
  background: rgba(61, 186, 122, 0.12);
  color: #3dba7a;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ssl-badge svg {
  flex: 0 0 auto;
}

h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1.12;
  margin: 10px 0 16px;
  letter-spacing: -0.02em;
  text-transform: none;
}

h1 em {
  font-style: normal;
  color: #8eb6f7;
}

.lead {
  margin: 0 auto 28px;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-video-ad {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
}

.home-video-frame {
  padding: 8px;
  border-radius: 20px;
  background: #0b0f14;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.home-video-ad .ad-slot,
.home-video-ad .ad-slot--video-box,
.home-video-ad .ad-slot:not([hidden]),
.home-video-el {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  min-height: 420px;
  max-height: none;
  margin: 0;
  border-radius: 14px;
  background: #000;
  overflow: hidden;
  display: block;
  border: 0;
}

.home-video-ad .ad-slot iframe,
.home-video-ad .ad-slot video,
.home-video-el {
  width: 100% !important;
  height: 100% !important;
  min-height: 420px;
  object-fit: contain;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px auto 0;
  width: min(640px, 100%);
  justify-content: center;
}

.stat {
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 16, 28, 0.55);
  backdrop-filter: blur(10px);
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--cyan);
}

.stat.stat-online b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stat.stat-online b::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dba7a;
  box-shadow: 0 0 0 0 rgba(61, 186, 122, 0.7);
  animation: online-pulse 1.8s ease-out infinite;
}

@keyframes online-pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 186, 122, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(61, 186, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 186, 122, 0); }
}

.stat span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  padding: 16px 0;
  position: relative;
  z-index: 4;
}

.ticker-wrap--bottom {
  margin-top: 0;
  border-top: 1px solid var(--line);
}

.ticker {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: ticker 28s linear infinite;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.78rem;
}

.ticker span {
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.page {
  position: relative;
  z-index: 1;
  padding: 28px 0 72px;
}

.page-head {
  margin-bottom: 28px;
}

.page-head h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 10px 0 8px;
}

.page-head p {
  color: var(--muted);
  max-width: 640px;
  margin: 0;
  line-height: 1.6;
}

.toolbar {
  display: block;
  margin-bottom: 22px;
  max-width: 720px;
}

.search {
  position: relative;
}

.search input {
  width: 100%;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #1c232c;
  color: var(--text);
  padding: 0 16px 0 46px;
  outline: none;
  font-size: 1rem;
}

.search input:focus {
  border-color: rgba(79, 142, 247, 0.55);
  box-shadow: 0 0 0 4px rgba(79, 142, 247, 0.1);
}

.search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  flex: 0 0 auto;
  white-space: nowrap;
}

.chip.is-on,
.chip:hover {
  color: var(--text);
  border-color: rgba(79, 142, 247, 0.4);
  background: var(--cyan-dim);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}

.brand-card {
  appearance: none;
  text-align: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid var(--line);
  background: #1c232c;
  border-radius: 16px;
  padding: 18px 16px 16px;
  color: var(--text);
  min-height: 148px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.22s ease;
  position: relative;
  overflow: hidden;
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 20%;
  height: 90px;
  background: radial-gradient(circle, var(--accent, var(--cyan)) 0%, transparent 70%);
  opacity: 0.18;
}

.brand-card:hover,
.brand-card:focus-visible {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent, var(--cyan)) 40%, transparent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.hex {
  width: 46px;
  height: 52px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: color-mix(in srgb, var(--accent, var(--cyan)) 22%, #1c232c);
  color: var(--accent, var(--cyan));
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-card.has-logo {
  padding: 8px;
  gap: 0;
  min-height: 0;
}

.brand-card.has-logo .hex-logo {
  align-self: stretch;
  border-radius: 12px;
}

.brand-card.has-logo h2,
.brand-card.has-logo small {
  display: none;
}

.brand-card h2 {
  margin: 0;
  font-size: 1.05rem;
  font-family: var(--display);
  letter-spacing: 0.06em;
  text-align: center;
  width: 100%;
}

.brand-card small {
  color: var(--muted);
  text-align: center;
  width: 100%;
}

.hex-logo {
  clip-path: none;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  padding: 0;
  flex: 0 0 auto;
  position: relative;
}

.hex-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: none;
}

.brand-card.app-tile,
.brand-card.app-tile.has-logo {
  background: #fff;
  color: #1c2430;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  padding: 22px 16px 18px;
  gap: 8px;
  min-height: 252px;
  border-radius: 22px;
}

.brand-card.app-tile.has-logo h2,
.brand-card.app-tile.has-logo small {
  display: block;
}

.brand-card.app-tile h2 {
  color: #1c2430;
  letter-spacing: 0;
  font-size: 1.02rem;
}

.brand-card.app-tile small {
  color: #6b7380;
  font-size: 0.78rem;
  line-height: 1.35;
}

.brand-card.app-tile .hex,
.brand-card.app-tile .hex-logo {
  clip-path: none;
  width: 88px;
  height: 88px;
  aspect-ratio: 1 / 1;
  align-self: center;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.brand-card.app-tile .hex-logo img {
  object-fit: contain;
}

.brand-card.app-tile .app-indir {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #4f8ef7;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}

.brand-card.app-tile:hover,
.brand-card.app-tile:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(79, 142, 247, 0.4);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.brand-card.app-tile::after {
  display: none;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(2, 6, 12, 0.62);
  backdrop-filter: blur(8px);
  display: none;
}

.overlay.is-open {
  display: block;
}

.drawer {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  height: 100%;
  width: min(560px, 100%);
  background: linear-gradient(180deg, #1c232c, #161b21);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(110%);
  transition: transform 0.32s ease;
  display: flex;
  flex-direction: column;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-head {
  padding: 22px 22px 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.drawer-head h2 {
  margin: 0 0 4px;
  font-family: var(--display);
  letter-spacing: 0.08em;
}

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

.grow {
  flex: 1;
}

.close-x {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.program-list {
  overflow: auto;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.program {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.program h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.tag {
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--cyan);
}

.btn-sm {
  padding: 10px 14px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.btn-wait {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  cursor: default;
}

.empty {
  padding: 40px 16px;
  text-align: center;
  color: var(--muted);
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 18px 0 24px;
  color: var(--muted);
  font-size: 0.85rem;
}

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

.footer-inner a {
  color: #9eb6d4;
  text-decoration: none;
}

.footer-inner a:hover {
  color: #fff;
}

.ssl {
  color: var(--lime);
}

.ad-stage {
  width: min(720px, calc(100% - 32px));
  margin: 8px auto 28px;
  position: relative;
  z-index: 2;
}

.ad-stage--page {
  width: min(1120px, 100%);
  max-width: 100%;
  margin: 12px auto 24px;
}

.ad-stage-frame {
  position: relative;
  padding: 8px;
  height: fit-content;
  border-radius: 20px;
  background: #1c232c;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.ad-stage .ad-slot,
.ad-stage .ad-slot--video-box,
.ad-stage .ad-slot--page-box,
.ad-stage .ad-slot:not([hidden]) {
  width: 100%;
  height: fit-content;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  margin: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.ad-stage .ad-slot iframe,
.ad-stage .ad-slot video,
.ad-stage .ad-slot img {
  display: block;
  max-width: 100%;
  border: 0;
}

.dl-panel .ad-stage {
  width: 100%;
  max-width: 100%;
  margin: 16px 0;
}

.dl-panel .ad-stage-frame {
  background: #fff;
  border-color: #e4e9ef;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.dl-panel .ad-stage .ad-slot,
.dl-panel .ad-stage .ad-slot--video-box,
.dl-panel .ad-stage .ad-slot--page-box,
.dl-panel .ad-stage .ad-slot:not([hidden]) {
  background: #fff;
}

.ad-slot {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  margin: 22px auto;
  min-height: 0;
  overflow: hidden;
  border-radius: 16px;
}

.ad-slot--one {
  width: min(560px, 100%);
  max-height: 220px;
  margin: 22px auto;
}

.ad-slot--player {
  width: min(560px, calc(100% - 24px));
  max-height: 240px;
  min-height: 0;
  margin: 16px auto 20px;
  background: transparent;
  overflow: hidden;
  border-radius: 12px;
}

.ad-slot--video-box {
  width: min(720px, calc(100% - 24px));
  height: 220px;
  min-height: 220px;
  max-height: 220px;
  aspect-ratio: auto;
  margin: 16px auto 12px;
  background: #1c232c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border-radius: 16px;
}

.ad-slot--video-box iframe,
.ad-slot--video-box video {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.ad-slot--player iframe,
.ad-slot--player video {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  min-height: 240px;
  border: 0;
}

.page .ad-slot--one,
.page .ad-slot--video-box {
  margin-left: 0;
  margin-right: 0;
}

.ad-slot:not([hidden]) {
  background: transparent;
  border: 0;
}

.ad-slot[hidden],
.ad-slot--fs {
  display: none !important;
}

.ad-slot--fs {
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
}

.dl-panel .ad-slot--video-box {
  width: min(560px, 100%);
  margin-left: 0;
}

.ad-slot--inpanel {
  width: min(560px, 100%);
  max-height: 240px;
  margin: 16px 0;
}

.ad-slot iframe,
.ad-slot img {
  max-width: 100%;
  height: auto;
}

.dl-panel {
  margin: 8px 0 28px;
  padding: 22px 22px 8px;
  background: #f4f6f8;
  color: #1a1f26;
  border-radius: 24px;
}

.dl-panel .btn-ghost {
  color: #1a1f26;
  border-color: #d8dee6;
  background: #fff;
}

.dl-panel h2 {
  margin: 12px 0 4px;
  font-size: 1.4rem;
  color: #1a1f26;
}

.dl-panel .muted { color: #66707c; }

.dl-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 14px;
}

.dl-tab {
  border: 1px solid #d8dee6;
  background: #fff;
  color: #39424c;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
}

.dl-tab.is-on {
  background: #2b7de9;
  border-color: #2b7de9;
  color: #fff;
  box-shadow: 0 8px 18px rgba(43, 125, 233, 0.28);
}

.dl-table-wrap {
  max-height: min(68vh, 720px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 12px;
  background: transparent;
}

.dl-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  background: transparent;
}

.dl-table th,
.dl-table td {
  text-align: left;
  padding: 18px 20px;
  border: 0;
  font-size: 1rem;
  vertical-align: middle;
}

.dl-table th {
  color: #6b7380;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f4f6f8;
  padding: 8px 20px 4px;
}

.dl-table tbody tr {
  background: #fff;
  box-shadow: 0 8px 24px rgba(22, 36, 58, 0.08);
}

.dl-table tbody td:first-child {
  border-radius: 18px 0 0 18px;
}

.dl-table tbody td:last-child {
  border-radius: 0 18px 18px 0;
}

.dl-name {
  display: block;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: #121821;
  line-height: 1.3;
}

.dl-date {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef2f6;
  color: #5b6572;
  font-size: 0.88rem;
  font-weight: 700;
}

.dl-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1d5bb8;
  font-weight: 800;
  font-size: 1rem;
}

.dl-col-action {
  text-align: right;
  width: 1%;
  white-space: nowrap;
}

.dl-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 132px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #2b7de9;
  color: #fff;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(43, 125, 233, 0.32);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.dl-link::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 3v10.2l3.4-3.4 1.4 1.4L12 16.4 7.2 11.2l1.4-1.4L11 13.2V3h1zM5 19h14v2H5v-2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.dl-link:hover {
  background: #1c6ad6;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(28, 106, 214, 0.38);
}

.dl-wait {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #eef2f6;
  color: #6b7380;
  font-weight: 800;
}

.dl-table .empty {
  text-align: center;
  color: #6b7380;
  padding: 32px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(22, 36, 58, 0.08);
}

@media (max-width: 700px) {
  .dl-table th:nth-child(2),
  .dl-table td:nth-child(2),
  .dl-table th:nth-child(3),
  .dl-table td:nth-child(3) { display: none; }

  .dl-table th,
  .dl-table td { padding: 16px 14px; }

  .dl-name { font-size: 1.04rem; }

  .dl-link,
  .dl-wait {
    min-width: 0;
    width: 100%;
    padding: 13px 16px;
  }

  .dl-col-action { width: auto; }
}

.seo-copy {
  width: min(1180px, calc(100% - 32px));
  margin: 12px auto 36px;
  position: relative;
  z-index: 2;
}
.seo-panel {
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  background:
    radial-gradient(1200px 180px at 8% 0%, rgba(79, 142, 247, 0.12), transparent 55%),
    linear-gradient(180deg, #1e252e, #171c22);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}
.seo-kicker {
  margin: 0 0 6px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8bb4f0;
  font-weight: 700;
}
.seo-title {
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.seo-lead {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}
.seo-group { margin-top: 22px; }
.seo-label {
  display: block;
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7d8a98;
  font-weight: 650;
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 10px;
}
.seo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px 14px;
  border: 1px solid var(--line);
  background: #161b21;
  border-radius: 16px;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.seo-card:hover,
.seo-card:focus-visible {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent, var(--cyan)) 45%, transparent);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  color: var(--text);
}
.seo-card-mark {
  width: 38px;
  height: 42px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: color-mix(in srgb, var(--accent, var(--cyan)) 24%, #1c232c);
  color: var(--accent, var(--cyan));
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.seo-card-name {
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
}
.seo-catalog {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.seo-catalog-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.seo-catalog-head span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8aa0b8;
  font-weight: 700;
}
.seo-catalog-head b {
  min-width: 26px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(79, 142, 247, 0.16);
  color: #c9dcff;
  font-size: 0.75rem;
  margin-left: 0;
}
.seo-files {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}
.seo-file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 74px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #12171d;
}
.seo-file:hover {
  border-color: rgba(79, 142, 247, 0.35);
  background: #161d26;
}
.seo-file-os {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
}
.seo-file-os.is-win {
  background: rgba(79, 142, 247, 0.18);
  color: #9cc2ff;
}
.seo-file-os.is-mac {
  background: rgba(255, 255, 255, 0.1);
  color: #e8edf3;
}
.seo-file-os.is-linux {
  background: rgba(61, 186, 122, 0.18);
  color: #8ee0b2;
}
.seo-file-os.is-other {
  background: rgba(79, 142, 247, 0.12);
  color: #9eb6d4;
}
.seo-file-body {
  min-width: 0;
  flex: 1 1 auto;
}
.seo-file-body strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.92rem;
  font-weight: 650;
  color: #eef3f8;
  line-height: 1.3;
}
.seo-file-body small {
  display: block;
  margin-top: 3px;
  color: #8b98a8;
  font-size: 0.74rem;
}
.seo-file-chip {
  flex: 0 0 auto;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(79, 142, 247, 0.14);
  color: #b9d2ff;
  white-space: nowrap;
}
.seo-file-full {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.seo-kw {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.seo-kw a {
  font-size: 0.78rem;
  font-weight: 600;
  color: #8bb4f0;
  text-decoration: none;
}
.seo-kw a:hover { color: #d4e4ff; }
.seo-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.seo-topics a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(79, 142, 247, 0.28);
  background: rgba(79, 142, 247, 0.1);
  color: #d4e4ff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}
.seo-topics a:hover {
  background: rgba(79, 142, 247, 0.2);
  color: #fff;
}

@media (max-width: 800px) {
  .seo-files { grid-template-columns: 1fr; }
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(8, 16, 28, 0.96);
    z-index: 30;
  }
  .nav.is-open { display: flex; }
  .stats { grid-template-columns: 1fr 1fr; }
  .toolbar { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 20px; }
  .home-video-ad .ad-slot,
  .home-video-ad .ad-slot--video-box,
  .home-video-ad .ad-slot:not([hidden]),
  .home-video-ad .ad-slot iframe,
  .home-video-ad .ad-slot video {
    min-height: 220px;
  }
}

html:not(.ads-on) .ad-stage,
html:not(.ads-on) .ad-rail {
  display: none;
}

.ad-rail {
  display: none;
}

@media (min-width: 1360px) {
  html.ads-on .ad-rail {
    display: block;
    position: fixed;
    top: calc(var(--header-h) + 12px);
    width: 168px;
    height: calc(100vh - var(--header-h) - 28px);
    z-index: 4;
  }
  html.ads-on .ad-rail--left { left: 10px; }
  html.ads-on .ad-rail--right { right: 10px; }
  html.ads-on .page.wrap {
    width: min(1020px, calc(100% - 392px));
  }
  html.ads-on .home-page .hero {
    padding-left: 188px;
    padding-right: 188px;
  }
  html.ads-on .home-video-ad {
    width: min(960px, calc(100% - 392px));
  }
}

@media (min-width: 1680px) {
  html.ads-on .ad-rail {
    width: 300px;
  }
  html.ads-on .ad-rail--left { left: 16px; }
  html.ads-on .ad-rail--right { right: 16px; }
  html.ads-on .page.wrap {
    width: min(1100px, calc(100% - 664px));
  }
  html.ads-on .home-page .hero {
    padding-left: 332px;
    padding-right: 332px;
  }
  html.ads-on .home-video-ad {
    width: min(960px, calc(100% - 664px));
  }
}

.ad-rail-frame {
  height: 100%;
  padding: 8px;
  border-radius: 18px;
  background: #1c232c;
  border: 1px solid var(--line);
  overflow: hidden;
}

.ad-rail .ad-slot,
.ad-rail .ad-slot--rail {
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  border-radius: 12px;
  background: #161b21;
  overflow: hidden;
}


.site-ctx {
  position: fixed;
  z-index: 120;
  min-width: 196px;
  padding: 6px;
  border-radius: 12px;
  background: #1c232c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.site-ctx-item {
  display: block;
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  color: #e8edf3;
  text-align: left;
  padding: 9px 12px;
  border-radius: 8px;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.site-ctx-item:hover {
  background: rgba(79, 142, 247, 0.16);
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  background: #fff;
  color: #2a3340;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.22);
}

.cookie-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #e8f1ff;
  display: grid;
  place-items: center;
}

.cookie-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.cookie-copy strong {
  display: block;
  margin: 0 0 4px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1c2430;
}

.cookie-copy p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #5c6570;
}

.cookie-copy a {
  color: #4f8ef7;
  font-weight: 650;
  text-decoration: none;
}

.cookie-copy a:hover {
  text-decoration: underline;
}

.cookie-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-reject,
.cookie-accept {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
}

.cookie-reject {
  background: transparent;
  color: #6b7380;
  padding: 8px 10px;
}

.cookie-accept {
  background: #4f8ef7;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
}

.cookie-accept:hover {
  background: #3d7be3;
}

.legal-page {
  padding: 36px 0 64px;
}

.legal-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 28px 26px 32px;
  border-radius: 20px;
  background: #1c232c;
  border: 1px solid var(--line);
}

.legal-card h1 {
  margin: 0 0 14px;
  font-size: 1.55rem;
}

.legal-card h2 {
  margin: 22px 0 8px;
  font-size: 1.05rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 720px) {
  .cookie-banner {
    flex-wrap: wrap;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker, .grid-floor, .orb, .pulse, .core { animation: none; }
}
