/* SKAYNET navigation consistency fix */

body.skaynet-themed .sk-nav,
body.skaynet-themed .nav {
  gap: 8px !important;
}

body.skaynet-themed .sk-nav a,
body.skaynet-themed .nav a {
  white-space: nowrap;
}

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;
}

.sk-quick-center {
  width: min(1180px, calc(100% - 38px));
  margin: 28px auto 54px;
}

.sk-quick-head {
  margin-bottom: 18px;
}

.sk-quick-head h2 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.sk-quick-head p {
  max-width: 780px;
  margin: 10px 0 0;
  color: #c7d2ee;
  line-height: 1.7;
}

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

.sk-quick-card {
  position: relative;
  min-height: 205px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at top right, rgba(96,165,250,.13), transparent 36%),
    linear-gradient(180deg, rgba(15,23,42,.88), rgba(15,23,42,.66));
  box-shadow: 0 18px 55px rgba(0,0,0,.32);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.sk-quick-card:hover {
  transform: translateY(-6px);
  border-color: rgba(147,197,253,.45);
  box-shadow: 0 26px 80px rgba(0,0,0,.42);
}

.sk-quick-card a {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.sk-quick-icon {
  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);
  font-size: 22px;
  margin-bottom: 16px;
}

.sk-quick-card h3 {
  margin: 0;
  color: #f8fafc;
  font-size: 20px;
  letter-spacing: -.025em;
}

.sk-quick-card p {
  margin: 11px 0 28px;
  color: #c7d2ee;
  line-height: 1.62;
  font-size: 14px;
}

.sk-quick-footer {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  color: #93c5fd;
  font-weight: 900;
  font-size: 14px;
}

@media (max-width: 960px) {
  .sk-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sk-quick-center {
    width: min(100% - 24px, 1180px);
  }

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