/** Shopify CDN: Minification failed

Line 1317:33 Expected "}" to go with "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:2-to-3-content-big-banner (INDEX:0) */
/* Desktop Styles */
.full-width-section {
  width: 100%;
  min-height: 720px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  background-color: #111;
}

.full-width-section .content-wrapper {
  display: flex;
  width: 100%;
  height: 720px;
  position: relative;
  z-index: 2;
}

/* ✅ SECTION TITLE CSS (ADDED) */
.section-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  text-align: center;
  padding: 20px 20px 0 20px;
}

.section-title h2 {
  font-size: 25px;
  font-weight: 400;
  color: #fff;
  margin: 15px 20px 5px;
}
/* ✅ END TITLE CSS */

.full-width-section .content-block {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #fff;
}

.full-width-section .content-block.content-top {
  justify-content: flex-start;
}

.full-width-section .content-block.content-center {
  justify-content: center;
}

.full-width-section .content-block.content-bottom {
  justify-content: flex-end;
}

.full-width-section .content-block .cntb-description{
  margin: 20px 20px 0;
}

.full-width-section .content-block .cntb-heading{
  margin: 12px 20px 0;
}

.full-width-section .content-block .cntb-description p{
  font-size: 27px;
}

.full-width-section .content-block .cntb-heading h1{
  font-size: 60px;
  font-weight: bold;
}

.textlinkbtn{
    margin: 15px 20px 0;
}

.full-width-section .content-block .textlinkbtn a {
  font-weight: 400;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  background-image: linear-gradient(90deg, #EC0C22, #F88751);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  position: relative;
}

.full-width-section .content-block .textlinkbtn a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #EC0C22, #F88751);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.full-width-section .content-block .textlinkbtn a:hover::after {
  width: 100%;
}

/* Mobile Styles */
.full-width-section-mobile {
  display: none;
  width: 100%;
}

.full-width-section-mobile .mobile-block {
  width: 100%;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  background-color: #111;
  aspect-ratio: 3 / 4;
}

.full-width-section-mobile .mobile-block .content-block {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #fff;
  width: 100%;
}

.full-width-section-mobile .mobile-block .cntb-description {
  margin: 10px 20px 12px;
}

.full-width-section-mobile .mobile-block .cntb-heading {
  margin: 0 20px 10px;
}

.full-width-section-mobile .mobile-block .cntb-description p {
  font-size: 19px;
}

.full-width-section-mobile .mobile-block .cntb-heading h1 {
  font-size: 42px;
}

.full-width-section-mobile .mobile-block .textlinkbtn {
  margin: 0px 20px 0;
}

.full-width-section-mobile .mobile-block .textlinkbtn a {
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  background-image: linear-gradient(90deg, #EC0C22, #F88751);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  position: relative;
}

.full-width-section-mobile .mobile-block .textlinkbtn a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #EC0C22, #F88751);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.full-width-section-mobile .mobile-block .textlinkbtn a:hover::after {
  width: 100%;
}

.full-width-section .content-block * {
  pointer-events: none !important;
  user-select: none !important;
}

.full-width-section-mobile .content-block * {
  pointer-events: none !important;
  user-select: none !important;
}

.full-width-section .content-block a,
.full-width-section-mobile .content-block a {
  pointer-events: auto !important;
  user-select: none !important;
}

/* Make section title text non-blockable */
.section-title * {
  pointer-events: none !important;
  user-select: none !important;
}


/* Responsive */
@media (max-width: 768px) {
  .full-width-section {
    display: none;
  }
  
  .full-width-section-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (min-width: 769px) {
  .full-width-section-mobile {
    display: none;
  }
}
/* END_SECTION:2-to-3-content-big-banner */

/* START_SECTION:cookies-pageload-popup-notice (INDEX:17) */
.notice-popup-overlay {
  position: fixed !important;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7) !important;
  display: none;
  justify-content: center; align-items: center;
  z-index: 9999;
}
.notice-popup {
  position: relative;
  background: #131313 !important;
  border: 3px solid #ED1C24 !important;
  padding: 1.5rem 2rem 2rem;
  border-radius: 5px;
  max-width: 500px; width: 90%;
  text-align: center;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.5);
  animation: fadeInUp 0.3s ease-out;
  letter-spacing: 0.25px;
}
#closePopupX, #closePopupX.notice-close {
  position: absolute;
  top: -9px; right: -9px;
  background: #131313 !important;
  color: #ffffff !important;
  border: 1px solid #444 !important;
  font-size: 13px; font-weight: 500;
  width: 20px; height: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; justify-content: center; align-items: center;
  line-height: 1; padding: 0;
  box-shadow: none;
  transition: all 0.2s ease;
  z-index: 10;
}
#closePopupX:hover, #closePopupX.notice-close:hover {
  background: #2c2c2c !important;
  transform: scale(1.1);
}
.notice-popup h2 {
  margin-bottom: 0;
  font-size: 1.75rem;
  color: #ffffff !important;
  font-weight: 800;
}
.notice-popup p {
  margin-bottom: 1.5rem;
  margin-top: 0.25rem;
  font-size: 1.1rem;
  color: #ffffff !important;
}

#understandPopup, #understandPopup.understand-btn {
  font-size: 0.875rem !important;
  display: inline-flex;
  justify-content: center; 
  align-items: center;
  font-weight: 700;

  /* 👇 change to outline style */
  background-color: transparent !important;
  color: #ED1C24 !important;
  border: 2px solid #ED1C24 !important;

  width: 125px; 
  height: 35px;
  border-radius: 5px;
  letter-spacing: 1px;
  cursor: pointer;

  transition: all 0.25s ease;
}
#understandPopup {
  background-image: none !important;
  color: #ffffff !important;

}
#understandPopup {
  background-color: transparent !important;
  color: #ED1C24 !important;
  border: 2px solid #ED1C24 !important;
}

.notice-popup #understandPopup:hover {
  background-color: #ED1C24 !important;
  color: #ffffff !important;
}
/* Discover — ghost (right) */
#closeNoticePopup {
  font-size: 0.875rem !important;
  display: inline-flex;
  justify-content: center; align-items: center;
  font-weight: 700;
  background-color: transparent !important;
  color: #ED1C24 !important;
  border: 2px solid #ED1C24 !important;
  width: 125px; height: 35px;
  text-decoration: none;
  pointer-events: auto; cursor: pointer;
  border-radius: 5px; letter-spacing: 1px;
  transition: all 0.25s ease;
}
#closeNoticePopup:hover {
  background-color: #ED1C24 !important;
  color: #ffffff !important;
}
.notice-socials {
  display: flex; justify-content: center;
  gap: 20px; margin-top: 1.5rem;
}
.notice-socials a svg {
  width: 28px; height: 28px;
  fill: none; stroke: #ED1C24;
  stroke-width: 1.6; transition: 0.3s;
}
.notice-socials a:hover svg { stroke: #c4151e; transform: scale(1.05); }
.notice-socials a.discord svg { fill: #ED1C24 !important; stroke: none; }
.notice-socials a.discord:hover svg { fill: #c4151e !important; }
p:empty { display: none; }
.popup-button-group {
  display: flex; flex-direction: row;
  gap: 20px; justify-content: center; align-items: center;
}
.notice-image { width: 100%; margin: 1rem auto; display: block; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* END_SECTION:cookies-pageload-popup-notice */

/* START_SECTION:download-wallpaper-testing (INDEX:24) */
.image-grid-section {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  padding: 20px 0;
  margin: 0 20px;
}

@media screen and (min-width: 1200px) {
  .image-grid-section {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .image-grid-section {
    grid-template-columns: repeat(3, 1fr);
  }
}


.image-grid-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-grid-item:hover {
  transform: translateY(-4px);
}

.image-grid-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.download-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.image-grid-item:hover .download-icon {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .download-icon {
    opacity: 1;
    transform: none;
  }
}

.download-icon svg {
  width: 25px;
  height: 25px;
  fill: #ec0c22;
}
/* END_SECTION:download-wallpaper-testing */

/* START_SECTION:dropdown-grid-faq (INDEX:25) */
html {
  scroll-behavior: smooth;
}

.faq-section-wrapper {
  width: 100%;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: black;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}

.faq-container {
  width: 90%;
}

.faq-section {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

/* FAQ Card */
.faq-card {
  flex: 1 1 calc(50% - 20px);
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease;
  cursor: pointer;
}

.faq-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Question Row */
.faq-question {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-size: 17px;
  gap: 15px;
}

.faq-icon {
  display: inline-block;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: white;
  line-height: 1.5;
  transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
  opacity: 0;
  margin-top: 0;
  letter-spacing: 0.5px;
}

.faq-answer p {
  color: black;
}

.faq-answer a {
  color: black; /* link color */
  text-decoration: underline;
  transition: color 0.2s ease;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol,
.faq-answer li {
  color: black !important;
}

.faq-answer ul,
.faq-answer ol {
  margin: 10px 0 10px 20px; /* spacing + indentation */
}

.faq-answer li {
  list-style-position: inside; /* makes sure bullets show inside */
}


/* Active State */
.faq-card.active .faq-answer {
  max-height: 1000px; /* adjust if needed */
  opacity: 1;
  margin-top: 20px;
}

.faq-card.active .faq-icon {
  transform: rotate(45deg); /* turns + into × */
  align-self: start;
}

@media(max-width: 1200px) {
  .faq-container {
    width: 100%
  }
}

/* Mobile */
@media(max-width: 768px) {
  .faq-card {
    flex: 1 1 100%;
  }

  .faq-answer ul,
.faq-answer ol {
  margin: 5px 0 5px 5px; /* spacing + indentation */
}
}
/* END_SECTION:dropdown-grid-faq */

/* START_SECTION:icons-description-section (INDEX:42) */
.card-section-wrapper {
  width: 100%;
  padding: 80px 25px 40px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: black;
}

.card-section-container {
  width: 90%;
}

.card-section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: white;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center cards horizontally */
  gap: 25px;
}

.card-item {
  width: calc(33.333% - 16.66px); /* fixed 1/3 width minus half the gap for spacing */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease;
  min-width: 250px; /* optional: prevent too small on narrow screens */
}

.card-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 15px auto;
}

.card-description {
  font-size: 1rem;
  color: #333;
  flex-grow: 1; /* makes cards same height */
}

@media (max-width: 1200px) {
  .card-section-container{
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .card-item {
    width: calc(50% - 12.5px); /* 2 per row on medium screens */
  }
}

@media (max-width: 768px) {
  .card-item {
    width: 100%; /* 1 per row on small screens */
  }
}
/* END_SECTION:icons-description-section */

/* START_SECTION:loop-video-full (INDEX:50) */
.fullwidth-video-section {
  position: relative;
  width: 100%;
  max-height: 720px;
  overflow: hidden;
}

.fullwidth-video-section video,
.fullwidth-video-section iframe {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
}

.fullwidth-video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--overlay-text-color, #fff);
  padding: 0 20px;
  z-index: 2;
}

/* --- MATCH EXISTING TEXT + BUTTON STYLES --- */
.full-text-content h2 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 48px;
  color: var(--overlay-text-color, #fff);
}

.full-text-content p {
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--overlay-text-color, #fff);
}

.split-btn {
  font-size: var(--btn-font-size, 16px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  background: linear-gradient(90deg, #EC0C22, #F88751);
  color: #fff;
  text-decoration: none;
  border: none;
  width: 175px;
  height: 45px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.split-btn:hover {
  background: transparent;
  border: 1px solid;
  border-image: linear-gradient(90deg, #EC0C22, #F88751) 1;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #EC0C22, #F88751);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .fullwidth-video-section video,
  .fullwidth-video-section iframe {
    height: 400px;
  }

  .full-text-content h2 {
    font-size: 32px;
  }

  .full-text-content p {
    font-size: 16px;
  }

  .fullwidth-video-overlay{
    padding: 0;
  }
}
/* END_SECTION:loop-video-full */

/* START_SECTION:one-style-banner-main-page (INDEX:76) */
.responsive-bg-section {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: white;
}

.responsive-bg-section .text-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 400px;
  color: black;
  left: 10px;
}

.responsive-bg-section h2 {
  font-size: var(--title-font-size);
  margin: var(--title-mt) var(--title-mr) var(--title-mb) var(--title-ml);
  font-weight: 650;
  line-height: 65px;
}

.responsive-bg-section p {
  font-size: var(--desc-font-size);
  margin: var(--desc-mt) var(--desc-mr) var(--desc-mb) var(--desc-ml);
  font-weight: 600;
  margin-top: 10px;
}

.responsive-bg-section .cta-button {
  font-size: var(--btn-font-size);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  background: linear-gradient(90deg, #EC0C22, #F88751);
  color: #fff;
  text-decoration: none;
  border: none;
  width: 175px;
  height: 45px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
}

.responsive-bg-section .cta-button:hover {
  background: transparent;
  border: 1px solid;
  border-image: linear-gradient(90deg, #EC0C22, #F88751) 1;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #EC0C22, #F88751);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

/* Disable pointer events and text selection on wrapper */
.responsive-bg-section .text-wrapper {
  pointer-events: none;
}

/* Prevent highlighting/selecting text */
.responsive-bg-section .text-wrapper h2,
.responsive-bg-section .text-wrapper p {
  user-select: none;
}

/* Re-enable pointer events for button only */
.responsive-bg-section .text-wrapper .cta-button {
  pointer-events: auto;
  user-select: none; /* button text unhighlightable */
}


/* Scale up by 1.25x for >1920px */
@media screen and (min-width: 1921px) {
  .responsive-bg-section h2 {
    font-size: calc(var(--title-font-size) * 1.25);
    margin: calc(var(--title-mt) * 1.25) calc(var(--title-mr) * 1.25) calc(var(--title-mb) * 1.25) calc(var(--title-ml) * 1.25);
    line-height: 85px;
  }
  .responsive-bg-section p {
    font-size: calc(var(--desc-font-size) * 1.25);
    margin: calc(var(--desc-mt) * 1.25) calc(var(--desc-mr) * 1.25) calc(var(--desc-mb) * 1.25) calc(var(--desc-ml) * 1.25);
    margin-top: 15px;
  }
  .responsive-bg-section .cta-button {
    font-size: calc(var(--btn-font-size) * 1.25);
    margin: calc(var(--btn-mt) * 1.25) calc(var(--btn-mr) * 1.25) calc(var(--btn-mb) * 1.25) calc(var(--btn-ml) * 1.25);
    width: calc(175px * 1.25);
    height: calc(40px * 1.25);
  }
  .responsive-bg-section .text-wrapper{
    max-width: 500px;
  }
}

/* Scale down by 0.75x for <=1440px */
@media screen and (max-width: 1440px) {
  .responsive-bg-section h2 {
    font-size: calc(var(--title-font-size) * 0.75);
    margin: calc(var(--title-mt) * 0.75) calc(var(--title-mr) * 0.75) calc(var(--title-mb) * 0.75) calc(var(--title-ml) * 0.75);
    line-height: 48px;
  }
  .responsive-bg-section p {
    font-size: calc(var(--desc-font-size) * 0.85);
    margin: calc(var(--desc-mt) * 0.75) calc(var(--desc-mr) * 0.75) calc(var(--desc-mb) * 0.75) calc(var(--desc-ml) * 0.75);
  }
  .responsive-bg-section .cta-button {
    font-size: calc(var(--btn-font-size) * 0.75);
    margin: calc(var(--btn-mt) * 0.75) calc(var(--btn-mr) * 0.75) calc(var(--btn-mb) * 0.75) calc(var(--btn-ml) * 0.75);
    width: calc(175px * 0.75);
    height: calc(40px * 0.75);
  }
}

@media screen and (max-width: 1080px) {
  .responsive-bg-section h2 {
    font-size: calc(var(--title-font-size) * 0.65);
    margin: calc(var(--title-mt) * 0.65) calc(var(--title-mr) * 0.65) calc(var(--title-mb) * 0.65) calc(var(--title-ml) * 0.65);
  }
  .responsive-bg-section p {
    font-size: calc(var(--desc-font-size) * 0.75);
    margin: calc(var(--desc-mt) * 0.65) calc(var(--desc-mr) * 0.65) calc(var(--desc-mb) * 0.65) calc(var(--desc-ml) * 0.65);
  }
  .responsive-bg-section .cta-button {
    font-size: calc(var(--btn-font-size) * 0.65);
    margin: calc(var(--btn-mt) * 0.65) calc(var(--btn-mr) * 0.65) calc(var(--btn-mb) * 0.65) calc(var(--btn-ml) * 0.65);
    width: calc(175px * 0.65);
    height: calc(40px * 0.65);
  }
}

/* Scale down by 0.65x for <=880px */
@media screen and (max-width: 880px) {
  .responsive-bg-section h2 {
    font-size: calc(var(--title-font-size) * 0.55);
    margin: calc(var(--title-mt) * 0.55) calc(var(--title-mr) * 0.55) calc(var(--title-mb) * 0.55) calc(var(--title-ml) * 0.55);
    line-height: 65px;
  }
  .responsive-bg-section p {
    font-size: calc(var(--desc-font-size) * 0.65);
    margin: calc(var(--desc-mt) * 0.55) calc(var(--desc-mr) * 0.55) calc(var(--desc-mb) * 0.55) calc(var(--desc-ml) * 0.55);
  }
  .responsive-bg-section .cta-button {
    font-size: calc(var(--btn-font-size) * 0.55);
    margin: calc(var(--btn-mt) * 0.55) calc(var(--btn-mr) * 0.55) calc(var(--btn-mb) * 0.55) calc(var(--btn-ml) * 0.55);
    width: calc(175px * 0.55);
    height: calc(40px * 0.55);
  }
}


/* Mobile adjustments */
@media screen and (max-width: 767px) {
  .responsive-bg-section {
    width: 100%;                      /* full width */
    max-width: 100%;                  /* prevent horizontal overflow */
    overflow: hidden;                 /* hide any overflow */
    background-image: var(--bg-mobile);
    background-size: cover;           /* fill container without stretching */
    background-position: center center;
    background-repeat: no-repeat;
    height: 600px;                     /* fixed mobile height */
    display: flex;
    justify-content: flex-start;      /* align text to top */
    align-items: flex-start;          /* sticky top */
    box-sizing: border-box;           /* include padding in width */
  }

  .responsive-bg-section .text-wrapper {
    position: relative;      /* inside section */
    top: 5%;                 /* stick near top */
    left: auto !important;   /* disable left positioning */
    transform: none !important; /* remove translateY centering */
    text-align: center;      /* center text inside wrapper */
    max-width: 90%;          /* prevent overflow */
    margin: 0 auto;          /* center wrapper horizontally */
    padding: 10px 0;
    box-sizing: border-box;
  }

  .responsive-bg-section h2 {
    font-size: calc(var(--title-font-size) * 0.65);
    margin: calc(var(--title-mt) * 0.65) calc(var(--title-mr) * 0.65)
            calc(var(--title-mb) * 0.65) calc(var(--title-ml) * 0.65);
    line-height: 1.2;
    width: auto;
  }

  .responsive-bg-section p {
    font-size: calc(var(--desc-font-size) * 0.85);
    margin: calc(var(--desc-mt) * 0.75) calc(var(--desc-mr) * 0.75)
            calc(var(--desc-mb) * 0.75) calc(var(--desc-ml) * 0.75);
    line-height: 1.4;
  }

  .responsive-bg-section .cta-button {
    font-size: calc(var(--btn-font-size) * 0.75);
    margin: calc(var(--btn-mt) * 0.75) calc(var(--btn-mr) * 0.75)
            calc(var(--btn-mb) * 0.75) calc(var(--btn-ml) * 0.75);
    width: calc(175px * 0.75);
    height: calc(40px * 0.75);
  }
}
/* END_SECTION:one-style-banner-main-page */

/* START_SECTION:one-style-main-page-banner-popup (INDEX:77) */
.custom-bg-text-section {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  justify-content: var(--justify);
  align-items: var(--align);
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
  padding: 0 5%;
}

.custom-bg-text-section .bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,var(--overlay-opacity));
  z-index: 1;
}

.custom-bg-text-section .text-wrapper {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: inherit;
  gap: 25px;
  pointer-events: none;
}

.custom-bg-text-section h2,
.custom-bg-text-section p {
  user-select: none;
  pointer-events: none;
  margin: 0;
}

.custom-bg-text-section h2 { font-size: var(--title-font-size); font-weight: 800; }
.custom-bg-text-section p { font-size: var(--desc-font-size); font-weight: 450; }

.custom-bg-text-section .cta-button {
  font-size: var(--btn-font-size);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  background: linear-gradient(90deg, #EC0C22, #F88751);
  color: #fff;
  text-decoration: none;
  border: none;
  width: 175px;
  height: 45px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
}

.custom-bg-text-section .cta-button:hover {
  background: transparent;
  border: 1px solid;
  border-image: linear-gradient(90deg, #EC0C22, #F88751) 1;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #EC0C22, #F88751);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.confirmation-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.confirmation-popup .popup-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 720px;
  width: 90%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  letter-spacing: 0.1px;
}

.popup-content h3 { margin-bottom: 7.5px; color: black; }
.popup-description p { margin-bottom: 25px; color:rgb(110, 110, 110); font-weight: 400; font-size: 18px}
.popup-content label { display: block; margin-bottom: 20px; font-size: 14px; color: black; }
.check-box-policy p {color: black;}
.checkbox-wrapper #confirm-checkbox{
  width: 20px;
  height: auto;
}

.checkbox-wrapper .checkbox-label {
  margin: 0;
}

.checkbox-label p {
  color: black;
  font-weight: 400;
  font-size: 15px
}

.checkbox-wrapper {
  display: flex;
  align-items: center;   /* vertically center */
  gap: 8px;              /* space between checkbox and text */
  color: black;
  font-size: 14px;
  flex-direction: row;
}

.checkbox-label a {
  color: black;
  font-weight: 400;
  font-size: 15px;
  text-decoration: underline;
  transition: all 0.3s ease; /* smooth hover */
}


.popup-details {
  color: black;
  text-align: left;
}

.popup-details p{
  font-weight: 400;
  font-size: 17.5px;
}

.popup-details ul{
  margin: 10px 25px;
  font-weight: 400;
  font-size: 17.5px;
}

.popup-details * {
  color: black !important;
}

.confirmation-popup a {
  pointer-events: auto !important;
}

.popup-content #confirm-button {
  font-size: var(--btn-font-size);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  background: linear-gradient(90deg, #EC0C22, #F88751);
  color: #fff;
  text-decoration: none;
  border: none;
  width: 140px;
  height: 35px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  cursor: pointer;
}

.popup-content #confirm-button:hover {
  background: transparent;
  border: 1px solid;
  border-image: linear-gradient(90deg, #EC0C22, #F88751) 1;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #EC0C22, #F88751);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.popup-content #cancel-button {
  font-size: var(--btn-font-size);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  color: white;
  background-color: black;
  width: 140px;
  height: 35px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  cursor: pointer;
}

.popup-content #cancel-button:hover {
  color: black;
  background-color: white;
  border: 1px solid black;
}

.button-group-popup {
  display: flex;
  flex-direction: row;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.text-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.confirmation-popup #confirm-button:disabled { opacity: 0.5; cursor: not-allowed; }

@media screen and (min-width: 1921px) {
  .custom-bg-text-section h2 { font-size: calc(var(--title-font-size) * 1.25); }
  .custom-bg-text-section p { font-size: calc(var(--desc-font-size) * 1.25); }
  .custom-bg-text-section .cta-button { font-size: calc(var(--btn-font-size) * 1.25); width: calc(175px * 1.25); height: calc(45px * 1.25); }
}

@media screen and (max-width: 1440px) {
  .custom-bg-text-section h2 { font-size: calc(var(--title-font-size) * 0.85); }
  .custom-bg-text-section p { font-size: calc(var(--desc-font-size) * 0.85); }
  .custom-bg-text-section .cta-button { font-size: calc(var(--btn-font-size) * 0.85); width: calc(175px * 0.85); height: calc(45px * 0.85); }
}

@media screen and (max-width: 767px) {
  .custom-bg-text-section {
    background-image: var(--bg-mobile);
    height: 300px;
    justify-content: center;
    align-items: flex-start;
  }
  .custom-bg-text-section .text-wrapper {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    height: 100%;
    justify-content: center;
  }
  .custom-bg-text-section h2 { font-size: calc(var(--title-font-size) * 0.65); line-height: 1.2; }
  .custom-bg-text-section p { font-size: calc(var(--desc-font-size) * 0.75); line-height: 1.4; }
  .custom-bg-text-section .cta-button { font-size: calc(var(--btn-font-size) * 0.75); width: calc(175px * 0.75); height: calc(45px * 0.75); }
  .popup-details ul {font-size: calc(var(--btn-font-size) * 0.85);}
  .button-group-popup{
    margin-top: 10px;
  }
}
/* END_SECTION:one-style-main-page-banner-popup */

/* START_SECTION:page-load-popup (INDEX:79) */
.notice-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* dim background */
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.notice-popup {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
  animation: fadeInUp 0.3s ease-out;
  letter-spacing: 0.25px;;
}

.notice-popup h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: black;
  font-weight: 800;
}

.notice-popup p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #444;
}

.notice-popup button {
  font-size: var(--btn-font-size);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  background: linear-gradient(90deg, #EC0C22, #F88751);
  color: #fff;
  text-decoration: none;
  border: none;
  width: 140px;
  height: 35px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  cursor: pointer;
}

.notice-popup button:hover {
  background: transparent;
  border: 1px solid;
  border-image: linear-gradient(90deg, #EC0C22, #F88751) 1;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #EC0C22, #F88751);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.notice-popup strong {
  font-weight: 800;
}

@media (max-width: 768px){
  .notice-popup{
  padding: 25px 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* END_SECTION:page-load-popup */