/* ============================================================
   Skynode UI/UX Enhancements
   Applied after style.min.css
   ============================================================ */

/* ── Logo sizing ──────────────────────────────────────────── */

.header__logo img {
  width: 11rem !important;
}

.footer__logo img {
  width: 5.75rem !important;
}

@media (max-width: 61.99875em) {
  .header__logo img { width: 7.7rem !important; }
  .footer__logo img  { width: 4.6rem !important; }
}

/* ── Base quality-of-life ─────────────────────────────────── */

html {
  scroll-behavior: smooth;
}

/* Custom text selection */
::selection {
  background-color: #0050c7;
  color: #fff;
}

/* Custom scrollbar (Webkit) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0b0e14;
}
::-webkit-scrollbar-thumb {
  background: #2a3550;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0050c7;
}

/* ── Focus states (keyboard / screen-reader accessibility) ── */

/* Remove default outline only when using mouse */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Clear, consistent focus ring for keyboard navigation */
*:focus-visible {
  outline: 2px solid #4e95ff;
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Button improvements ──────────────────────────────────── */

/* Blue button now gets a proper background-color hover */
@media (any-hover: hover) {
  .button--blue:hover {
    background-color: #1a6aef;
  }

  /* Slightly more pronounced gray button hover */
  .button--gray:hover {
    background-color: #0050c7;
  }

  /* Header Login/Register button polish */
  .header__button:hover {
    border-color: #fff;
    background-color: rgba(0, 80, 199, 0.15);
    color: #fff;
  }
}

/* Button active state (tap feedback on mobile) */
.button--blue:active {
  background-color: #003fa0;
}
.button--gray:active {
  background-color: #003fa0;
}
.plan__link:active {
  background-color: #003fa0;
}

/* ── Plan cards ───────────────────────────────────────────── */

/* Establish a stacking context on the plan article so z-index
   of children is scoped and predictable */
.plan {
  isolation: isolate;
}

/* Body sits at z-index 1 — below the button */
.plan__body {
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s;
}

/* ORDER NOW button always on top, regardless of body transform */
.plan__link {
  position: relative;
  z-index: 2;
}

@media (any-hover: hover) {
  /* Lift the whole plan on hover so button moves with card */
  .plans__item:hover .plan {
    -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
            transform: translateY(-4px);
  }

  .plans__item:hover .plan__body {
    -webkit-box-shadow: 0 12px 32px rgba(0, 80, 199, 0.25);
            box-shadow: 0 12px 32px rgba(0, 80, 199, 0.25);
  }

  .plans__item:hover .plan__link {
    background-color: #4e95ff;
  }
}

.plan {
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

/* ── Review cards ─────────────────────────────────────────── */

.review {
  -webkit-transition: -webkit-transform 0.25s, -webkit-box-shadow 0.25s;
  transition: transform 0.25s, box-shadow 0.25s;
  will-change: transform;
  border: 1px solid transparent;
}

@media (any-hover: hover) {
  .review:hover {
    -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
            transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    border-color: rgba(78, 149, 255, 0.25);
  }
}

/* review__source — move inline styles to a proper class */
.review__source {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-top: 5px;
  letter-spacing: 0.02em;
}

/* ── Awesome section items ────────────────────────────────── */

.awesome__item {
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-transition: border-color 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  will-change: transform;
}

@media (any-hover: hover) {
  .awesome__item:hover {
    border-color: rgba(78, 149, 255, 0.35);
    -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-box-shadow: 0 8px 28px rgba(0, 80, 199, 0.18);
            box-shadow: 0 8px 28px rgba(0, 80, 199, 0.18);
  }
}

/* ── FAQ accordion ─────────────────────────────────────────── */

.faq__item {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(78, 149, 255, 0.1);
  background: linear-gradient(160deg, #141a24 0%, #1a2235 100%);
  -webkit-transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq__item--open {
  border-color: rgba(78, 149, 255, 0.35);
  -webkit-box-shadow: 0 4px 20px rgba(78, 149, 255, 0.08);
          box-shadow: 0 4px 20px rgba(78, 149, 255, 0.08);
}

.faq__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #d0dff0;
}

.faq__item--open .faq__item-title {
  color: #fff;
  background: rgba(78, 149, 255, 0.07);
}

@media (any-hover: hover) {
  .faq__item-title:hover {
    background: rgba(78, 149, 255, 0.07);
    color: #fff;
  }
}

/* Chevron icon */
.faq__chevron {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #4e95ff;
  -webkit-transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
}

.faq__item--open .faq__chevron {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* Body — hidden by default, animates open */
.faq__item-body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                      padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.25rem;
}

.faq__item--open .faq__item-body {
  max-height: 600px;
  padding: 0 1.25rem 1.25rem;
}

@media (any-hover: hover) {
  .faq__item-title:hover {
    background-color: rgba(78, 149, 255, 0.07);
  }
}

/* ── Compare table improvements ──────────────────────────── */

/* Alternating row banding via nth-of-type on paragraphs */
.compare__table-column p:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 3px;
  padding: 0.2rem 0.5rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

/* Skynode column badge */
.compare__table-column--skynode {
  -webkit-box-shadow: 0 0 0 2px rgba(78, 149, 255, 0.4);
          box-shadow: 0 0 0 2px rgba(78, 149, 255, 0.4);
}

/* ── Main feature items ──────────────────────────────────── */

.main-feature__item {
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  will-change: transform;
  border: 1px solid transparent;
}

@media (any-hover: hover) {
  .main-feature__item:hover {
    background-color: #1e2a3d;
    border-color: rgba(78, 149, 255, 0.2);
    -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}

/* ── Partner cards ───────────────────────────────────────── */

.partners__item {
  -webkit-transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  will-change: transform;
}

@media (any-hover: hover) {
  .partners__item:hover {
    -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}

/* ── Footer link underline animation ─────────────────────── */

.footer__links-link {
  position: relative;
  display: inline-block;
}

.footer__links-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  -webkit-transition: width 0.25s;
  transition: width 0.25s;
}

@media (any-hover: hover) {
  .footer__links-link:hover::after {
    width: 100%;
  }

  /* Override the simple underline from base CSS */
  .footer__links-link:hover {
    text-decoration: none;
  }
}

/* ── Section heading accent underlines ───────────────────── */

/* Consistent blue bar below every major section heading */
.awesome__title::after,
.reviews__title::after,
.compare__title::after,
.faq__title::after,
.server__title::after,
.protection__title::after,
.panel__title::after,
.map__title::after,
.main-feature__title::after,
.selector__title::after,
.plans__title::after,
.mission__title::after,
.gh-games__title::after,
.gh-why__title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, #0050c7, #4e95ff);
  border-radius: 2px;
  margin: 0.6rem auto 0;
}

/* ── Lazy-loaded image fade-in ───────────────────────────── */

/* Images start invisible; JS adds .loaded class after src swap */
[data-src],
[data-srcset] {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

img.loaded {
  opacity: 1 !important;
}

/* ── Protection/DDoS section layout tweak ────────────────── */

/* The text is currently center-aligned but the section has
   an image beside it — left-align reads better */
.protection__content {
  text-align: left;
}

/* ── Server section image rounded corners ────────────────── */

.server__image-ibg {
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ── Mobile nav toggle animation ────────────────────────── */

.icon-menu span {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

/* ── Hero main-screen text readability ───────────────────── */

.main-screen__text {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* ── Moto section (home page) accent ────────────────────── */

.moto {
  background: -webkit-gradient(linear, left top, right top, from(#003fa0), color-stop(50%, #0050c7), to(#003fa0));
  background: -o-linear-gradient(left, #003fa0 0%, #0050c7 50%, #003fa0 100%);
  background: linear-gradient(90deg, #003fa0 0%, #0050c7 50%, #003fa0 100%);
}

/* ── Choosing game items (game-hosting.html) ─────────────── */

.choose__item-image-ibg {
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
}

@media (any-hover: hover) {
  .choose__item:hover .choose__item-image-ibg {
    -webkit-box-shadow: 0 8px 24px rgba(0, 80, 199, 0.3);
            box-shadow: 0 8px 24px rgba(0, 80, 199, 0.3);
  }
}

/* ── Panel feature links (control panel section) ─────────── */

.panel__item-link {
  border-radius: 4px;
  -webkit-transition: background-color 0.25s, -webkit-transform 0.2s;
  transition: background-color 0.25s, transform 0.2s;
}

@media (any-hover: hover) {
  .panel__item-link:hover {
    -webkit-transform: translateX(3px);
        -ms-transform: translateX(3px);
            transform: translateX(3px);
  }
}

/* ── Selector slider (home page game selector) ───────────── */

.selector {
  background-size: cover !important;
}

.selector__slide {
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

/* ── Sticky header ───────────────────────────────────────── */

.header {
  position: fixed !important;
  -webkit-transition: background-color 0.35s, -webkit-box-shadow 0.35s;
  transition: background-color 0.35s, box-shadow 0.35s;
}

.header--scrolled {
  background-color: rgba(11, 14, 20, 0.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
          box-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

/* ── Back-to-top button ──────────────────────────────────── */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 998;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #0050c7;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(1rem);
      -ms-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s, background-color 0.25s;
  transition: opacity 0.3s, transform 0.3s, background-color 0.25s;
  pointer-events: none;
  -webkit-box-shadow: 0 4px 16px rgba(0, 80, 199, 0.45);
          box-shadow: 0 4px 16px rgba(0, 80, 199, 0.45);
  border: none;
}

.back-to-top--visible {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

@media (any-hover: hover) {
  .back-to-top:hover {
    background-color: #1a6aef;
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

/* ── Scroll-reveal animations ────────────────────────────── */

.sr-hidden {
  opacity: 0;
  -webkit-transform: translateY(18px);
      -ms-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sr-visible {
  opacity: 1 !important;
  -webkit-transform: translateY(0) !important;
      -ms-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

/* ── Homepage hero badge pill ────────────────────────────── */

.hero-badge {
  display: inline-block;
  background-color: rgba(0, 80, 199, 0.25);
  border: 1px solid rgba(78, 149, 255, 0.5);
  color: #8ab8ff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  display: inline-block;
}

/* ── Stats strip (homepage moto section) ─────────────────── */

.moto__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem 3.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.moto__stat {
  text-align: center;
}

.moto__stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.moto__stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.8;
}

/* ── Featured plan card highlight ────────────────────────── */

/* The "For Communities" plan (2nd item, has --dntmiss policy note)
   gets a distinguishing highlight ring */
.plans__item:has(.plans__item-policy--dntmiss) .plan__body {
  -webkit-box-shadow: 0 0 0 2px #0050c7, 0 12px 32px rgba(0, 80, 199, 0.3);
          box-shadow: 0 0 0 2px #0050c7, 0 12px 32px rgba(0, 80, 199, 0.3);
}

/* "Most Popular" ribbon on featured plan */
.plans__item:has(.plans__item-policy--dntmiss) .plan__label:not(.plan__label--gray) {
  background-color: #1a6aef;
  position: relative;
}

.plans__item:has(.plans__item-policy--dntmiss) .plan__label:not(.plan__label--gray)::after {
  content: "⭐ MOST POPULAR";
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-top: 0.2rem;
}

/* ── Homepage hero — centre text + video ─────────────────── */

/* Switch to CSS Grid so justify-content:center reliably centres
   both columns as a unit inside the full-width container.
   Flexbox space-between was spreading them edge-to-edge. */
.home-page .main-screen__container {
  display: grid !important;
  grid-template-columns: minmax(0, 28rem) minmax(0, 26rem) !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  gap: 8rem !important;
}

/* Text column */
.home-page .main-screen__content {
  max-width: 100% !important;
  margin: 0 !important;
  text-align: left !important;
}

/* Video — responsive 16:9 container */
.home-page .main-screen__video-ibg {
  width: 100% !important;
  position: relative !important;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 0 2px rgba(78, 149, 255, 0.35), 0 20px 60px rgba(0, 0, 0, 0.65);
          box-shadow: 0 0 0 2px rgba(78, 149, 255, 0.35), 0 20px 60px rgba(0, 0, 0, 0.65);
  -webkit-transition: -webkit-box-shadow 0.3s;
          transition: box-shadow 0.3s;
}

.home-page .main-screen__video-ibg:hover {
  -webkit-box-shadow: 0 0 0 2px rgba(78, 149, 255, 0.55), 0 24px 70px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 0 2px rgba(78, 149, 255, 0.55), 0 24px 70px rgba(0, 0, 0, 0.7);
}

.home-page .main-screen__video-ibg iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}

/* Mobile — single column, centred */
@media (max-width: 61.99875em) {
  .home-page .main-screen__container {
    grid-template-columns: minmax(0, 32rem) !important;
    gap: 2rem !important;
  }
  .home-page .main-screen__content {
    text-align: center !important;
  }
}

/* ── Hero subtitle styling (homepage) ───────────────────── */

.main-screen__subtitle {
  display: inline-block;
  background-color: rgba(0, 80, 199, 0.2);
  border: 1px solid rgba(78, 149, 255, 0.4);
  color: #8ab8ff;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

/* ── Map section ─────────────────────────────────────────── */

.map__eyebrow-label {
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #8ab8ff;
  font-size: 0.85rem;
}

/* ── section dividers (subtle gradient lines) ────────────── */

.awesome::before,
.compare::before,
.faq::before {
  content: "";
  display: block;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, rgba(78, 149, 255, 0.15)), to(transparent));
  background: -o-linear-gradient(left, transparent, rgba(78, 149, 255, 0.15) 50%, transparent);
  background: linear-gradient(90deg, transparent, rgba(78, 149, 255, 0.15) 50%, transparent);
}

/* ── Hover improvement for header buttons ────────────────── */

.header__button:first-child {
  background-color: rgba(0, 80, 199, 0.12);
}

@media (any-hover: hover) {
  .header__button:first-child:hover {
    background-color: rgba(0, 80, 199, 0.3);
    border-color: #4e95ff;
  }
}

/* ── team / mission cards on about page ──────────────────── */

.mission__item {
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
}

@media (any-hover: hover) {
  .mission__item:hover {
    -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
            transform: translateY(-4px);
    border-color: rgba(78, 149, 255, 0.2);
    -webkit-box-shadow: 0 8px 28px rgba(0, 80, 199, 0.15);
            box-shadow: 0 8px 28px rgba(0, 80, 199, 0.15);
  }
}

/* ── Responsive back-to-top ──────────────────────────────── */

@media (max-width: 47.99875em) {
  .back-to-top {
    bottom: 1rem;
    left: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* ============================================================
   SPACING FIXES
   ============================================================ */

/* awesome items — no gap in base CSS, only in large breakpoints */
.awesome__items {
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

/* faq items — consistent gap and layout */
.faq__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

/* game choice items — no gap in base CSS */
.choose__items {
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

/* plan cards — ensure consistent vertical spacing */
.plans__items {
  gap: 0;  /* keep existing border-right separator, just reset any accidental gap */
}

/* review cards — small gap between title and meta */
.review__rating {
  gap: 0.5rem;
}

/* section inner spacing — prevent titles from crashing into content */
.awesome__title,
.plans__title,
.compare__title,
.faq__title,
.locations__title,
.server__title,
.protection__title,
.panel__title {
  margin-bottom: 1.25rem;
}

/* ============================================================
   MODERNIZED CARD DESIGNS
   ============================================================ */

/* Glass-style review cards */
.review {
  background: linear-gradient(135deg, #2d3d55 0%, #3a4d6a 100%);
  border: 1px solid rgba(78, 149, 255, 0.12);
  backdrop-filter: blur(4px);
}

/* Awesome items — subtle gradient card backgrounds */
.awesome__item {
  background: linear-gradient(160deg, #141a24 0%, #1a2235 100%);
}

/* Plan body — stronger visual */
.plan__body {
  background: linear-gradient(180deg, #1a2235 0%, #111827 100%) !important;
  border: 1px solid rgba(78, 149, 255, 0.1);
}

/* FAQ items — consistent card style */
.faq__item-text {
  line-height: 1.65;
  color: #8a9ab0;
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================================
   GRADIENT TEXT ON SECTION HEADINGS
   ============================================================ */

.awesome__title,
.plans__title,
.panel__title,
.server__title,
.protection__title,
.main-feature__title,
.selector__title,
.map__title,
.reviews__title,
.moto__title,
.homepage-cta__title,
.faq__title,
.compare__title,
.how-it-works__title,
.mission__title,
.gh-games__title,
.gh-why__title {
  background: linear-gradient(90deg, #fff 0%, #8ab8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero H1 on game pages — bolder, cleaner */
.specific-page .main-screen__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* Homepage H1 */
.home-page .main-screen__title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

/* ============================================================
   HERO IMPROVEMENTS
   ============================================================ */

/* Stronger bottom gradient on hero to blend into page */
.main-screen-ibg::after {
  height: 18%;
}

/* Darken main hero image */
.home-page .main-screen__bg {
  -webkit-filter: brightness(0.45);
          filter: brightness(0.45);
}

/* About page hero — darken so heading text stays readable */
.about-page .main-screen__bg {
  -webkit-filter: brightness(0.35);
          filter: brightness(0.35);
}

/* Hero text on game pages — slightly larger */
.specific-page .main-screen__text {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 44rem;
  margin: 0 auto;
}

/* ============================================================
   "NOT CONVINCED YET?" — PROPER CTA SECTION
   ============================================================ */

.moto {
  position: relative;
  overflow: hidden;
}

/* Decorative glow orb behind moto content */
.moto::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 80, 199, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

/* CTA buttons inside moto section */
.moto__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}

.moto__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  -webkit-transition: background-color 0.25s, -webkit-transform 0.2s, -webkit-box-shadow 0.25s;
  transition: background-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.moto__button--primary {
  background-color: #fff;
  color: #0050c7;
}

.moto__button--secondary {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (any-hover: hover) {
  .moto__button--primary:hover {
    background-color: #e8f0ff;
    -webkit-box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
  }

  .moto__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

/* ============================================================
   COMPARE TABLE — MODERN DESIGN
   ============================================================ */

/* Skynode column — stronger highlight */
.compare__table-column--skynode {
  background: linear-gradient(180deg, #0050c7 0%, #003fa0 100%);
}

/* Column header row text — uppercase label treatment */
.compare__table-column:first-child p {
  color: #8ab8ff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Comparison description accent */
.compare__desc {
  color: #7a8ba0;
  font-size: 0.8rem;
}

/* ============================================================
   SECTION ALTERNATING BACKGROUNDS — CLEARER VISUAL RHYTHM
   ============================================================ */

/* Locations section — subtle gradient overlay */
.locations {
  background: linear-gradient(135deg, #0d1420 0%, #0b0e14 100%);
}

/* Server section — match alternating pattern */
.server {
  background: linear-gradient(135deg, #0f1825 0%, #0b0e14 100%);
}

/* ============================================================
   PLAN CARDS — MORE VISUAL HIERARCHY
   ============================================================ */

/* Plan title */
.plan__title {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

/* Plan price — bigger, bolder */
.plan__price {
  font-size: 1.4rem;
}

.plan__price span {
  font-size: 0.8rem;
  color: #8ab8ff;
}

/* Order Now button — full-width and more impactful */
.plan__link {
  width: 100%;
  text-align: center;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  padding: 0.875rem 1rem;
}

/* Feature list items */
.plan__info-item {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #c8d8ea;
  padding: 0.2rem 0;
}

.plan__info-item::before {
  content: "✓ ";
  color: #4e95ff;
  font-weight: 900;
}

/* ============================================================
   LOCATIONS BUTTONS — MODERN PILL STYLE
   ============================================================ */

/* ============================================================
   FOOTER IMPROVEMENTS
   ============================================================ */

/* Footer top border accent */
.footer {
  border-top: 1px solid rgba(78, 149, 255, 0.12);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 149, 255, 0.4) 50%, transparent);
}

/* Social icons — scale on hover */
.footer__social-link svg {
  -webkit-transition: -webkit-transform 0.25s, opacity 0.25s;
  transition: transform 0.25s, opacity 0.25s;
}

@media (any-hover: hover) {
  .footer__social-link:hover svg {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/* Footer title underline */
.footer__title {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background-color: #0050c7;
  border-radius: 1px;
}

/* ============================================================
   SELECTOR SLIDER — MODERN CARD LOOK
   ============================================================ */

.selector__slide-image-ibg {
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.selector__slide-text {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   MAP SECTION — MORE VISUAL PRESENCE
   ============================================================ */

.map {
  position: relative;
}

.map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 80, 199, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.map__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

/* ============================================================
   TYPOGRAPHY — LINE HEIGHT & READABILITY
   ============================================================ */

/* Body text readability */
.text--soft {
  line-height: 1.7;
}

/* Section body text paragraphs */
.server__text p,
.protection__text,
.awesome__item-text,
.main-feature__item-text {
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================================
   MOBILE IMPROVEMENTS
   ============================================================ */

@media (max-width: 61.99875em) {
  /* Ensure awesome items stack with spacing on mobile */
  .awesome__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .awesome__item {
    min-width: min(100%, 18rem);
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  /* Plan cards — stack on mobile with spacing */
  .plans__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
  }

  .plans__item:not(:last-child) {
    border-right: none;
    border-bottom: 0.1875rem solid rgba(34, 45, 63, 0.5);
    padding-bottom: 1.5rem;
  }

  /* Compare table — ensure horizontal scroll is obvious */
  .compare__body {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  /* Moto CTA buttons — stack on small screens */
  .moto__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .moto__button {
    width: 100%;
    max-width: 20rem;
  }
}

/* ============================================================
   LEAFLET MAP — DARK THEME & CUSTOM MARKERS
   ============================================================ */

/* Map container — replaces the old aspect-ratio img wrapper */
#skynode-map {
  width: 100%;
  height: 420px;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(78, 149, 255, 0.18);
  -webkit-box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
          box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 61.99875em) {
  #skynode-map { height: 320px; }
}

@media (max-width: 47.99875em) {
  #skynode-map { height: 260px; }
}

/* Standard location marker */
.sn-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #0050c7;
  border: 2px solid #4e95ff;
  -webkit-box-shadow: 0 0 8px rgba(78, 149, 255, 0.7), 0 0 0 4px rgba(78, 149, 255, 0.15);
          box-shadow: 0 0 8px rgba(78, 149, 255, 0.7), 0 0 0 4px rgba(78, 149, 255, 0.15);
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
}

.sn-marker:hover {
  -webkit-transform: scale(1.4);
      -ms-transform: scale(1.4);
          transform: scale(1.4);
}

/* Flagship (New York) marker — larger, brighter */
.sn-marker--flagship {
  width: 22px;
  height: 22px;
  background-color: #1a6aef;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 14px rgba(78, 149, 255, 0.9), 0 0 0 6px rgba(78, 149, 255, 0.2);
          box-shadow: 0 0 14px rgba(78, 149, 255, 0.9), 0 0 0 6px rgba(78, 149, 255, 0.2);
}

/* Leaflet popup — dark theme */
.leaflet-popup-content-wrapper {
  background-color: #141a24 !important;
  color: #fff !important;
  border: 1px solid rgba(78, 149, 255, 0.3) !important;
  border-radius: 6px !important;
  -webkit-box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
          box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
  font-family: "Circular Std", sans-serif !important;
}

.leaflet-popup-tip {
  background-color: #141a24 !important;
}

.leaflet-popup-content {
  margin: 0.6rem 0.9rem !important;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
}

.leaflet-popup-close-button {
  color: #8ab8ff !important;
}

/* Attribution — keep legible on dark tiles */
.leaflet-control-attribution {
  background: rgba(11, 14, 20, 0.75) !important;
  color: #7a8ba0 !important;
  font-size: 0.65rem !important;
}

.leaflet-control-attribution a {
  color: #4e95ff !important;
}

/* Zoom controls — match dark theme */
.leaflet-control-zoom a {
  background-color: #141a24 !important;
  color: #fff !important;
  border-color: rgba(78, 149, 255, 0.3) !important;
}

.leaflet-control-zoom a:hover {
  background-color: #0050c7 !important;
}

/* The map__map-ibg class was removed from #skynode-map so the
   global [class*=-ibg] img rule no longer applies — no overrides needed. */

/* ── How It Works section ────────────────────────────────── */

.how-it-works {
  padding: 5rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#0d111a), to(#0b0e14));
  background: -o-linear-gradient(top, #0d111a 0%, #0b0e14 100%);
  background: linear-gradient(180deg, #0d111a 0%, #0b0e14 100%);
}

.how-it-works__container {
  max-width: 74rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  text-align: center;
}

.how-it-works__title {
  margin-bottom: 0.75rem;
}

.how-it-works__subtitle {
  max-width: 520px;
  margin: 1.25rem auto 3.5rem;
  font-size: 1rem;
}

.how-it-works__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.how-it-works__step {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 220px;
          flex: 1 1 220px;
  max-width: 280px;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(78, 149, 255, 0.12);
  border-radius: 1rem;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease, border-color 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

@media (any-hover: hover) {
  .how-it-works__step:hover {
    -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
            transform: translateY(-4px);
    border-color: rgba(78, 149, 255, 0.35);
    -webkit-box-shadow: 0 12px 32px rgba(0, 80, 199, 0.18);
            box-shadow: 0 12px 32px rgba(0, 80, 199, 0.18);
  }
}

.how-it-works__step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0050c7;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
  opacity: 0.85;
}

.how-it-works__step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.625rem;
}

.how-it-works__step-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #8a9ab0;
}

.how-it-works__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 0 0.5rem;
  margin-top: 0;
  color: rgba(78, 149, 255, 0.35);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 47.99875em) {
  .how-it-works__arrow {
    display: none;
  }
  .how-it-works__steps {
    gap: 1rem;
  }
  .how-it-works__step {
    max-width: 100%;
  }
}

/* ── Selector CTA ─────────────────────────────────────────── */

.selector__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.5rem;
}

.selector__cta-link {
  padding: 0.875rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ── Homepage bottom CTA section ────────────────────────── */

.homepage-cta {
  padding: 6rem 0;
  background: -webkit-gradient(linear, left top, right bottom, from(#050914), color-stop(50%, #0b1629), to(#050914));
  background: -o-linear-gradient(top left, #050914 0%, #0b1629 50%, #050914 100%);
  background: linear-gradient(135deg, #050914 0%, #0b1629 50%, #050914 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.homepage-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 80, 199, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.homepage-cta__container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  position: relative;
  z-index: 1;
}

.homepage-cta__title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

/* Accent bar */
.homepage-cta__title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.25rem;
  background-color: #0050c7;
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

.homepage-cta__text {
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
  line-height: 1.65;
  color: #8a9ab0;
}

.homepage-cta__text strong {
  color: #4e95ff;
  font-weight: 700;
}

.homepage-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.homepage-cta__btn {
  padding: 0.9rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (any-hover: hover) {
  .homepage-cta__btn:hover {
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 24px rgba(0, 80, 199, 0.35);
            box-shadow: 0 8px 24px rgba(0, 80, 199, 0.35);
  }
}

@media (max-width: 47.99875em) {
  .homepage-cta {
    padding: 4rem 0;
  }
  .homepage-cta__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .homepage-cta__btn {
    width: 100%;
    max-width: 20rem;
    text-align: center;
  }
}

/* ============================================================
   GLOBAL ALIGNMENT & SPACING POLISH
   ============================================================ */

/* ── Consistent section vertical rhythm ──────────────────── */

/* Ensure every section's title has the same bottom margin before body text */
.mission__title,
.main-feature__title,
.selector__title,
.map__title,
.reviews__title,
.moto__title {
  margin-bottom: 1rem;
}

/* Centre-align all section titles that are currently left-aligned on some pages */
.reviews__title,
.moto__title {
  text-align: center;
}

/* Consistent leading paragraph text under section headers */
.selector__text,
.moto__text,
.main-feature__text {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Partners page ───────────────────────────────────────── */

/* Partners item — consistent card padding and gap */
.partners__item {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  background: linear-gradient(160deg, #141a24 0%, #1a2235 100%);
  -webkit-transition: border-color 0.25s, -webkit-transform 0.25s, -webkit-box-shadow 0.25s;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

@media (any-hover: hover) {
  .partners__item:hover {
    border-color: rgba(78, 149, 255, 0.3);
    -webkit-box-shadow: 0 8px 28px rgba(0, 80, 199, 0.2);
            box-shadow: 0 8px 28px rgba(0, 80, 199, 0.2);
  }
}

.partners__item-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.partners__item-link {
  font-size: 0.78rem;
  color: #4e95ff;
  opacity: 0.85;
}

.partners__item-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #8a9ab0;
  margin-top: 0.75rem;
}

/* ── About page statistics strip ─────────────────────────── */

/* Larger, bolder stat values to match homepage feel */
.mission__statistics .statistics__value {
  font-size: 2.25rem !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}

.mission__statistics .statistics__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Game hosting — choose items ─────────────────────────── */

.choose__item-text {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* ── Selector slide labels — cleaner ─────────────────────── */

.selector__slide {
  border-radius: 0.625rem;
  overflow: hidden;
}

/* ── Reviews section alignment ───────────────────────────── */

/* Ensure review body text is left-aligned for readability */
.review__text {
  text-align: left;
  line-height: 1.7;
}

.review__title {
  text-align: left;
}

.review__author {
  text-align: left;
  display: block;
}

/* ── Main feature image section ──────────────────────────── */

/* Ensure feature image has consistent border radius */
.main-feature__image-ibg {
  border-radius: 0.75rem;
  overflow: hidden;
}

/* ── Moto section on all pages ───────────────────────────── */

/* Center text content in moto section */
.moto__container {
  text-align: center;
}

/* ── Map section on all game pages ───────────────────────── */

.map__container {
  text-align: center;
}

/* ── Legal pages (privacy, TOS, SLA) ─────────────────────── */

/* Give legal content pages some breathing room */
.privacy-page .page__content,
.tos-page .page__content,
.sla-page .page__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  line-height: 1.75;
}

/* ── Smooth border-radius consistency ────────────────────── */

/* All interactive cards should use same radius */
.plan__body,
.review,
.awesome__item,
.faq__item,
.choose__item,
.mission__item {
  border-radius: 0.625rem;
}

/* ── Global link color consistency ───────────────────────── */

/* Inline text links should use the brand blue */
.protection__content a,
.server__content a,
.mission__text a {
  color: #4e95ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── img elements — prevent layout shift ─────────────────── */

img {
  max-width: 100%;
  height: auto;
}

/* ── Prevent orphaned text on narrow viewports ────────────── */

h1, h2, h3, h4 {
  text-wrap: balance;
}

/* ── Selector slide game title ───────────────────────────── */

.selector__slide-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.5rem;
  margin-bottom: 0.1rem;
  letter-spacing: 0.02em;
}

/* ── Legal pages (Privacy, TOS, SLA) ─────────────────────── */

.privacy__container {
  max-width: 52rem;
  margin: 0 auto;
  padding: 4rem clamp(1rem, 4vw, 2rem) 5rem;
}

.privacy__top {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(78, 149, 255, 0.15);
}

.privacy__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff 0%, #8ab8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #8a9ab0;
  max-width: 44rem;
}

.privacy__subtitle {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4e95ff;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(78, 149, 255, 0.15);
}

.privacy__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.privacy__list p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #8a9ab0;
}

.privacy__list span {
  color: #4e95ff;
  font-weight: 700;
  margin-right: 0.25rem;
}

/* ── World map (replaces Leaflet) ─────────────────────────── */

.map { padding: 4rem 0 5rem; }

.map__eyebrow {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4e95ff;
  margin-bottom: 0.75rem;
  text-align: center;
}

.map__title { text-align: center; margin-bottom: 0.75rem; }
.map__text  { text-align: center; margin-bottom: 2.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }

.sn-worldmap {
  position: relative;
  width: 100%;
  max-width: 62rem;
  margin: 0 auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.sn-worldmap__img {
  width: 100%;
  height: auto;
  opacity: 0.45;
  display: block;
  -webkit-filter: invert(1) sepia(1) saturate(0.3) hue-rotate(180deg) brightness(0.55);
          filter: invert(1) sepia(1) saturate(0.3) hue-rotate(180deg) brightness(0.55);
}

/* Pin wrapper — zero-size anchor; top/left in HTML = exact geographic coordinate */
.sn-pin {
  position: absolute;
  width: 0;
  height: 0;
}

/* Pulsing ring — centered on anchor */
.sn-pin__pulse {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(78, 149, 255, 0.25);
  top: -0.75rem;
  left: -0.75rem;
  -webkit-animation: sn-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
          animation: sn-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@-webkit-keyframes sn-ping {
  75%, 100% { -webkit-transform: scale(2.2); transform: scale(2.2); opacity: 0; }
}
@keyframes sn-ping {
  75%, 100% { -webkit-transform: scale(2.2); transform: scale(2.2); opacity: 0; }
}

/* Solid dot — centered on anchor */
.sn-pin__dot {
  position: absolute;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #4e95ff;
  top: -0.325rem;
  left: -0.325rem;
  -webkit-box-shadow: 0 0 0 2px rgba(78,149,255,0.4), 0 2px 8px rgba(78,149,255,0.5);
          box-shadow: 0 0 0 2px rgba(78,149,255,0.4), 0 2px 8px rgba(78,149,255,0.5);
  z-index: 1;
}

.sn-pin__dot--flagship {
  background: #60dfb0;
  -webkit-box-shadow: 0 0 0 2px rgba(96,223,176,0.4), 0 2px 8px rgba(96,223,176,0.5);
          box-shadow: 0 0 0 2px rgba(96,223,176,0.4), 0 2px 8px rgba(96,223,176,0.5);
}

.sn-pin__dot--flagship + .sn-pin__label { border-color: rgba(96,223,176,0.3); }

/* Label tooltip — floats above the dot, horizontally centered */
.sn-pin__label {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(15, 20, 32, 0.92);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border: 1px solid rgba(78,149,255,0.2);
  border-radius: 4px;
  padding: 0.25rem 0.45rem;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

.sn-pin__city {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.sn-pin__sub {
  font-size: 0.68rem;
  color: #8a9ab0;
  line-height: 1.3;
}

@media (max-width: 47.99875em) {
  .sn-pin__label { display: none; }
  .sn-pin__dot   { width: 0.5rem; height: 0.5rem; }
}

/* ── Game hosting page ────────────────────────────────────── */

.gh-eyebrow {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4e95ff;
  margin-bottom: 0.5rem;
}

.gh-search {
  position: relative;
  max-width: 22rem;
}

.gh-search__icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #8a9ab0;
  pointer-events: none;
}

.gh-search__input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.65rem 1rem 0.65rem 2.4rem;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  -webkit-transition: border-color 0.2s;
          transition: border-color 0.2s;
}

.gh-search__input::-webkit-input-placeholder { color: #8a9ab0; }
.gh-search__input::-moz-placeholder          { color: #8a9ab0; }
.gh-search__input:-ms-input-placeholder      { color: #8a9ab0; }
.gh-search__input::placeholder               { color: #8a9ab0; }

.gh-search__input:focus { border-color: #4e95ff; }

.gh-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

.gh-tab {
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #8a9ab0;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.18s, color 0.18s, border-color 0.18s;
          transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.gh-tab:hover { background: rgba(78,149,255,0.1); color: #fff; border-color: rgba(78,149,255,0.3); }

.gh-tab--active {
  background: #4e95ff;
  color: #fff;
  border-color: #4e95ff;
}

/* Game card name */
.choose__item-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  padding: 0.45rem 0.75rem 0.1rem;
  line-height: 1.3;
}

/* ── Game hosting page — complete overhaul ────────────────── */

/* Hero */
.gh-hero {
  position: relative;
  min-height: 75vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.gh-hero__bg-wrap {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
}

.gh-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.28);
          filter: brightness(0.28);
  z-index: 0;
}

.gh-hero__body {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  max-width: 52rem;
  margin: 0 auto;
}

.gh-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
}

.gh-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #8a9ab0;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.gh-hero__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gh-hero__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gh-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #c8d6e8;
  font-weight: 600;
}

/* Games section */
.gh-games { padding: 4rem 0 5rem; }

.gh-games__container {
  max-width: 91.875rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gh-games__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gh-games__title { margin-bottom: 0.4rem; }
.gh-games__sub   { margin: 0; }

.gh-filter-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

/* Game cards grid */
.gh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

@media (min-width: 48em) {
  .gh-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; }
}

@media (min-width: 80em) {
  .gh-grid { grid-template-columns: repeat(6, 1fr); }
}

/* Card */
.gh-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #111520;
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  color: inherit;
  -webkit-transition: -webkit-transform 0.2s, border-color 0.2s, -webkit-box-shadow 0.2s;
          transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.gh-card:hover {
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: rgba(78,149,255,0.35);
  -webkit-box-shadow: 0 8px 32px rgba(78,149,255,0.12);
          box-shadow: 0 8px 32px rgba(78,149,255,0.12);
}

.gh-card--soon {
  opacity: 0.55;
  cursor: default;
}

.gh-card--soon:hover {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  border-color: rgba(255,255,255,0.06);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.gh-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0d1018;
}

.gh-card__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.35s;
          transition: transform 0.35s;
}

.gh-card:hover .gh-card__img-wrap img { -webkit-transform: scale(1.06); -ms-transform: scale(1.06); transform: scale(1.06); }

.gh-card__badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  z-index: 2;
  line-height: 1.4;
}

.gh-card__badge--hot  { background: #4e95ff; color: #fff; }
.gh-card__badge--new  { background: #22c55e; color: #fff; }
.gh-card__badge--soon { background: rgba(255,255,255,0.15); color: #fff; }

.gh-card__info {
  padding: 0.65rem 0.75rem 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 3.5rem;
}

.gh-card__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gh-card__price {
  font-size: 0.78rem;
  font-weight: 700;
  color: #4e95ff;
  margin-top: auto;
}

.gh-card__price span { font-weight: 400; color: #8a9ab0; }
.gh-card__price--soon { color: #8a9ab0; font-weight: 600; }

.gh-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: #8a9ab0;
}

/* Why Skynode section */
.gh-why { padding: 4rem 0 5rem; background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }

.gh-why__container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.gh-why__title { margin-bottom: 2.5rem; }

.gh-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.gh-why__item {
  background: #111520;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  -webkit-transition: border-color 0.2s, -webkit-transform 0.2s;
          transition: border-color 0.2s, transform 0.2s;
}

.gh-why__item:hover {
  border-color: rgba(78,149,255,0.25);
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

.gh-why__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(78,149,255,0.1);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #4e95ff;
  margin-bottom: 1rem;
}

.gh-why__item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.gh-why__item-text {
  font-size: 0.88rem;
  color: #8a9ab0;
  line-height: 1.65;
}

/* Also fix main home hero brightness */
.home-page .main-screen__bg {
  -webkit-filter: brightness(0.28) !important;
          filter: brightness(0.28) !important;
}

/* ── Team cards (about page) ──────────────────────────────── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 64em) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

.team-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  background: #111520;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  padding: 1.5rem;
  -webkit-transition: border-color 0.2s, -webkit-box-shadow 0.2s;
          transition: border-color 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  border-color: rgba(78,149,255,0.3);
  -webkit-box-shadow: 0 8px 32px rgba(78,149,255,0.08);
          box-shadow: 0 8px 32px rgba(78,149,255,0.08);
}

/* Square photo */
.team-card__photo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(78,149,255,0.2);
  background: #0d1018;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Body */
.team-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.team-card__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
}

.team-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.team-card__role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4e95ff;
}

.team-card__bio {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #8a9ab0;
}

/* Contact links */
.team-card__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.team-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.1);
  -webkit-transition: background 0.18s, border-color 0.18s, color 0.18s;
          transition: background 0.18s, border-color 0.18s, color 0.18s;
  text-decoration: none;
}

.team-card__link--email {
  color: #8a9ab0;
}
.team-card__link--email:hover {
  background: rgba(78,149,255,0.12);
  border-color: rgba(78,149,255,0.4);
  color: #4e95ff;
}

.team-card__link--linkedin {
  color: #8a9ab0;
}
.team-card__link--linkedin:hover {
  background: rgba(10,102,194,0.15);
  border-color: rgba(10,102,194,0.5);
  color: #0a66c2;
}

@media (max-width: 29.99875em) {
  .team-card { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
  .team-card__photo { width: 80px; height: 80px; }
}

/* ============================================================
   GLOBAL UI POLISH — comprehensive improvements
   ============================================================ */

/* ── Nav link hover / active states ─────────────────────── */

.menu__link,
.menu__sublink {
  position: relative;
  -webkit-transition: color 0.2s;
          transition: color 0.2s;
}

@media (any-hover: hover) {
  .menu__link:hover,
  .menu__sublink:hover {
    color: #4e95ff;
  }
}

/* Underline slide-in on nav links */
.menu__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4e95ff;
  border-radius: 1px;
  -webkit-transition: width 0.25s;
          transition: width 0.25s;
}

@media (any-hover: hover) {
  .menu__link:hover::after { width: 100%; }
}

/* ── Eyebrow label — standard component ─────────────────── */

.map__eyebrow,
.gh-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4e95ff;
  padding: 0.2rem 0.7rem;
  background: rgba(78,149,255,0.1);
  border: 1px solid rgba(78,149,255,0.25);
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* Hero badge pulse animation */
@-webkit-keyframes badge-pulse {
  0%, 100% { -webkit-box-shadow: 0 0 0 0 rgba(78,149,255,0.4); box-shadow: 0 0 0 0 rgba(78,149,255,0.4); }
  50% { -webkit-box-shadow: 0 0 0 6px rgba(78,149,255,0); box-shadow: 0 0 0 6px rgba(78,149,255,0); }
}
@keyframes badge-pulse {
  0%, 100% { -webkit-box-shadow: 0 0 0 0 rgba(78,149,255,0.4); box-shadow: 0 0 0 0 rgba(78,149,255,0.4); }
  50% { -webkit-box-shadow: 0 0 0 6px rgba(78,149,255,0); box-shadow: 0 0 0 6px rgba(78,149,255,0); }
}

.main-screen__subtitle {
  -webkit-animation: badge-pulse 3s ease-in-out infinite;
          animation: badge-pulse 3s ease-in-out infinite;
}

/* ── Footer link hover refinement ───────────────────────── */

.footer__links-link {
  -webkit-transition: color 0.2s, padding-left 0.2s;
          transition: color 0.2s, padding-left 0.2s;
}

@media (any-hover: hover) {
  .footer__links-link:hover {
    color: #4e95ff;
    padding-left: 4px;
  }
}

/* ── Social icon hover glow ─────────────────────────────── */

.footer__social-link {
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
          transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}

@media (any-hover: hover) {
  .footer__social-link:hover {
    opacity: 0.8;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}

/* ── How-it-works section ────────────────────────────────── */

.how-it-works__step {
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
}

@media (any-hover: hover) {
  .how-it-works__step:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}

.how-it-works__step-num {
  background: linear-gradient(135deg, #0050c7, #4e95ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Selector / game slider polish ──────────────────────── */

.selector__slide {
  -webkit-transition: -webkit-transform 0.25s, -webkit-box-shadow 0.25s;
          transition: transform 0.25s, box-shadow 0.25s;
  border-radius: 10px;
  overflow: hidden;
}

@media (any-hover: hover) {
  .selector__slide:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  }
}

/* ── Homepage CTA section ────────────────────────────────── */

.homepage-cta {
  position: relative;
  background: linear-gradient(135deg, #0d1828 0%, #091220 100%);
  border-top: 1px solid rgba(78,149,255,0.1);
  border-bottom: 1px solid rgba(78,149,255,0.1);
  text-align: center;
  padding: 5rem 0;
}

.homepage-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,80,199,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.homepage-cta__title { margin-bottom: 0.75rem; }
.homepage-cta__text  { margin-bottom: 2rem; }

.homepage-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.homepage-cta__container {
  position: relative;
  z-index: 1;
}

/* ── Team card hover lift ────────────────────────────────── */

.team-card {
  -webkit-transition: -webkit-transform 0.25s, -webkit-box-shadow 0.25s;
          transition: transform 0.25s, box-shadow 0.25s;
}

@media (any-hover: hover) {
  .team-card:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-box-shadow: 0 12px 36px rgba(0,0,0,0.4);
            box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  }
}

/* ── Why-Skynode cards ───────────────────────────────────── */

.gh-why__item {
  position: relative;
  overflow: hidden;
}

.gh-why__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(78,149,255,0.06) 0%, transparent 60%);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
          transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .gh-why__item:hover::before { opacity: 1; }
  .gh-why__item:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    border-color: rgba(78,149,255,0.3);
    -webkit-box-shadow: 0 10px 30px rgba(0,80,199,0.2);
            box-shadow: 0 10px 30px rgba(0,80,199,0.2);
  }
}

.gh-why__icon {
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
}

@media (any-hover: hover) {
  .gh-why__item:hover .gh-why__icon {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}

/* ── Game card image zoom on hover ──────────────────────── */

.gh-card__img-wrap {
  overflow: hidden;
}

.gh-card__img-wrap img {
  -webkit-transition: -webkit-transform 0.4s ease;
          transition: transform 0.4s ease;
}

@media (any-hover: hover) {
  .gh-card:hover .gh-card__img-wrap img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

/* ── Moto / stats section — stat value accent ───────────── */

.moto__stat-value {
  background: linear-gradient(135deg, #fff 60%, #8ab8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section entry animation — handled by .sr-hidden/.sr-visible ─ */

/* ── Improve spacing on main hero on wide screens ────────── */

@media (min-width: 75em) {
  .home-page .main-screen__container {
    gap: 5rem !important;
  }
}

/* ── Map section — stronger eyebrow pill ────────────────── */

.map__eyebrow {
  display: inline-block;
  background: rgba(78,149,255,0.1);
  border: 1px solid rgba(78,149,255,0.25);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
}

/* ── Back-to-top button — brighter on hover ─────────────── */

@media (any-hover: hover) {
  .back-to-top:hover {
    background-color: #4e95ff;
    -webkit-box-shadow: 0 4px 16px rgba(78,149,255,0.45);
            box-shadow: 0 4px 16px rgba(78,149,255,0.45);
  }
}

/* ── Review section — star-rating visual ────────────────── */

.review__rating::before {
  content: "★★★★★";
  color: #f5b942;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.35rem;
  letter-spacing: 0.05em;
}

/* ── Feature buttons section ─────────────────────────────── */

.main-feature__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── Game hosting hero badges ────────────────────────────── */

.gh-hero__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.gh-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

/* ── About page hero — single-col center ────────────────── */

.about-page .main-screen__container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

/* ── Statistics counter — gradient accent ───────────────── */

.statistics__value {
  background: linear-gradient(135deg, #fff 55%, #8ab8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   FULL UI/UX REVIEW — GLOBAL FIXES
   ============================================================ */

/* ── CSS custom properties (brand tokens) ─────────────────── */

:root {
  --clr-primary:       #0050c7;
  --clr-primary-mid:   #1a6aef;
  --clr-primary-light: #4e95ff;
  --clr-primary-pale:  #8ab8ff;
  --clr-primary-dark:  #003fa0;
  --clr-bg-deep:       #0b0e14;
  --clr-bg-card:       #141a24;
  --clr-bg-card-alt:   #1a2235;
  --clr-text:          #fff;
  --clr-text-soft:     #8a9ab0;
  --clr-text-muted:    #c8d8ea;
  --radius-card:       0.625rem;
  --radius-btn:        0.375rem;
}

/* ── Nav active-page indicator ───────────────────────────── */

/* JS sets .menu__link--active on the link matching window.location */
.menu__link--active {
  color: #4e95ff !important;
}

.menu__link--active::after {
  width: 100% !important;
}

/* Sublink active state */
.menu__sublink--active {
  color: #4e95ff !important;
  background-color: rgba(78, 149, 255, 0.1) !important;
}

/* ── Hero subtitle — semantic element fix ────────────────── */

/* The old h4.main-screen__subtitle is now p.main-screen__subtitle
   — keep existing styling, no visual change */
p.main-screen__subtitle {
  display: inline-block;
}

/* ── Section title bottom margins — unified ──────────────── */

.awesome__title,
.plans__title,
.compare__title,
.faq__title,
.server__title,
.protection__title,
.panel__title,
.map__title,
.main-feature__title,
.selector__title,
.reviews__title,
.mission__title,
.how-it-works__title,
.gh-games__title,
.gh-why__title {
  margin-bottom: 1.25rem;
}

.moto__title,
.homepage-cta__title {
  margin-bottom: 0.875rem;
}

/* ── Consistent section vertical padding ─────────────────── */

/* Sections that had no explicit padding inherit a comfortable default */
.compare,
.faq {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* ── Card border-radius — use one value sitewide ─────────── */

.plan__body,
.review,
.awesome__item,
.faq__item,
.choose__item,
.mission__item,
.partners__item,
.gh-card,
.gh-why__item {
  border-radius: var(--radius-card);
}

/* ── Body text line-height — comfortable reading ──────────── */

.awesome__item-text,
.main-feature__item-text,
.server__text p,
.protection__text,
.faq__item-text,
.plan__item {
  line-height: 1.7;
}

/* ── Plan feature list items ─────────────────────────────── */

.plan__item {
  font-size: 0.88rem;
  padding: 0.35rem 0;
}

/* ── Button sizing — consistent height across variants ────── */

.button--blue,
.button--gray {
  min-height: 2.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ── Compare table — improve readability ─────────────────── */

.compare__item {
  font-size: 0.88rem;
}

/* ── FAQ item title sizing — handled by accordion block above ── */

/* ── Moto / homepage stats strip ────────────────────────── */

.moto__stat {
  text-align: center;
}

.moto__stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ── Map section padding on game pages ───────────────────── */

.specific-page .map {
  padding: 4rem 0 5rem;
}

/* ── Scroll-reveal subtle entry animation ────────────────── */

.sr-hidden {
  opacity: 0;
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
          transition: opacity 0.5s ease, transform 0.5s ease;
}

.sr-visible {
  opacity: 1 !important;
  -webkit-transform: none !important;
          transform: none !important;
}

/* ── Review cards — readability improvements ─────────────── */

.review__title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.review__text {
  font-size: 0.88rem;
}

.review__author {
  font-weight: 700;
  font-size: 0.82rem;
  margin-top: 0.75rem;
}

/* ── Footer section title spacing ───────────────────────── */

.footer__title {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* ── Selector / game carousel padding ───────────────────── */

.selector__cta {
  padding-top: 2rem;
  text-align: center;
}

/* ── Game hosting page — card name size ──────────────────── */

.gh-card__name {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

/* ── Responsive: section title sizes ─────────────────────── */

@media (max-width: 47.99875em) {
  .awesome__title,
  .plans__title,
  .compare__title,
  .faq__title,
  .server__title,
  .protection__title,
  .panel__title,
  .map__title,
  .main-feature__title,
  .selector__title,
  .reviews__title,
  .mission__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

/* ============================================================
   REVIEWS CAROUSEL — compact scroll-snap slider (homepage only)
   All rules scoped to .home-page so game/about pages are untouched
   ============================================================ */

.home-page .reviews {
  padding: 2.25rem 0 2rem;
  overflow: hidden;
}

.home-page .reviews__container {
  max-width: 82rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Header row: title + nav arrows */
.home-page .reviews__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1rem;
}

.home-page .reviews__head-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.home-page .reviews__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
  margin-bottom: 0 !important;
  white-space: nowrap;
}

.home-page .reviews__rated {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
}

/* Prev/Next arrow buttons */
.reviews__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.reviews__nav-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(78, 149, 255, 0.3);
  background: rgba(78, 149, 255, 0.08);
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.2s, border-color 0.2s, -webkit-transform 0.2s;
          transition: background 0.2s, border-color 0.2s, transform 0.2s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.reviews__nav-btn:hover {
  background: rgba(78, 149, 255, 0.2);
  border-color: rgba(78, 149, 255, 0.6);
  -webkit-transform: scale(1.08);
      -ms-transform: scale(1.08);
          transform: scale(1.08);
}

.reviews__nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

/* Scrollable track */
.reviews__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 0.2rem 0 0.75rem;
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

/* Individual review card — compact */
.reviews__track .review {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  scroll-snap-align: start;
  width: calc(33.333% - 0.667rem);
  min-width: 240px;
  max-width: 300px;
  padding: 0.85rem 1rem 0.8rem;
  border-radius: 0.75rem;
}

.reviews__track .review__rating {
  margin-bottom: 0.2rem;
}

.reviews__track .review__time {
  font-size: 0.67rem;
  opacity: 0.6;
}

.reviews__track .review__title {
  font-size: 0.82rem !important;
  margin-bottom: 0.3rem !important;
  line-height: 1.35 !important;
}

.reviews__track .review__text {
  font-size: 0.78rem !important;
  line-height: 1.5 !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.reviews__track .review__author {
  font-size: 0.75rem !important;
  margin-top: 0.45rem !important;
}

.reviews__track .review__source {
  font-size: 0.68rem !important;
}

.reviews__track .review__rating::before {
  font-size: 0.7rem !important;
  margin-bottom: 0.15rem !important;
}

/* Dot indicators */
.reviews__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.75rem;
}

.reviews__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-transition: background 0.2s, -webkit-transform 0.2s;
          transition: background 0.2s, transform 0.2s;
}

.reviews__dot--active {
  background: #4e95ff;
  -webkit-transform: scale(1.35);
      -ms-transform: scale(1.35);
          transform: scale(1.35);
}

@media (max-width: 61.99875em) {
  .reviews__track .review {
    width: calc(50% - 0.5rem);
    min-width: 220px;
  }
}

@media (max-width: 37.49875em) {
  .reviews__track .review {
    width: 80vw;
    min-width: 240px;
    max-width: 300px;
  }
}

/* ── Global container max-width harmony ──────────────────── */

/* how-it-works uses rem-based max-width (was 1140px) */
.how-it-works__container {
  max-width: 74rem;
}

/* ============================================================
   PROMO BANNER — dismissible seasonal banner (#19)
   ============================================================ */

.promo-banner {
  position: relative;
  background: linear-gradient(90deg, #003fa0 0%, #0050c7 50%, #003fa0 100%);
  text-align: center;
  padding: 0.625rem 3rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  z-index: 1100;
  border-bottom: 1px solid rgba(78,149,255,0.3);
  -webkit-transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
          transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
  overflow: hidden;
  max-height: 5rem;
}

.promo-banner--hidden {
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  opacity: 0 !important;
  pointer-events: none;
}

.promo-banner__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.promo-banner__close {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.25rem;
  -webkit-transition: color 0.2s, -webkit-transform 0.2s;
          transition: color 0.2s, transform 0.2s;
}

.promo-banner__close:hover {
  color: #fff;
  -webkit-transform: translateY(-50%) scale(1.15);
      -ms-transform: translateY(-50%) scale(1.15);
          transform: translateY(-50%) scale(1.15);
}

/* Push header down when banner is visible */
.has-promo-banner .header {
  top: var(--banner-h, 0px);
}

/* ============================================================
   TRUST STRIP — prominent stats bar (#4 + #5)
   ============================================================ */

.trust-strip {
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(78,149,255,0.1);
  padding: 0.85rem 1rem;
}

.trust-strip__container {
  max-width: 82rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

.trust-strip__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #c8d8ea;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.trust-strip__item svg {
  color: #4e95ff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.trust-strip__sep {
  width: 1px;
  height: 1.1rem;
  background: rgba(255,255,255,0.1);
}

@media (max-width: 47.99875em) {
  .trust-strip__sep { display: none; }
  .trust-strip { padding: 0.7rem 1rem; }
}

/* ============================================================
   STATUS BADGE — "All Systems Operational" indicator (#16)
   ============================================================ */

.status-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 100px;
  padding: 0.25rem 0.65rem;
  text-decoration: none;
  -webkit-transition: background 0.2s, border-color 0.2s;
          transition: background 0.2s, border-color 0.2s;
}

.status-badge:hover {
  background: rgba(34,197,94,0.14);
  border-color: rgba(34,197,94,0.4);
}

.status-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  -webkit-animation: status-pulse 2s ease-in-out infinite;
          animation: status-pulse 2s ease-in-out infinite;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@-webkit-keyframes status-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@keyframes status-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ============================================================
   DISCORD CTA SECTION (#12)
   ============================================================ */

.discord-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0d1420 0%, #0b0f1a 100%);
  border-top: 1px solid rgba(88,101,242,0.15);
  border-bottom: 1px solid rgba(88,101,242,0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.discord-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(88,101,242,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.discord-cta__container {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.discord-cta__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(88,101,242,0.15);
  border: 1px solid rgba(88,101,242,0.3);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  color: #7289da;
  -webkit-transition: background 0.25s, -webkit-transform 0.25s;
          transition: background 0.25s, transform 0.25s;
}

.discord-cta:hover .discord-cta__icon {
  background: rgba(88,101,242,0.25);
  -webkit-transform: scale(1.06);
      -ms-transform: scale(1.06);
          transform: scale(1.06);
}

.discord-cta__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.875rem;
  line-height: 1.15;
}

.discord-cta__text {
  font-size: 1rem;
  line-height: 1.65;
  color: #8a9ab0;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.discord-cta__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.25rem;
  background: #5865f2;
  color: #fff;
  border-radius: var(--radius-btn, 0.375rem);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  -webkit-transition: background 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
          transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.discord-cta__btn:hover {
  background: #4752c4;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 28px rgba(88,101,242,0.4);
          box-shadow: 0 8px 28px rgba(88,101,242,0.4);
}

.discord-cta__members {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: #8a9ab0;
}

.discord-cta__members strong {
  color: #c8d8ea;
}

@media (max-width: 47.99875em) {
  .discord-cta { padding: 3.5rem 0; }
}

/* ============================================================
   BREADCRUMBS (#9)
   ============================================================ */

.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.78rem;
  color: #8a9ab0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.breadcrumb__container {
  max-width: 82rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}

.breadcrumb__link {
  color: #8a9ab0;
  text-decoration: none;
  -webkit-transition: color 0.2s;
          transition: color 0.2s;
}

.breadcrumb__link:hover {
  color: #4e95ff;
}

.breadcrumb__sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.7rem;
}

.breadcrumb__current {
  color: #c8d8ea;
  font-weight: 600;
}

/* ============================================================
   NAV — Blog/KB link styling (#18)
   ============================================================ */

/* Blog link badge */
.menu__link--blog::after {
  display: none !important;
}

/* ============================================================
   CROSS-LINK SECTION (#8)
   ============================================================ */

.crosslink {
  padding: 3.5rem 0;
  background: rgba(255,255,255,0.018);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.crosslink__container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  text-align: center;
}

.crosslink__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.crosslink__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.crosslink__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.5rem;
  color: #c8d8ea;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  -webkit-transition: background 0.18s, border-color 0.18s, color 0.18s, -webkit-transform 0.18s;
          transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
}

.crosslink__item:hover {
  background: rgba(78,149,255,0.1);
  border-color: rgba(78,149,255,0.3);
  color: #fff;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* ============================================================
   AFFILIATE PAGE (#17)
   ============================================================ */

.affiliate-hero {
  padding: 0;
  text-align: center;
  background: linear-gradient(180deg, #091220 0%, #0b0e14 100%);
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 66vh;
}

.affiliate-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  opacity: 0.22;
  pointer-events: none;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.affiliate-hero__container {
  max-width: 52rem;
  margin: 0 auto;
  padding: 7.6875rem clamp(1rem, 4vw, 2rem);
  position: relative;
  z-index: 1;
  width: 100%;
}

.affiliate-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4e95ff;
  background: rgba(78,149,255,0.1);
  border: 1px solid rgba(78,149,255,0.25);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.25rem;
}

.affiliate-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.affiliate-hero__sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #8a9ab0;
  margin-bottom: 2.25rem;
}

.affiliate-cards {
  padding: 4rem 0 5rem;
}

.affiliate-cards__container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.affiliate-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.affiliate-card {
  background: #111520;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  text-align: center;
  -webkit-transition: border-color 0.2s, -webkit-transform 0.2s;
          transition: border-color 0.2s, transform 0.2s;
}

.affiliate-card:hover {
  border-color: rgba(78,149,255,0.3);
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
}

.affiliate-card__num {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #8ab8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.affiliate-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.affiliate-card__text {
  font-size: 0.875rem;
  color: #8a9ab0;
  line-height: 1.65;
}

.affiliate-how {
  padding: 4rem 0 5rem;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.affiliate-how__container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  text-align: center;
}

.affiliate-faq {
  padding: 4rem 0 5rem;
}

.affiliate-faq__container {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Affiliate page — combined two-column final CTA */
.aff-final-cta {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, #050914 0%, #0b1629 50%, #050914 100%);
  position: relative;
  overflow: hidden;
}

.aff-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,80,199,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.aff-final-cta__container {
  position: relative;
  z-index: 1;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}

.aff-final-cta__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.aff-final-cta__divider {
  width: 1px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: rgba(255,255,255,0.1);
  min-height: 120px;
}

.aff-final-cta__title {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.625rem;
  line-height: 1.2;
}

.aff-final-cta__text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #8a9ab0;
  margin-bottom: 1.5rem;
}

.aff-final-cta__text strong { color: #c8d8ea; }

.aff-final-cta__btn {
  padding: 0.875rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-block;
}

/* Discord column */
.aff-final-cta__col--discord {
  text-align: left;
}

.aff-final-cta__discord-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(88,101,242,0.15);
  border: 1px solid rgba(88,101,242,0.3);
  border-radius: 50%;
  color: #7289da;
  margin-bottom: 1rem;
}

.aff-final-cta__discord-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: #5865f2;
  color: #fff;
  border-radius: var(--radius-btn, 0.375rem);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  -webkit-transition: background 0.2s, -webkit-transform 0.2s;
          transition: background 0.2s, transform 0.2s;
}

.aff-final-cta__discord-btn:hover {
  background: #4752c4;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

.aff-final-cta__members {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #8a9ab0;
}

@media (max-width: 47.99875em) {
  .aff-final-cta__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .aff-final-cta__divider {
    width: 100%;
    min-height: auto;
    height: 1px;
  }
  .aff-final-cta__col--discord { text-align: center; }
  .aff-final-cta__discord-icon { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   PARTNER PAGE — REIMAGINED
   ============================================================ */

/* Center both CTA columns on the partner page */
.partner-page .aff-final-cta__col {
  text-align: center;
}
.partner-page .aff-final-cta__col--discord {
  text-align: center;
}
.partner-page .aff-final-cta__discord-icon {
  margin-left: auto;
  margin-right: auto;
}

/* Center the hero content on the partner page */
.partner-page .main-screen__content {
  text-align: center;
}

/* Shared eyebrow label */
.partner-eyebrow,
.partner-section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4e95ff;
  background: rgba(78,149,255,0.1);
  border: 1px solid rgba(78,149,255,0.22);
  border-radius: 2rem;
  padding: 0.28rem 0.85rem;
  margin-bottom: 1rem;
}

.partner-eyebrow {
  margin-bottom: 1.5rem;
}

/* Hero bg dimming */
.partner-page .main-screen__bg {
  -webkit-filter: brightness(0.3);
          filter: brightness(0.3);
}

/* ── Who We're Scouting ──────────────────────────── */
.partner-types {
  padding: 4rem 0 3rem;
}

.partner-types__container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.partner-types__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, #fff 0%, #8ab8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partner-types__sub {
  font-size: 1rem;
  color: #8a9ab0;
  line-height: 1.65;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.partner-types__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partner-type-card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 240px;
          flex: 1 1 240px;
  max-width: 340px;
  background: linear-gradient(160deg, #141e30 0%, #1a2740 100%);
  border: 1px solid rgba(78,149,255,0.1);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  text-align: left;
  position: relative;
  -webkit-transition: border-color 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.partner-type-card:hover {
  border-color: rgba(78,149,255,0.35);
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 32px rgba(78,149,255,0.1);
          box-shadow: 0 10px 32px rgba(78,149,255,0.1);
}

.partner-type-card--featured {
  border-color: rgba(78,149,255,0.28);
  background: linear-gradient(160deg, #162040 0%, #1d2f58 100%);
}

.partner-type-card__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(78,149,255,0.18);
  color: #90c0ff;
  border: 1px solid rgba(78,149,255,0.3);
  border-radius: 2rem;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.85rem;
}

.partner-type-card__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.6rem;
  background: rgba(78,149,255,0.1);
  color: #4e95ff;
  margin-bottom: 1rem;
}

.partner-type-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
}

.partner-type-card__text {
  font-size: 0.875rem;
  color: #8a9ab0;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.partner-type-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}

.partner-type-card__list li {
  font-size: 0.82rem;
  color: #b0c0d8;
  padding-left: 1.1rem;
  position: relative;
}

.partner-type-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4e95ff;
  font-size: 0.72rem;
  line-height: 1.6;
}

/* ── Partner Perks ───────────────────────────────── */
.partner-perks {
  padding: 3.5rem 0 4rem;
  background: rgba(78,149,255,0.025);
  border-top: 1px solid rgba(78,149,255,0.07);
  border-bottom: 1px solid rgba(78,149,255,0.07);
}

.partner-perks__container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.partner-perks__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, #fff 0%, #8ab8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partner-perks__sub {
  font-size: 1rem;
  color: #8a9ab0;
  line-height: 1.65;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}

.partner-perks__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.25rem 1fr 1.25rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.partner-perk {
  max-width: 100%;
  background: linear-gradient(160deg, #141a24 0%, #1a2235 100%);
  border: 1px solid rgba(78,149,255,0.1);
  border-radius: 0.875rem;
  padding: 1.5rem 1.25rem;
  text-align: left;
}

.partner-perk__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(78,149,255,0.1);
  color: #4e95ff;
  margin-bottom: 0.85rem;
}

.partner-perk__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.45rem;
}

.partner-perk__text {
  font-size: 0.82rem;
  color: #8a9ab0;
  line-height: 1.6;
}

/* ── 3-Step Process ──────────────────────────────── */
.partner-process {
  padding: 4rem 0;
}

.partner-process__container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.partner-process__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 2.5rem;
  background: linear-gradient(90deg, #fff 0%, #8ab8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Partner cards — improved ────────────────────── */
.partners__sub {
  text-align: center;
  color: #8a9ab0;
  font-size: 0.95rem;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}

.partners__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.65rem;
}

.partners__item-cta {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #4e95ff;
  margin-top: auto;
  padding-top: 0.5rem;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

.partners__item:hover .partners__item-cta {
  color: #7ab8ff;
}

/* Platform badges */
.partner-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2rem;
  padding: 0.18rem 0.55rem;
  white-space: nowrap;
}

.partner-badge--twitch {
  background: rgba(145,70,255,0.15);
  color: #c09aff;
  border: 1px solid rgba(145,70,255,0.3);
}

.partner-badge--youtube {
  background: rgba(255,60,60,0.12);
  color: #ff9090;
  border: 1px solid rgba(255,60,60,0.25);
}

.partner-badge--community {
  background: rgba(255,160,50,0.12);
  color: #ffcc80;
  border: 1px solid rgba(255,160,50,0.25);
}

.partner-badge--site {
  background: rgba(78,149,255,0.12);
  color: #90bfff;
  border: 1px solid rgba(78,149,255,0.25);
}

/* Replace "Visit Site" text link in item-info */
.partners__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* Hide old item-link text (replaced by partner-badge + item-cta) */
.partners__item-link {
  display: none;
}

/* Responsive */
@media (max-width: 61.99875em) {
  .partner-perks__grid {
    -ms-grid-columns: 1fr 1.25rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 47.99875em) {
  .partner-types__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .partner-type-card {
    max-width: 100%;
    width: 100%;
  }
  .partner-perks__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.affiliate-section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(90deg, #fff 0%, #8ab8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   SUPPORT PAGE
   ============================================================ */

/* Hero */
.support-hero {
  padding: 0;
  text-align: center;
  background: linear-gradient(180deg, #091220 0%, #0b0e14 100%);
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 66vh;
}

.support-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  opacity: 0.22;
  pointer-events: none;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.support-hero__container {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  padding: 7.6875rem 1.25rem;
  width: 100%;
}

.support-hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #4e95ff;
  background: rgba(78,149,255,0.12);
  border: 1px solid rgba(78,149,255,0.25);
  border-radius: 2rem;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.support-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff 0%, #8ab8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.support-hero__sub {
  font-size: 1.05rem;
  color: #8a9ab0;
  line-height: 1.65;
  max-width: 40rem;
  margin: 0 auto;
}

/* Channel cards grid */
.support-channels {
  padding: 2rem 0 3.5rem;
}

.support-channels__container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.support-card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 260px;
          flex: 1 1 260px;
  background: linear-gradient(160deg, #141e30 0%, #1a2740 100%);
  border: 1px solid rgba(78,149,255,0.12);
  border-radius: 1rem;
  padding: 2rem 1.75rem 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  -webkit-transition: border-color 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(78,149,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.support-card:hover {
  border-color: rgba(78,149,255,0.4);
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 40px rgba(78,149,255,0.12);
          box-shadow: 0 12px 40px rgba(78,149,255,0.12);
}

.support-card--featured {
  border-color: rgba(78,149,255,0.3);
  background: linear-gradient(160deg, #152040 0%, #1d2f58 100%);
}

.support-card--featured::before {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(78,149,255,0.14) 0%, transparent 70%);
}

.support-card__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.6rem;
  background: rgba(78,149,255,0.12);
  color: #4e95ff;
  margin-bottom: 0.25rem;
}

.support-card__icon--discord {
  background: rgba(88,101,242,0.15);
  color: #7289da;
}

.support-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.support-card__badge--kb {
  background: rgba(78,149,255,0.1);
  color: #6aaaff;
  border: 1px solid rgba(78,149,255,0.2);
}

.support-card__badge--ticket {
  background: rgba(78,149,255,0.18);
  color: #90c0ff;
  border: 1px solid rgba(78,149,255,0.35);
}

.support-card__badge--discord {
  background: rgba(88,101,242,0.15);
  color: #a0aaff;
  border: 1px solid rgba(88,101,242,0.3);
}

.support-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.support-card__text {
  font-size: 0.9rem;
  color: #8a9ab0;
  line-height: 1.65;
  margin: 0;
}

.support-card__list {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.45rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.support-card__list li {
  font-size: 0.85rem;
  color: #b0c0d8;
  padding-left: 1.1rem;
  position: relative;
}

.support-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4e95ff;
  font-size: 0.75rem;
  line-height: 1.5;
}

.support-card--featured .support-card__list li::before {
  color: #7ab8ff;
}

.support-card__cta {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #4e95ff;
  letter-spacing: 0.02em;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

.support-card:hover .support-card__cta {
  color: #7ab8ff;
}

/* FAQ section */
.support-faq {
  padding: 2rem 0 3.5rem;
}

.support-faq__container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.support-faq__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #fff 0%, #8ab8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.support-faq__items {
  gap: 0.5rem;
}

/* Status strip */
.support-status {
  padding: 1.25rem 0 2rem;
}

.support-status__container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  background: rgba(78,149,255,0.06);
  border: 1px solid rgba(78,149,255,0.15);
  border-radius: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
}

.support-status__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}

.support-status__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  -webkit-box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
          box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  -webkit-animation: status-pulse 2.5s infinite;
          animation: status-pulse 2.5s infinite;
}

.support-status__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #b0c8a0;
}

.support-status__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4e95ff;
  text-decoration: none;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

.support-status__link:hover { color: #7ab8ff; }

/* Responsive */
@media (max-width: 47.99875em) {
  .support-channels__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .support-card {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
  .support-hero { padding: 3rem 0 2rem; }
}
