:root {
  --sk-bg: #050816;
  --sk-bg2: #0b1020;
  --sk-bg3: #111827;
  --sk-panel: rgba(255,255,255,.074);
  --sk-panel2: rgba(255,255,255,.115);
  --sk-panel3: rgba(15,23,42,.72);
  --sk-line: rgba(255,255,255,.145);
  --sk-line2: rgba(147,197,253,.24);
  --sk-text: #eef2ff;
  --sk-muted: #aeb9d7;
  --sk-soft: #dbeafe;
  --sk-blue: #60a5fa;
  --sk-blue2: #38bdf8;
  --sk-violet: #a78bfa;
  --sk-green: #34d399;
  --sk-yellow: #fbbf24;
  --sk-red: #fb7185;
  --sk-radius: 24px;
  --sk-radius2: 18px;
  --sk-shadow: 0 30px 100px rgba(0,0,0,.46);
  --sk-shadow2: 0 18px 55px rgba(0,0,0,.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::selection {
  color: #06111f;
  background: #93c5fd;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #070b16;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(96,165,250,.7), rgba(167,139,250,.7));
  border: 3px solid #070b16;
  border-radius: 999px;
}

body.skaynet-themed {
  margin: 0;
  min-height: 100vh;
  color: var(--sk-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 6%, rgba(56,189,248,.24), transparent 31%),
    radial-gradient(circle at 88% 10%, rgba(167,139,250,.23), transparent 31%),
    radial-gradient(circle at 54% 100%, rgba(52,211,153,.12), transparent 35%),
    linear-gradient(135deg, var(--sk-bg) 0%, var(--sk-bg2) 48%, var(--sk-bg3) 100%) !important;
  overflow-x: hidden;
}

body.skaynet-themed::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 18%, black, transparent 72%);
}

body.skaynet-themed::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 15%, rgba(96,165,250,.13), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(167,139,250,.12), transparent 24%);
  filter: blur(2px);
}

body.skaynet-themed a {
  color: #bfdbfe;
  text-underline-offset: 4px;
}

body.skaynet-themed .sk-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  z-index: 100000;
  background: linear-gradient(90deg, var(--sk-blue2), var(--sk-violet), var(--sk-green));
  box-shadow: 0 0 24px rgba(96,165,250,.55);
}

body.skaynet-themed .sk-shell,
body.skaynet-themed .shell,
body.skaynet-themed .site-shell {
  width: min(1200px, calc(100% - 38px));
  margin-left: auto;
  margin-right: auto;
}

body.skaynet-themed .sk-topbar,
body.skaynet-themed .topbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid var(--sk-line);
  background: rgba(5,8,22,.74) !important;
  backdrop-filter: blur(22px) saturate(130%);
  transition: background .22s ease, box-shadow .22s ease, border-color .22s ease;
}

body.skaynet-themed.sk-scrolled .sk-topbar,
body.skaynet-themed.sk-scrolled .topbar {
  background: rgba(5,8,22,.9) !important;
  box-shadow: 0 16px 50px rgba(0,0,0,.34);
  border-color: rgba(147,197,253,.22);
}

body.skaynet-themed .sk-topbar-inner,
body.skaynet-themed .topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body.skaynet-themed .sk-brand,
body.skaynet-themed .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sk-text);
  text-decoration: none;
  font-weight: 950;
  letter-spacing: -.04em;
}

body.skaynet-themed .sk-brand-mark,
body.skaynet-themed .brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(56,189,248,1), rgba(167,139,250,1));
  box-shadow:
    0 18px 44px rgba(96,165,250,.34),
    inset 0 1px 0 rgba(255,255,255,.35);
}

body.skaynet-themed .sk-brand-mark::after,
body.skaynet-themed .brand-mark::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(56,189,248,.28), rgba(167,139,250,.24));
  z-index: -1;
  filter: blur(10px);
}

body.skaynet-themed .sk-brand small,
body.skaynet-themed .brand small {
  display: block;
  margin-top: 2px;
  color: var(--sk-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

body.skaynet-themed .sk-nav,
body.skaynet-themed .nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

body.skaynet-themed .sk-nav a,
body.skaynet-themed .nav a {
  position: relative;
  color: var(--sk-muted) !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 13px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

body.skaynet-themed .sk-nav a:hover,
body.skaynet-themed .nav a:hover,
body.skaynet-themed .sk-nav a.sk-active,
body.skaynet-themed .nav a.active {
  color: #fff !important;
  background: rgba(255,255,255,.09);
  transform: translateY(-1px);
}

body.skaynet-themed .sk-nav a::after,
body.skaynet-themed .nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sk-blue2), var(--sk-violet));
  opacity: 0;
  transform: scaleX(.3);
  transition: .2s ease;
}

body.skaynet-themed .sk-nav a:hover::after,
body.skaynet-themed .nav a:hover::after,
body.skaynet-themed .sk-nav a.sk-active::after,
body.skaynet-themed .nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

body.skaynet-themed .hero {
  padding-top: 70px;
}

body.skaynet-themed .panel,
body.skaynet-themed .hero-card,
body.skaynet-themed .hero-main,
body.skaynet-themed .status-card,
body.skaynet-themed .content-panel,
body.skaynet-themed .tracker-panel,
body.skaynet-themed .sk-page-panel {
  position: relative;
  border: 1px solid var(--sk-line) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.055)) !important;
  box-shadow: var(--sk-shadow) !important;
  border-radius: var(--sk-radius) !important;
  overflow: hidden;
}

body.skaynet-themed .panel::before,
body.skaynet-themed .hero-card::before,
body.skaynet-themed .hero-main::before,
body.skaynet-themed .content-panel::before,
body.skaynet-themed .tracker-panel::before,
body.skaynet-themed .sk-page-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 30%),
    radial-gradient(circle at top right, rgba(96,165,250,.12), transparent 38%);
  opacity: .9;
}

body.skaynet-themed .hero-main,
body.skaynet-themed .hero-card {
  padding: clamp(28px, 4vw, 44px) !important;
}

body.skaynet-themed .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #dbeafe !important;
  border: 1px solid rgba(147,197,253,.28) !important;
  background: rgba(96,165,250,.14) !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}

body.skaynet-themed h1 {
  color: var(--sk-text);
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: .92;
  letter-spacing: -.075em;
  text-wrap: balance;
}

body.skaynet-themed h2 {
  color: var(--sk-text);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -.055em;
  text-wrap: balance;
}

body.skaynet-themed h3 {
  color: var(--sk-text);
  letter-spacing: -.035em;
}

body.skaynet-themed p,
body.skaynet-themed li {
  color: var(--sk-muted);
  line-height: 1.72;
}

body.skaynet-themed .hero-main p,
body.skaynet-themed .hero-card p {
  font-size: 17px;
  color: #b9c5e4;
}

body.skaynet-themed .btn,
body.skaynet-themed button,
body.skaynet-themed input[type="submit"],
body.skaynet-themed .copy {
  position: relative;
  isolation: isolate;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 15px !important;
  color: var(--sk-text) !important;
  background: rgba(255,255,255,.078) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

body.skaynet-themed .btn:hover,
body.skaynet-themed button:hover,
body.skaynet-themed input[type="submit"]:hover,
body.skaynet-themed .copy:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.13) !important;
  border-color: rgba(147,197,253,.36) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.16);
}

body.skaynet-themed .btn-primary {
  color: #06111f !important;
  background: linear-gradient(135deg, #93c5fd, #c4b5fd) !important;
  border: 0 !important;
  box-shadow: 0 18px 48px rgba(96,165,250,.26);
}

body.skaynet-themed .card,
body.skaynet-themed .guide-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.12) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.046)) !important;
  border-radius: 24px !important;
  box-shadow: var(--sk-shadow2);
  overflow: hidden;
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

body.skaynet-themed .card::before,
body.skaynet-themed .guide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(96,165,250,.18), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 28%);
  opacity: .5;
  pointer-events: none;
  transition: opacity .22s ease;
}

body.skaynet-themed .card:hover,
body.skaynet-themed .guide-card:hover {
  transform: translateY(-7px);
  border-color: rgba(147,197,253,.48) !important;
  box-shadow: 0 26px 80px rgba(0,0,0,.4);
}

body.skaynet-themed .card:hover::before,
body.skaynet-themed .guide-card:hover::before {
  opacity: 1;
}

body.skaynet-themed .icon,
body.skaynet-themed .card-icon {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(255,255,255,.105);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

body.skaynet-themed .tracker-row,
body.skaynet-themed .mini-item,
body.skaynet-themed .status-box,
body.skaynet-themed .status-item {
  border: 1px solid rgba(255,255,255,.115) !important;
  background:
    linear-gradient(180deg, rgba(15,23,42,.62), rgba(15,23,42,.36)) !important;
  border-radius: 18px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

body.skaynet-themed code {
  color: #e0f2fe !important;
  background: rgba(3,7,18,.38) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 10px;
  padding: 3px 7px;
}

body.skaynet-themed pre {
  color: #dbeafe !important;
  background: rgba(3,7,18,.42) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 18px;
  padding: 18px;
  overflow-x: auto;
}

body.skaynet-themed table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--sk-line);
}

body.skaynet-themed th,
body.skaynet-themed td {
  padding: 13px 15px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

body.skaynet-themed th {
  color: #dbeafe;
  text-align: left;
  background: rgba(96,165,250,.13);
}

body.skaynet-themed .sk-main {
  width: min(1180px, calc(100% - 38px));
  margin: 34px auto 54px;
}

body.skaynet-themed .sk-page-panel {
  padding: clamp(22px, 3vw, 38px);
}

body.skaynet-themed .sk-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin: 28px auto -10px;
  width: min(1180px, calc(100% - 38px));
  color: var(--sk-muted);
  font-size: 13px;
}

body.skaynet-themed .sk-breadcrumb a {
  color: #bfdbfe;
  text-decoration: none;
}

body.skaynet-themed .sk-breadcrumb span {
  opacity: .72;
}

body.skaynet-themed .sk-footer,
body.skaynet-themed .footer {
  width: min(1180px, calc(100% - 38px));
  margin: 0 auto;
  padding: 30px 0 48px;
  color: var(--sk-muted);
  font-size: 13px;
  text-align: center;
}

body.skaynet-themed .sk-footer-links,
body.skaynet-themed .footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

body.skaynet-themed .sk-footer-links a,
body.skaynet-themed .footer-links a {
  color: var(--sk-muted);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 999px;
}

body.skaynet-themed .sk-footer-links a:hover,
body.skaynet-themed .footer-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

body.skaynet-themed .sk-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

body.skaynet-themed .sk-reveal.sk-visible {
  opacity: 1;
  transform: translateY(0);
}

body.skaynet-themed .sk-hidden-menu-link {
  display: none !important;
}

body.skaynet-themed a[href="/apps/"],
body.skaynet-themed a[href="/apps"],
body.skaynet-themed a[href="/trackers.txt"],
body.skaynet-themed a[href="/trackers.json"] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  body.skaynet-themed *,
  body.skaynet-themed *::before,
  body.skaynet-themed *::after {
    animation: none !important;
    transition: none !important;
  }

  body.skaynet-themed .sk-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  body.skaynet-themed .hero-grid,
  body.skaynet-themed .grid-3,
  body.skaynet-themed .grid-2,
  body.skaynet-themed .toolbar {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  body.skaynet-themed .sk-shell,
  body.skaynet-themed .shell,
  body.skaynet-themed .site-shell,
  body.skaynet-themed .sk-main,
  body.skaynet-themed .sk-footer,
  body.skaynet-themed .footer,
  body.skaynet-themed .sk-breadcrumb {
    width: min(100% - 24px, 1180px);
  }

  body.skaynet-themed .sk-topbar-inner,
  body.skaynet-themed .topbar-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  body.skaynet-themed .sk-nav,
  body.skaynet-themed .nav {
    justify-content: flex-start;
  }

  body.skaynet-themed .hero {
    padding-top: 36px;
  }

  body.skaynet-themed h1 {
    font-size: clamp(34px, 12vw, 54px);
  }

  body.skaynet-themed .hero-main,
  body.skaynet-themed .hero-card,
  body.skaynet-themed .tracker-panel,
  body.skaynet-themed .content-panel,
  body.skaynet-themed .sk-page-panel {
    padding: 20px !important;
  }

  body.skaynet-themed .tracker-row {
    grid-template-columns: 1fr !important;
  }
}
