@font-face {
  font-family: "Poppins-Light";
  src: url("../assets/fonts/poppins-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Regular";
  src: url("../assets/fonts/poppins-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../assets/fonts/poppins-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Semibold";
  src: url("../assets/fonts/poppins-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../assets/fonts/poppins-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Brushlie-demo";
  src: url("../assets/fonts/brushlie-demo.otf") format("opentype");
  font-display: block;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  font-size: 16px;
  font-family: "Poppins-Regular", "Poppins", sans-serif;
}
@media (max-width: 480px) {
  html {
    font-size: 16px;
  }
}

body {
  background-color: #0B0B1E;
  color: #FFFFFF;
  font-family: "Poppins-Regular", "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100dvh;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-resolution: 192dpi) {
  body {
    -webkit-font-smoothing: subpixel-antialiased;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins-Regular", "Poppins", sans-serif;
  font-weight: 700;
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #0B0B1E;
}

::-webkit-scrollbar-thumb {
  background-color: #666666;
  border-radius: 20px;
  border: 4px solid #0B0B1E;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #888888;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #666666 transparent;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .container {
    max-width: 1350px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-family: "Poppins-Semibold", "Poppins", sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 0.0313rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-height: 52px;
}
.btn.btn-secondary {
  background-color: #FFF9AF;
  color: #000;
}
.btn.btn-secondary:hover {
  background-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 249, 175, 0.3);
}
.btn.btn-primary {
  background-color: #F966AC;
  color: #13142A;
}
.btn.btn-primary:hover {
  background-color: #ff7ac0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 102, 172, 0.3);
}
@media (min-width: 1600px) {
  .btn {
    padding: 1.25rem 2.5rem;
    font-size: 0.875rem;
    min-height: 3.625rem;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .btn {
    padding: 1.25rem 2.5rem;
    font-size: 0.875rem;
    min-height: 3.625rem;
  }
}
@media (max-width: 767px) {
  .btn {
    padding: 0.875rem 0.625rem;
    font-size: 1rem;
    min-height: 2.75rem;
  }
}
@media (max-width: 480px) {
  .btn {
    flex: 1;
    min-height: 4rem;
    font-size: 1rem;
  }
}

.section-title, .section-title-nights {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: clamp(3.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 1200px) {
  .section-title, .section-title-nights {
    font-size: clamp(3.5rem, 6vw, 3.5rem);
  }
}

.section-title, .section-go-out-spree {
  margin-bottom: 6.5rem;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .section-title, .section-go-out-spree {
    margin-bottom: 1rem;
    margin-top: 25px;
  }
}

.section-title-nights {
  text-align: left;
}
@media (max-width: 767px) {
  .section-title-nights {
    font-size: 3.5rem;
    text-align: center;
    max-width: 80%;
    margin-left: 24px;
    margin-right: 24px;
  }
}
@media (max-width: 480px) {
  .section-title-nights {
    font-size: 3.5rem;
    text-align: center;
    max-width: 100%;
    margin-left: 24px;
    margin-right: 24px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  overflow: hidden;
}
#hero .hero-background {
  background-color: #0B0B1E;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  background-image: url("../assets/hero-bg-big.jpg");
}
@media (max-width: 480px) {
  #hero .hero-background {
    background-image: url("../assets/hero-bg-small.jpg");
    min-height: 100dvh;
  }
}
#hero .hero-background::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(to bottom, rgba(11, 11, 30, 0) 0%, rgba(11, 11, 30, 0.6) 60%, rgb(11, 11, 30) 100%);
  pointer-events: none;
  z-index: 5;
}
@media (max-width: 768px) {
  #hero .hero-background::after {
    height: 35%;
  }
}
@media (min-width: 767px) {
  #hero .hero-background::after {
    background: linear-gradient(to bottom, rgba(11, 11, 30, 0) 0%, rgba(11, 11, 30, 0.9) 80%, rgb(11, 11, 30) 100%);
    height: 35%;
  }
}
#hero .hero-background .container {
  position: relative;
  z-index: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}
#hero .hero-background .container .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 56px 0 20px;
  width: 100%;
}
#hero .hero-background .container .header .logo img {
  height: 32px;
  width: auto;
}
@media (min-width: 480px) {
  #hero .hero-background .container .header .logo img {
    height: 40px;
  }
}
#hero .hero-background .container .header .nav {
  display: none;
  gap: 12px;
}
@media (min-width: 767px) {
  #hero .hero-background .container .header .nav {
    display: flex;
  }
}
#hero .hero-background .container .header .nav .nav-link {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5625rem;
  font-family: "Poppins-Medium", "Poppins", sans-serif;
  font-size: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.0313rem;
}
#hero .hero-background .container .header .nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
@media (min-width: 1023px) {
  #hero .hero-background .container .header .nav .nav-link {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }
}
#hero .hero-background .container .hero-content {
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 80px;
  justify-content: center;
  flex: 1;
}
@media (min-width: 767px) {
  #hero .hero-background .container .hero-content {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0 0px;
    gap: 0px;
  }
}
#hero .hero-background .container .hero-content .hero-text {
  width: 100%;
  max-width: 100%;
  z-index: 10;
  margin-top: 30px;
}
@media (min-width: 767px) {
  #hero .hero-background .container .hero-content .hero-text {
    flex: 0 0 50%;
    max-width: 600px;
  }
}
@media (min-width: 1600px) {
  #hero .hero-background .container .hero-content .hero-text {
    max-width: 750px;
  }
}
#hero .hero-background .container .hero-content .hero-title {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: clamp(56px, 6vw, 3rem);
  line-height: 1;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.0313rem;
  color: #FFFFFF;
  position: relative;
  z-index: 101;
}
@media (min-width: 767px) {
  #hero .hero-background .container .hero-content .hero-title {
    font-size: clamp(3rem, 5vw, 6rem);
    margin-bottom: 2rem;
  }
}
@media (min-width: 1600px) {
  #hero .hero-background .container .hero-content .hero-title {
    font-size: 5.5rem;
    line-height: 0.8;
    margin-bottom: 2.5rem;
  }
}
#hero .hero-background .container .hero-content .hero-title .title-line {
  display: block;
}
#hero .hero-background .container .hero-content .hero-title .hero-line {
  display: flex;
  align-items: center;
  gap: 12px;
}
#hero .hero-background .container .hero-content .hero-title .hero-line span {
  display: inline-block;
}
#hero .hero-background .container .hero-content .hero-title .brush-font {
  font-family: "Brushlie-demo", cursive;
  color: #F966AC;
  font-size: 90px;
  display: inline-block;
  line-height: 0.8;
  font-weight: normal;
}
@media (max-width: 767px) {
  #hero .hero-background .container .hero-content .hero-title .brush-font {
    font-size: 70px;
  }
}
#hero .hero-background .container .hero-content .hero-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #BFC0C6;
  margin-bottom: 1.5rem;
  max-width: 100%;
}
@media (min-width: 767px) {
  #hero .hero-background .container .hero-content .hero-description {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 90%;
  }
}
@media (min-width: 1600px) {
  #hero .hero-background .container .hero-content .hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 38.75rem;
  }
}
#hero .hero-background .container .hero-content .hero-availability {
  font-family: "Poppins-Semibold", "Poppins", sans-serif;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 2rem;
}
@media (min-width: 1600px) {
  #hero .hero-background .container .hero-content .hero-availability {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}
#hero .hero-background .container .hero-content .hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
}
@media (min-width: 480px) {
  #hero .hero-background .container .hero-content .hero-buttons {
    flex-direction: row;
    width: auto;
  }
}
@media (min-width: 767px) {
  #hero .hero-background .container .hero-content .hero-buttons {
    gap: 16px;
  }
}
#hero .hero-background .container .hero-content .hero-image {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 1;
  position: relative;
  margin-bottom: 0px;
}
@media (min-width: 767px) {
  #hero .hero-background .container .hero-content .hero-image {
    display: flex;
    margin-bottom: 0;
  }
}
#hero .hero-background .container .hero-content .hero-image .hero-hand-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  animation: floatIn 1s ease-out;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-bottom: 0px;
}
@media (min-width: 767px) {
  #hero .hero-background .container .hero-content .hero-image .hero-hand-img {
    margin-bottom: -100px;
  }
}
#hero .animation-container-elevates {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
  margin-top: -145px;
  z-index: 100;
}
#hero .animation-container-elevates svg {
  max-width: 100%;
  height: auto;
  overflow: visible !important;
}
@media (max-width: 1023px) {
  #hero .animation-container-elevates {
    transform: scale(0.85);
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  #hero .animation-container-elevates {
    margin-bottom: 30px;
    transform: scale(0.8);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* SPREE ELEVATES SECTION */
#spree-elevates {
  position: relative;
  overflow: hidden;
}
#spree-elevates .container {
  padding-bottom: 80px;
  padding-top: -40px;
}
@media (max-width: 767px) {
  #spree-elevates {
    padding: 0;
  }
}
#spree-elevates .spree-elevates-wrapper {
  position: relative;
  z-index: 1;
}
#spree-elevates .elevates-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 20px;
  text-align: center;
}
@media (min-width: 1023px) {
  #spree-elevates .elevates-header {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin: 0 0 60px;
    gap: 40px;
    padding-top: 40px;
  }
}
@media (min-width: 1600px) {
  #spree-elevates .elevates-header {
    margin: 0 0 100px;
  }
}
#spree-elevates .elevates-title {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: clamp(1.75rem, 10vw, 3.25rem);
  line-height: 1.1;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
}
@media (min-width: 1023px) {
  #spree-elevates .elevates-title {
    font-size: 2.75rem;
  }
}
@media (min-width: 1200px) {
  #spree-elevates .elevates-title {
    font-size: 3rem;
  }
}
@media (min-width: 1600px) {
  #spree-elevates .elevates-title {
    font-size: 3.5rem;
  }
}
#spree-elevates .elevates-content {
  font-size: 1rem;
  line-height: 28px;
  color: #CDD3DD;
  width: 100%;
  text-align: left;
}
@media (min-width: 1023px) {
  #spree-elevates .elevates-content {
    font-size: 0.9375rem;
    text-align: right;
  }
}
@media (min-width: 1600px) {
  #spree-elevates .elevates-content {
    font-size: 1.125rem;
  }
}
#spree-elevates .elevates-cards-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0 -20px;
  padding: 20px;
  gap: 1.5rem;
  scrollbar-width: none;
}
#spree-elevates .elevates-cards-wrapper::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1023px) {
  #spree-elevates .elevates-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
}
@media (min-width: 1200px) {
  #spree-elevates .elevates-cards-wrapper {
    gap: 2rem;
  }
}
#spree-elevates .elevates-cards {
  padding: 25px 15px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #0F0F2D;
  flex: 0 0 260px;
  scroll-snap-align: center;
  text-align: center;
}
#spree-elevates .elevates-cards::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 5;
}
@media (min-width: 480px) {
  #spree-elevates .elevates-cards {
    flex: 0 0 320px;
    padding: 30px 20px;
    min-height: 340px;
  }
}
@media (min-width: 1023px) {
  #spree-elevates .elevates-cards {
    flex: 1;
    padding: 30px 20px;
    min-height: 360px;
    text-align: left;
    margin: 0 !important;
  }
  #spree-elevates .elevates-cards:nth-child(odd) {
    margin-top: 60px !important;
  }
  #spree-elevates .elevates-cards:nth-child(even) {
    margin-bottom: 60px !important;
  }
}
@media (min-width: 1600px) {
  #spree-elevates .elevates-cards {
    padding: 50px 40px;
    min-height: 450px;
  }
  #spree-elevates .elevates-cards:nth-child(odd) {
    margin-top: 100px !important;
  }
  #spree-elevates .elevates-cards:nth-child(even) {
    margin-bottom: 100px !important;
  }
}
@media (min-width: 1023px) {
  #spree-elevates .elevates-cards:hover .card-line {
    width: 60px;
  }
}
#spree-elevates .elevates-cards .card-icon {
  margin: 0 auto 30px;
  height: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
#spree-elevates .elevates-cards .card-icon img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0;
}
@media (min-width: 1023px) {
  #spree-elevates .elevates-cards .card-icon {
    margin: 0 0 30px;
    justify-content: flex-start;
  }
}
#spree-elevates .elevates-cards .elevates-cards-info {
  margin-top: 20px;
}
@media (min-width: 1023px) {
  #spree-elevates .elevates-cards .elevates-cards-info {
    margin-top: 40px;
  }
}
@media (min-width: 1600px) {
  #spree-elevates .elevates-cards .elevates-cards-info {
    margin-top: 60px;
  }
}
#spree-elevates .elevates-cards .elevates-cards-title {
  font-size: 1.125rem;
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  margin: 1rem 0;
  text-transform: uppercase;
  line-height: 1.3;
  color: #FFFFFF;
  text-align: left;
}
@media (min-width: 1023px) {
  #spree-elevates .elevates-cards .elevates-cards-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  #spree-elevates .elevates-cards .elevates-cards-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 1600px) {
  #spree-elevates .elevates-cards .elevates-cards-title {
    font-size: 1.5rem;
  }
}
#spree-elevates .elevates-cards .elevates-cards-content {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  margin-top: 1.25rem;
  text-align: left;
}
@media (min-width: 1023px) {
  #spree-elevates .elevates-cards .elevates-cards-content {
    margin-top: 2rem;
  }
}
@media (min-width: 1600px) {
  #spree-elevates .elevates-cards .elevates-cards-content {
    font-size: 1rem;
  }
}
#spree-elevates .elevates-cards .card-line {
  width: 40px;
  height: 3px;
  position: absolute;
  bottom: 25px;
  border-radius: 2px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}
@media (min-width: 1023px) {
  #spree-elevates .elevates-cards .card-line {
    margin: 0;
  }
}
#spree-elevates .elevates-cards.card-purple {
  background: linear-gradient(180deg, #0f0214 0%, #1a042e 40%, #4a055f 100%);
  box-shadow: 0 10px 30px -10px rgba(74, 5, 95, 0.3);
}
#spree-elevates .elevates-cards.card-purple:hover::after {
  border-color: #E21C71;
}
#spree-elevates .elevates-cards.card-purple .card-line {
  background-color: #E21C71;
}
#spree-elevates .elevates-cards.card-yellow {
  background: url("../assets/vector.png") center center/cover no-repeat, #FFEC00;
}
#spree-elevates .elevates-cards.card-yellow:hover::after {
  border-color: #F0E4E4;
}
#spree-elevates .elevates-cards.card-yellow .elevates-cards-title {
  color: #FFFFFF;
}
#spree-elevates .elevates-cards.card-yellow .elevates-cards-content {
  color: #F0E4E4;
}
#spree-elevates .elevates-cards.card-yellow .card-line {
  background-color: #F0E4E4;
}
#spree-elevates .elevates-cards.card-teal {
  background: linear-gradient(180deg, #011414 0%, #022626 40%, #034f4f 100%);
  box-shadow: 0 10px 30px -10px rgba(3, 79, 79, 0.3);
}
#spree-elevates .elevates-cards.card-teal:hover::after {
  border-color: #8EF0D0;
}
#spree-elevates .elevates-cards.card-teal .card-line {
  background-color: #8EF0D0;
}
#spree-elevates .elevates-cards.card-orange {
  background: linear-gradient(180deg, #1f0a00 0%, #2e0f00 40%, #6e2a00 100%);
  box-shadow: 0 10px 30px -10px rgba(110, 42, 0, 0.3);
}
#spree-elevates .elevates-cards.card-orange:hover::after {
  border-color: #FF7A2A;
}
#spree-elevates .elevates-cards.card-orange .card-line {
  background-color: #FF7A2A;
}

/* GO OUT SPREE SECTION */
#go-out-spree {
  overflow: hidden;
  position: relative;
  padding: 40px 0 150px;
}
@media (min-width: 767px) {
  #go-out-spree {
    padding: 0px 60px 220px;
  }
}
@media (max-width: 767px) {
  #go-out-spree {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
#go-out-spree .animation-container-go-out {
  position: absolute;
  bottom: 20px;
  left: -50px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  margin-top: -90px;
}
@media (max-width: 767px) {
  #go-out-spree .animation-container-go-out {
    position: relative;
    bottom: auto;
    left: auto;
    display: flex; /* Force show */
    justify-content: center;
    transform: scale(0.8);
    margin-bottom: 30px;
  }
}
#go-out-spree .animation-container-go-out svg {
  overflow: visible !important;
}
#go-out-spree .go-out-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
@media (min-width: 767px) {
  #go-out-spree .go-out-wrapper {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    min-height: 650px;
  }
}
@media (min-width: 1200px) {
  #go-out-spree .go-out-wrapper {
    gap: 120px;
    max-width: 1400px;
    margin: 0 auto;
  }
}
#go-out-spree .go-out-left {
  position: relative;
  padding-left: 40px;
  padding-right: 60px;
  padding-top: 60px;
}
@media (max-width: 767px) {
  #go-out-spree .go-out-left {
    padding: 0;
  }
}
#go-out-spree .mobile-phone-wrap {
  display: block;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 25rem;
  aspect-ratio: 1/1.25;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
#go-out-spree .mobile-phone-wrap img {
  width: 75%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 2.5rem 5rem rgba(0, 0, 0, 0.8));
  z-index: 2;
}
#go-out-spree .mobile-phone-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.35;
}
@media (min-width: 767px) {
  #go-out-spree .mobile-phone-wrap {
    display: none !important;
  }
}
#go-out-spree .item-progress-border {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  #go-out-spree .item-progress-border {
    display: none;
  }
}
#go-out-spree .go-out-item.active .item-progress-border {
  background: linear-gradient(180deg, #FFFFFF 0%, #E21C71 100%);
  box-shadow: 0 0 15px rgba(226, 28, 113, 0.4);
}
#go-out-spree .go-out-items {
  display: flex;
  flex-direction: column;
}
#go-out-spree .go-out-item {
  opacity: 1;
  transition: opacity 0.4s ease, border-color 0.4s ease, padding 0.4s ease, margin 0.4s ease;
  padding-bottom: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
#go-out-spree .go-out-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (min-width: 767px) {
  #go-out-spree .go-out-item {
    opacity: 0.3;
    border-left: 3px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    padding: 0 0 0.5rem 2rem;
    margin-bottom: 2rem;
  }
  #go-out-spree .go-out-item.active {
    opacity: 1;
    margin-bottom: 1rem;
    border-left-color: #FFFFFF !important;
  }
}
@media (max-width: 767px) {
  #go-out-spree .go-out-item {
    margin-bottom: 0.5rem;
  }
}
#go-out-spree .item-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}
@media (max-width: 767px) {
  #go-out-spree .item-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
  }
}
#go-out-spree .item-icon-wrapper img {
  width: 2.5rem;
  height: auto;
  transition: all 0.3s ease;
  filter: grayscale(1) brightness(1.2) opacity(0.3);
}
@media (max-width: 1023px) {
  #go-out-spree .item-icon-wrapper img {
    filter: none;
  }
}
@media (max-width: 767px) {
  #go-out-spree .item-icon-wrapper img {
    filter: none;
    width: 2.25rem;
  }
}
#go-out-spree .go-out-item.active .item-icon-wrapper img {
  filter: none;
}
#go-out-spree .item-title {
  font-family: "Poppins-Medium", "Poppins", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.2;
  transition: all 0.4s ease-in-out;
  opacity: 0.7;
}
#go-out-spree .go-out-item.active .item-title {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: 24px;
  opacity: 1;
}
@media (min-width: 767px) {
  #go-out-spree .go-out-item.active .item-title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1600px) {
  #go-out-spree .go-out-item.active .item-title {
    font-size: 2.25rem;
  }
}
#go-out-spree .go-out-item:not(.active) .item-title {
  opacity: 1;
}
@media (min-width: 767px) {
  #go-out-spree .go-out-item:not(.active) .item-title {
    font-size: 1.25rem;
  }
}
#go-out-spree .item-body {
  height: auto;
  overflow: visible;
}
@media (min-width: 767px) {
  #go-out-spree .item-body {
    height: 0;
    overflow: hidden;
  }
}
#go-out-spree .item-body p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 0px 0px;
  text-align: center;
}
@media (min-width: 767px) {
  #go-out-spree .item-body p {
    font-size: 0.9375rem;
    text-align: left;
  }
}
@media (min-width: 1600px) {
  #go-out-spree .item-body p {
    font-size: 1.125rem;
  }
}
#go-out-spree .go-out-right {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  #go-out-spree .go-out-right {
    display: none;
  }
}
#go-out-spree .go-out-right .phone-glow-container {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 32rem;
  width: 100%;
  transition: none;
}
#go-out-spree .go-out-right .phone-glow-container::before {
  transition: opacity 1s ease-in-out;
  opacity: 0.4;
}
#go-out-spree .go-out-right .phone-glow-container.pink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 100%;
  z-index: -1;
  filter: blur(40px);
  pointer-events: none;
}
#go-out-spree .go-out-right .phone-glow-container.gold::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 100%;
  z-index: -1;
  filter: blur(40px);
  pointer-events: none;
}
#go-out-spree .go-out-right .phone-glow-container.cyan::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 100%;
  z-index: -1;
  filter: blur(40px);
  pointer-events: none;
}
@media (min-width: 1600px) {
  #go-out-spree .go-out-right .phone-glow-container {
    min-height: 32.875rem;
  }
}
@media (max-width: 1023px) {
  #go-out-spree .go-out-right .phone-glow-container {
    min-height: 26.375rem;
  }
}
#go-out-spree .go-out-right .go-out-phone-img {
  grid-area: 1/1;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 650px;
  opacity: 0;
  z-index: 1;
  will-change: opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}
#go-out-spree .go-out-right .go-out-phone-img.active {
  opacity: 1;
  z-index: 2;
}
@media (min-width: 1600px) {
  #go-out-spree .go-out-right .go-out-phone-img {
    max-height: 750px;
  }
}
@media (max-width: 1023px) {
  #go-out-spree .go-out-right .go-out-phone-img {
    max-height: 550px;
  }
}

/* BORDER IMAGE WRAPPER (Between Sections) */
.border-img-wrapper {
  position: relative;
  width: 100%;
  height: 40px;
  z-index: 10;
  pointer-events: none;
}
@media (min-width: 767px) {
  .border-img-wrapper {
    height: 150px;
  }
}
@media (max-width: 767px) {
  .border-img-wrapper {
    height: 50px;
  }
}

.go-out-border-img {
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 100;
  pointer-events: none;
  opacity: 1;
}
.go-out-border-img.active {
  opacity: 1;
}
.go-out-border-img[id=go-out-border-3] {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none;
  width: auto;
  height: auto;
  max-width: 100px;
  display: block !important;
}
@media (min-width: 767px) {
  .go-out-border-img[id=go-out-border-3] {
    max-width: 120px;
  }
}
@media (min-width: 1600px) {
  .go-out-border-img[id=go-out-border-3] {
    max-width: 140px;
  }
}
@media (max-width: 767px) {
  .go-out-border-img[id=go-out-border-3] {
    max-width: 80px;
  }
}

/* ============================================
   VENUES & HOSTS SECTION
   ============================================ */
#venues-hosts {
  padding: 80px 0 180px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  #venues-hosts {
    padding: 0 0 130px;
  }
}
#venues-hosts .venues-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 100px;
  text-align: center;
}
@media (min-width: 767px) {
  #venues-hosts .venues-header {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: center;
    text-align: left;
    margin-bottom: 60px;
    padding-top: 20px;
  }
}
#venues-hosts .venues-header .btn {
  padding: 24px;
}
@media (min-width: 480px) {
  #venues-hosts .venues-header .btn {
    width: auto;
    min-width: 220px;
  }
}
#venues-hosts .venues-title {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: clamp(2rem, 8vw, 2.25rem);
  line-height: 1.1;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  #venues-hosts .venues-title {
    font-size: 3rem;
  }
}
@media (min-width: 1600px) {
  #venues-hosts .venues-title {
    font-size: 3.5rem;
  }
}
#venues-hosts .venues-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 100px;
  position: relative;
}
@media (min-width: 767px) {
  #venues-hosts .venues-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 80px;
  }
  #venues-hosts .venues-grid::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 5%;
    bottom: 5%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-50%);
  }
}
@media (min-width: 1200px) {
  #venues-hosts .venues-grid {
    gap: 120px;
  }
}
@media (max-width: 767px) {
  #venues-hosts .venues-grid .venues-col:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
  }
}
#venues-hosts .venues-col-title {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #FFFFFF !important;
  letter-spacing: 0.0313rem;
}
@media (min-width: 1600px) {
  #venues-hosts .venues-col-title {
    font-size: 1.375rem;
  }
}
@media (max-width: 766px) {
  #venues-hosts .venues-col-title {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #F966AC;
  }
}
#venues-hosts .venues-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#venues-hosts .venues-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
#venues-hosts .venues-list li svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}
#venues-hosts .venues-list li span {
  flex: 1;
}
@media (min-width: 1600px) {
  #venues-hosts .venues-list li {
    font-size: 1.125rem;
  }
}
@media (max-width: 766px) {
  #venues-hosts .venues-list li {
    font-size: 1rem;
    gap: 1rem;
  }
}
#venues-hosts .venues-details-container {
  border-radius: 20px;
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
  background: rgba(30, 10, 60, 0.1);
}
@media (min-width: 1025px) and (max-width: 1440px) {
  #venues-hosts .venues-details-container {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  #venues-hosts .venues-details-container {
    padding: 30px 20px 10px;
    margin-bottom: 60px;
    background: linear-gradient(180deg, rgba(249, 102, 172, 0.25) 0%, rgba(15, 15, 45, 0.95) 100%);
    border: 1px solid rgba(249, 102, 172, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  }
}
@media (max-width: 480px) {
  #venues-hosts .venues-details-container {
    padding: 25px 15px 10px;
  }
}
#venues-hosts .dashboard-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 0;
  margin-top: -100px;
}
@media (min-width: 767px) {
  #venues-hosts .dashboard-wrapper {
    padding: 0 40px;
    margin-bottom: -120px;
    transform: translateY(20px);
  }
}
@media (max-width: 767px) {
  #venues-hosts .dashboard-wrapper {
    margin-top: -35px;
    padding: 0;
    width: calc(100% + 10px);
    margin-left: -5px;
    position: relative;
    z-index: 5;
  }
}
#venues-hosts .dashboard-wrapper::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 300px;
  z-index: -1;
  pointer-events: none;
  filter: blur(50px);
}
#venues-hosts .dashboard-card-outer {
  position: relative;
  border-radius: 20px;
  padding: 8px;
  max-width: 100%;
  border: 2px solid #000;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 95%);
  mask-image: linear-gradient(to bottom, black 40%, transparent 95%);
}
@media (max-width: 480px) {
  #venues-hosts .dashboard-card-outer {
    margin-top: -100px;
    width: 100%;
    margin-left: 20px;
  }
}
#venues-hosts .dashboard-img {
  display: block;
  border-radius: 12px;
  background-color: #0B0B1E;
}
#venues-hosts .dashboard-overlay {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent 0%, rgba(11, 11, 30, 0.8));
  pointer-events: none;
  border-radius: 0 0 20px 20px;
  z-index: 5;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media (max-width: 767px) {
  #venues-hosts .dashboard-overlay {
    height: 40%;
    background: linear-gradient(180deg, transparent 0%, rgba(19, 20, 42, 0.9) 60%, #13142A 100%);
  }
}
#venues-hosts .animation-container-dashboard {
  position: absolute;
  bottom: -50px;
  right: -20px;
  width: 300px;
  height: 300px;
  pointer-events: none;
  z-index: 10;
  opacity: 0.8;
}
#venues-hosts .animation-container-dashboard svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  #venues-hosts .animation-container-dashboard {
    transform: scale(0.6);
    bottom: -80px;
    right: -60px;
  }
}
#venues-hosts .animation-container-plus {
  position: absolute;
  bottom: 30px;
  right: 0;
  pointer-events: none;
  z-index: 10;
}
@media (max-width: 767px) {
  #venues-hosts .animation-container-plus {
    bottom: 30px;
    left: -60px;
    right: auto;
    transform: scale(0.65);
    margin-top: 0;
    margin-bottom: 0;
    opacity: 1;
    z-index: 10;
  }
}
@media (max-width: 480px) {
  #venues-hosts .animation-container-plus {
    left: -80px;
    transform: scale(0.55);
  }
}
#venues-hosts .animation-container-plus svg {
  overflow: visible !important;
}

/* REAL NIGHTS SECTION */
#real-nights-section {
  padding: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  #real-nights-section {
    padding: 0;
  }
}
#real-nights-section .container {
  margin: 0 auto;
  padding: 0;
}
#real-nights-section .real-nights-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
@media (min-width: 1023px) {
  #real-nights-section .real-nights-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 0px;
  }
}
@media (max-width: 767px) {
  #real-nights-section .real-nights-wrapper {
    gap: 0px;
  }
}
#real-nights-section .real-nights-image-col {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  #real-nights-section .real-nights-image-col {
    display: flex;
    width: 100%;
    margin-bottom: 2rem;
  }
}
#real-nights-section .real-nights-image-col .phone-glow {
  position: absolute;
  width: 120%;
  height: 90%;
  background: radial-gradient(circle at 50% 50%, rgba(226, 28, 113, 0.25) 0%, rgba(11, 11, 30, 0) 70%);
  filter: blur(60px);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#real-nights-section .real-nights-image-col .real-nights-phone {
  width: 100%;
  max-width: 490px;
  height: auto;
}
@media (min-width: 1600px) {
  #real-nights-section .real-nights-image-col .real-nights-phone {
    max-height: 750px;
  }
}
@media (max-width: 767px) {
  #real-nights-section .real-nights-image-col .real-nights-phone {
    max-width: 100%;
  }
}
#real-nights-section .real-nights-content-col {
  flex: 1.2;
  padding-top: 50px;
}
@media (min-width: 1025px) and (max-width: 1440px) {
  #real-nights-section .real-nights-content-col {
    padding-top: 50;
  }
}
@media (max-width: 1023px) {
  #real-nights-section .real-nights-content-col {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 767px) {
  #real-nights-section .real-nights-content-col {
    align-items: center;
    padding-top: 0;
  }
}
#real-nights-section .real-nights-content-col h2 {
  font-size: 2rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 767px) {
  #real-nights-section .real-nights-content-col h2 {
    font-size: 2.625rem;
  }
}
@media (min-width: 1600px) {
  #real-nights-section .real-nights-content-col h2 {
    font-size: 3rem;
  }
}
#real-nights-section .real-nights-content-col .section-subtitle {
  font-size: 14px;
  color: #F0E4E4;
  margin-bottom: 3rem;
  max-width: 34.375rem;
  line-height: 32px;
  text-align: left;
}
@media (max-width: 766px) {
  #real-nights-section .real-nights-content-col .section-subtitle {
    max-width: 90%;
    margin: 0 42px 2.5rem;
    text-align: center;
    line-height: 32px;
  }
}
#real-nights-section .partners-row {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 1023px) {
  #real-nights-section .partners-row {
    align-items: flex-start;
  }
}
#real-nights-section .partner-label-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.625rem 1.75rem;
  border-radius: 4px;
  font-family: "Poppins-Semibold", "Poppins", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  position: relative;
  min-width: 160px;
  display: flex;
  align-items: center;
  height: 44px;
  justify-content: center;
  line-height: 24px;
}
@media (max-width: 767px) {
  #real-nights-section .partner-label-box {
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    min-width: auto;
    padding: 0 2rem;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 8px;
  }
}
#real-nights-section .partner-label-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 767px) {
  #real-nights-section .partner-label-box::before {
    display: none;
  }
}
#real-nights-section .partner-label-box.venues-box {
  color: #FFF9AF;
  background-color: rgba(255, 249, 175, 0.1019607843);
}
#real-nights-section .partner-label-box.venues-box::before {
  background-color: #FFF9AF;
}
#real-nights-section .partner-label-box.hosts-box {
  color: #66F9AC;
  background-color: rgba(102, 249, 172, 0.1019607843);
}
#real-nights-section .partner-label-box.hosts-box::before {
  background-color: #66F9AC;
}
#real-nights-section .partners-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 64px;
  width: 100%;
  justify-items: center;
}
@media (min-width: 767px) {
  #real-nights-section .partners-logos {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 80%;
  }
}
@media (min-width: 1023px) {
  #real-nights-section .partners-logos {
    justify-content: flex-start;
  }
}
#real-nights-section .partners-logos .partner-logo {
  width: 28px;
  height: auto;
  opacity: 0.8;
  filter: grayscale(100%) brightness(150%);
  transition: all 0.3s ease;
}
@media (min-width: 767px) {
  #real-nights-section .partners-logos .partner-logo {
    width: 28px;
  }
}
@media (max-width: 767px) {
  #real-nights-section .partners-logos .partner-logo {
    width: 24px;
    opacity: 0.8;
  }
}
#real-nights-section .partners-logos .partner-logo img {
  margin: 0;
}
#real-nights-section .partners-logos:hover .partner-logo {
  opacity: 1;
}
#real-nights-section .animation-container-nights {
  position: relative;
  margin: 0 auto -40px auto;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 767px) {
  #real-nights-section .animation-container-nights {
    transform: scale(0.8);
    margin-bottom: -20px;
  }
}
#real-nights-section .animation-container-nights svg {
  overflow: visible !important;
}

/* CTA: EXPERIENCE SPREE SECTION */
#cta-experience {
  background-color: #0B0B1E;
  background-image: url("../assets/cta-bg.png") !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  padding: 60px 0 120px 0;
  gap: 40px;
  z-index: 1;
}
@media (max-width: 767px) {
  #cta-experience {
    padding: 80px 20px;
    background-image: url("../assets/cta-bg-mobile.png") !important;
  }
}
#cta-experience::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 6;
  mix-blend-mode: overlay;
}
#cta-experience .container {
  padding: 0;
}
#cta-experience {
  /* Background elements removed as per user request to use cta-bg-big.png */
}
#cta-experience .animation-container-nights {
  position: relative;
  margin: 0 auto -40px auto;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 767px) {
  #cta-experience .animation-container-nights {
    display: none;
  }
}
#cta-experience .cta-content {
  position: relative;
  z-index: 5;
  margin: 0 auto;
}
#cta-experience .cta-title {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: clamp(2.125rem, 11vw, 3rem);
  line-height: 1.1;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
@media (min-width: 767px) {
  #cta-experience .cta-title {
    font-size: 3.5rem;
  }
}
@media (min-width: 1600px) {
  #cta-experience .cta-title {
    font-size: 3.5rem;
  }
}
#cta-experience .cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  line-height: 1.5;
  max-width: 40%;
  margin: 1.5rem auto 3.5rem;
  font-weight: 500;
}
@media (min-width: 767px) {
  #cta-experience .cta-subtitle {
    margin: 1.5rem auto 3.5rem;
    max-width: 80%;
  }
}
@media (max-width: 766px) {
  #cta-experience .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 100%;
  }
}
#cta-experience .cta-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 480px) {
  #cta-experience .cta-buttons {
    gap: 24px;
  }
}
#cta-experience .cta-buttons .btn-waitlist, #cta-experience .cta-buttons .btn-partner {
  padding: 14px 20px;
  border-radius: 10px;
  font-family: "Poppins-Semibold", "Poppins", sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 54px;
  width: 185px;
}
@media (min-width: 767px) {
  #cta-experience .cta-buttons .btn-waitlist, #cta-experience .cta-buttons .btn-partner {
    padding: 18px 42px;
    font-size: 15px;
    border-radius: 12px;
  }
}
#cta-experience .cta-buttons .btn-waitlist:hover, #cta-experience .cta-buttons .btn-partner:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
#cta-experience .cta-buttons .btn-waitlist {
  background: #F9EB7F;
  color: #000;
}
#cta-experience .cta-buttons .btn-partner {
  background: #F966AC;
  color: #13142A;
}

/* ============================================
   MOBILE BOTTOM NAV
   ============================================ */
.mobile-bottom-nav {
  display: none;
}
@media (max-width: 475px) {
  .mobile-bottom-nav {
    position: fixed;
    left: 50%;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    z-index: 999;
    width: calc(100% - 20px);
    max-width: 360px;
    background: rgba(255, 255, 255, 0.1019607843);
    border-radius: 999px;
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
  }
}

.mobile-bottom-link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  font-family: "Poppins-Medium", "Poppins", sans-serif;
  font-size: 0.7rem;
  line-height: 1.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: #13142A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}
.mobile-bottom-link:hover {
  color: #FFFFFF;
  border-color: rgba(249, 102, 172, 0.7);
  background: rgba(249, 102, 172, 0.24);
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer {
  padding: 100px 0 80px;
  background-color: #0B0B1E;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0 80px;
  }
}
.footer .footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1023px) {
  .footer .footer-wrapper {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: flex-end;
    text-align: left;
  }
}
.footer .footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1023px) {
  .footer .footer-brand-col {
    align-items: flex-start;
    gap: 40px;
  }
}
.footer .footer-logo img {
  height: 38px;
  width: auto;
  margin: 0;
}
@media (min-width: 1023px) {
  .footer .footer-logo img {
    height: 48px;
  }
}
.footer .footer-tagline-wrap {
  position: relative;
}
.footer .footer-tagline {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: 1.75rem;
  line-height: 1.1;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0;
  max-width: 100%;
}
@media (min-width: 767px) {
  .footer .footer-tagline {
    font-size: 2rem;
  }
}
@media (min-width: 1023px) {
  .footer .footer-tagline {
    font-size: 2rem;
    max-width: 25rem;
  }
}
.footer .footer-links-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}
@media (max-width: 1023px) {
  .footer .footer-links-col {
    align-items: flex-start;
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .footer .footer-links-col {
    align-items: flex-start;
    width: 100%;
  }
}
.footer .footer-socials {
  display: flex;
  gap: 32px;
}
@media (max-width: 1023px) {
  .footer .footer-socials {
    justify-content: flex-end;
    gap: 24px;
    opacity: 0.9;
  }
}
.footer .social-link {
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.footer .social-link:hover {
  opacity: 0.7;
}
.footer .footer-nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 24px 60px;
  text-align: right;
}
@media (max-width: 1023px) {
  .footer .footer-nav {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    text-align: left;
  }
}
.footer .footer-nav a {
  font-family: "Poppins-Semibold", "Poppins", sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}
.footer .footer-nav a:hover {
  color: #F966AC;
}
@media (max-width: 1023px) {
  .footer .footer-nav a {
    font-size: 0.6875rem;
    white-space: nowrap;
    opacity: 0.7;
  }
}
.footer .footer-animation {
  display: none;
}
@media (max-width: 1023px) {
  .footer .footer-animation {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .footer .footer-animation {
    display: block !important;
    position: absolute;
    top: -60px;
    right: -80px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
    transform: scale(0.45);
  }
  .footer .footer-animation svg {
    overflow: visible !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .nav-link, .btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */