/* Reset box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* Contenitore centrale */
.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Sezione hero */
.bonus-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.bonus-cover {
  width: 80%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

/* Titolo principale */
.bonus-main-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  text-align: center;
}

/* Intro testo */
.bonus-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Sezioni bonus */
.bonus-section {
  background: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.bonus-section h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.bonus-section h2 a {
  color: #0077cc;
  text-decoration: none;
}

.bonus-section p {
  margin: 0;
}

.bonus-section a {
  color: #d32f2f;
  font-weight: bold;
  text-decoration: none;
}

.bonus-section a:hover,
.bonus-section a:focus {
  text-decoration: underline;
}

/* Titoli secondari */
h2 {
  margin-top: 3rem;
  font-weight: 700;
}

/* Responsive - Mobile */
@media (max-width: 600px) {
  .bonus-main-title {
    font-size: 1.5rem;
  }

  .bonus-section h2 {
    font-size: 1.1rem;
  }

  .bonus-cover {
    width: 100%;
    max-width: 100%;
  }
}
main {
  margin-top: 2rem; /* Puoi aumentare o ridurre */
}
