:root {
  /* Brand */
  --accent: #14a9ff;

  /* Modern dark theme (less “pure black”) */
  --bg: #0b0f14;

  /* Glass surfaces */
  --glass: rgba(255, 255, 255, .06);
  --glass2: rgba(255, 255, 255, .10);
  --border: rgba(255, 255, 255, .14);

  /* Text */
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .72);
  --muted2: rgba(255, 255, 255, .56);

  /* Shadow */
  --shadow: 0 18px 50px rgba(0, 0, 0, .45);

  /* Layout */
  --navPadX: 42px;
  --navH: 78px;
  --container: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1280px;
}



/* =========================
   HERO BACKGROUND
   ========================= */
.hero {
  padding-top: 150px;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;

  background:
    radial-gradient(65% 60% at 50% 38%,
      rgba(0, 0, 0, .18) 0%,
      rgba(0, 0, 0, .40) 45%,
      rgba(0, 0, 0, .62) 100%),
    linear-gradient(to bottom,
      rgba(0, 0, 0, .55) 0%,
      rgba(0, 0, 0, .15) 35%,
      rgba(0, 0, 0, .55) 100%);
}


/* =========================
   GLASS NAVBAR (centered)
   ========================= */
.nav {
  height: var(--navH);
  display: flex;
  align-items: center;
  padding: 0 var(--navPadX);
  gap: 18px;

  /* Match page background */
  background: var(--bg);
  background: rgba(0, 0, 0, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.brand {
  width: 240px;
  display: flex;
  align-items: center;
}

.brand img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .55));
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;

  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
}

.nav-links a {
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  padding: 10px 4px;
  position: relative;
  transition: color .12s ease, opacity .12s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.is-active {
  color: #fff;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 6px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  opacity: .9;
}

.nav-right {
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* Online chip */
.pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .70);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #32ff6a;
  box-shadow: 0 0 0 3px rgba(50, 255, 106, .14);
}

/* Right links (Connect / Discord) */
.nav-action {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  padding: 10px 10px;
  transition: opacity .12s ease;
}

.nav-action:hover {
  opacity: .88;
}

.nav-action--accent {
  color: var(--accent);
}

/* =========================
   CENTER CONTENT
   ========================= */
.content-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 20px 60px;
  text-align: center;
}

.content {
  width: min(720px, 92vw);
}

.tagline {
  color: rgba(20, 169, 255, .78);
  text-transform: uppercase;
  letter-spacing: .30em;
  font-size: 14px;
  margin-bottom: 18px;
}

.logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.logo-title img {
  width: min(800px, 60vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .55));
}

.main-title {
  margin: 0;
  font-size: 34px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 800;
}

.main-title span {
  color: var(--accent);
}

.desc {
  max-width: 580px;
  margin: 18px auto 30px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

/* =========================
   BUTTONS (modern)
   ========================= */
.actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--accent);
  color: #061018;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(20, 169, 255, .18);
  transition: transform .12s ease, filter .12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  border-radius: 10px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.btn-ghost:hover {
  transform: translateY(-1px);
  background: var(--glass2);
  border-color: rgba(255, 255, 255, .22);
}


.gallery {
  padding: 120px 0 90px;
}

.gallery__head {
  text-align: center;
  margin-bottom: 20px;
}

.gallery__title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 800;
  font-size: 26px;
}

.gallery__subtitle {
  margin: 12px auto 0;
  max-width: 640px;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.7;
}

/* =========================
   NO-HITCH MOVING GALLERY
   ========================= */

.gallery__slider {
  overflow: hidden;
  max-width: 1600px;
  margin: 28px auto 0;
  position: relative;
}

/* Edge fades */
.gallery__slider::before,
.gallery__slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to right, rgba(11, 15, 20, 1), rgba(11, 15, 20, 0));
}

.gallery__slider::before {
  left: 0;
}

.gallery__slider::after {
  right: 0;
  transform: scaleX(-1);
}

.gallery__marquee {
  display: flex;
  width: max-content;
}

/* Each track is a full “set” */
.gallery__track {
  display: flex;
  gap: 18px;
  padding-right: 18px;
  /* prevents seam gap weirdness */
  flex: 0 0 auto;
  will-change: transform;

  animation: marqueeMove 80s linear infinite;
}

/* Pause when hovering anywhere on slider */
.gallery__slider:hover .gallery__track {
  animation-play-state: paused;
}

/* Image sizing (THIS is what you change) */
.gallery__track img {
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  flex: 0 0 auto;
  cursor: pointer;

  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, filter .25s ease;
}

/* Hover highlight */
.gallery__track img:hover {
  transform: scale(1.06);
  border-color: rgba(20, 169, 255, .65);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .6),
    0 0 18px rgba(20, 169, 255, .25);
  filter: brightness(1.08);
  z-index: 5;
}

/* Optional: dim others when hovering a track */
.gallery__track:hover img {
  filter: brightness(.7);
}

.gallery__track img:hover {
  filter: brightness(1.08);
}

/* =========================
   Clean Footer (Drop-in)
========================= */
.site-footer {
  margin-top: 80px;
  background: radial-gradient(1200px 500px at 20% 0%, rgba(0, 170, 255, 0.10), transparent 60%),
    radial-gradient(900px 400px at 70% 20%, rgba(0, 120, 255, 0.08), transparent 55%),
    linear-gradient(to bottom, rgba(6, 10, 14, 0.96), rgba(3, 6, 9, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 18px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 200px;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.site-footer__logo img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.site-footer__logo span {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__about {
  margin: 0 0 18px;
  line-height: 1.6;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 55ch;
}

.site-footer__server {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__server-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__server-ip {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer__status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
}

.site-footer__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.site-footer__links a,
.site-footer__socials a,
.site-footer__legal a {
  display: inline-block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  padding: 6px 0;
}

.site-footer__links a:hover,
.site-footer__socials a:hover,
.site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
  margin-bottom: 14px;
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(0, 160, 255, 0.90);
  color: #081018;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.site-footer__cta:hover {
  filter: brightness(1.05);
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.20);
}

.site-footer__bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.site-footer__legal {
  display: flex;
  gap: 14px;
  margin-left: auto;
}

.site-footer__disclaimer {
  color: rgba(255, 255, 255, 0.40);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer__links a {
  padding: 4px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color .2s ease;
}

.site-footer__links a:hover {
  color: rgba(255, 255, 255, 0.95);
}

/* Responsive */
@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__legal {
    margin-left: 0;
  }
}



/*
  Key idea: each track moves left by 100% of its own width.
  Since there are TWO tracks back-to-back, it’s seamless.
*/
@keyframes marqueeMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .gallery__track img {
    height: 200px;
    width: 340px;
  }
}

@media (max-width: 600px) {
  .gallery__track img {
    height: 180px;
    width: 300px;
  }
}


/* =========================
   LIGHTBOX
   ========================= */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}

.lightbox.is-open {
  display: block;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  border: 0;
}

.lightbox__panel {
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin: 6vh auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .55);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .65);
}

.lightbox__img {
  width: 100%;
  height: min(70vh, 680px);
  object-fit: contain;
  display: block;
  background: rgba(0, 0, 0, .35);
}

.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, .10);
}


/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 860px) {
  :root {
    --navPadX: 18px;
  }

  .brand,
  .nav-right {
    width: 200px;
  }
}

@media (max-width: 720px) {
  .nav-center {
    display: none;
  }

  /* simple mobile behavior */
  .pill {
    display: none;
  }

  .brand,
  .nav-right {
    width: auto;
  }

  .main-title {
    font-size: 28px;
  }
}

/* =========================
   MOVING GALLERY (CAROUSEL)
========================= */
.gallery {
  padding: 120px 0 90px;
}

.gallery__slider {
  overflow: hidden;
  max-width: 1600px;
  margin: 28px auto 0;
  position: relative;
}

/* Edge fades */
.gallery__slider::before,
.gallery__slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to right, rgba(11, 15, 20, 1), rgba(11, 15, 20, 0));
}

.gallery__slider::before { left: 0; }
.gallery__slider::after { right: 0; transform: scaleX(-1); }

.gallery__marquee {
  display: flex;
  width: max-content;
}

.gallery__track {
  display: flex;
  gap: 18px;
  padding-right: 18px;
  flex: 0 0 auto;
  will-change: transform;
  animation: marqueeMove 80s linear infinite;
}

.gallery__slider:hover .gallery__track {
  animation-play-state: paused;
}

.gallery__track img {
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, filter .25s ease;
}

.gallery__track:hover img { filter: brightness(.7); }
.gallery__track img:hover {
  transform: scale(1.06);
  border-color: rgba(20, 169, 255, .65);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .6),
              0 0 18px rgba(20, 169, 255, .25);
  filter: brightness(1.08);
  z-index: 5;
}

@keyframes marqueeMove {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-100%,0,0); }
}

/* Responsive carousel sizing */
@media (max-width: 900px) {
  .gallery__track img { height: 200px; width: 340px; }
}
@media (max-width: 600px) {
  .gallery__track img { height: 180px; width: 300px; }
}

/* =========================
   CLEAN FOOTER
========================= */
.site-footer {
  margin-top: 80px;
  background: radial-gradient(1200px 500px at 20% 0%, rgba(0, 170, 255, 0.10), transparent 60%),
              radial-gradient(900px 400px at 70% 20%, rgba(0, 120, 255, 0.08), transparent 55%),
              linear-gradient(to bottom, rgba(6, 10, 14, 0.96), rgba(3, 6, 9, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 18px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 70px;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.site-footer__logo img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.site-footer__logo span {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__about {
  margin: 0 0 18px;
  line-height: 1.6;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 55ch;
}

.site-footer__server {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__server-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__server-ip {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer__status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
}

.site-footer__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__links a,
.site-footer__socials a,
.site-footer__legal a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  padding: 4px 0;
}

.site-footer__links a:hover,
.site-footer__socials a:hover,
.site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-bottom: 14px;
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(0, 160, 255, 0.90);
  color: #081018;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.20);
}

.site-footer__bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.site-footer__legal {
  display: flex;
  gap: 14px;
  margin-left: auto;
}

.site-footer__disclaimer {
  color: rgba(255, 255, 255, 0.40);
}

@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__legal { margin-left: 0; }
}
