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

/* Base */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background: #0f1115;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container principale */
.container {
  max-width: 900px;
  width: 90%;
  padding: 80px;
  border-radius: 20px;
  background: linear-gradient(145deg, #1a1d24, #111318);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  text-align: center;
}

/* Titolo */
h1 {
  font-size: 56px;
  margin-bottom: 30px;
}

/* Paragrafo */
p {
  font-size: 20px;
  margin-bottom: 60px;
  color: #bfc5d2;
}

/* CTA */
.cta {
  display: inline-block;
  padding: 20px 48px;
  background: #ff2d55;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: 0.25s ease;
  box-shadow: 0 15px 40px rgba(255,45,85,0.4);
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(255,45,85,0.6);
}
.cta.discreet {
  background: #2a2f3a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cta.discreet:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}
.micro {
  margin-top: 20px;
  font-size: 14px;
  color: #7f8795;
  opacity: 0.8;
}
.legal {
  margin-top: 60px;
  font-size: 14px;
  opacity: 0.6;
}

.legal a {
  color: #bfc5d2;
  text-decoration: none;
  margin: 0 10px;
}

.legal a:hover {
  text-decoration: underline;
}
/* Policy layout */

.policy {
  max-width: 900px;
  text-align: left;
  padding: 60px;
}

.policy h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

.policy h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #ffffff;
}

.policy p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #c9d0db;
}

.policy ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.policy li {
  margin-bottom: 10px;
}
.home-title {
  color: #d4af37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}
.back-link {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.back-link a {
  text-decoration: none;
}

.back-link a:hover {
  text-decoration: underline;
}
/* Consent box refinement */
.consent-box {
  margin: 20px 0;
  font-size: 13px;
  color: #7f8795; /* stesso tono della class micro */
  opacity: 0.8;
}

.consent-box label {
  display: inline-block;
  line-height: 1.4;
}

.consent-box input {
  margin-right: 8px;
  transform: translateY(1px);
}

.consent-box a {
  color: #7f8795;
  text-decoration: underline;
}

.consent-box a:hover {
  color: #bfc5d2;
}
/* Disabled CTA state */
.cta.disabled {
  background: #2a2f3a !important;
  box-shadow: none !important;
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
  transform: none !important;
}

.cta.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}
.links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}

.links a {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: #2a2f3a;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.2s ease;
}

.links a:hover {
  transform: translateY(-2px);
  background: #353b48;
}