/*
 * tablet-desktop-style.css
 * Project: LuckyDraw (VIB BTS World Tour ARIRANG)
 * Covers: Desktop base (>1025px) + Tablet overrides (768px–1025px)
 * Generated by: css-builder Agent 06
 */

/* ============================================================
   RESET & GLOBAL
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  /* jQuery .animate() handles smooth scroll — do not set smooth here */
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #000000;
  background: #ffffff;
  /* Override vendor styleWeb.css `body{height:100%}` which breaks position:sticky */
  height: auto !important;
  min-height: 100%;
}

.vib-v2-section-header_new.home-header {
  display: none !important;
}

.right-section .divider,
.right-section .vib-v2-langugle_footer {
  display: none !important;
}

.lucky-wheel-section__footnote a {
  color: #e4e4e4;

}

/* ============================================================
   CONTAINER
============================================================ */
.container-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Scroll offset: single 77px sticky header */
#section-spin,
#section-prizes,
#section-vspin-friday,
#section-howto,
#section-info {
  scroll-margin-top: 77px;
}

.vib-v2-section-header_new.home-header {
  position: static;
}

.vib-v2-section-header_new.home-header .vib-v2-hamburger-menu,
.vib-v2-section-header_new.home-header .vib-v2-link-search-home,
.vib-v2-section-header_new.home-header .vib-v2-link-login-home {
  display: none;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-cta,
.btn-cta:link,
.btn-cta:visited,
.btn-cta:hover,
.btn-cta:active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: 48px;
  padding: 0 30px;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  min-width: 125px;
  cursor: pointer;
  border: none;
  transition: color 0.6s ease;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

.btn-cta--yellow {
  background-color: #FDB814;
  color: #000000;
}

@media (hover: hover) and (pointer: fine) and (min-width: 1026px) {
  .btn-cta:hover {
    color: #000000;
  }

  .btn-cta:hover::before {
    opacity: 1;
  }
}

@media screen and (max-width: 1026px) {
  .btn-cta:hover {
    color: #000000 !important;
  }

  .howto-tabs {
    top: 65px;
  }

  #tab-nav {
    box-shadow: 0 1px 5px 0 rgba(188, 188, 188, 0.25);
  }
}


/* ============================================================
   VIB HEADER
============================================================ */
/* ── Header: black fixed bar — logo left, tabs right (Figma 32195:26531, h=77px) ── */
/* NOTE: position:fixed instead of sticky — the IBM Portal parent container has a
   fixed height (~521px) which causes sticky to scroll away once that boundary is
   reached. fixed always stays at the top of the viewport. */
.vib-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100 !important;

  box-shadow: 0 1px 5px 0 rgba(188, 188, 188, 0.25);


  background: var(--Mono-Mono---1, #000);
}



.header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 77px;
  padding: 0 20px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo img {
  display: block;
  width: 77px;
  height: 77px;
  object-fit: contain;
}

/* ============================================================
   SECTION 1: HERO BANNER
============================================================ */
.hero-banner {
  position: relative;
  overflow: hidden;
  height: 580px;
  border-radius: 0 0 30px 30px;
  /* Compensate for position:fixed header taking the element out of document flow */
  margin-top: 77px;
}

/* Background images — absolute fill */
.hero-banner__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
}

/* Mobile bg hidden on desktop/tablet */
.hero-banner__bg-img--mob {
  display: none;
}

/* Inner wrapper — positions hero-left.webp on the left */
.hero-banner__inner {
  position: absolute;
  top: 0px;
  /* Figma: hero-left y=45 within 480px banner */
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-banner__inner .container-inner {
  display: flex;
  align-items: center;
  padding: 0;
  height: 100%;
}

/* Hero-left artwork: 304px wide, Figma 304×400px */
.hero-banner__left {
  display: block;
  width: 304px;
  height: auto;
  flex-shrink: 0;
}

.new-download-app {
  display: none !important;
}

/* Scroll-down arrow — shown on mobile at section bottom */
.hero-banner__scroll-arrow {
  display: flex;
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  text-decoration: none;
  animation: bounce-down 1.6s ease-in-out infinite;
}

@keyframes bounce-down {

  0%,
  100% {
    transform: translateX(-50%) translateY(-5px);
  }

  50% {
    transform: translateX(-50%) translateY(5px);
  }
}

/* ============================================================
   SECTION 2: TAB NAVIGATION — inside .header-inner, right side
============================================================ */
.tab-nav {
  position: static;
  background: transparent;
  display: flex;
  align-items: center;
  height: 77px;
  flex-shrink: 0;
}

.tab-nav__container {
  display: flex;
  align-items: center;
  height: 77px;
  gap: 40px;
}

.tab-nav__item {
  /* button reset */
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;

  display: inline-flex;
  align-items: center;
  height: 70px;
  padding: 0;
  letter-spacing: 0.16px;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: color 0.15s;

  color: var(--Mono-Mono---7, #FFF);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.tab-nav__item--active {
  color: #ffffff;
  font-weight: 600;
}

.tab-nav__item:hover {
  color: #ffffff;
}

.tab-nav__item--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--Banner-Fire-Right, linear-gradient(90deg, #F39423 0.14%, #EE511D 99.86%));
}

/* ============================================================
   SECTION 3: LUCKY WHEEL
============================================================ */
/* Figma 32052:25860: pure black background */
.lucky-wheel-section {
  background: #000000;
  padding: 63px 0;
}

.lucky-wheel-section__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.lucky-wheel-section__content {
  flex: 0 0 500px;
  max-width: 500px;
}

.lucky-wheel-section__heading {
  margin-bottom: 20px;
}

.lucky-wheel-section__title {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 40px;
  letter-spacing: 0.3px;
}

.lucky-wheel-section__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 26px;
  letter-spacing: 0.16px;
  margin: 0;
}

/* Points info box */
.points-info-box {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #f2f2f2;
  border-radius: 14px;
  padding: 30px 31px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 5px;
}

.points-info-box__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.points-info-box__label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 18px;
  letter-spacing: 0.14px;
  margin: 0;
}

.points-info-box__value {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0;
  line-height: 24px;
  letter-spacing: 0.2px;
}

.points-info-box__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.lucky-wheel-section__footnote {
  font-size: 12px;
  font-weight: 400;
  color: #e4e4e4;
  line-height: 16px;
  letter-spacing: 0.12px;
  margin: 0 0 20px 0;
}

/* Wheel */
.lucky-wheel-section__wheel-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prizes-section__dark-band::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100%;
  /* adjust to image height if needed */
  background-image: url('/static/bts-world-tour-visa-2/images/icons/vector.png');
  background-repeat: no-repeat;
  /* background-position: bottom; */
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

/* Wheel: canvas approach (new design) */
#wheelWrap {
  position: relative;
  width: 437px;
  height: 437px;
  cursor: pointer;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.spin-voucher-card__img {
  width: 120px;
  height: 93.75px;
  flex-shrink: 0;
  border-radius: 6.865px;
  border: 1.373px solid var(--Midnight-Blue, #22376D);
  background: #FFF;
}

#wheelWrap.disable {
  pointer-events: none;
  cursor: default;
}

#wheelDisc {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* wheel2.js: outer ring overlay — fixed, does NOT rotate */
#wheelStroke {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

/* wheel3.js: rotating div that wraps <canvas id="wheelCanvas"> */
#wheel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  /* GPU-composited layer — smooth compositor-thread WAAPI animation */
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-origin: center center;
}

#wheelCanvas {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* Canvas must not intercept clicks — wheelWrap onclick and #centerBtn sit above/below */
  pointer-events: none;
}

/* Fixed blinking dots ring — does NOT rotate with wheel */
#dotsRing {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
}

#dotsRing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(/static/bts-world-tour-visa-2/images/img2/dot-light.png) center / 100% no-repeat;
  border-radius: 50%;
}

#dotsRing::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url(/static/bts-world-tour-visa-2/images/img2/dot-light-active.png) center / 100% no-repeat;
  border-radius: 50%;
  animation: blink-dots 0.72s step-start infinite;
}

@keyframes blink-dots {

  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

/* Speed up blink while spinning */
/* #wheelWrap.spinning #dotsRing::after {
  animation-duration: 0.12s;
} */

/* Fixed centre spin button */
#centerBtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 117px;
  height: 143px;
  pointer-events: none;
  z-index: 6;
}

#centerBtn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* .wheel-game wrapper */
.wheel-game {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Loader */
.box_loader {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FDB814;
  border-radius: 50%;
  animation: loader-spin 0.8s linear infinite;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Modal */
/* Bootstrap 4 CSS + Bootstrap 3 JS compatibility: B4 uses .show, B3 uses .in */
.modal-general.modal.in {
  opacity: 1;
}

.modal-general.modal.in .modal-dialog {
  transform: none;
}

.modal-backdrop.in {
  background: rgba(0, 0, 0, 0.70);
}

.modal-general .modal-dialog {
  max-width: 580px;
  margin: 30px auto;
}

.modal-general .modal-content {
  border-radius: 12px;
  overflow: hidden;
}

.modal-general .box_modal_success {
  padding: 40px 20px;
  text-align: center;
}

.modal-general .icon-mess {
  margin-bottom: 20px;
  line-height: 0;
}

.modal-general .icon-mess img {
  width: 60px;
  height: 60px;
}

.modal-general .title_success {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 15px;
  color: #000;
}

.modal-general .detail,
.modal-general .detail p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  color: #000;
}

.modal-general .detail p+p {
  margin-top: 8px;
}

#popup-general-action-wrap {
  display: none;
  margin-top: 20px;
  text-align: right;
}

#popup-general-action-btn {

  height: 56px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
}


.popup-exit {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
  width: 26px;
  height: 26px;
}

.popup-exit:hover {
  color: #333;
}

@media screen and (min-width: 1024px) {

  .main-prize-card__items {
    gap: 45px !important;
  }

  .modal-general.modal {
    text-align: center;
  }

  .modal-general.modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }

  .modal-general .modal-dialog {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
  }

  .spin-day-card--upcoming:hover {
    background: #E4E4E4;
    cursor: pointer;
  }

  .spin-day-card--upcoming:hover .spin-day-card__inner {
    box-shadow: inset 0 0 0 2px #E4E4E4;
  }

  .spin-day-card--upcoming a:hover {
    color: #000000 !important;
  }
}

@media screen and (max-width: 767px) {
  #popup-general-action-wrap {
    text-align: right;
    margin-top: 24px;
  }

  #popup-general-action-btn {
    width: 100%;
    min-width: 0;
    max-width: fit-content;
  }
}

/* ============================================================
   SECTION 4: PRIZES
============================================================ */
/* Figma 32052:25879: white section, black band 321px at top connecting from spin */
.prizes-section {
  position: relative;
  padding: 0px 0 60px;
  background: #FAFAFA;
  overflow: hidden;
}

/* Black-to-white gradient band at top — stays dark, fades at bottom */
.prizes-section__dark-band {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 365px;
  background: black;
  z-index: 0;
  pointer-events: none;
}

/* Ensure content container sits above the dark band */
.prizes-section .container-inner {
  position: relative;
  z-index: 1;
}

/* Background structure hidden — gradient handles the transition */
.prizes-section__bg {
  display: none;
}

.prizes-section__top-fill {
  display: none;
}

.prizes-section__wave {
  display: none;
}

.prizes-section__header {
  text-align: left;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* White text: header sits on black band */
.prizes-section__title {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 5px 0;
  line-height: 40px;
  letter-spacing: 0.3px;
}

.prizes-section__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 26px;
  letter-spacing: 0.16px;
  margin: 0;
}

/* Figma: dark radial gradient (gray center → black), white glow shadow */
.main-prize-card {
  background: radial-gradient(ellipse 110% 75% at 50% 0%,
      rgba(94, 92, 98, 1) 0%,
      rgba(47, 46, 49, 1) 35%,
      rgba(12, 12, 12, 1) 60%,
      rgba(0, 0, 0, 1) 70%);
  border-radius: 10px;
  padding: 30px 40px 40px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 0 134px rgba(255, 255, 255, 0.2);
}

.main-prize-card__deco {
  position: absolute;
  top: -39px;
  right: -48px;
  width: 173px;
  height: 144px;
  pointer-events: none;
  transform: rotateZ(45deg);
}

.main-prize-card__heading {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 58px 0;
  line-height: 30px;
  letter-spacing: 0.24px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.main-prize-card__items {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
}

.main-prize-card__side-item {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 43px;
  text-align: center;
}

.main-prize-card__icon {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: contain;
  flex-shrink: 0;
}

.main-prize-card__item-label {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.16px;
  min-height: 44px;
}

.main-prize-card__center {
  display: flex;
  text-align: center;
  position: relative;
  gap: 37px;
  flex-direction: column;
  max-width: 325px;
}

.main-prize-card__car-shadow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  opacity: 0.4;
}

.main-prize-card__car {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  max-height: 150px;
}

.main-prize-card__car-label p {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 5px 0 0 0;
  line-height: 22px;
  letter-spacing: 0.14px;
}

/* Voucher cards */
.voucher-section {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

/* Figma: dark text on white prizes background */
.voucher-section__title {
  text-align: left;
  font-size: 26px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 20px 0;
  line-height: 34px;
  letter-spacing: 0.26px;
}

.voucher-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

/* Figma: white card, E4E4E4 border, ticket-stub badge at top, dark label */
.voucher-card {
  flex: 1 0 0;
  min-width: 175px;
  background: #ffffff;
  border: 1px solid #E4E4E4;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s ease;
}





/* Ticket-stub badge image: 64×50px per Figma
   Override owl.carousel .owl-item img { width: 100% } with higher specificity */
.voucher-card__badge-img,
.voucher-cards .owl-item .voucher-card__badge-img {
  width: 64px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.voucher-card__label {
  font-size: 14px;
  color: #000000;
  margin: 0;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.14px;
}

/* ============================================================
   SECTION 5: V-SPIN FRIDAY
============================================================ */
/* Figma 32052:25997: white background */
/* Figma: #fafafa section bg */
.vspin-section {
  background: #fafafa;
  padding: 20px 0;
  padding-bottom: 40px;
}

.vspin-section__header {
  text-align: left;
  margin-bottom: 30px;
}

.vspin-section__title {
  font-size: 30px;
  font-weight: 600;
  color: #000000;
  line-height: 40px;
  letter-spacing: 0.3px;
  margin: 0 0 10px 0;
}

.vspin-section__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin: 0;
  line-height: 26px;
  letter-spacing: 0.16px;
}

.vspin-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

/* Base card: exactly 4 per row on desktop */
.spin-day-card {
  flex: 0 0 calc(25% - 15px);
  width: calc(25% - 15px);
  border-radius: 10px;
}

/* Past card */
.spin-day-card--past {
  background: #ffffff;
  box-shadow: inset 0 0 0 2px #F2F2F2;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  max-height: 151px;
}

.scroll-to-top .icon-scrolltop {
  background-color: white !important;
}

.spin-day-card--past .spin-day-card__label,
.spin-day-card--past .spin-day-card__date {
  color: #AAAAAA;
}

/* Active card — Figma: solid Brand/Dark Orange #F47920 */
.spin-day-card--active {
 border-radius: 10px;
background: var(--Banner-Fire, linear-gradient(179deg, #F39423 0.45%, #EE511D 99.21%));
  padding: 20px;
  height: 151px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 0;
}

.spin-day-card--active .spin-day-card__label {
  color: var(--Mono-Mono---5, #F2F2F2);

}

.spin-day-card--active .spin-day-card__date {
  color: #ffffff;
  font-weight: 700;
}

/* Upcoming card — Figma: #f2f2f2 outer wrapper rounded-15px + inner white card + footer row */
.spin-day-card--upcoming {
  background: #F2F2F2;
  border: none;
  border-radius: 15px;
  padding: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: none;
}

.spin-day-card--upcoming .spin-day-card__inner {
  background: #ffffff;
  border-radius: 10px;

  box-shadow: inset 0 0 0 2px #F2F2F2;

  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  flex: 1;
  width: 100%;
  max-height: 151px;
}

.spin-day-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.spin-day-card__label {
  font-size: 14px;
  font-weight: 500;
  color: #5E5C62;
  margin: 0;
  line-height: 18px;
  letter-spacing: 0.14px;
}

.spin-day-card__date {
  font-size: 30px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 40px;
  letter-spacing: 0.3px;
}

.spin-day-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px 3px 10px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.spin-day-card__tag--past {
  background: #AAAAAA;
  color: #ffffff;
}

.spin-day-card__tag--active {
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  padding: 5px 10px 3px 8px;
  height: 23px;
}

/* Upcoming tag: orange pill — Figma: #F47920 */
.spin-day-card__tag--upcoming {
  background: var(--Banner-Fire, linear-gradient(179deg, #F39423 0.45%, #EE511D 99.21%));
  color: #ffffff;
  font-weight: 500;
}

.spin-day-card__footer {
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.add-to-calendar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.12px;
  color: #000000;
  text-decoration: none !important;
  font-weight: 400;
  white-space: nowrap;
}

.add-to-calendar img {
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
}

.vib-scroll-animations .scrollsection .box .link-detail a,
.vib-scroll-animations .scrollsection .box .link-detail a:link,
.vib-scroll-animations .scrollsection .box .link-detail a:hover {
  text-decoration: none !important;
}

#popup-general .popup_content .box_modal_success {
  text-align: left;
}


.box_contact a {
  text-decoration: none !important;
}

.section-copyright-inner .right-section {
  display: none;
}

@media screen and (min-width: 1026px) {
  .page-logged-in #section-spin {
    padding-top: 117px;
  }

  .howto-tabs__pill:hover {
    border-radius: 30px;
    background: var(--Mono-Mono-5, #F2F2F2);
  }
}



@media (min-width: 768px) and (max-width:1025px) {
  .modal-dialog {
    width: 100vw !important;
  }
}

@media screen and (max-width: 1025px) {
  .page-logged-in #section-spin {
    padding-top: 140px;
  }

  #header.vib-header {
    position: relative !important;
    box-shadow: 0 1px 5px 0 rgba(188, 188, 188, 0.25);
    z-index: 1111 !important;
  }

  #tab-nav {
    background: black;
  }

  /* #voucher-carousel .owl-stage {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  } */
}


@media screen and (min-width: 768px) {
  .modal:before {
    content: none;
  }
}

/* ============================================================
   SECTION 6: HOW TO PARTICIPATE
============================================================ */
.howto-section {
  padding: 40px 0;
  background: #FAFAFA;
  padding-bottom: 0px;
}

.vib-banner-bottom {
  padding-top: 20px;
}

@media (min-width: 1000px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 100%;
  }
}

.vib-banner-bottom .content-title {
  justify-content: flex-start;
}


.howto-section__title {
  font-size: 30px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 30px 0;
  text-align: left;


}

.howto-tabs {
  display: flex;
  margin-bottom: 5px;
}

/* Mobile dropdown: hidden on tablet/desktop */
.howto-tabs__dropdown {
  display: none;
}

/* Pills container: white pill-shaped container with border — matches Figma */
.howto-tabs__pills {
  display: inline-flex;
  gap: 20px;
  background: #FFFFFF;
  padding: 6px;
  border-radius: 40px;
  border: 1px solid #E4E4E4;
  height: 50px;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.howto-tabs__pill-glider {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-radius: 20px;
  background: var(--Banner-Fire-Right, linear-gradient(90deg, #F39423 0.14%, #EE511D 99.86%));
  pointer-events: none;
  z-index: 0;
  transition: left 0.58s cubic-bezier(0.2, 0.8, 0.2, 1),
    top 0.58s cubic-bezier(0.2, 0.8, 0.2, 1),
    width 0.58s cubic-bezier(0.2, 0.8, 0.2, 1),
    height 0.58s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.howto-tabs__pill-glider.is-instant {
  transition: none;
}

/* Inactive pill */
.howto-tabs__pill {
  padding: 6px 15px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  background: transparent;
  color: #000000;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.16px;
  line-height: 26px;
  position: relative;
  z-index: 1;
  transition: color 0.22s ease;
}

/* Active pill: blue gradient, tighter radius — matches Figma radial gradient */
.howto-tabs__pill--active {
  background: var(--Banner-Fire-Right, linear-gradient(90deg, #F39423 0.14%, #EE511D 99.86%));

  color: #ffffff;
  border-radius: 20px;
}

/* When JS glider is enabled, active background is rendered by glider element. */
.howto-tabs__pills--animated .howto-tabs__pill--active {
  background: transparent;
}

/* Content box: white card with light border and rounded corners — matches Figma */
.howto-content {
  background: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-radius: 15px;
  overflow: hidden;
  min-height: 498px;
}

.howto-content__layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 40px;
  min-height: 498px;
  box-sizing: border-box;
}

/* Mockup column: 250px wide to match Figma frame width */
.howto-content__mockup {
  flex: 0 0 250px;
  display: flex;
  justify-content: center;
}

/* iPhone mockup: stacked layers — screen behind device frame */
.iphone-mockup {
  position: relative;
  width: 220px;
  height: 416px;
  display: inline-block;
}

@media only screen and (min-width: 1025px) {
  .howto-content__mockup {
    margin-right: 20px;
  }
}

/* Device SVG: the phone bezel/frame sits below the screen */
.iphone-mockup__device {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 416px;
  z-index: 1;
  display: block;
  object-fit: contain;
}

/* Screen image ON TOP of device, clipped to match bezel opening
   Figma values: top 3.79px, left 5.68px, w 194px, h 407px, radius 27px */
.iphone-mockup__screen {
  position: absolute;
  top: 4px;
  left: 6px;
  width: 194px;
  height: 407px;
  border-radius: 27px;
  object-fit: cover;
  z-index: 2;
}

/* Steps start lower than mockup (Figma: mockup top-40, steps top-80) */
.howto-content__steps {
  flex: 1;
  padding-top: 40px;
}

/* Steps sub-title — matches Figma: SemiBold 20px */
.howto-content__steps-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 20px 0;
  letter-spacing: 0.2px;
}

.steps-list {
  --step-badge-size: 35px;
  --step-item-gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.steps-list__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: var(--step-item-gap);
  position: relative;
}

/* Per-item connector keeps alignment correct even when each step has dynamic text height */
.steps-list__item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc((var(--step-badge-size) / 2) - 0.5px);
  top: calc(var(--step-badge-size) / 2);
  bottom: calc(var(--step-item-gap) * -1);
  width: 1px;
  background: #E0E0E0;
}

.steps-list__item:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .vib-banner-bottom .container {
    max-width: 1140px;
  }

}


/* Step badge: pure CSS circle — matches Figma Group 482375 */
.steps-list__number {
  flex-shrink: 0;
  width: var(--step-badge-size);
  height: var(--step-badge-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #FAFAFA;
  border: 1px solid #F2F2F2;
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
  color: black;
  letter-spacing: 0.14px;
  line-height: 1;
}

/* Step text: Regular 16px, color #000 — matches Figma */
.steps-list__text {
  font-size: 16px;
  color: #000000;
  line-height: 26px;
  padding-top: 4px;
  letter-spacing: 0.16px;
}

.steps-list__text p {
  margin: 0;
}

.steps-list__text p+p {
  margin-top: 4px;
}

/* ============================================================
   SECTION 7: PROGRAM INFO
============================================================ */
.program-info-section {
  padding: 80px 0;
  background: #FAFAFA;
}

.program-info-section__title {
  font-size: 30px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 30px 0;
  text-align: left;
}

.program-info-table {
  background: #fff;
  border: 1px solid #E4E4E4;
  border-radius: 15px;
  overflow: hidden;
}

.program-info-table__row {
  display: flex;
  align-items: flex-start;
  padding: 15px 20px;
  background: #ffffff;
}

.program-info-table__divider {
  height: 1px;
  background: #E4E4E4;
  margin: 0 20px;
}

.program-info-table__label {
  flex: 0 0 300px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  line-height: 26px;
}

.program-info-table__row .program-info-table__label,
.program-info-table__row .program-info-table__value,
.program-info-table__row .program-info-table__value p {
  line-height: 26px;
}


/* .program-info-table__value {
  flex: 1;
  font-size: 16px;
  color: #000000;
  line-height: 1.625;
}

.program-info-table__value ul {
  margin: 8px 0 0 0;
  padding-left: 24px;
  list-style: disc;
}

.program-info-table__value ul li {
  list-style-type: disc;
  margin-bottom: 4px;
}

.program-info-table__value p {
  margin: 0 0 4px 0;
} */

.program-info-table__link {
  color: #000000;
  text-decoration: underline;
}

/* ============================================================
   SECTION 8: CARD REGISTRATION CAROUSEL
============================================================ */
.card-registration-section {
  padding: 80px 0;
  background: #ffffff;
}

.card-registration-section__title {
  font-size: 30px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 40px 0;
  text-align: center;
}

.card-registration-section__slider-wrap {
  position: relative;
}

.card-item {
  padding: 10px;
  text-align: center;
}

.card-item img,
.card-item source+img {
  display: block;
  margin: 0 auto;
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.card-item:hover img {
  transform: translateY(-4px);
}

.card-carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 10px;
}

.card-carousel-nav__prev,
.card-carousel-nav__next {
  pointer-events: all;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
}

.card-carousel-nav__prev:hover,
.card-carousel-nav__next:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.card-carousel-nav__next img {
  transform: rotate(180deg);
}

/* ============================================================
   SECTION 9: FOOTER
============================================================ */
.vib-footer {
  background: #22376D;
  padding: 40px 0;
}

.footer-inner .container-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  display: block;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.2s;
}

.footer-social__icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-social__icon img {
  display: block;
  filter: brightness(0) invert(1);
}

@media screen and (min-width: 1140px) {
  .container-inner {
    padding: 0;
  }
}


/* ============================================================
   TABLET OVERRIDES — 768px to 1025px
============================================================ */
@media only screen and (min-width: 768px) and (max-width: 1025px) {
  .container-inner {
    padding: 0 20px;
    max-width: 100%;
  }

  /* Header: 2-row on tablet (logo 60px + tabs 60px = 120px total) */
  .header-inner {
    flex-direction: column;
    align-items: center;
    height: 120px;
    padding: 0;
    max-width: 100%;
    margin: 0;
  }

  .header-logo {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }

  .header-logo img {
    width: auto;
    height: 38px;
    object-fit: contain;
  }

  .tab-nav {
    height: 60px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tab-nav::-webkit-scrollbar {
    display: none;
  }

  .tab-nav__container {
    height: 60px;
    gap: 24px !important;
    padding: 0 20px;
  }

  /* Scroll offset: tablet header = 120px (2 rows) */
  #section-spin,
  #section-prizes,
  #section-vspin-friday,
  #section-howto,
  #section-info {
    scroll-margin-top: 120px;
  }

  /* Banner — offset for 120px 2-row tablet header */
  .hero-banner {
    height: 480px;
    margin-top: 0px;
  }

  .hero-banner__left {
    width: 250px;
  }

  /* Lucky Wheel */
  .lucky-wheel-section {
    padding: 40px 0 80px 0;
  }

  .lucky-wheel-section__inner {
    gap: 20px;
  }

  .lucky-wheel-section__content {
    flex: 1;
    min-width: 0;
    max-width: none;
  }

  /* Reduce box padding on tablet so columns are wide enough for 20px text */
  .points-info-box {
    padding: 20px 20px;
    gap: 20px;
  }

  /* Slightly reduce value font-size to prevent wrapping at tablet column width */
  .points-info-box__value {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0;
  }

  .lucky-wheel-section__wheel-wrap {
    flex: 0 0 360px;
    width: 360px;
    overflow: hidden;
  }

  /* Canvas wheel — tablet size 330px */
  #wheelWrap {
    width: 330px;
    height: 330px;
  }

  #centerBtn {
    width: 94px;
    height: 115px;
  }

  /* V-Spin grid: 2 columns at tablet */
  .spin-day-card {
    flex: 0 0 calc(50% - 10px);
    width: calc(50% - 10px);
    min-width: 0;
  }

  /* Card carousel — 4 visible on tablet handled by JS */

  /* How-to */
  .howto-content__layout {
    gap: 30px;
  }

  /* Program info */
  .program-info-table__label {
    flex: 0 0 200px;
  }

  /* Voucher: 2 per row on tablet (no carousel) */
  .voucher-cards {
    flex-wrap: nowrap;
  }

  .voucher-card {
    justify-content: flex-start;
    max-width: calc(50% - 10px);
    min-width: 0;
  }

  /* Prizes section — tablet scaling */
  .prizes-section__title {
    font-size: 24px;
    line-height: 32px;
  }

  .main-prize-card {
    padding: 24px 24px 32px;
  }

  .main-prize-card__heading {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 32px;
  }

  .main-prize-card__side-item {
    flex: 0 0 160px;
    gap: 20px;
  }

  .main-prize-card__icon {
    width: 100px;
    height: 100px;
  }

  .main-prize-card__item-label {
    font-size: 14px;
    line-height: 20px;
  }

  .main-prize-card__car-label p {
    font-size: 16px;
    line-height: 22px;
  }

  .voucher-section__title {
    font-size: 22px;
    line-height: 30px;
  }
}


@media only screen and (min-width: 768px) and (max-width: 1025px) {
  .vib-header {
    height: auto;
    box-shadow: 0 1px 5px 0 rgba(188, 188, 188, 0.25);


  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 0;
  }

  .header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
  }

  .header-logo img {
    width: 78px;
    height: 38px;
  }

  .tab-nav {
    height: 60px;
    width: 100%;
  }

  .tab-nav__container {
    height: 60px;
    gap: 40px;
    padding: 0 20px;
  }

  .tab-nav__item--active::after {
    bottom: 5px;
  }
}

#moreCaptcha {
  display: block !important;
}

@media only screen and (min-width: 1700px) {
  .prizes-section__dark-band {
    height: 465px;
  }
}