body {
  font-family: 'Inter', sans-serif !important;
  letter-spacing: 0.2px;
}

.scroll-arrow {
  display: inline-block;
  margin-top: 20px;
  font-size: 42px;
  color: white;
  animation: floatArrow 2s infinite ease-in-out;
  cursor: pointer;
}

.scroll-arrow:hover {
  color: #46c2ff;
  transform: scale(1.15);
}

/* Animación suave tipo flotante */

@keyframes floatArrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Animación al hacer click (rebote suave) */

.scroll-arrow:active {
  animation: bounceClick 0.25s forwards;
}

@keyframes bounceClick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}

.server-panel {
  max-width: 760px;
  padding: 38px 32px;
  background: rgba(0, 0, 0, 0.78);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.server-title {
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 44px);
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
}

.server-text {
  font-size: 17px;
  line-height: 1.65;
  color: #eaeaea;
  margin-bottom: 14px;
}

.server-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00aaff, #0093dd);
  padding: 14px 28px;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

.server-btn:hover {
  background: #00bbff;
  box-shadow: 0 6px 24px rgba(0, 170, 255, 0.55);
  transform: translateY(-2px);
}

:root {
  --hytale-blue: #4DB6E6;
  --hytale-blue-dark: #3a8fb3;
}

.navbar, .navbar-brand, .nav-link.active {
  color: var(--hytale-blue) !important;
}

.nav-link:hover {
  color: var(--hytale-blue-dark) !important;
}

.btn-hytale {
  background-color: var(--hytale-blue);
  border: none;
  color: #fff !important;
  font-weight: 700;
  transition: transform .2s, background-color .2s;
}

.btn-hytale:hover {
  background-color: var(--hytale-blue-dark);
  transform: scale(1.05);
}

.hero-text, h1, h2, p {
  text-shadow: 0 0 8px rgba(0,0,0,0.6);
}

