* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #0a0c12;
  color: #e7e9f1;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-glow {
  position: fixed;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(92, 162, 255, 0.3), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

.hero {
  position: relative;
  background-image: linear-gradient(
      180deg,
      rgba(8, 10, 16, 0.92) 0%,
      rgba(10, 12, 18, 0.8) 40%,
      rgba(10, 12, 18, 0.98) 100%
    ),
    url("/content-upper-new-1920.jpg");
  background-size: cover;
  background-position: center;
  padding: 36px 8% 84px;
  min-height: 85vh;
  border-bottom: 1px solid #1a2035;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 138px;
  width: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.online {
  background: #2bd576;
  box-shadow: 0 0 8px #2bd576;
}

.dot.offline {
  background: #ff5e6c;
  box-shadow: 0 0 8px #ff5e6c;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 28, 48, 0.7);
  border: 1px solid rgba(76, 134, 255, 0.35);
  color: #9fd3ff;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-content.centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 32px;
}

.hero-content h1 {
  font-size: clamp(38px, 4vw, 56px);
  margin-bottom: 16px;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.hero-content p {
  font-size: 18px;
  color: #c7cbe0;
  max-width: 700px;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3c7fff, #6ea8ff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(60, 127, 255, 0.35);
}

.cta.ghost {
  background: rgba(15, 20, 34, 0.65);
  border: 1px solid rgba(76, 134, 255, 0.45);
  color: #bcd6ff;
  box-shadow: none;
}

.cta.kick {
  background: linear-gradient(135deg, #53fc18, #1fdc3b);
  color: #0b0d14;
  box-shadow: 0 10px 22px rgba(83, 252, 24, 0.35);
  border: 1px solid rgba(83, 252, 24, 0.6);
  font-weight: 800;
}

.hero-strip {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 980px;
  margin: 0 auto 24px;
}

.strip-card {
  background: rgba(17, 22, 39, 0.85);
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(35, 44, 70, 0.75);
  backdrop-filter: blur(6px);
  text-align: center;
}

.strip-card span {
  color: #8c95b6;
}

.strip-card strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 20, 34, 0.65);
  border: 1px solid rgba(76, 134, 255, 0.25);
  color: #bcd6ff;
  font-size: 13px;
}

.text-online {
  color: #2bd576;
}

.text-offline {
  color: #ff5e6c;
}

.content {
  padding: 72px 8% 96px;
}

.section {
  margin-bottom: 72px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.content p {
  color: #b9bfd4;
  line-height: 1.7;
}

.split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.split-cards,
.details {
  display: grid;
  gap: 24px;
  margin-top: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.info-card,
.feature-card,
.connect-card {
  background: #141a2f;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #1f2642;
  box-shadow: 0 16px 30px rgba(5, 10, 25, 0.35);
}

.details h3,
.feature-card h3 {
  margin-bottom: 8px;
  color: #9fd3ff;
}

.feature-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cta-band {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  background: #0f1324;
  border: 1px solid #1f2642;
  border-radius: 20px;
  padding: 32px;
}

.connect-card {
  display: grid;
  gap: 16px;
}

.connect-item span {
  color: #8c95b6;
}

.connect-item strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
}

.footer {
  text-align: center;
  padding: 28px;
  background: #0e111e;
  color: #5e6687;
  border-top: 1px solid #1a2035;
}
