/* ================================================= */
/* SPLASH SMP HOMEPAGE */
/* ================================================= */

body {
  background: radial-gradient(circle at top, #071b2b 0%, #050b12 45%, #02060a 100%);
  color: #ffffff;
}

.splash-home {
  color: #ffffff;
  width: 100%;
}

.splash-home .hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at top, #0d4d78 0%, #07243f 45%, #03101c 100%);
  border-radius: 18px;
  margin: 20px auto 40px;
}

.splash-home .hero-content {
  max-width: 850px;
  padding: 40px;
}

.splash-home .hero h1 {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  color: #00eaff;
  text-shadow: 0 0 24px rgba(0,234,255,.9);
  margin-bottom: 20px;
}

.splash-home .hero p {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.splash-home .buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.splash-home .btn {
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none !important;
  font-weight: 800;
}

.splash-home .primary {
  background: linear-gradient(90deg,#00eaff,#008cff);
  color: #001014 !important;
}

.splash-home .secondary {
  background: #083f68;
  color: white !important;
}

.splash-home .features,
.splash-home .stats {
  padding: 90px 40px;
}

.splash-home .section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 60px;
  color: #00eaff;
  text-shadow: 0 0 16px rgba(0,234,255,.8);
}

.splash-home .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.splash-home .card {
  background: rgba(8,18,30,.88);
  border: 1px solid rgba(0,234,255,.30);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 0 22px rgba(0,234,255,.14);
}

.splash-home .card h3 {
  color: #00eaff;
  margin-bottom: 15px;
}

.splash-home .stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  text-align: center;
  background: rgba(0,0,0,.25);
  border-radius: 18px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.splash-home .stat h2 {
  color: #00eaff;
  font-size: 2.5rem;
}

@media (max-width: 900px) {
  .splash-home .buttons {
    flex-direction: column;
  }

  .splash-home .stats {
    grid-template-columns: repeat(2,1fr);
  }
}

/* ================================================= */
/* TOP IP + DISCORD BAR */
/* ================================================= */

.top-server-bar {
  position: absolute;
  top: 105px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  max-width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
}

.server-box,
.discord-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.server-box > div,
.discord-box > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.server-box {
  margin-left: -120px;
}

.discord-box {
  margin-right: -120px;
}

.server-ip,
.discord-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  text-align: center;
}

.copy-btn,
.discord-btn {
  display: inline-block;
  background: #00eaff;
  color: #001014 !important;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0,234,255,.65);
}

.server-icon,
.discord-icon {
  font-size: 22px;
}

/* Push hero down slightly */
.splash-home .hero {
  margin-top: 140px !important;
}

@media (max-width: 900px) {

  .top-server-bar {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .server-box,
  .discord-box {
    margin: 0;
  }
}