/* Reset & global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body, html {
  height: 100%;
  width: 100%;
  background: #f8f9fa;
  overflow-x: hidden;
}

/* Age modal */
.age-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.age-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 350px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.age-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.age-card p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #555;
}

.age-actions button {
  background-color: #10b981; /* green */
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  margin: 0 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.age-actions button:hover {
  background-color: #059669;
}

.age-actions button:last-child {
  background-color: #ef4444;
}

.age-actions button:last-child:hover {
  background-color: #b91c1c;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.5);
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

/* Unlock card */
.unlock-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
}

.thumbnail-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.thumbnail-img {
  width: 100%;
  border-radius: 12px;
}

.thumb-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: white;
  font-weight: bold;
  padding: 0.5rem 0;
  border-radius: 0 0 12px 12px;
}

.lock-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #10b981; /* green accent */
}

h1 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: #111827;
}

.lead {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 1rem;
}

/* Steps */
.steps {
  text-align: left;
  margin: 1rem 0;
}

.steps div {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #111827;
}

.steps span {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #10b981;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 1.5rem;
  margin-right: 0.75rem;
  font-weight: bold;
}

/* Form */
#email-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

#email-form input {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}

#email-form button {
  background-color: #10b981;
  color: white;
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}

#email-form button:hover {
  background-color: #059669;
}

/* Trust text */
.trust {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 500px) {
  .unlock-card {
    padding: 1.5rem;
  }

  h1 {
    font-size: 1.3rem;
  }

  .lead {
    font-size: 0.95rem;
  }

  .steps div {
    font-size: 0.9rem;
  }

  #email-form input, #email-form button {
    font-size: 0.95rem;
    padding: 0.65rem;
  }
}