.msc-home {
  background-image: url('https://crocierando.eu/wp-content/uploads/2025/12/crocierando.sfondo.desktop-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding: 2rem;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hero {
  text-align: center;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

.avatars {
  text-align: center;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: #0073aa;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: #005f8d;
}

.assistant-card {
  margin-top: 2rem;
  text-align: center;
}

.avatar-img {
  max-width: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 2px solid #fff;
}

.hidden {
  display: none;
}

.info {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 600px;
  text-align: left;
}

.info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.info ol {
  padding-left: 1.2rem;
}

.info li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .msc-home {
    padding: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .info {
    width: 100%;
    padding: 1rem;
  }
}
