* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}

/* FONDO GIF */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("https://i.imgur.com/DI03U5q.gif") center / cover no-repeat;
  opacity: 0.35;
  z-index: -1;
}


/* TOP BAR */
.top-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 40px;
}

/* ICONOS */
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #444;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  color: #fff;
  opacity: .7;
  transition: .3s;
  text-decoration: none;
}

.icon-btn:hover {
  opacity: 1;
  box-shadow: 0 0 10px #fff;
}

.icons-right {
  justify-self: end;
}

.domain {
  border: 1px solid #444;
  padding: 6px 22px;
  border-radius: 20px;
  font-size: 13px;
}

/* HERO */
.hero {
  height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: transparent;
}


.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 96px;
  letter-spacing: 8px;
  animation: neonGlow 3s infinite alternate;
}

@keyframes neonGlow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff;
    opacity: .7;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 40px #fff, 0 0 60px #fff;
    opacity: 1;
  }
}

.subtitle {
  margin-top: 10px;
  letter-spacing: 6px;
  font-size: 14px;
}

/* BOTON */
.hero-btn {
  margin-top: 40px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 40px;
  letter-spacing: 2px;
  cursor: pointer;
  animation: neonBtn 2.5s infinite alternate;
}

@keyframes neonBtn {
  from { box-shadow: 0 0 5px #fff; }
  to { box-shadow: 0 0 25px #fff; }
}

/* MENU */
.menu {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-bottom: 40px;
}

.menu a {
  text-decoration: none;
  color: #ccc;
  letter-spacing: 2px;
  transition: .3s;
}

/* COLORES MENU */
.menu a.vip:hover {
  color: gold;
  text-shadow: 0 0 8px gold;
}

.menu a.modes:hover {
  color: #9b5cff;
  text-shadow: 0 0 8px #9b5cff;
}

.menu a.rules:hover {
  color: orange;
  text-shadow: 0 0 8px orange;
}

.menu a.maps:hover {
  color: hotpink;
  text-shadow: 0 0 8px hotpink;
}

/* INFO */
.info-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 80px 10%;
}

.welcome h2 {
  font-family: 'Cinzel', serif;
  font-size: 64px;
}

/* WELCOME IMAGE */
.welcome-card {
  margin-top: 30px;
  position: relative;
  border: 1px solid #333;
  overflow: hidden;
}

.welcome-card img {
  width: 100%;
  display: block;
  filter: grayscale(100%) contrast(1.1);
}

.welcome-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.welcome-number {
  font-family: 'Cinzel', serif;
  font-size: 26px;
}

.welcome-title {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  letter-spacing: 2px;
}

.welcome-sub {
  font-size: 11px;
  opacity: .6;
}

.welcome-desc {
  margin-top: 25px;
  font-size: 14px;
  line-height: 1.6;
  opacity: .75;
}

.who h3 {
  font-family: 'Cinzel', serif;
  font-size: 64px;
  letter-spacing: 4px;
  margin-bottom: 25px;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255,255,255,.35);
}

/* CENTRAR TEXTO WHO ARE WE */
.who {
  text-align: center;
}

.who p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.85;
  opacity: .85;
}


/* MENU NEON EFFECT */
.menu a {
  position: relative;
  text-shadow: 0 0 4px rgba(255,255,255,.15);
}

/* VIP */
.menu a.vip:hover {
  color: gold;
  text-shadow:
    0 0 6px gold,
    0 0 14px rgba(255,215,0,.8),
    0 0 24px rgba(255,215,0,.6);
}

/* MAPS */
.menu a.maps:hover {
  color: hotpink;
  text-shadow:
    0 0 6px hotpink,
    0 0 14px rgba(255,105,180,.8),
    0 0 24px rgba(255,105,180,.6);
}

/* RULES */
.menu a.rules:hover {
  color: orange;
  text-shadow:
    0 0 6px orange,
    0 0 14px rgba(255,165,0,.8),
    0 0 24px rgba(255,165,0,.6);
}

/* MODES */
.menu a.modes:hover {
  color: #9b5cff;
  text-shadow:
    0 0 6px #9b5cff,
    0 0 14px rgba(155,92,255,.8),
    0 0 24px rgba(155,92,255,.6);
}    
/* DISCORD EMBED STYLE CARD */
.discord-embed {
  max-width: 520px;
  background: #1e1f22;
  border-left: 4px solid #f5f5f5;
  border-radius: 6px;
  padding: 16px;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

.discord-embed h4 {
  color: #00a8ff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.discord-embed p {
  color: #dcddde;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.discord-embed img {
  width: 100%;
  border-radius: 4px;
  background: #000;
}

