:root {
  --eq-blue: #00d8e8;
  --eq-blue-bright: #00f6ff;
  --eq-dark: #05090b;
  --eq-panel: #10181c;
  --eq-text: #f2fefe;
  --eq-muted: #a8c4c8;
  --eq-border: rgba(0, 216, 232, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #080b0d;
  color: var(--eq-text);
}

.site-header {
  height: 72px;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 9, 11, 0.94);
  border-bottom: 1px solid rgba(0, 216, 232, 0.18);
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

nav a {
  color: #ddd;
  text-decoration: none;
  margin-left: 26px;
  font-weight: 700;
}

nav a:hover {
  color: var(--eq-blue-bright);
}

.shop-link {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--eq-blue);
  color: #031014;
}

.hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.9)),
    radial-gradient(circle at center, rgba(0, 216, 232, 0.16), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 40px;
}

.eyebrow {
  color: var(--eq-blue-bright);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}

.hero-logo {
  width: min(560px, 90vw);
  margin: 18px auto 22px;
  display: block;
  filter: drop-shadow(0 0 22px rgba(0, 216, 232, 0.45));
}

.hero-text {
  color: #d7f8fb;
  font-size: 1.25rem;
  line-height: 1.6;
}

.server-ip-box {
  margin: 30px auto;
  max-width: 460px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(12, 20, 24, 0.9);
  border: 1px solid var(--eq-border);
  border-radius: 14px;
}

.server-ip-box span {
  font-weight: 800;
  color: #fff;
}

.server-ip-box button,
.btn {
  border: none;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
}

.server-ip-box button,
.btn.primary {
  background: var(--eq-blue);
  color: #031014;
}

.server-ip-box button:hover,
.btn.primary:hover {
  background: var(--eq-blue-bright);
}

.btn.secondary,
.btn.discord {
  background: transparent;
  color: var(--eq-blue-bright);
  border: 1px solid var(--eq-blue);
}

.btn.secondary:hover,
.btn.discord:hover {
  background: rgba(0, 216, 232, 0.12);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.server-section,
.news-preview {
  padding: 80px 48px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.server-section h2,
.news-preview h2 {
  font-size: 2rem;
}

.section-subtitle {
  color: var(--eq-muted);
}

.server-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.server-card {
  min-height: 240px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(16, 28, 32, .96), rgba(6, 11, 13, .96));
  border: 1px solid rgba(0, 216, 232, 0.18);
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  text-align: left;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.server-card:hover {
  transform: translateY(-6px);
  border-color: var(--eq-blue-bright);
  box-shadow: 0 0 24px rgba(0, 216, 232, 0.12);
}

.server-card h3 {
  font-size: 1.8rem;
  color: var(--eq-blue-bright);
}

.server-card p {
  color: #c6dde0;
  line-height: 1.6;
}

.server-card span {
  color: var(--eq-blue-bright);
  font-weight: 800;
}

.features {
  padding: 60px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  background: #0d1114;
}

.feature {
  padding: 26px;
  border-radius: 16px;
  background: var(--eq-panel);
  border: 1px solid rgba(0, 216, 232, 0.12);
}

.feature h3 {
  color: var(--eq-blue-bright);
}

.feature p {
  color: #c6dde0;
  line-height: 1.6;
}

.news-card {
  margin-top: 28px;
  padding: 30px;
  background: #11181c;
  border-radius: 18px;
  border: 1px solid rgba(0, 216, 232, 0.18);
  text-align: left;
}

.news-card p {
  color: #c6dde0;
  line-height: 1.6;
}

.news-card a {
  color: var(--eq-blue-bright);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  padding: 32px;
  text-align: center;
  color: #8f9994;
  background: #060808;
  border-top: 1px solid rgba(0, 216, 232, 0.12);
}

@media (max-width: 850px) {
  .site-header {
    padding: 16px 20px;
    flex-direction: column;
    height: auto;
    gap: 12px;
  }

  .logo img {
    height: 46px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  nav a {
    margin: 0;
  }

  .server-grid,
  .features {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .server-ip-box {
    flex-direction: column;
    gap: 12px;
  }
}