/* FinanceContainer Section */

.app_wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  overflow: hidden;
}

.insuranceSection {
  display: flex;
  flex-direction: column;
  max-width: 520px;
  width: 100%;
  gap: 3px;
  padding: 12px;
  box-sizing: border-box;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.insuranceContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.flexContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.redeem_box {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 12px;
  padding-block: 20px;
  background-color: #20213f;
  border-radius: 24px;
  border: 1px solid #404380;
  width: -webkit-fill-available;
}

.redeem_box_text {
  font-size: 21px;
  line-height: 32px;
  color: white;
  font-weight: 600;
}

.main_title_text {
  font-size: 20px;
  line-height: 28px;
  color: white;
  font-weight: 700;
}

.insuranceDetailContainer {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.relativeButtonContainer {
  position: relative;
}

.ad_Text {
  position: absolute;
  top: 2px;
  font-size: 8px;
  right: -14px;
}

.Pera_Container {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.blog_post_subtext {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: white;
  padding: 0;
}

.blog_paragraph_text {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.blog_subpost_img {
  border-radius: 24px;
}

.insurance_number {
  list-style-type: decimal;
  padding-top: 5px;
  padding-bottom: 0px;
  padding-left: 18px;
}

.insurance_point {
  list-style-type: circle;
  padding-top: 5px;
  padding-bottom: 0px;
  padding-left: 18px;
}

.blog_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insurance_number li {
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}

.insurance_point {
  list-style-type: disc;
  padding-bottom: 0px;
  padding-left: 18px;
}

.insurance_point li {
  padding-bottom: 10px;
}

.best_insurance {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.buttonContainer {
  gap: 40px;
}

.cusBtnOption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--bg-secondary);
  font-size: 15px;
  padding: 8px 19px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 2px 2px 14px rgb(0 0 0 / 40%);
  color: white !important;
  border: 1px solid #404380;
  font-weight: 500;
  line-height: 21px;
  cursor: pointer;
}

/* ***************************************************************************************** */

.toast {
  position: fixed;
  top: 25px;
  right: 20px;
  border-radius: 4px;
  background: #fff;
  padding: 9px 77px 9px 15px;
  box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateX(calc(100% + 30px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  background-color: #555;
  z-index: 99;
}

.toast.activeToast {
  transform: translateX(0%);
}

.toast .toast-content {
  display: flex;
  align-items: center;
}

.toast-content {
  display: flex;
  gap: 16px;
}

.toast-content .check {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 35px;
  background-color: #2770ff;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.toast-content .message {
  display: flex;
  flex-direction: column;
}

.message .text {
  font-size: 1rem;
  line-height: 1.5rem;
  color: white;
}

.message .text.text-1 {
  font-weight: 600;
  color: #333;
}

.toast .close {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.7;
}

.toast .close:hover {
  opacity: 1;
}

.toast .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
}

.toast .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #e74c3c;
}

.toast.success .progress:before {
  background-color: #bb86fc;
}

.toast.error .progress:before {
  background-color: #e74c3c;
}

.progress.activeToast:before {
  animation: progress 5s linear forwards;
}

@keyframes progress {
  100% {
    right: 100%;
  }
}

@media (max-width: 450px) {
  .toast {
    top: 0px;
    right: 0px;
    padding: 0px 44px 10px 15px;
  }
}

@media (max-width: 768px) {
  .redeem_box_text {
    font-size: 16px;
  }

  .insuranceSection {
    padding-top: max(24px, env(safe-area-inset-top, 0px));
  }

  .footer_bg {
    margin-top: 24px;
  }
}

/* ************************************************************************************** */
.popup-ad-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.close-popup {
  background-color: #ebebeb;
  border: 2px solid #000;
  border-radius: 20%;
  color: #000;
  cursor: pointer;
  font-family: arial;
  font-size: 25px;
  font-weight: 700;
  height: 30px;
  line-height: 25px;
  margin-bottom: 10px;
  text-align: center;
  position: absolute;
  top: -40px;
  left: 0px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content {
  position: relative;
  background: transparent;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #888;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  height: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 320px;
  min-height: 280px;
}

#div-gpt-ad-1737541487066-0 {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .popup-content {
    min-width: 350px;
  }
}

.sticky_ads {
  position: fixed;
  bottom: 0%;
  right: 50%;
  left: 50%;
  overflow: hidden;
  padding: 0px 8px 0px 5px;
  margin: 0 auto 10px auto;
  background-color: #000000c2;
  transform: translate(-50%, 10%);
  display: flex;
  justify-content: center;
  width: 100%;
}

.header_sub_pages {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 8px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* ***************************************** contact us css ****************************************** */

.five_blog_input {
  width: -webkit-fill-available;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid #d3e9f5;
  box-shadow: 0px 4px 24px 0px #00000014;
  margin-bottom: 10px;
  outline: none;
  font-size: 15px;
}

textarea#message {
  width: -webkit-fill-available;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid #d3e9f5;
  box-shadow: 0px 4px 24px 0px #00000014;
  margin-bottom: 10px;
  outline: none;
  font-size: 17px;
}

textarea {
  resize: none;
  width: 100%;
  height: 150px;
}

.five_blog_btn {
  width: 100%;
  border-radius: 12px;
  background-color: var(--bg-secondary);
  color: white;
  border: 0;
  padding: 10px;
  font-size: 19px;
  margin-bottom: 15px;
  border: 1px solid #404380;
}

.section-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.email_text {
  font-size: 16px;
  color: #ffffff;
  padding: 0;
}

.section-text {
  font-size: 16px;
  line-height: 22px;
  margin-top: 10px;
}

.section-text p {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.top-section {
  width: 100%;
}

.terms-title {
  padding: 0 0 15px 0;
  font-size: 26px;
  font-weight: 600;
}

.section p {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 24px;
}

/* ***************************************** faq page css ****************************************** */
.faq-item {
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #404380;
  box-shadow: 0px 4px 24px 0px #00000014;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  background-color: #1a2f77;
  padding: 10px 15px;
  cursor: pointer;
}

.faq-item input[type="checkbox"]:checked + label + .content {
  max-height: 300px;
  padding: 12px;
  border-top: 1px solid #404380 !important;
}

.faq-item .content {
  background-color: transparent;
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s ease;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 20px;
  border-radius: 0 0 12px 12px;
}

.faq-item .content p {
  margin: 0;
  font-size: 15px;
  color: #ffffff;
}

.faq-item input[type="checkbox"]:checked + label::after {
  content: "-";
}

.faq-item label::after {
  content: "+";
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item input[type="checkbox"] {
  display: none;
}

/* ***************************************** footer css ****************************************** */
.container {
  width: 100%;
}

.footer_bg {
  width: 100%;
}

.footer-content {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  width: 100%;
  margin-bottom: 15px;
}

.footer-logo-img {
  display: block;
  max-width: 160px;
  width: 100%;
  height: auto;
}

.footer-text {
  margin: 12px 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(255, 255, 255);
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.footer-logo a {
  padding: 0;
}

i.fa-brands.fa-x-twitter,
i.fa-brands.fa-threads,
i.fa-brands.fa-instagram,
i.fa-brands.fa-facebook-f {
  font-size: 22px;
}

.icon {
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: 6px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.icon:hover {
  background: rgb(58, 90, 198);
}

.footer-title {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 8px;
  color: rgb(255, 255, 255);
}

.footer-links li {
  margin: 7px 0;
}

.footer-links a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: color 0.3s;
  padding: 0;
  font-weight: 400;
  font-size: 17px;
}

.footer-links {
  width: 100%;
  margin-bottom: 15px;
}

.footer-links a:hover {
  color: #7b99ff;
}

.game-status {
  text-align: center;
  color: #8789c3;
  font-size: 16px;
  font-weight: 400;
  padding: 2rem 0.5rem;
  grid-column: 1 / -1;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

@media (min-width: 426px) {
  .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.game-card {
  display: block;
  min-width: 0;
}

.game-card-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #1a2235;
  border: 1px solid #404380;
}

.game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-card:hover .game-card-thumb {
  border-color: #7b99ff;
}

.player-stage {
  width: 100%;
}

.player-host {
  position: relative;
  width: 100%;
  height: 360px;
  background: #0a0b1e;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #404380;
}

.player-host:fullscreen,
.player-host:-webkit-full-screen {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #000;
}

.player-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

.player-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 0;
}

.player-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-full-btn {
  flex-shrink: 0;
  background-color: var(--bg-secondary);
  color: #fff;
  border: 1px solid #404380;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  cursor: pointer;
}

.game-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #0a0b1e;
  color: #fff;
  padding: 24px;
  text-align: center;
}

.game-loader[hidden] {
  display: none;
}

.game-loader-name {
  font-size: 16px;
  font-weight: 700;
}

.game-loader-pct {
  font-size: 24px;
  font-weight: 700;
}

.game-loader-bar {
  width: 180px;
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.game-loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--bg-secondary);
}

.game-desc {
  width: 100%;
}

.game-desc p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.game-tag {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: #1a2f77;
  border: 1px solid #404380;
  border-radius: 999px;
  padding: 4px 10px;
}

@media (max-width: 400px) {
  .player-host {
    height: 280px;
  }
}
