* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #b5b5b5;
  font-weight: 500;
}

nav a:hover {
  color: #fff;
}

/* BOTONES */
.btn {
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.primary {
  background: #f2f532;
  color: #000;
}

.primary:hover {
  background: #f2f532;
}

.outline {
  border: 1px solid #fff;
  color: #fff;
}

.outline:hover {
  background: #fff;
  color: #000;
}

/* HERO */
.hero-lolame {
  height: 100vh;
  background: url("assets/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.92)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
}

.hero-content span {
  color: #f2f532;
}

.hero-content p {
  margin: 25px 0 40px;
  color: #b5b5b5;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* MODPACKS */
/* EVENTS SECTION */
.events {
  padding: 120px 0;
  background: #000;
  overflow: hidden;
}

.events-header {
  text-align: center;
  margin-bottom: 50px;
}

.events-header h2 {
  font-size: 42px;
  font-weight: 800;
}

.events-header p {
  color: #b5b5b5;
  margin-top: 10px;
}

/* SLIDER */
.events-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.events-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: eventsScroll 35s linear infinite;
}

.events-track img {
  width: 360px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  background: #0F0F12;
  transition: transform 0.3s ease;
}

.events-track img:hover {
  transform: scale(1.05);
}

/* Animación */
@keyframes eventsScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pausa al pasar el mouse */
.events-track:hover {
  animation-play-state: paused;
}

/* FEATURES */
.features {
  padding: 120px 60px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.feature {
  background: #0F0F12;
  padding: 30px;
  border-radius: 16px;
}

/* FOOTER */
footer {
  padding: 40px;
  text-align: center;
  color: #777;
}
