@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

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

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Poppins', 'Quicksand', sans-serif;
  overflow: hidden;
}

body {
  background-color: black;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  position: relative;
}

@media screen and (min-width: 769px) {
  body {
    background-color: #ffe6f0;
  }

  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to right, #ffe6f0 0%, transparent 20%, transparent 80%, #ffe6f0 100%);
    z-index: 2;
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #FAF5F5;
  z-index: 3;
}

#promo-video {
  width: 50%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.overlay h1 {
  font-size: 2.4em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FAF5F5;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.overlay p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FAF5F5;
  line-height: 1.6;
}

.btn {
  background-color: #C72C48;
  padding: 15px 40px;
  border: none;
  border-radius: 10px;
  color: #FAF5F5;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
  box-shadow: 0 5px 10px rgba(199, 44, 72, 0.4);
}
.btn-pastel {
  background-color: #C72C48;
  color: #FAF5F5;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  font-family: "Poppins", "Quicksand", sans-serif;
  transition: background-color 0.3s ease-in-out;
  box-shadow: 0 5px 10px rgba(199, 44, 72, 0.4);
}

.disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}

.btn-pastel:hover {
  background-color: #A02136;
}

.btn:hover {
  background-color: #A02136;
}

@media screen and (max-width: 768px) {
  body {
    background-size: cover;
    background-position: center top;
  }

  .overlay {
    backdrop-filter: blur(2px);
    padding: 15px;
  }

  .overlay h1 {
    font-size: 1.4em;
  }

  .overlay p {
    font-size: 1em;
  }

  .btn {
    font-size: 16px;
    padding: 12px 30px;
  }

  .btn-pastel {
    font-size: 16px;
    padding: 12px 24px;
  }
}

@media screen and (max-width: 480px) {
  .overlay {
    padding: 15px 10px;
  }

  #headline,
  #description,
  #message,
  #cta {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .overlay h1 {
    font-size: 1.2em;
    line-height: 1.3;
  }

  .overlay p {
    font-size: 0.95em;
    line-height: 1.4;
  }

  .btn-pastel {
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 20px;
  }
}
