html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  overflow-x: hidden;
}

body {
  background: url('../images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

body {
	cursor: url('../images/MU.cur'), auto;
}

a, button, .btn {
	cursor: url('../images/MU2.cur'), pointer;
}

/* Capa oscura encima del fondo */
.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 1;
  pointer-events: none;
}

/* Contenido por encima del overlay */
header,
.characters,
footer {
  position: relative;
  z-index: 2;
}

/* HEADER */
header {
  text-align: center;
  padding: 20px 20px 10px;
}

.logo img {
  max-width: 380px;
  width: 90%;
  height: auto;
  animation: logoGlow 2.5s infinite alternate;
  user-select: none;
}

@keyframes logoGlow {
  from {
    filter:
      drop-shadow(0 0 10px rgba(255, 60, 0, 0.6))
      drop-shadow(0 0 20px rgba(255, 120, 0, 0.35));
  }
  to {
    filter:
      drop-shadow(0 0 18px rgba(255, 0, 0, 0.9))
      drop-shadow(0 0 35px rgba(255, 140, 0, 0.55));
  }
}

/* STATUS */
.status {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.online {
  color: #00ff88;
  margin-right: 14px;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.offline {
  color: #ff4d4d;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.users {
  color: #ffd37a;
  text-shadow: 0 0 10px rgba(255, 180, 0, 0.4);
}

/* NAV */
nav {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

nav a {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  min-width: 120px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;

  border: 1px solid rgba(255, 90, 0, 0.65);
  border-radius: 10px;

  background: linear-gradient(
    145deg,
    rgba(45, 0, 0, 0.85),
    rgba(15, 0, 0, 0.92)
  );

  box-shadow:
    inset 0 0 12px rgba(255, 80, 0, 0.18),
    0 0 12px rgba(255, 60, 0, 0.14),
    0 4px 14px rgba(0, 0, 0, 0.45);

  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.15),
    0 0 8px rgba(255, 80, 0, 0.18);

  overflow: hidden;
  transition: all 0.3s ease;
}

/* brillo animado */
nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 70%;
  height: 100%;
  transform: skewX(-25deg);

  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 180, 100, 0.35),
    transparent
  );

  transition: left 0.5s ease;
}

/* luz interna */
nav a::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 8px;
  pointer-events: none;
  border: 1px solid rgba(255, 170, 110, 0.08);
}

nav a:hover {
  transform: translateY(-3px) scale(1.04);
  color: #fff5e8;
  border-color: rgba(255, 140, 0, 0.95);

  background: linear-gradient(
    145deg,
    rgba(90, 0, 0, 0.95),
    rgba(35, 0, 0, 0.98)
  );

  box-shadow:
    inset 0 0 16px rgba(255, 90, 0, 0.3),
    0 0 18px rgba(255, 60, 0, 0.5),
    0 0 32px rgba(255, 120, 0, 0.22),
    0 6px 18px rgba(0, 0, 0, 0.55);
}

nav a:hover::before {
  left: 150%;
}

nav a:active {
  transform: scale(0.98);
}

/* PERSONAJES */
.characters {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 40px;
  box-sizing: border-box;
  pointer-events: none;
}

.characters img {
  max-height: 420px;
  height: auto;
  width: auto;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
  filter:
    drop-shadow(0 0 10px rgba(0, 0, 0, 0.8))
    drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

/* Ajustes individuales */
.wizard {
  max-width: 32%;
}

.warrior {
  max-width: 32%;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* FOOTER */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.15)
  );
  border-top: 1px solid rgba(255, 90, 0, 0.18);
  padding: 10px 15px;
  font-size: 13px;
  color: #d6d6d6;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
  z-index: 3;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .characters img {
    max-height: 340px;
  }

  .wizard,
  .warrior {
    max-width: 38%;
  }
}

@media (max-width: 768px) {
  .logo img {
    max-width: 280px;
  }

  .status {
    font-size: 16px;
  }

  nav {
    gap: 10px;
    padding: 0 10px;
  }

  nav a {
    min-width: 100px;
    padding: 10px 18px;
    font-size: 13px;
  }

  .characters {
    padding: 0 15px;
  }

  .characters img {
    max-height: 240px;
  }

  .wizard,
  .warrior {
    max-width: 42%;
  }

  footer {
    font-size: 12px;
    padding: 8px 10px;
  }
}

@media (max-width: 560px) {
  header {
    padding: 15px 10px 8px;
  }

  .status {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  .online {
    margin-right: 0;
  }

  nav {
    gap: 8px;
  }

  nav a {
    min-width: 42%;
    padding: 10px 12px;
    font-size: 12px;
  }

  .characters img {
    max-height: 180px;
  }

  .wizard,
  .warrior {
    max-width: 45%;
  }
}
.top-header {
  text-align: center;
  padding: 20px 20px 10px;
  position: relative;
  z-index: 3;
}

.status-bar {
  margin: 18px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.version-selector {
  margin: 16px auto 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 100, 0, 0.24);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.48);
  box-shadow:
    inset 0 0 14px rgba(255, 90, 0, 0.06),
    0 0 16px rgba(0, 0, 0, 0.3);
}

.version-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-width: 150px;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #e9e9e9;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: 0.25s ease;
}

.version-option .version-name {
  font-size: 14px;
  color: #fff0d8;
}

.version-option strong {
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 100, 0, 0.24);
}

.version-option small {
  display: none;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffca90;
  font-size: 10px;
  letter-spacing: 0;
}

.version-option:hover,
.version-option.active {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(255, 120, 0, 0.65);
  background: linear-gradient(145deg, rgba(120, 18, 0, 0.96), rgba(35, 0, 0, 0.98));
  box-shadow:
    inset 0 0 12px rgba(255, 110, 0, 0.2),
    0 0 14px rgba(255, 80, 0, 0.25);
}

.status-item {
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(255, 100, 0, 0.22);
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 150px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}

.status-item .label {
  display: block;
  font-size: 12px;
  color: #bbb;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.status-item .value {
  font-size: 16px;
  font-weight: bold;
}

.users-count {
  color: #ffd37a;
  text-shadow: 0 0 10px rgba(255, 190, 80, 0.3);
}

.main-content {
  position: relative;
  z-index: 3;
  width: min(1200px, calc(100% - 40px));
  margin: 20px auto 120px;
}

.hero-panel {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.55),
    rgba(0, 0, 0, 0.72)
  );
  border: 1px solid rgba(255, 100, 0, 0.2);
  border-radius: 18px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.45),
    inset 0 0 20px rgba(255, 80, 0, 0.06);
  padding: 35px;
  backdrop-filter: blur(4px);
}

.hero-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 120, 0, 0.35);
  border-radius: 999px;
  background: rgba(255, 90, 0, 0.08);
  color: #ffb37a;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  text-shadow:
    0 0 10px rgba(255, 100, 0, 0.25),
    0 0 24px rgba(0, 0, 0, 0.8);
}

.hero-text {
  margin: 0 auto;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  color: #ececec;
}

.launch-countdown {
  margin: 24px auto 0;
  max-width: 620px;
  padding: 18px;
  border: 1px solid rgba(255, 120, 0, 0.22);
  border-radius: 14px;
  background: linear-gradient(
    to bottom,
    rgba(25, 10, 0, 0.58),
    rgba(0, 0, 0, 0.55)
  );
  box-shadow:
    inset 0 0 16px rgba(255, 100, 0, 0.08),
    0 0 22px rgba(0, 0, 0, 0.32);
}

.launch-label {
  display: block;
  margin-bottom: 12px;
  color: #ffbd82;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.countdown-item {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 110, 0, 0.14);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.38);
}

.countdown-item strong {
  color: #fff0d8;
  font-size: 30px;
  line-height: 1;
  text-shadow: 0 0 14px rgba(255, 100, 0, 0.25);
}

.countdown-item span {
  margin-top: 7px;
  color: #c8c8c8;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.launch-countdown p {
  margin: 12px 0 0;
  color: #ddd;
  font-size: 14px;
}

.hero-buttons {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  min-width: 190px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: 0.3s ease;
}

.btn.primary {
  color: white;
  border: 1px solid rgba(255, 120, 0, 0.8);
  background: linear-gradient(145deg, #7a1300, #2a0500);
  box-shadow:
    0 0 18px rgba(255, 80, 0, 0.3),
    inset 0 0 14px rgba(255, 140, 0, 0.15);
}

.btn.primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 24px rgba(255, 80, 0, 0.55),
    0 0 34px rgba(255, 140, 0, 0.18);
}

.btn.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, rgba(60, 60, 60, 0.45), rgba(20, 20, 20, 0.75));
}

.btn.secondary:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.server-info-box {
  margin-top: 15px;
}

.server-info-box h2,
.section-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: 28px;
  text-shadow: 0 0 12px rgba(255, 120, 0, 0.18);
}

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

.server-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 110, 0, 0.15);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: inset 0 0 12px rgba(255, 90, 0, 0.04);
}

.server-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: #c4c4c4;
  text-transform: uppercase;
  letter-spacing: 0;
}

.server-card strong {
  font-size: 20px;
  color: #fff0d8;
}

.features-section {
  margin-top: 28px;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 100, 0, 0.14);
  border-radius: 18px;
  padding: 30px;
  backdrop-filter: blur(4px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-box {
  background: linear-gradient(
    to bottom,
    rgba(25, 25, 25, 0.55),
    rgba(0, 0, 0, 0.55)
  );
  border: 1px solid rgba(255, 110, 0, 0.12);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
}

.feature-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  color: #ffd7a3;
}

.feature-box p {
  margin: 0;
  color: #ddd;
  line-height: 1.6;
  font-size: 15px;
}

.news-rankings-wrapper {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}

.content-box {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 100, 0, 0.14);
  border-radius: 18px;
  padding: 26px;
  backdrop-filter: blur(4px);
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-item {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid rgba(255, 110, 0, 0.6);
  border-radius: 10px;
  padding: 15px 16px;
}

.news-date {
  display: inline-block;
  margin-bottom: 8px;
  color: #ffb16e;
  font-size: 13px;
  font-weight: bold;
}

.news-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.news-item p {
  margin: 0;
  line-height: 1.6;
  color: #ddd;
}

.ranking-block + .ranking-block {
  margin-top: 22px;
}

.ranking-block h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #ffd7a3;
}

.ranking-block ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ranking-block li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 110, 0, 0.08);
}

.ranking-block li span {
  color: #fff;
  font-weight: 600;
}

.ranking-block li strong {
  color: #ffcf8a;
}

@media (max-width: 980px) {
  .server-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .news-rankings-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .main-content {
    width: min(100% - 20px, 1200px);
    margin-bottom: 100px;
  }

  .hero-panel,
  .features-section,
  .content-box {
    padding: 20px;
  }

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

  .hero-text {
    font-size: 16px;
  }

  .launch-countdown {
    padding: 14px;
  }

  .countdown-grid {
    gap: 8px;
  }

  .countdown-item {
    min-height: 72px;
  }

  .countdown-item strong {
    font-size: 22px;
  }

  .countdown-item span {
    font-size: 10px;
  }

  .version-selector {
    display: flex;
    width: 100%;
    box-sizing: border-box;
  }

  .version-option {
    flex: 1;
    min-width: 0;
    padding: 10px 8px;
  }

  .version-option .version-name {
    font-size: 12px;
  }

  .version-option strong {
    font-size: 16px;
  }

  .version-option small {
    font-size: 10px;
  }

  .btn {
    width: 100%;
    min-width: unset;
  }
}
