@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body,
* {
  margin: 0;
  font-family: "Inter", sans-serif;
}
.text-center {
  text-align: center;
}
.pt-10 {
  padding-top: 10px;
}
.pt-20 {
  padding-top: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pt-30 {
  padding-top: 30px;
}
.pb-30 {
  padding-bottom: 30px;
}
.container {
  max-width: 1220px;
  margin: 0 auto;
}
.header {
  background: #d9d9d9;
  padding: 20px 0;
  text-align: center;
  margin: 0;
}
.header h2 {
  font-size: 24px;
  margin: 0;
}
#timer {
  color: #ff0000;
}
.main-sec {
  background: url("./images/blue-bg.png") no-repeat center center;

  background-size: cover;
}
.main-inner-wrap {
  background: #3aa9ff;
  background: linear-gradient(
    90deg,
    rgba(58, 169, 255, 1) 0%,
    rgba(0, 53, 87, 1) 100%
  );
  border-radius: 20px;
  display: grid;
  justify-content: space-between;
  padding: 40px;
  grid-template-columns: 1fr 1fr;
}
.main-left-col h2 {
  font-size: 40px;
  font-style: italic;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}
.main-left-col p {
  font-size: 24px;
  color: #6cff91;
  font-weight: 500;
  text-align: center;
}
.main-right-col .giveaway-text {
  font-size: 40px;
  color: #fff;
  font-weight: 200;
  font-style: italic;
  margin-bottom: 15px;
}
.if-you-text {
  color: #fff;
  font-style: italic;
  margin: 10px 0;
}
.if-you-text span {
  color: #6cff91;
}
.white-card-wrap {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}
.white-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  width: 100%;
  max-width: 250px;
}
.white-card p:first-child {
  color: #3d3d3d;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
}
.white-card p:last-child {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.mx-100 {
  max-width: -webkit-fill-available;
}
.step-wrap {
  display: flex;
  gap: 5px;
  margin-top: 20px;
}
.step-wrap p {
  background: #a6a6a6;
  border-radius: 16px;
  width: 100%;
  max-width: 100px;
  padding: 5px 10px;
  text-align: center;
  color: #717171;
  font-size: 12px;
}
.step-wrap .pink-step {
  background: #d732a8;
  color: #fff;
}
.lets-find-text {
  color: #fff;
  margin-top: 10px;
}
.main-right-col h2 {
  font-size: 54px;
  font-style: italic;
  color: #fff;
}
.main-right-col h2 span {
  color: #6cff91;
}
.btn-wrap {
  margin-top: 20px;
}
.btn-wrap h3 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
}
.btn-wrap p {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.btn {
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 12px;
  color: #000;
  font-weight: 600;
  font-size: 24px;
  width: 100%;
  max-width: 250px;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-8px);
}
.yes-btn {
  background: #6cff91;
}
.no-btn {
  background: #eb5757;
}
.footer {
  background: rgba(10, 73, 116, 0.7);
  padding: 20px;
  text-align: center;
  margin: 0;
  color: #fff;
  font-family: "Kanit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  font-style: italic;
}
.footer a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 17px;
}
.footer a:hover {
  text-decoration: underline;
}

.content-container {
    width: 100%;
    max-width: 995px;
    padding: 30px;
    box-shadow: 0 0 5mm rgba(0, 0, 0, 0.1);
    background: #fff;
    margin: auto;
}

.content-container h1 {
    text-align: center;
    font-size: 24pt;
    margin-bottom: 40px;
}

.content-container h2 {
    font-size: 14pt;
    margin-top: 30px;
    margin-bottom: 10px;
}

.content-container p {
    font-size: 12pt;
    line-height: 1.6;
    margin-bottom: 10px;
    margin-top: 0;
    text-align: justify;
}
.footer-links{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
  .header h2 {
    font-size: 20px;
  }

  .btn {
    font-size: 20px;
  }
  .footer a {
    font-size: 15px;
  }
  .main-sec {
    padding: 10px;
  }
  .main-inner-wrap {
    grid-template-columns: 1fr;
    padding: 0px;
    margin-top: 35px;
  }
  .main-left-col {
    background: url("./images/flag.png") no-repeat center center;
    background-size: contain;
  }
  .main-left-col img {
    width: 100%;
    margin-top: -50px;
  }
  .main-left-col h2 {
    display: none;
  }
  .main-left-col p {
    display: none;
  }
  .main-right-col {
    padding: 0 20px 20px;
  }
  .main-right-col .giveaway-text {
    font-size: 25px;
    text-align: center;
  }
  .main-right-col .paypal-heading {
    font-size: 28px;
  }
  .main-right-col h2 {
    font-size: 42px;
    text-align: center;
  }
  .if-you-text {
    display: none;
  }
  .btn-wrap h3 {
    font-size: 26px;
    text-align: center;
  }
  .lets-find-text {
    color: #f2c94c;
    text-align: center;
    font-size: 14px;
  }
  .mx-100 {
    display: none;
  }
  .white-card-wrap {
    flex-direction: column;
  }
  .white-card {
    width: auto;
    max-width: 100%;
    text-align: center;
  }
  .white-card p:last-child {
    justify-content: center;
  }
  .btn-wrap p {
    flex-direction: row-reverse;
}
}
