/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  font-family: 'Segoe UI', sans-serif;
  color: #00ffe7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Contenuto centrale */
.container {
  text-align: center;
  padding: 2rem 3rem;
  border: 1px solid #00ffe7;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 20px #00ffe7;
  animation: fadeIn 1.2s ease-out;
  max-width: 600px;
  width: 90%;
  margin-bottom: 2rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #00ffe7, 0 0 20px #00ffe7;
  animation: glow 2s ease-in-out infinite alternate;
}

.separator {
  border: none;
  height: 2px;
  margin: 1rem auto;
  width: 60%;
  background: linear-gradient(to right, transparent, #00ffe7, transparent);
  box-shadow: 0 0 10px #00ffe7;
}

.sottotitolo {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #00ffe7;
  text-shadow: 0 0 8px #00ffe7, 0 0 16px #00ffe7;
  animation: glow 2s ease-in-out infinite alternate;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #b2fff9;
}

/* Cookie banner fuori dal contenitore */
.cookie-banner {
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid #00ffe7;
  border-radius: 12px;
  padding: 1rem 2rem;
  color: #b2fff9;
  box-shadow: 0 0 10px #00ffe7;
  text-align: center;
  animation: fadeIn 1s ease-out;
  max-width: 500px;
  width: 90%;
}

.cookie-banner p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.cookie-banner button {
  background: transparent;
  border: 1px solid #00ffe7;
  color: #00ffe7;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-banner button:hover {
  background-color: #00ffe7;
  color: #000;
  box-shadow: 0 0 10px #00ffe7;
}

/* Animazioni */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes glow {
  from { text-shadow: 0 0 5px #00ffe7; }
  to { text-shadow: 0 0 20px #00ffe7, 0 0 40px #00ffe7; }
}