:root {
  --bg: #06070b;
  --bg-soft: #0b0e15;
  --panel: rgba(15, 18, 28, 0.72);
  --panel-strong: rgba(10, 12, 18, 0.92);
  --line: rgba(255,255,255,0.08);
  --text: #f3f5fa;
  --muted: rgba(235, 239, 247, 0.72);
  --pink: #ff4fd8;
  --purple: #865dff;
  --cyan: #5fe7ff;
  --gold: #e2bf6f;
  --shadow: 0 28px 90px rgba(0,0,0,0.45);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(circle at top left, rgba(255,79,216,0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(95,231,255,0.12), transparent 24%),
    linear-gradient(180deg, #06070b 0%, #070911 45%, #05060a 100%);
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 90%);
}

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

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(4,6,10,0.78) 0%, rgba(4,6,10,0.34) 72%, rgba(4,6,10,0) 100%);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 18px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.94);
}

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

.nav a {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color .2s ease, opacity .2s ease;
}

.nav a:hover { color: #fff; }

.nav a,
.feature-grid > a,
.info-card a {
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(6,7,11,0.84) 12%, rgba(6,7,11,0.34) 56%, rgba(6,7,11,0.78) 100%), url('assets/hero2.png');
  background-size: cover;
  background-position: center 100%;
  background-repeat: no-repeat;
  transform: scale(1.03);
  filter: saturate(0.94) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,79,216,0.18), transparent 25%), radial-gradient(circle at 80% 20%, rgba(95,231,255,0.12), transparent 20%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 132px 0 72px;
}

.eyebrow,
.card-kicker,
.micro-label,
.server-badge,
.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  max-width: 720px;
}

.hero-text,
.section-heading p,
.server-card p,
.info-card p,
.stat-card p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.hero-text {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.96rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 18px 40px rgba(134, 93, 255, 0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
}

.hero-micro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hero-micro-grid article,
.stat-card,
.mini-panel,
.server-card,
.info-card {
  background: var(--panel);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(0,0,0,0.26);
}

.hero-micro-grid article {
  padding: 20px;
}

.hero-micro-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.02rem;
}

.micro-label,
.card-kicker,
.stat-label {
  color: rgba(255,255,255,0.52);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-visual-shell {
  position: relative;
  right: auto;
  top: auto;
  width: min(100%, 640px);
  background: rgba(8,11,18,0.18);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 30px;
  padding: 10px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
}

.hero-visual-shell img,
.image-card img,
.showcase-large img,
.showcase-stack img,
.gallery-card img,
.setup-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
}

.floating-stat {
  position: absolute;
  padding: 12px 16px;
  min-width: 148px;
  border-radius: 18px;
  background: rgba(8,11,18,0.88);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.floating-stat span {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 0.76rem;
  margin-bottom: 6px;
}

.floating-stat strong {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-b { right: 16px; bottom: -18px; left: auto; }

.section {
  padding: 110px 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 18px;
}

.stats-layout,
.setup-grid,
.showcase-grid,
.gallery-grid {
  display: grid;
  gap: 22px;
}

.stats-layout {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.stat-card {
  padding: 28px;
}

.stat-card.feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-card h3,
.server-card h3,
.info-card h3,
.showcase-copy h3 {
  margin: 10px 0 14px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.stat-row strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1;
}

.image-card {
  padding: 10px;
  min-height: 100%;
}

.feature-grid,
.server-grid {
  display: grid;
  gap: 20px;
}

.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 22px; }
.server-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.feature-grid > a {
  display: block;
}

.mini-panel,
.server-card,
.info-card {
  height: 100%;
}

.mini-panel:hover,
.server-card:hover,
.info-card:hover,
.feature-grid > a:hover .mini-panel {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  background: rgba(18, 22, 34, 0.82);
}

.mini-panel,
.server-card,
.info-card {
  padding: 24px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.showcase-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.showcase-large,
.showcase-stack,
.gallery-card,
.setup-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.showcase-large {
  min-height: 640px;
}

.showcase-large img {
  position: absolute;
  inset: 0;
}

.showcase-large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(6,7,11,0.9) 100%);
}

.showcase-copy {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 1;
}

.showcase-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  padding: 10px;
}

.gallery-grid {
  grid-template-columns: 1fr 0.8fr;
  margin-top: 22px;
}

.gallery-card { min-height: 320px; }
.gallery-card img { height: 100%; }

.info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card a {
  width: fit-content;
}

.info-card a:hover {
  color: #fff;
}

.server-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.rust { background: rgba(255, 137, 61, 0.16); color: #ffb37a; }
.dayz { background: rgba(110, 255, 123, 0.12); color: #9cffaa; }
.arma { background: rgba(95, 231, 255, 0.12); color: #8aefff; }

.server-lead { margin-top: 0; }
.server-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.server-card li + li {
  margin-top: 4px;
}

.section-setup {
  padding-top: 80px;
}

.setup-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
}

.setup-card {
  min-height: 620px;
  padding: 10px;
}

.reveal { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }


@media (max-width: 1080px) {
  .hero-grid,
  .stats-layout,
  .showcase-grid,
  .gallery-grid,
  .setup-grid,
  .feature-grid,
  .server-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-visual {
    min-height: 580px;
    justify-content: center;
  }

  .stat-b {
    right: 14px;
    bottom: 14px;
    left: auto;
  }

  .feature-grid,
  .server-grid {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-grid {
    padding: 88px 0 48px;
    gap: 24px;
  }

  .section {
    padding: 80px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 12vw, 4.3rem);
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* 1) Hero info panels: smaller, keep 3-up */
  .hero-micro-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .hero-micro-grid article {
    padding: 14px 12px;
    border-radius: 22px;
  }

  .micro-label {
    display: block;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    line-height: 1.25;
  }

  .hero-micro-grid strong {
    margin-top: 7px;
    font-size: 0.86rem;
    line-height: 1.28;
    word-break: break-word;
  }

  .hero-micro-grid article:nth-child(3) strong {
    font-size: 0.78rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual-shell {
    width: 100%;
    max-width: none;
  }

  .floating-stat {
    right: 12px;
    bottom: -8px;
  }

  .floating-stat strong {
    font-size: 1.5rem;
  }

  .showcase-large {
    min-height: 420px;
  }

  .setup-card {
    min-height: 360px;
  }

  /* 2) Account panels */
  .feature-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .feature-grid > a {
    min-width: 0;
    width: auto;
    scroll-snap-align: start;
  }

  .feature-grid > a .mini-panel {
    height: 100%;
  }

  /* 3) Gallery swipe */
  .gallery-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-top: 22px;
  }

  .gallery-grid > * {
    min-width: 0;
    width: auto;
    scroll-snap-align: start;
  }

  .gallery-card {
    min-height: 250px;
  }

  .gallery-card img {
    height: 100%;
  }

  /* 4) Server panels */
  .server-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .server-grid > * {
    min-width: 0;
    width: auto;
    scroll-snap-align: start;
  }

  .server-card {
    min-height: 100%;
  }

  /* nicer mobile overflow handling */
  .feature-grid,
  .gallery-grid,
  .server-grid {
    scrollbar-width: thin;
  }
}


/* Clickable profile cards */
.feature-grid > a {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.feature-grid > a .mini-panel {
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.feature-grid > a .mini-panel::after {
  content: "View profile →";
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.64);
  transition: transform .22s ease, color .22s ease, opacity .22s ease;
}

.feature-grid > a:hover .mini-panel,
.feature-grid > a:focus-visible .mini-panel {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(18, 22, 34, 0.88);
  box-shadow: 0 22px 54px rgba(0,0,0,0.34);
}

.feature-grid > a:hover .mini-panel::after,
.feature-grid > a:focus-visible .mini-panel::after {
  color: rgba(255,255,255,0.96);
  transform: translateX(4px);
}

.feature-grid > a:nth-child(1) .card-kicker {
  color: #ffb37a;
}

.feature-grid > a:nth-child(2) .card-kicker {
  color: #a8b1ff;
}

.feature-grid > a:nth-child(3) .card-kicker {
  color: #8aefff;
}


.see-more-clips {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.25s ease;
}

.see-more-clips:hover {
  color: #ffffff;
  transform: translateX(6px);
}

.server-card:hover .see-more-clips {
  color: #ffffff;
  transform: translateX(6px);
}


/* ===== MOBILE SHOWCASE SWIPE FIX ===== */
@media (max-width: 768px) {
  /* Put every showcase item in one horizontal swipe lane */
  .showcase-grid,
  .showcase-row,
  .shots-showcase,
  .gallery-showcase,
  .showcase-cards {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: 86% !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-x: contain !important;
    scroll-snap-type: x proximity !important;
    -webkit-overflow-scrolling: touch !important;
    align-items: stretch !important;
    padding-bottom: 8px !important;
  }

  .showcase-grid > *,
  .showcase-row > *,
  .shots-showcase > *,
  .gallery-showcase > *,
  .showcase-cards > * {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    scroll-snap-align: start !important;
  }

  .showcase-grid .media-card-link,
  .showcase-row .media-card-link,
  .shots-showcase .media-card-link,
  .gallery-showcase .media-card-link,
  .showcase-cards .media-card-link {
    display: block !important;
    width: 100% !important;
  }

  .showcase-grid .media-card,
  .showcase-row .media-card,
  .shots-showcase .media-card,
  .gallery-showcase .media-card,
  .showcase-cards .media-card {
    width: 100% !important;
    min-height: 100% !important;
  }
}




/* ===== CLEAN MOBILE SHOWCASE FIX ===== */
.spotlight-mobile-swipe {
  display: none;
}

@media (max-width: 768px) {
  .showcase-desktop-layout {
    display: none !important;
  }

  .spotlight-mobile-swipe {
    display: flex !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 10px !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    overscroll-behavior-x: contain !important;
  }

  .spotlight-mobile-swipe::-webkit-scrollbar {
    height: 6px;
  }

  .spotlight-mobile-card {
    flex: 0 0 84% !important;
    min-width: 84% !important;
    width: 84% !important;
    scroll-snap-align: start !important;
    border-radius: 28px !important;
  }

  .spotlight-mobile-card img {
    width: 100% !important;
    height: 100% !important;
    min-height: 260px !important;
    max-height: 420px !important;
    object-fit: cover !important;
    display: block !important;
  }

  .spotlight-mobile-card.info-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    min-height: 260px !important;
    padding: 24px !important;
  }

  .spotlight-mobile-card.info-card h3 {
    font-size: 2rem !important;
    line-height: 1.05 !important;
    margin: 10px 0 14px !important;
  }

  .spotlight-mobile-card.info-card p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }
}


/* ===== MOBILE STAT CARD FIX ===== */
@media (max-width: 760px) {
  .stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 18px !important;
    align-items: start !important;
  }

  .stat-row > * {
    min-width: 0 !important;
  }

  .stat-row > *:nth-child(3) {
    grid-column: 1 / -1 !important;
  }

  .stat-label {
    font-size: 0.68rem !important;
    line-height: 1.15 !important;
    letter-spacing: 0.08em !important;
  }

  .stat-row strong {
    font-size: 1.05rem !important;
    line-height: 1.08 !important;
    word-break: break-word !important;
    margin-top: 7px !important;
  }
}


/* ===== MOBILE STAT CARD 3-COLUMN FIX ===== */
@media (max-width: 768px) {

  .stat-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .stat-row > * {
    min-width: 0 !important;
  }

  .stat-label {
    font-size: 0.65rem !important;
    line-height: 1.1 !important;
    letter-spacing: 0.08em !important;
  }

  .stat-row strong {
    display: block !important;
    font-size: 0.95rem !important;
    line-height: 1.1 !important;
    margin-top: 6px !important;
    word-break: break-word !important;
  }

  .stat-row > *:nth-child(2) strong,
  .stat-row > *:nth-child(3) strong {
    font-size: 0.9rem !important;
  }

}



/* FINAL STAT ROW FIX */
@media (max-width: 768px) {
  .stat-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .stat-item {
    min-width: 0 !important;
  }

  .stat-label {
    font-size: 0.65rem !important;
    letter-spacing: 0.08em !important;
    display: block;
  }

  .stat-item strong {
    display: block;
    font-size: 0.95rem !important;
    margin-top: 6px;
    word-break: break-word;
  }
}


/* ===== ACTUAL FINAL MOBILE STAT ROW FIX ===== */
@media (max-width: 768px) {
  .stat-card .stat-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: start !important;
  }

  .stat-card .stat-row > div,
  .stat-card .stat-row > .stat-item,
  .stat-card .stat-row > * {
    min-width: 0 !important;
    width: auto !important;
    grid-column: auto !important;
  }

  .stat-card .stat-label {
    display: block !important;
    white-space: normal !important;
    font-size: 0.62rem !important;
    line-height: 1.12 !important;
    letter-spacing: 0.08em !important;
  }

  .stat-card .stat-row strong,
  .stat-card .stat-row > div strong,
  .stat-card .stat-row > .stat-item strong {
    display: block !important;
    margin-top: 6px !important;
    font-size: 0.88rem !important;
    line-height: 1.08 !important;
    word-break: break-word !important;
  }
}


/* ===== NEXT LEVEL PREVIEW LAYER ===== */
:root {
  --nl-accent: #d86bff;
  --nl-accent-2: #6ee7ff;
  --nl-border: rgba(255,255,255,0.075);
  --nl-border-strong: rgba(255,255,255,0.15);
  --nl-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

/* subtle premium texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    radial-gradient(rgba(255,255,255,0.8) 0.45px, transparent 0.55px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
  z-index: 1;
}

/* slow ambient background motion */
.hero,
.hero::before,
.hero::after {
  will-change: transform, background-position;
}

.hero::before {
  animation: heroDrift 22s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}

/* premium borders and hover lift */
.server-card,
.account-card,
.media-card,
.stat-card,
.spotlight-card,
.gallery-card,
.clip-card,
.shot-card,
.profile-card {
  border: 1px solid var(--nl-border) !important;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease !important;
  transform: translateY(0);
  position: relative;
  overflow: hidden;
}

.server-card::after,
.account-card::after,
.media-card::after,
.stat-card::after,
.spotlight-card::after,
.gallery-card::after,
.clip-card::after,
.shot-card::after,
.profile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.065) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.server-card:hover,
.account-card:hover,
.media-card:hover,
.stat-card:hover,
.spotlight-card:hover,
.gallery-card:hover,
.clip-card:hover,
.shot-card:hover,
.profile-card:hover,
.media-card-link:hover .media-card,
.card-link:hover .server-card,
.card-link:hover .account-card {
  transform: translateY(-6px) scale(1.012);
  box-shadow: var(--nl-shadow);
  border-color: var(--nl-border-strong) !important;
}

.server-card:hover::after,
.account-card:hover::after,
.media-card:hover::after,
.stat-card:hover::after,
.spotlight-card:hover::after,
.gallery-card:hover::after,
.clip-card:hover::after,
.shot-card:hover::after,
.profile-card:hover::after,
.media-card-link:hover .media-card::after,
.card-link:hover .server-card::after,
.card-link:hover .account-card::after {
  transform: translateX(120%);
}

/* small text highlight feel */
.server-lead strong,
.profile-copy strong,
.stat-copy strong,
.accent-text,
.highlight {
  color: var(--nl-accent);
}

/* CTA polish */
.btn,
.button,
.hero .btn,
.hero-actions a {
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease !important;
}
.btn:hover,
.button:hover,
.hero .btn:hover,
.hero-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
  filter: brightness(1.04);
}

/* nav slight premium polish */
.topbar,
.navbar,
.site-header {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* clickable labels/links feel */
.panel-link,
.see-more-clips,
.media-card h3 a,
.server-card h3 a,
.account-card h3 a {
  transition: color 0.24s ease, transform 0.24s ease, opacity 0.24s ease !important;
}
.server-card:hover .panel-link,
.account-card:hover .panel-link,
.media-card:hover .see-more-clips,
.media-card:hover h3 a,
.server-card:hover h3 a,
.account-card:hover h3 a {
  color: var(--nl-accent);
  transform: translateX(5px);
}

/* mobile swipe sections feel more intentional */
@media (max-width: 768px) {
  .gallery-grid,
  .shots-grid,
  .media-grid,
  .clips-grid,
  .server-grid,
  .account-grid,
  .accounts-grid,
  .experience-grid,
  .showcase-grid {
    scroll-padding-left: 16px;
  }

  .gallery-grid > *,
  .shots-grid > *,
  .media-grid > *,
  .clips-grid > *,
  .server-grid > *,
  .account-grid > *,
  .accounts-grid > *,
  .experience-grid > *,
  .showcase-grid > * {
    transition: transform 0.24s ease, opacity 0.24s ease;
  }
}

/* little live dot utility if you want to use it later */
.online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-radius: 999px;
  background: #43f59a;
  box-shadow: 0 0 0 4px rgba(67,245,154,0.12), 0 0 14px rgba(67,245,154,0.4);
  vertical-align: middle;
}

/* reduce overbearing glows on framed media while keeping depth */
.media-frame,
.showcase-frame,
.image-frame,
.spotlight-frame {
  box-shadow: 0 16px 40px rgba(0,0,0,0.24) !important;
}

