@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&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: 720px;
  margin: 0 auto;
  border-radius: 20px;
  background: #fff;
}
.main-sec {
  background: #306fd5;
  padding: 20px;
}
.main-inner-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main-heading {
  margin-bottom: 10px;
}
.banner-text {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}
.banner-text span.highlight {
  color: #0070e0;
  font-weight: 700;
}
.sub-heading {
  font-size: 20px;
}
#timer {
  color: #000;
  font-size: 32px;
  margin: 20px 0;
  font-weight: 600;
}
.free-heading {
  font-size: 30px;
  color: #32be0f;
}
.if-you-text {
  color: #2d2d2d;
  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;
}
.info-white-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}
.info-white-card p {
  color: #000;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.info-white-card p span {
  color: #00c756;
  margin-left: -10px;
}
.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;
}
.btn-wrap {
  padding-bottom: 50px;
  padding-top: 30px;
}
.btn-wrap a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  background: #0070e0;
  color: #fff;
  width: 100%;
  max-width: 280px;
  margin: auto;
  border-radius: 30px;
  padding: 17px 10px;
  font-size: 24px;
  font-weight: 600;
  box-shadow: 0 16px 8px -4px #d5d5d5;
}
.footer {
  max-width: 720px;
  margin: auto;
  padding: 40px 20px 20px;
  text-align: center;
  color: #fff;
  font-family: "Kanit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
}
.footer a {
  color: #070707;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 17px;
}

.footer-links {
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: 30px;
}
.footer-links p a {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.boxes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  justify-items: center;
  margin: 32px 0;
}
.game-box {
  width: 120px;
  height: 107px;
  cursor: pointer;
  object-fit: contain;
  transition: transform 0.1s;
}
.game-box:active {
  transform: scale(0.96);
}

@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 {
    padding: 10px 20px;
    margin-top: 35px;
  }
  .if-you-text {
    display: none;
  }
  .mx-100 {
    padding-left: 35px;
  }
}
#custom-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#custom-modal .modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px 24px 24px;
  text-align: center;
  max-width: 400px;
  width: 100%;
}
#custom-modal .modal-message {
  font-size: 1.2em;
  margin-bottom: 24px;
}
#custom-modal .modal-message b {
  font-size: 1.25em;
  font-weight: bold;
}
.modal-message h3 {
  font-size: 26px;
  margin-bottom: 15px;
}
.modal-message p {
  font-size: 24px;
}
.modal-content p span {
  font-weight: 700;
}
#custom-modal .modal-ok {
  background: #007aff;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 15px 50px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
  width: 100%;
  max-width: 280px;
}
#custom-modal .modal-ok:hover {
  background: #005ecb;
}

#prize-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#prize-modal .modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px 24px 24px;
  text-align: center;
  max-width: 400px;
  width: 100%;
}
#prize-modal .modal-message {
  font-size: 1.2em;
  margin-bottom: 24px;
}
#prize-modal .modal-message b {
  font-size: 1.25em;
  font-weight: bold;
}
.comment-wrap {
  padding: 10px 20px 30px;
}
.comment-wrap h2 {
  font-size: 20px;
  margin-bottom: 25px;
}
.comment-wrap a {
  text-decoration: none;
  color: inherit;
}
.comment {
  display: flex;
  margin-bottom: 25px;
}

.avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 10px;
}

.content {
  flex: 1;
}

.username {
  font-size: 14px;
  font-weight: 600;
  color: #1877f2;
  margin-bottom: 5px;
}

.text {
  font-size: 14px;
  margin-bottom: 12px;
}

.photo {
  width: auto;
  height: auto;
  border-radius: 12px;
  margin-bottom: 10px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #65676b;
}

.likes {
  display: flex;
  align-items: center;
  gap: 4px;
}
.react {
  color: #1877f2;
}

.reply {
  margin-left: 50px;
}

.claim-tab {
  display: inline-block;
  background: #007aff;
  color: #fff !important;
  border-radius: 12px;
  padding: 14px 38px;
  font-size: 1.15em;
  font-weight: bold;
  text-decoration: none;
  margin-top: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.18s, transform 0.18s;
  text-align: center;
}
.claim-tab:hover, .claim-tab:focus {
  background: #005ecb;
  transform: scale(1.06);
  color: #fff;
}
