.promo-box {
  background: linear-gradient(45deg, #ffcc00, #ff6600);
  color: white;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  margin: 20px auto;
  transition: transform 0.3s ease-in-out;
}

.promo-box:hover {
  transform: scale(1.05);
}

.promo-box span {
  font-size: 28px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.promo-box .highlight {
  color: #ff0;
  font-size: 30px;
}
.news-p {
  background: linear-gradient(45deg, #ffffff, #d9d9d9); /* Gradiente grigio chiaro */
  color: #0033cc;
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin: 20px auto;
  transition: transform 0.3s ease-in-out;
}

.news-p:hover {
  background: #f0f0f0;
}

.news-p span {
  font-size: 26px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.news-p .highlight {
  color: #ff6600; /* Colore evidenziato */
  font-size: 26px;
}

.news-box {
  background: linear-gradient(135deg, #ff6600, #ffcc00);
  color: white;
  font-family: Arial, sans-serif;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  margin: 20px auto;
  transition: transform 0.3s ease-in-out;
}

.news-box:hover {
  transform: scale(1.05);
}

.news-title {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
}

.news-content {
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
}

.news-date {
  font-size: 14px;
  font-style: italic;
  text-align: right;
  margin-top: 10px;
}

.news-elvis {
  background: linear-gradient(45deg, #000000, #1a1a1a); /* Nero sfumato per un look elegante */
  color: gold; /* Testo dorato, tipico degli abiti di Elvis */
  font-family: "Georgia", serif; /* Font classico con un tocco vintage */
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 25px;
  border: 3px solid gold; /* Bordo dorato per un tocco di lusso */
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5); /* Effetto brillante dorato */
  max-width: 450px;
  margin: 20px auto;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.news-elvis:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.8); /* Effetto glow al passaggio del mouse */
}

.news-elvis span {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px rgba(255, 215, 0, 0.7); /* Testo con effetto glow */
}

.news-elvis .highlight {
  color: white; /* Per far risaltare alcune parti del testo */
  font-size: 26px;
  text-shadow: 2px 2px 10px gold;
}
