/* 🎃 Halloween Spotlight Block Styles */
.halloween-spotlight-block {
  background-color: rgba(0, 0, 0, 0.85); /* darker, spooky */
  border: 2px solid #ff7518;             /* pumpkin orange border */
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 117, 24, 0.6);
  margin: 20px auto;
  padding: 20px;
  max-width: 1000px;
  color: #f8f8f8;
  font-family: 'Lato', sans-serif;
  transition: opacity 0.5s ease;
}

.halloween-spotlight-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.halloween-spotlight-content img {
  max-width: 250px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}

.halloween-spotlight-text {
  flex: 1;
}

.halloween-spotlight-text h3 {
  margin-top: 0;
  color: #ff7518; /* pumpkin orange */
}

.halloween-spotlight-text button {
  background-color: #ff7518;
  color: #000;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: bold;
}

.halloween-spotlight-text button:hover {
  background-color: #ffa54c;
  box-shadow: 0 0 8px #ffcc00;
}
