@keyframes full-size-popup {
  0% {
    transform: scale(0.05);
  }
  90% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@font-face {
  font-family: neon;
  src: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/707108/neon.ttf);
}

@import url(https://fonts.googleapis.com/css?family=Arvo);

.main-content {
  flex-grow: 1;
  padding: 20px; /* Added padding for spacing */
  background-image: url(background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 60% 40%;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.h2,
h2 {
  font-size: 2rem;
}

h1 {
  background: -moz-linear-gradient(top, #b48132 0%, #f8fbc0 61%, #b48132 100%);
  background: -webkit-linear-gradient(
    top,
    #b48132 0%,
    #f8fbc0 61%,
    #b48132 100%
  );
  background: linear-gradient(to bottom, #b48132 0%, #f8fbc0 61%, #b48132 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Thank You Popup Styles Beginning */
.visible {
  display: grid !important;
}

#bonusLink {
  display: none !important;
}

.overlay-container {
  display: none;
  position: fixed;
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-content: center;
}

.popup {
  padding: 0;
  margin: auto;
  width: 90%;
  max-width: 600px;
  max-height: 350px;
  opacity: 1;
  border: 3px solid transparent;
  border-radius: 10px;
  background: linear-gradient(to right, #8b0202, #2d0000),
    linear-gradient(to bottom, #b48132 0%, #f8fbc0 61%, #b48132 100%);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  box-shadow: 0px 0px 120px #f8fbc0;

  animation: full-size-popup 1s ease;
  top: 50%;
  bottom: 0;
  align-self: center;
}

.checkmark {
  display: grid;
  font-size: 50px;
  margin: 0 auto;
  margin-top: -40px;
  padding: 0;
  text-align: center;
  align-content: center;
  color: #fff;
  width: 70px;
  height: 70px;
  border: 3px solid transparent;
  border-radius: 100%;
  background: linear-gradient(to right, #5af880, #02250b),
    linear-gradient(to bottom, #b48132 0%, #f8fbc0 61%, #b48132 100%);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}

.content {
  padding: 0 20px 30px 20px;
}

.content h1 {
  font-family: 'Oswald', sans-serif;
  width: 100%;
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
  font-size: 50px;
}

.content p {
  font-family: 'Oswald', sans-serif;
  width: 100%;
  font-size: 30px;
  text-wrap: wrap;
  color: #fff;
  text-align: center;
}

.popup .button {
  display: grid;
  font-family: 'Oswald', sans-serif;
  background: -moz-linear-gradient(top, #b48132 0%, #f8fbc0 61%, #b48132 100%);
  background: -webkit-linear-gradient(
    top,
    #b48132 0%,
    #f8fbc0 61%,
    #b48132 100%
  );
  background: linear-gradient(to bottom, #b48132 0%, #f8fbc0 61%, #b48132 100%);
  font-size: 36px;
  width: 87%;
  height: 70px;
  color: #6b4100;
  text-align: center;
  align-content: center;
  border-radius: 10px;
  margin: auto;
  cursor: pointer;
  font-weight: 600;
  outline: none;
}

.popup .button:active {
  transform: scale(0.95);
}
/* Thank You Popup Styles Ending */

.header {
  margin-top: 10px;
  text-align: left;
}

.heading {
  text-align: left;
  margin-left: 16%;
  padding-left: 20px;
  margin-top: 50px;
}

.heading h1 {
  font-size: 2.3rem;
  line-height: 1.3;
}

.heading h1:last-child {
  padding-left: 70px;
}

.neon {
  color: #f7ec69;
}

.form {
  display: flex;
  justify-content: flex-start; /* Center horizontally */
  align-items: center; /* Vertically center the content */
  /* width: 100%; */
  padding: 20px;
  margin-left: 20%;
}

.age-icon {
  text-align: center; /* Center the image */
  margin-top: 30px; /* Add some space above the image */
}

.age-icon img {
  max-width: 100px; /* Limit the maximum width of the icon */
  width: 10%; /* Make the width responsive (adjustable) */
  height: auto; /* Maintain aspect ratio */
}

.viptext {
  text-align: center;
}

.vip-box {
  background-color: rgba(14, 14, 14, 0.719); /* Translucent background */
  padding: 10px; /* Reduced padding */
  border-radius: 10px;
  max-width: 300px; /* Set a smaller maximum width */
  width: 100%; /* Keep it responsive */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Optional: Add a subtle shadow for depth */
}

.no-image {
  background-color: #221a03;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 60% 40%;
  display: flex;
  flex-direction: column;
}

/* Horizontal Features Section */
.features {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 30px; /* Increased margin-top for more space between checkbox and features */
  padding: 0px 53px;
}

.feature-item {
  display: flex;
  align-items: center;
  color: white;
  max-width: 80%; /* Ensure columns on larger screens */
  margin: 10px; /* Margin around feature items */
  background-color: f02fc2; /* Dark purple color */
  border-radius: 15px; /* Curved edges */
  padding: 15px; /* Optional: Add padding inside the feature item */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Optional: Add a subtle shadow for depth */
}

.text-padding {
  padding-left: 10px;
}

.btn {
  width: 100%;
  background-color: #340cac;
  color: white;
  font-weight: bold;
  height: 50px;
}

.feature-item img {
  width: 70px; /* Set image size */
  height: 70px;
}

.feature-item h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #f7ec69;
}

.footer {
  /* background-color: rgba(0, 0, 0, 0.7); */
  color: #f7ec69;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.footer a {
  color: #f7ec69;
  text-decoration: underline;
}

.footer a:hover {
  text-decoration: none;
}

@media (max-width: 1300px) {
  .h2,
  h2 {
    font-size: 1.8rem;
  }

  .heading h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 1220px) {
  .h2,
  h2 {
    font-size: 1.5rem;
  }

  .heading h1 {
    font-size: 2rem;
  }

  .features {
    padding: 0px 40px;
  }

  .heading {
    margin-left: 10%;
    margin-top: 40px;
  }

  .heading h1:last-child {
    padding-left: 60px;
  }

  .form {
    margin-left: 14%;
  }
}

@media (max-width: 1100px) {
  .features {
    gap: 10px;
    padding: 0px 30px;
  }
}

@media (max-width: 1040px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .text-padding {
    padding-left: 0;
  }

  .text-padding .glow {
    margin-top: 0.5rem;
    margin-bottom: 0;
  }

  .heading {
    margin-left: 7%;
    margin-top: 30px;
  }

  .form {
    margin-left: 12%;
  }
}

@media (max-width: 960px) {
  .heading h1 {
    font-size: 2rem;
  }

  .features {
    gap: 5px;
    padding: 0px 10px;
  }

  .content h1 {
    font-size: 48px;
  }

  .heading {
    margin-left: 4%;
  }

  .form {
    margin-left: 7%;
  }
}

@media (max-width: 765px) {
  .main-content {
    background-position: 20% 40%;
    min-height: 108vh;
  }

  .header {
    margin-bottom: 0;
    text-align: center;
  }

  .heading {
    text-align: center;
    margin-inline: auto;
    padding-left: 0;
    margin-top: 20px;
  }

  .heading h1 {
    font-size: 1.5rem;
  }

  .heading h1:last-child {
    padding-left: 0;
  }

  .form {
    margin-inline: auto;
  }

  .age-icon img {
    width: 40%;
  }

  .features {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .feature-item {
    max-width: 92%;
    width: 100%;
  }
}

@media (max-width: 715px) {
  .content h1 {
    font-size: 44px;
  }

  .content p {
    font-size: 30px;
  }

  .popup .button {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .main-content {
    background-position: 23% 40%;
  }

  .content h1 {
    font-size: 37px;
  }

  .content p {
    font-size: 26px;
  }

  .popup .button {
    font-size: 26px;
  }
}

@media (max-width: 500px) {
  .popup .button {
    width: 94%;
  }
}

@media (max-width: 450px) {
  .content h1 {
    font-size: 32px;
  }

  .content p {
    font-size: 20px;
  }

  .popup .button {
    font-size: 20px;
  }
}
