@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #2d2d2d;
  color: #fff;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  backdrop-filter: blur(12px);
  background: rgba(45, 45, 45, 0.6);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
}

.logo h1 {
  font-size: 1.4rem;
  background: linear-gradient(90deg, #ffb300, #fe3a06);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 1.5s ease;
}

nav ul li a:hover {
  color: #fe3a06;
}

.discord-btn {
  background-color: #fe3a06;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.discord-btn:hover {
  background-color: #ff5722;
}

/* HERO SECTION */
.hero {
  position: relative;
  text-align: center;
  padding-top: 120px;
}

.hero-bg {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-content p {
  margin: 15px 0;
  font-size: 1.2rem;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border: none;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.play-btn:hover {
  transform: scale(1.05);
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 80px 60px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-box h3 {
  color: #fe3a06;
  margin-bottom: 10px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 100px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.get-started-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border: none;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.get-started-btn:hover {
  transform: scale(1.05);
}

/* FOOTER */
footer {
  background-color: #1f1f1f;
  color: #ccc;
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
}

footer p:last-child {
  color: #fe3a06;
}

.hero-bg {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(1.0) blur(5px); /* impostazione iniziale di blur */
  transition: filter 0.5s ease; /* rende la sfocatura fluida */
}
