/* ===== Bonus e Sconti - eGratis.org ===== */

main {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #333;
  background: #fafafa;
  line-height: 1.6;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #00b4d8, #48ca88);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-bottom: 4px solid #2a9d8f;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* ARTICLE CONTENT */
article.content {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
article.content h2 {
  color: #2a9d8f;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
article.content p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #444;
}

/* BONUS LIST */
.chat-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.chat-list section {
  border: 1px solid #e0e0e0;
  background: #fefefe;
  border-left: 5px solid #00b4d8;
  border-radius: 10px;
  padding: 22px 25px;
  transition: all 0.25s ease;
  position: relative;
}
.chat-list section:hover {
  border-color: #48ca88;
  box-shadow: 0 4px 12px rgba(72, 202, 136, 0.15);
  transform: translateY(-3px);
}

/* HEADINGS PER BONUS */
.chat-list h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #0077b6;
  font-weight: 600;
}
.chat-list h4::before {
  content: "💰 ";
}
.chat-list p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* LINK BONUS */
.chat-list a {
  display: inline-block;
  text-decoration: none;
  color: #0077b6;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.chat-list a:hover {
  color: #023e8a;
  border-bottom: 1px solid #023e8a;
}

/* CTA e SEZIONE FINALE */
.next-section {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px dashed #ccc;
  text-align: center;
}
.next-section p {
  font-size: 0.95rem;
}
.next-section a {
  color: #2a9d8f;
  font-weight: 600;
  text-decoration: none;
}
.next-section a:hover {
  text-decoration: underline;
}

/* PICCOLO TAG “NUOVO” O “HOT” (opzionale) */
.chat-list section::after {
  content: attr(data-tag);
  position: absolute;
  top: 14px;
  right: 14px;
  background: #48ca88;
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 7px;
  border-radius: 6px;
  font-weight: 600;
  display: none;
}
.chat-list section[data-tag]::after {
  display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.9rem;
  }
  .hero p {
    font-size: 1rem;
  }
  article.content {
    padding: 25px 20px;
  }
  .chat-list section {
    padding: 18px;
  }
}
