/* ===== Chat Gratis - eGratis.org ===== */

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #00b4d8, #0096c7);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 4px solid #0077b6;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

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

/* Chat List */
.chat-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.chat-list section {
  border: 1px solid #e0e0e0;
  background: #fefefe;
  border-radius: 10px;
  padding: 20px 25px;
  transition: all 0.25s ease;
}
.chat-list section:hover {
  border-color: #00b4d8;
  box-shadow: 0 3px 10px rgba(0, 180, 216, 0.15);
  transform: translateY(-2px);
}

/* Headings per Scheda */
.chat-list h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #0077b6;
}
.chat-list p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

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

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

/* SEO Helpers */
article.content h2::before {
  content: "💬 ";
}
.chat-list h4::before {
  content: "🗨️ ";
  margin-right: 4px;
}
