@charset "UTF-8";
@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;
}

img {
  max-width: 100%;
  height: auto;
}

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;
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: #0C0C1F;
  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;
  width: 100%;
}
@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: #0C0C1F;
}

::-webkit-scrollbar-thumb {
  background-color: #666666;
  border-radius: 20px;
  border: 4px solid #0C0C1F;
}
::-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%;
  margin: 0 auto;
  padding: 0 80px;
}
@media (min-width: 1680px) {
  .container {
    max-width: none;
  }
}
@media (max-width: 1440px) {
  .container {
    padding: 0 80px;
  }
}
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 24px;
  }
}

.form-vector-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 0;
  pointer-events: none;
  line-height: 0;
}
.form-vector-top img {
  width: 100%;
  height: auto;
  opacity: 0.9;
  max-width: none;
}

.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: 1023px) {
  .btn {
    padding: 1.25rem 2.5rem;
    font-size: 0.875rem;
    min-height: 3.625rem;
  }
}
@media (max-width: 767px) {
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.8125rem;
    min-height: 2.75rem;
    border-radius: 0.75rem;
  }
}
@media (max-width: 375px) {
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
  }
}

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

.section-title,
.section-go-out-spree {
  padding: 40px 0;
}
@media (max-width: 1023px) {
  .section-title,
  .section-go-out-spree {
    font-size: 48px;
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .section-title,
  .section-go-out-spree {
    margin-bottom: 0rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
  }
}

.section-title-nights {
  text-align: left;
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1.75rem;
}
@media (min-width: 1023px) {
  .section-title-nights {
    font-size: 2.75rem;
  }
}
@media (min-width: 1200px) {
  .section-title-nights {
    font-size: 3rem;
  }
}
@media (min-width: 1440px) {
  .section-title-nights {
    font-size: 3.25rem;
  }
}
@media (min-width: 1680px) {
  .section-title-nights {
    font-size: 3.5rem;
  }
}
@media (max-width: 1200px) {
  .section-title-nights {
    width: 100%;
    max-width: 80%;
    margin: 0 auto 1rem;
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .section-title-nights {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .section-title-nights {
    font-size: 3rem;
    margin-left: 24px;
    margin-right: 24px;
    max-width: 360px;
  }
}
@media (max-width: 440px) {
  .section-title-nights {
    font-size: 1.75rem;
    margin-left: 16px;
    margin-right: 16px;
  }
}
@media (max-width: 375px) {
  .section-title-nights {
    font-size: 1.5rem;
  }
}

#hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#hero .hero-background {
  background-color: #0C0C1F;
  background-image: url("../assets/hero/rose-bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}
#hero .hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/hero/black.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
#hero .hero-background .container {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
}
#hero .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px 0 20px;
  width: 100%;
}
#hero .header .logo img {
  height: 48px;
  width: auto;
}
#hero .header .nav {
  display: flex;
  gap: 20px;
}
#hero .header .nav .nav-link {
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}
#hero .hero-content {
  display: flex;
  align-items: center;
  flex: 1;
}
#hero .hero-content .hero-text {
  flex: 1;
  max-width: 700px;
}
#hero .hero-content .hero-title {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #FFFFFF;
}
#hero .hero-content .hero-title .brush-font {
  font-family: "Brushlie-demo", cursive;
  color: #F966AC;
  font-size: 1.2em;
}
#hero .hero-content .hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
#hero .hero-content .hero-buttons {
  display: flex;
  gap: 1rem;
}
#hero .hero-content .hero-buttons .btn {
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 700;
}
#hero .hero-content .hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
#hero .hero-content .hero-image img {
  max-width: 500px;
  height: auto;
}
#hero .animation-container-elevates {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  pointer-events: none;
  opacity: 0.6;
}
@media (max-width: 767px) {
  #hero .animation-container-elevates {
    display: none;
  }
}

#hero-main-section {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100svh;
  min-height: 700px;
  background-color: #0C0C1F;
}
@media (max-width: 1023px) {
  #hero-main-section {
    height: auto;
    min-height: unset;
  }
}
#hero-main-section {
  /* ── BACKGROUND IMAGE ── */
}
#hero-main-section .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background-image: url("../assets/hero/background-mobile.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1023px) {
  #hero-main-section .hero-bg {
    background-image: url("../assets/hero/background.jpg");
    background-position: center top;
  }
}
@media (min-width: 1440px) {
  #hero-main-section .hero-bg {
    background-image: url("../assets/hero/background-desktop.jpg");
  }
}
#hero-main-section {
  /* ── NOISE TEXTURE OVERLAY ── */
}
#hero-main-section .hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background-image: url("../assets/hero/rect.svg");
  background-repeat: repeat;
  background-size: 210px auto;
  background-position: center top;
  opacity: 0.85;
}
#hero-main-section {
  /* ── OVERLAY CONTENT ── */
}
#hero-main-section .hero-overlay-content {
  position: relative;
  z-index: 50;
}
@media (max-width: 1023px) {
  #hero-main-section .hero-overlay-content {
    height: auto;
  }
}
#hero-main-section .container {
  max-width: none;
  margin: 0 auto;
}
#hero-main-section {
  /* ── HEADER ── */
}
#hero-main-section .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 0;
  width: 100%;
}
#hero-main-section .header .logo img {
  height: 44px;
  width: auto;
  display: block;
  margin: 0;
}
#hero-main-section .header .nav {
  display: flex;
  gap: 16px;
}
#hero-main-section .header .nav .nav-link {
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  font-size: 13px;
  font-family: "Poppins-Semibold", "Poppins", sans-serif;
  background-color: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
#hero-main-section .header .nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}
@media (max-width: 1023px) {
  #hero-main-section .header .nav {
    display: none;
  }
}
@media (max-width: 1023px) {
  #hero-main-section .header {
    padding: 28px 0 0;
  }
}
#hero-main-section {
  /* ── HERO BODY ── */
}
#hero-main-section .hero-body {
  margin-top: clamp(60px, 9svh, 120px);
  max-width: 50%;
  padding-bottom: clamp(40px, 6svh, 90px);
}
@media (max-width: 1200px) {
  #hero-main-section .hero-body {
    max-width: 55%;
  }
}
@media (max-width: 1023px) {
  #hero-main-section .hero-body {
    max-width: 100%;
    margin-top: clamp(60px, 8svh, 110px);
    padding-bottom: 40px;
  }
}
@media (max-width: 440px) {
  #hero-main-section .hero-body {
    max-width: 100%;
    margin-top: clamp(48px, 7svh, 80px);
    padding-bottom: 40px;
  }
}
#hero-main-section {
  /* ── MOBILE HAND IMAGE (In-Flow) ── */
}
#hero-main-section .hero-hand-mobile-wrap {
  display: none;
}
@media (max-width: 1023px) {
  #hero-main-section .hero-hand-mobile-wrap {
    display: block;
    width: 100%;
    padding-bottom: 20px;
  }
  #hero-main-section .hero-hand-mobile-wrap img {
    width: 90%;
    max-width: 600px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  #hero-main-section .hero-hand-mobile-wrap img {
    width: 100%;
    max-width: 390px;
    height: 600px;
  }
}
@media (max-width: 440px) {
  #hero-main-section .hero-hand-mobile-wrap img {
    max-width: 390px;
  }
}
#hero-main-section {
  /* ── TEXT LINES LAYOUT ── */
}
#hero-main-section .hero-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  line-height: 0.9;
}
#hero-main-section .hero-line:last-of-type {
  margin-bottom: 1.25rem;
}
#hero-main-section .hero-line .title-line {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: clamp(48px, 5.8vw, 96px);
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
  padding-right: 15px;
}
#hero-main-section .hero-line .brush-font {
  font-family: "Brushlie-demo", cursive;
  color: #F966AC;
  font-size: clamp(72px, 8.7vw, 145px);
  margin: 0;
  line-height: 0.8;
  padding-right: 15px;
}
@media (max-width: 767px) {
  #hero-main-section .hero-line .title-line {
    font-size: clamp(40px, 7.5vw, 60px);
  }
  #hero-main-section .hero-line .brush-font {
    font-size: clamp(58px, 11vw, 90px);
  }
}
@media (max-width: 440px) {
  #hero-main-section .hero-line .title-line {
    font-size: clamp(36px, 10vw, 52px);
  }
  #hero-main-section .hero-line .brush-font {
    font-size: clamp(52px, 14vw, 76px);
  }
}
@media (max-width: 375px) {
  #hero-main-section .hero-line .title-line {
    font-size: 36px;
  }
  #hero-main-section .hero-line .brush-font {
    font-size: 52px;
  }
}
#hero-main-section {
  /* ── HERO DESCRIPTION ── */
}
#hero-main-section .hero-description {
  font-family: "Poppins-Regular", "Poppins", sans-serif;
  font-size: 1rem;
  color: #BFC0C6;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 1023px) {
  #hero-main-section .hero-description {
    font-size: 1.25rem;
  }
}
#hero-main-section {
  /* ── AVAILABILITY LINE ── */
}
#hero-main-section .hero-availability {
  font-family: "Poppins-Semibold", "Poppins", sans-serif;
  font-size: 1rem;
  color: #F0E4E4;
  margin-bottom: 3rem;
}
@media (max-width: 1023px) {
  #hero-main-section .hero-availability {
    font-size: 1.25rem;
  }
}
#hero-main-section {
  /* ── HERO BUTTONS ── */
}
#hero-main-section .hero-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  z-index: 10005;
}
#hero-main-section .hero-buttons .btn {
  padding: 1rem 2rem;
  border-radius: 10px;
  font-family: "Poppins-Semibold", "Poppins", sans-serif;
  font-size: 0.875rem;
  min-width: 160px;
  justify-content: center;
}
@media (max-width: 1200px) {
  #hero-main-section .hero-buttons {
    gap: 0.75rem;
  }
  #hero-main-section .hero-buttons .btn {
    padding: 0.875rem 1.5rem;
    min-width: 140px;
    font-size: 0.8125rem;
  }
}
@media (max-width: 1023px) {
  #hero-main-section .hero-buttons {
    gap: 0.75rem;
  }
  #hero-main-section .hero-buttons .btn {
    flex: 1;
    min-width: 0;
    padding: 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  #hero-main-section .hero-buttons {
    gap: 0.75rem;
  }
  #hero-main-section .hero-buttons .btn {
    flex: 1;
    min-width: 0;
    padding: 0.875rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  #hero-main-section .hero-buttons {
    gap: 0.625rem;
  }
  #hero-main-section .hero-buttons .btn {
    flex: 1;
    min-width: 0;
    padding: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

/* ── DESKTOP HAND (anchored to hero bottom, always screen-proportional) ── */
.hero-hand {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: none;
  z-index: 500;
  height: 0;
  pointer-events: none;
}
.hero-hand img {
  position: absolute;
  bottom: 0;
  right: clamp(30px, 5.5vw, 80px);
  width: auto;
  height: clamp(640px, 84svh, 1200px);
  max-width: 46%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0;
}
@media (max-width: 1200px) {
  .hero-hand img {
    max-width: 44%;
    right: clamp(20px, 3vw, 40px);
  }
}
@media (max-width: 1023px) {
  .hero-hand {
    display: none;
  }
}

/* ── TRIPLE MERGE BRIDGE (Atmospheric Fog Hills) ── */
.merge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10005;
  pointer-events: none;
  height: clamp(240px, 38svh, 520px);
  overflow: visible;
}
.merge [class*=hero-merge-] {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
}
.merge .hero-merge-left {
  background-image: radial-gradient(ellipse 65% 80% at 12% 100%, #0C0C1F 0%, #0C0C1F 25%, rgba(12, 12, 31, 0.7) 55%, transparent 85%);
}
@media (max-width: 767px) {
  .merge .hero-merge-left {
    background-image: radial-gradient(ellipse 80% 75% at 10% 100%, #0C0C1F 0%, #0C0C1F 20%, rgba(12, 12, 31, 0.65) 52%, transparent 82%);
  }
}
.merge .hero-merge-center {
  background-image: radial-gradient(ellipse 75% 65% at 50% 100%, #0C0C1F 0%, #0C0C1F 20%, rgba(12, 12, 31, 0.6) 52%, transparent 80%);
}
@media (max-width: 767px) {
  .merge .hero-merge-center {
    background-image: radial-gradient(ellipse 90% 60% at 50% 100%, #0C0C1F 0%, #0C0C1F 18%, rgba(12, 12, 31, 0.55) 50%, transparent 78%);
  }
}
.merge .hero-merge-right {
  background-image: radial-gradient(ellipse 68% 90% at 88% 100%, #0C0C1F 0%, #0C0C1F 15%, rgba(12, 12, 31, 0.72) 48%, transparent 82%);
}
@media (max-width: 767px) {
  .merge .hero-merge-right {
    background-image: radial-gradient(ellipse 85% 80% at 85% 100%, #0C0C1F 0%, #0C0C1F 15%, rgba(12, 12, 31, 0.68) 48%, transparent 80%);
  }
}
.merge .hero-animate {
  position: absolute;
  bottom: clamp(-40px, 0%, 220px);
  left: 40%;
  z-index: 10005;
  pointer-events: none;
  opacity: 0.75;
  rotate: 180deg;
}
.merge .hero-animate img {
  width: clamp(200px, 14vw, 260px);
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (min-width: 1440px) {
  .merge .hero-animate {
    bottom: -10%;
  }
}
@media (max-width: 767px) {
  .merge .hero-animate {
    left: 30%;
    bottom: clamp(60px, 35%, 150px);
  }
  .merge .hero-animate img {
    width: clamp(100px, 12vw, 160px);
  }
}
@media (max-width: 440px) {
  .merge .hero-animate {
    bottom: -25%;
  }
  .merge .hero-animate img {
    width: clamp(150px, 25vw, 180px);
  }
}
@media (max-width: 1023px) {
  .merge {
    height: clamp(180px, 32svh, 380px);
  }
}
@media (max-width: 767px) {
  .merge {
    height: clamp(150px, 28svh, 300px);
  }
}
@media (max-width: 440px) {
  .merge {
    height: clamp(120px, 24svh, 240px);
  }
}

/* SPREE ELEVATES SECTION */
#spree-elevates {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin: 0 auto;
  z-index: 10010;
}
@media (max-width: 1440px) {
  #spree-elevates .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 1023px) {
  #spree-elevates .container {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  #spree-elevates .container {
    padding-top: 120px;
    padding-bottom: 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: 1440px) {
  #spree-elevates .elevates-header {
    margin: 0 0 80px;
  }
}
@media (min-width: 1680px) {
  #spree-elevates .elevates-header {
    margin: 0 0 100px;
  }
}
@media (max-width: 767px) {
  #spree-elevates .elevates-header {
    margin-bottom: 16px;
    gap: 16px;
  }
}
@media (max-width: 440px) {
  #spree-elevates .elevates-header {
    margin-bottom: 12px;
    gap: 12px;
  }
}
#spree-elevates .elevates-title {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: clamp(1.75rem, 9vw, 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: 1440px) {
  #spree-elevates .elevates-title {
    font-size: 3.25rem;
  }
}
@media (min-width: 1680px) {
  #spree-elevates .elevates-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 767px) {
  #spree-elevates .elevates-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 440px) {
  #spree-elevates .elevates-title {
    font-size: 2rem;
  }
}
@media (max-width: 375px) {
  #spree-elevates .elevates-title {
    font-size: 1.75rem;
  }
}
#spree-elevates .elevates-content {
  font-size: 1rem;
  line-height: 28px;
  color: #CDD3DD;
  width: 100%;
  text-align: left;
}
@media (max-width: 767px) {
  #spree-elevates .elevates-content br {
    display: none;
  }
  #spree-elevates .elevates-content {
    font-size: 0.9375rem;
  }
}
@media (max-width: 440px) {
  #spree-elevates .elevates-content {
    font-size: 0.875rem;
  }
}
@media (min-width: 1023px) {
  #spree-elevates .elevates-content {
    font-size: 0.9375rem;
    text-align: right;
  }
}
@media (min-width: 1440px) {
  #spree-elevates .elevates-content {
    font-size: 1rem;
  }
}
@media (min-width: 1680px) {
  #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 (max-width: 440px) {
  #spree-elevates .elevates-cards-wrapper {
    gap: 1rem;
    margin: 0 -16px;
    padding: 16px;
  }
}
@media (min-width: 1440px) {
  #spree-elevates .elevates-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0 auto;
    max-width: 1680px;
    padding: 0;
    overflow: visible;
  }
}
@media (min-width: 1680px) {
  #spree-elevates .elevates-cards-wrapper {
    gap: 2rem;
    margin-bottom: 80px;
  }
}
#spree-elevates .elevates-cards {
  padding: 25px 15px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #0F0F2D;
  flex: 0 0 240px;
  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: 440px) {
  #spree-elevates .elevates-cards {
    flex: 0 0 280px;
    padding: 28px 18px;
    min-height: 330px;
  }
}
@media (min-width: 767px) {
  #spree-elevates .elevates-cards {
    flex: 0 0 300px;
    padding: 30px 20px;
    min-height: 340px;
  }
}
@media (min-width: 1023px) {
  #spree-elevates .elevates-cards {
    flex: 0 0 320px;
    padding: 30px 20px;
    min-height: 350px;
  }
}
@media (min-width: 1200px) {
  #spree-elevates .elevates-cards {
    flex: 0 0 340px;
    min-height: 360px;
  }
}
@media (min-width: 1440px) {
  #spree-elevates .elevates-cards {
    flex: unset;
    padding: 35px 25px;
    min-height: 380px;
    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: 1680px) {
  #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: 1440px) {
  #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: 1440px) {
  #spree-elevates .elevates-cards .card-icon {
    margin: 0 0 30px;
    justify-content: flex-start;
  }
}
@media (max-width: 440px) {
  #spree-elevates .elevates-cards .card-icon {
    height: 50px;
    margin: 0 auto 20px;
  }
}
#spree-elevates .elevates-cards .elevates-cards-info {
  margin-top: 20px;
}
@media (min-width: 1023px) {
  #spree-elevates .elevates-cards .elevates-cards-info {
    margin-top: 30px;
  }
}
@media (min-width: 1440px) {
  #spree-elevates .elevates-cards .elevates-cards-info {
    margin-top: 40px;
  }
}
@media (min-width: 1680px) {
  #spree-elevates .elevates-cards .elevates-cards-info {
    margin-top: 60px;
  }
}
@media (max-width: 440px) {
  #spree-elevates .elevates-cards .elevates-cards-info {
    margin-top: 16px;
  }
}
#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: 1200px) {
  #spree-elevates .elevates-cards .elevates-cards-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 1680px) {
  #spree-elevates .elevates-cards .elevates-cards-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 440px) {
  #spree-elevates .elevates-cards .elevates-cards-title {
    font-size: 1rem;
    margin: 0.75rem 0;
  }
}
#spree-elevates .elevates-cards .elevates-cards-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #CDD3DD;
  margin-bottom: 1.5rem;
  margin-top: 1.25rem;
  text-align: left;
}
@media (min-width: 1440px) {
  #spree-elevates .elevates-cards .elevates-cards-content {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  #spree-elevates .elevates-cards .elevates-cards-content {
    font-size: 0.9375rem;
  }
}
@media (max-width: 440px) {
  #spree-elevates .elevates-cards .elevates-cards-content {
    font-size: 0.875rem;
    margin-top: 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: 1440px) {
  #spree-elevates .elevates-cards .card-line {
    margin: 0;
  }
}
@media (max-width: 440px) {
  #spree-elevates .elevates-cards .card-line {
    bottom: 20px;
  }
}
#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;
  max-width: none;
  margin: 0 auto;
}
#go-out-spree .container {
  padding: 0;
}
@media (min-width: 767px) {
  #go-out-spree {
    padding: 0px 40px 100px;
  }
}
@media (min-width: 1200px) {
  #go-out-spree {
    padding: 0px 60px 120px;
  }
}
@media (min-width: 1440px) {
  #go-out-spree {
    padding: 0px 80px 220px;
  }
}
@media (min-width: 1680px) {
  #go-out-spree {
    padding: 0px 80px 250px;
  }
}
@media (max-width: 767px) {
  #go-out-spree {
    padding-top: 0px;
    padding-bottom: 40px;
  }
}
@media (max-width: 440px) {
  #go-out-spree {
    padding-bottom: 30px;
  }
}
#go-out-spree .animation-container-go-out {
  position: absolute;
  bottom: 50px;
  left: 0px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  margin-top: -90px;
}
@media (max-width: 1200px) {
  #go-out-spree .animation-container-go-out {
    transform: scale(0.7);
    left: 0px;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  #go-out-spree .animation-container-go-out {
    position: relative;
    bottom: auto;
    left: auto;
    display: flex;
    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: center;
  gap: 40px;
}
@media (max-width: 767px) {
  #go-out-spree .go-out-wrapper {
    gap: 30px;
  }
}
@media (max-width: 440px) {
  #go-out-spree .go-out-wrapper {
    gap: 24px;
  }
}
@media (min-width: 1023px) {
  #go-out-spree .go-out-wrapper {
    flex-direction: row;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    min-height: 600px;
  }
}
@media (min-width: 1440px) {
  #go-out-spree .go-out-wrapper {
    gap: 120px;
    min-height: 650px;
  }
}
@media (min-width: 1680px) {
  #go-out-spree .go-out-wrapper {
    gap: 140px;
    min-height: 700px;
  }
}
#go-out-spree .go-out-left {
  position: relative;
  padding-top: 20px;
  width: 100%;
}
@media (min-width: 1200px) {
  #go-out-spree .go-out-left {
    padding-left: 40px;
    padding-right: 0px;
    padding-top: 60px;
    width: auto;
  }
}
#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: 1023px) {
  #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: 1200px) {
  #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: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#go-out-spree .go-out-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (min-width: 1023px) {
  #go-out-spree .go-out-item {
    opacity: 0.3;
    border-left: 3px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    padding: 10px 0 10px 2rem;
    margin-bottom: 60px;
    align-items: flex-start;
    transition: none;
  }
  #go-out-spree .go-out-item.active {
    opacity: 1;
    margin-bottom: 60px;
    border-left-color: #FFFFFF !important;
  }
  #go-out-spree .go-out-item:last-child {
    margin-bottom: 0;
  }
}
#go-out-spree .item-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}
@media (min-width: 1023px) {
  #go-out-spree .item-header {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
  }
}
#go-out-spree .item-icon-wrapper img {
  width: 2.25rem;
  height: auto;
  transition: all 0.3s ease;
  filter: none;
}
@media (min-width: 1023px) {
  #go-out-spree .item-icon-wrapper img {
    width: 28px;
    height: 28px;
    -o-object-fit: contain;
       object-fit: contain;
    filter: grayscale(1) brightness(150%) opacity(0.4);
    transition: none;
  }
}
#go-out-spree .go-out-item.active .item-icon-wrapper img {
  filter: none;
}
@media (min-width: 1023px) {
  #go-out-spree .go-out-item.active .item-icon-wrapper img {
    width: 28px;
    height: 28px;
  }
}
#go-out-spree .item-title {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.3;
  transition: all 0.4s ease-in-out;
  opacity: 1;
  color: #FFFFFF;
}
@media (min-width: 1023px) {
  #go-out-spree .item-title {
    font-family: "Poppins-Medium", "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
    transition: none;
  }
}
@media (min-width: 1023px) {
  #go-out-spree .go-out-item.active .item-title {
    font-family: "Poppins-Bold", "Poppins", sans-serif;
    font-size: 22px;
    color: #FFFFFF;
    opacity: 1;
  }
}
@media (min-width: 1680px) {
  #go-out-spree .go-out-item.active .item-title {
    font-size: 26px;
  }
}
@media (min-width: 1023px) {
  #go-out-spree .go-out-item:not(.active) .item-title {
    font-family: "Poppins-Medium", "Poppins", sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    opacity: 1;
  }
}
@media (min-width: 1680px) {
  #go-out-spree .go-out-item:not(.active) .item-title {
    font-size: 16px;
  }
}
#go-out-spree .item-body {
  height: auto;
  overflow: visible;
}
@media (max-width: 1200px) {
  #go-out-spree .item-body {
    height: auto;
    overflow: visible;
  }
}
#go-out-spree .item-body p {
  font-family: "Poppins-Regular", "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #F0E4E4;
  padding: 0;
  text-align: center;
}
@media (max-width: 767px) {
  #go-out-spree .item-body p {
    max-width: 85%;
    margin: 4px auto;
  }
}
@media (min-width: 1023px) {
  #go-out-spree .item-body p {
    font-size: 14px;
    text-align: left;
  }
}
@media (min-width: 1680px) {
  #go-out-spree .item-body p {
    font-size: 16px;
  }
}
#go-out-spree .go-out-right {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1023px) {
  #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: 1680px) {
  #go-out-spree .go-out-right .phone-glow-container {
    min-height: 32.875rem;
  }
}
#go-out-spree .go-out-right .go-out-phone-img {
  grid-area: 1/1;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 450px;
  opacity: 0;
  z-index: 1;
  will-change: opacity, transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  transform-origin: center center;
}
#go-out-spree .go-out-right .go-out-phone-img.active {
  opacity: 1;
  z-index: 2;
}
@media (min-width: 1200px) {
  #go-out-spree .go-out-right .go-out-phone-img {
    max-height: 650px;
  }
}
@media (min-width: 1680px) {
  #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: 50px;
  z-index: 10;
  pointer-events: none;
}
@media (min-width: 767px) {
  .border-img-wrapper {
    height: 150px;
  }
}

.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: 1680px) {
  .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;
  max-width: none;
  margin: 0 auto;
}
@media (min-width: 1680px) {
  #venues-hosts {
    padding: 100px 0 200px;
  }
}
@media (max-width: 1440px) {
  #venues-hosts {
    padding: 80px 0 160px;
  }
}
@media (max-width: 1200px) {
  #venues-hosts {
    padding: 70px 0 150px;
  }
}
@media (max-width: 1023px) {
  #venues-hosts {
    padding: 60px 0 140px;
  }
}
@media (max-width: 767px) {
  #venues-hosts {
    padding: 0 0 100px;
  }
}
@media (max-width: 440px) {
  #venues-hosts {
    padding: 0 0 80px;
  }
}
#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;
    text-align: left;
    margin-bottom: 40px;
    padding-top: 20px;
    gap: 24px;
  }
}
@media (min-width: 1200px) {
  #venues-hosts .venues-header {
    margin-bottom: 60px;
    gap: 40px;
  }
}
@media (min-width: 1440px) {
  #venues-hosts .venues-header {
    margin-bottom: 70px;
  }
}
@media (min-width: 1680px) {
  #venues-hosts .venues-header {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  #venues-hosts .venues-header {
    margin-bottom: 40px;
    gap: 24px;
  }
}
@media (max-width: 440px) {
  #venues-hosts .venues-header {
    margin-bottom: 30px;
    gap: 20px;
  }
}
#venues-hosts .venues-header .btn {
  padding: 24px;
}
@media (min-width: 440px) {
  #venues-hosts .venues-header .btn {
    width: auto;
    min-width: 220px;
    font-size: 15px;
  }
}
@media (max-width: 440px) {
  #venues-hosts .venues-header .btn {
    padding: 16px 20px;
    min-width: 180px;
    font-size: 14px;
  }
}
#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: 2.25rem;
  }
}
@media (min-width: 1023px) {
  #venues-hosts .venues-title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  #venues-hosts .venues-title {
    font-size: 3rem;
  }
}
@media (min-width: 1440px) {
  #venues-hosts .venues-title {
    font-size: 3.25rem;
  }
}
@media (min-width: 1680px) {
  #venues-hosts .venues-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 440px) {
  #venues-hosts .venues-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 375px) {
  #venues-hosts .venues-title {
    font-size: 1.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: 40px;
    margin-bottom: 60px;
  }
  #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: 80px;
  }
}
@media (min-width: 1440px) {
  #venues-hosts .venues-grid {
    gap: 100px;
  }
}
@media (min-width: 1680px) {
  #venues-hosts .venues-grid {
    gap: 120px;
  }
}
@media (max-width: 767px) {
  #venues-hosts .venues-grid {
    gap: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 440px) {
  #venues-hosts .venues-grid {
    gap: 24px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  #venues-hosts .venues-grid .venues-col:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
  }
}
@media (max-width: 440px) {
  #venues-hosts .venues-grid .venues-col:first-child {
    padding-bottom: 24px;
  }
}
#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: 1680px) {
  #venues-hosts .venues-col-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 1023px) {
  #venues-hosts .venues-col-title {
    font-size: 1.375rem;
  }
}
@media (max-width: 767px) {
  #venues-hosts .venues-col-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }
}
@media (max-width: 440px) {
  #venues-hosts .venues-col-title {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }
}
#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: 1680px) {
  #venues-hosts .venues-list li {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  #venues-hosts .venues-list li {
    font-size: 1rem;
    gap: 1rem;
  }
}
@media (max-width: 440px) {
  #venues-hosts .venues-list li {
    font-size: 0.9375rem;
    gap: 0.875rem;
  }
}
@media (max-width: 440px) {
  #venues-hosts .venues-list {
    gap: 1.25rem;
  }
}
#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: 1680px) {
  #venues-hosts .venues-details-container {
    padding: 70px;
  }
}
@media (max-width: 1200px) {
  #venues-hosts .venues-details-container {
    padding: 50px 40px;
  }
}
@media (max-width: 1023px) {
  #venues-hosts .venues-details-container {
    padding: 40px 30px;
  }
}
@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: 440px) {
  #venues-hosts .venues-details-container {
    padding: 25px 15px 10px;
    margin-bottom: 40px;
  }
}
#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 (min-width: 1440px) {
  #venues-hosts .dashboard-wrapper {
    padding: 0 60px;
  }
}
@media (min-width: 1680px) {
  #venues-hosts .dashboard-wrapper {
    padding: 0 80px;
  }
}
@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;
  }
}
@media (max-width: 440px) {
  #venues-hosts .dashboard-wrapper {
    margin-top: -25px;
  }
}
#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;
  margin-left: 30px;
  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 (min-width: 1680px) {
  #venues-hosts .dashboard-card-outer {
    border-radius: 24px;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  #venues-hosts .dashboard-card-outer {
    margin-top: -60px;
  }
}
@media (max-width: 440px) {
  #venues-hosts .dashboard-card-outer {
    margin-top: -40px;
    width: 100%;
    margin-left: 20px;
  }
}
#venues-hosts .dashboard-img {
  display: block;
  border-radius: 12px;
  background-color: #0C0C1F;
}
#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 {
    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;
  transform-origin: right bottom;
}
@media (max-width: 1023px) {
  #venues-hosts .animation-container-plus {
    transform: scale(0.8);
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  #venues-hosts .animation-container-plus {
    bottom: 30px;
    left: -20px;
    right: auto;
    transform-origin: left bottom;
    transform: scale(0.65);
    margin-top: 0;
    margin-bottom: 0;
    opacity: 1;
    z-index: 10;
  }
}
@media (max-width: 440px) {
  #venues-hosts .animation-container-plus {
    left: -20px;
    transform: scale(0.45);
  }
}
#venues-hosts .animation-container-plus svg {
  overflow: visible !important;
}

/* REAL NIGHTS SECTION */
#real-nights-section {
  padding: 0;
  position: relative;
  overflow: hidden;
  max-width: 1680px;
  margin: 0 auto;
  background-color: #0C0C1F;
}
@media (max-width: 767px) {
  #real-nights-section {
    padding: 48px 0;
    min-height: auto;
  }
}
@media (max-width: 440px) {
  #real-nights-section {
    padding: 32px 0;
  }
}
#real-nights-section .container {
  margin: 0 auto;
  padding: 0;
}
#real-nights-section .real-nights-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  min-height: 500px;
}
@media (min-width: 1440px) {
  #real-nights-section .real-nights-wrapper {
    padding: 0 80px;
    gap: 40px;
  }
}
@media (min-width: 1680px) {
  #real-nights-section .real-nights-wrapper {
    gap: 100px;
  }
}
@media (max-width: 1200px) {
  #real-nights-section .real-nights-wrapper {
    gap: 40px;
    min-height: auto;
  }
}
@media (max-width: 1023px) {
  #real-nights-section .real-nights-wrapper {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 767px) {
  #real-nights-section .real-nights-wrapper {
    padding: 0;
  }
}
#real-nights-section .real-nights-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45%;
  flex-shrink: 0;
}
@media (min-width: 1440px) {
  #real-nights-section .real-nights-image-col {
    width: 48%;
  }
}
@media (max-width: 1200px) {
  #real-nights-section .real-nights-image-col {
    width: 42%;
  }
}
@media (max-width: 1023px) {
  #real-nights-section .real-nights-image-col {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  #real-nights-section .real-nights-image-col {
    margin-bottom: 32px;
  }
}
@media (max-width: 440px) {
  #real-nights-section .real-nights-image-col {
    margin-bottom: 24px;
  }
}
@media (max-width: 375px) {
  #real-nights-section .real-nights-image-col {
    margin-bottom: 20px;
  }
}
#real-nights-section .real-nights-image-col .real-nights-phone {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1023px) {
  #real-nights-section .real-nights-image-col .real-nights-phone {
    width: 320px;
  }
}
@media (max-width: 767px) {
  #real-nights-section .real-nights-image-col .real-nights-phone {
    width: 280px;
  }
}
@media (max-width: 440px) {
  #real-nights-section .real-nights-image-col .real-nights-phone {
    width: 100%;
  }
}
#real-nights-section .real-nights-content-col {
  width: 48%;
  position: relative;
  z-index: 2;
  padding: 30px 0;
}
@media (min-width: 1440px) {
  #real-nights-section .real-nights-content-col {
    padding-top: 40px;
    padding-right: 0;
  }
}
@media (min-width: 1680px) {
  #real-nights-section .real-nights-content-col {
    padding-top: 50px;
  }
}
@media (max-width: 1200px) {
  #real-nights-section .real-nights-content-col {
    width: 50%;
    padding: 50px;
  }
}
@media (max-width: 1023px) {
  #real-nights-section .real-nights-content-col {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  #real-nights-section .real-nights-content-col {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 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: 2rem;
  }
}
@media (min-width: 1023px) {
  #real-nights-section .real-nights-content-col h2 {
    font-size: 2.625rem;
  }
}
@media (min-width: 1440px) {
  #real-nights-section .real-nights-content-col h2 {
    font-size: 2.75rem;
  }
}
@media (min-width: 1680px) {
  #real-nights-section .real-nights-content-col h2 {
    font-size: 3rem;
  }
}
@media (max-width: 440px) {
  #real-nights-section .real-nights-content-col h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 375px) {
  #real-nights-section .real-nights-content-col h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 1200px) {
  #real-nights-section .real-nights-content-col h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
#real-nights-section .real-nights-content-col .section-subtitle {
  font-family: "Poppins-Semibold", "Poppins", sans-serif;
  font-size: 1rem;
  color: #F0E4E4;
  line-height: 32px;
  text-align: left;
  margin: 0 4rem 3rem 0;
}
@media (min-width: 1680px) {
  #real-nights-section .real-nights-content-col .section-subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 1200px) {
  #real-nights-section .real-nights-content-col .section-subtitle {
    max-width: 80%;
    margin: 0 auto 2rem;
    text-align: center;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  #real-nights-section .real-nights-content-col .section-subtitle {
    max-width: 85%;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 32px;
  }
}
@media (max-width: 440px) {
  #real-nights-section .real-nights-content-col .section-subtitle {
    font-size: 0.9375rem;
    max-width: 90%;
    margin-bottom: 1.5rem;
  }
}
#real-nights-section .partners-row {
  margin-bottom: 55px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media (min-width: 1680px) {
  #real-nights-section .partners-row {
    margin-bottom: 50px;
    gap: 28px;
  }
}
@media (max-width: 767px) {
  #real-nights-section .partners-row {
    margin-bottom: 30px;
    gap: 20px;
    align-items: center;
  }
}
@media (max-width: 440px) {
  #real-nights-section .partners-row {
    margin-bottom: 24px;
    gap: 16px;
  }
}
#real-nights-section .partner-label-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1.5rem;
  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 (min-width: 1680px) {
  #real-nights-section .partner-label-box {
    height: 48px;
    font-size: 1.0625rem;
  }
}
@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 1.75rem;
    height: 36px;
    font-size: 16px;
    margin-bottom: 8px;
  }
}
@media (max-width: 440px) {
  #real-nights-section .partner-label-box {
    height: 32px;
    font-size: 13px;
    padding: 0 1.25rem;
  }
}
#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: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 1440px) {
  #real-nights-section .partners-logos {
    gap: 28px;
  }
}
@media (min-width: 1680px) {
  #real-nights-section .partners-logos {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  #real-nights-section .partners-logos {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    justify-items: center;
    gap: 40px 80px;
    max-width: 320px;
    margin: 0 auto;
  }
}
@media (max-width: 440px) {
  #real-nights-section .partners-logos {
    gap: 20px 60px;
  }
}
#real-nights-section .partners-logos .partner-logo {
  width: 32px;
  height: auto;
  opacity: 0.8;
  filter: grayscale(100%) brightness(150%);
  transition: all 0.3s ease;
}
@media (min-width: 1680px) {
  #real-nights-section .partners-logos .partner-logo {
    width: 36px;
  }
}
@media (max-width: 767px) {
  #real-nights-section .partners-logos .partner-logo {
    width: 28px;
  }
}
@media (max-width: 440px) {
  #real-nights-section .partners-logos .partner-logo {
    width: 24px;
  }
}
#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: 1023px) {
  #real-nights-section .animation-container-nights {
    transform: scale(0.85);
  }
}
@media (max-width: 767px) {
  #real-nights-section .animation-container-nights {
    transform: scale(0.7);
    margin-bottom: -20px;
  }
}
@media (max-width: 440px) {
  #real-nights-section .animation-container-nights {
    transform: scale(0.6);
    margin-bottom: -30px;
  }
}
#real-nights-section .animation-container-nights svg {
  overflow: visible !important;
}

/* CTA: EXPERIENCE SPREE SECTION */
#cta-experience {
  background-color: #0C0C1F;
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  padding: 80px 0 120px;
  z-index: 1;
  min-height: 680px;
  margin: 0 auto;
}
@media (min-width: 1440px) {
  #cta-experience {
    padding: 100px 0 140px;
  }
}
@media (min-width: 1680px) {
  #cta-experience {
    padding: 120px 0 160px;
  }
}
@media (max-width: 1200px) {
  #cta-experience {
    padding: 70px 0 100px;
  }
}
@media (max-width: 1023px) {
  #cta-experience {
    padding: 60px 20px 90px;
  }
}
@media (max-width: 767px) {
  #cta-experience {
    padding: 60px 20px 80px;
    min-height: 440px;
  }
}
@media (max-width: 440px) {
  #cta-experience {
    padding: 50px 16px 70px;
  }
}
#cta-experience .cta-grad {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}
#cta-experience .cta-grad img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
#cta-experience .cta-grad.cta-grad-left {
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
}
@media (max-width: 1200px) {
  #cta-experience .cta-grad.cta-grad-left {
    width: 350px;
    left: -80px;
  }
}
@media (max-width: 1023px) {
  #cta-experience .cta-grad.cta-grad-left {
    width: 280px;
    left: -60px;
  }
}
@media (max-width: 767px) {
  #cta-experience .cta-grad.cta-grad-left {
    width: 200px;
    left: -50px;
  }
}
@media (max-width: 440px) {
  #cta-experience .cta-grad.cta-grad-left {
    width: 220px;
    left: -40px;
    opacity: 0.5;
    top: 120px;
  }
}
#cta-experience .cta-grad.cta-grad-right {
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
}
@media (max-width: 1200px) {
  #cta-experience .cta-grad.cta-grad-right {
    width: 420px;
    right: -80px;
  }
}
@media (max-width: 1023px) {
  #cta-experience .cta-grad.cta-grad-right {
    width: 320px;
    right: -60px;
  }
}
@media (max-width: 767px) {
  #cta-experience .cta-grad.cta-grad-right {
    width: 240px;
    right: -50px;
  }
}
@media (max-width: 440px) {
  #cta-experience .cta-grad.cta-grad-right {
    width: 220px;
    right: -40px;
    top: 100px;
    opacity: 0.7;
  }
}
#cta-experience .cta-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
}
#cta-experience .cta-lines img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
}
@media (max-width: 767px) {
  #cta-experience .cta-lines {
    opacity: 0.3;
  }
}
#cta-experience .container {
  padding: 0;
}
#cta-experience .animation-container-nights {
  position: relative;
  margin: 0 auto 40px auto;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 1023px) {
  #cta-experience .animation-container-nights {
    transform: scale(0.85);
  }
}
@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: 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: 1440px) {
  #cta-experience .cta-title {
    font-size: 3.25rem;
  }
}
@media (min-width: 1680px) {
  #cta-experience .cta-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 1200px) {
  #cta-experience .cta-title {
    font-size: 3rem;
  }
}
@media (max-width: 440px) {
  #cta-experience .cta-title {
    font-size: 2.5rem;
  }
}
#cta-experience .cta-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  line-height: 1.6;
  max-width: 40%;
  margin: 1.5rem auto 3.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (min-width: 1680px) {
  #cta-experience .cta-subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  #cta-experience .cta-subtitle {
    max-width: 50%;
  }
}
@media (max-width: 1023px) {
  #cta-experience .cta-subtitle {
    max-width: 60%;
  }
}
@media (max-width: 767px) {
  #cta-experience .cta-subtitle {
    max-width: 80%;
    margin-bottom: 2.5rem;
    font-size: 0.8125rem;
  }
}
@media (max-width: 440px) {
  #cta-experience .cta-subtitle {
    max-width: 100%;
    margin-bottom: 2rem;
    font-size: 1rem;
  }
}
#cta-experience .cta-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 1680px) {
  #cta-experience .cta-buttons {
    gap: 16px;
  }
}
@media (max-width: 440px) {
  #cta-experience .cta-buttons {
    gap: 10px;
  }
}
#cta-experience .cta-buttons .btn-waitlist,
#cta-experience .cta-buttons .btn-partner {
  padding: 14px 24px;
  border-radius: 10px;
  font-family: "Poppins-Semibold", "Poppins", sans-serif;
  font-size: 14px;
  line-height: 18px;
  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: 200px;
}
@media (min-width: 1680px) {
  #cta-experience .cta-buttons .btn-waitlist,
  #cta-experience .cta-buttons .btn-partner {
    width: 220px;
    font-size: 15px;
    min-height: 58px;
  }
}
@media (max-width: 1023px) {
  #cta-experience .cta-buttons .btn-waitlist,
  #cta-experience .cta-buttons .btn-partner {
    width: 185px;
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  #cta-experience .cta-buttons .btn-waitlist,
  #cta-experience .cta-buttons .btn-partner {
    width: 170px;
    padding: 12px 20px;
    min-height: 48px;
  }
}
@media (max-width: 440px) {
  #cta-experience .cta-buttons .btn-waitlist,
  #cta-experience .cta-buttons .btn-partner {
    width: 150px;
    padding: 10px 16px;
    font-size: 12px;
    min-height: 44px;
  }
}
#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: 767px) {
  .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% - 40px);
    max-width: 520px;
    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: #0C0C1F;
  position: relative;
  z-index: 10;
  margin: 0 auto;
}
@media (min-width: 1680px) {
  .footer {
    padding: 120px 0 100px;
  }
}
@media (max-width: 1440px) {
  .footer {
    padding: 90px 0 70px;
  }
}
@media (max-width: 1200px) {
  .footer {
    padding: 80px 0 60px;
  }
}
@media (max-width: 1023px) {
  .footer {
    padding: 60px 0 80px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0 80px;
  }
}
@media (max-width: 440px) {
  .footer {
    padding: 30px 0 80px;
  }
}
.footer .footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
}
@media (min-width: 1023px) {
  .footer .footer-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas: "logo socials" "tagline nav";
    align-items: start;
    -moz-column-gap: 80px;
         column-gap: 80px;
    row-gap: 44px;
  }
}
@media (min-width: 1680px) {
  .footer .footer-wrapper {
    gap: 60px;
    -moz-column-gap: 100px;
         column-gap: 100px;
    row-gap: 56px;
  }
}
@media (max-width: 767px) {
  .footer .footer-wrapper {
    gap: 30px;
  }
}
@media (min-width: 1023px) {
  .footer .footer-logo {
    grid-area: logo;
  }
}
.footer .footer-logo img {
  height: 38px;
  width: auto;
  margin: 0;
}
@media (min-width: 1023px) {
  .footer .footer-logo img {
    height: 44px;
  }
}
@media (min-width: 1440px) {
  .footer .footer-logo img {
    height: 48px;
  }
}
@media (min-width: 1680px) {
  .footer .footer-logo img {
    height: 52px;
  }
}
@media (max-width: 440px) {
  .footer .footer-logo img {
    height: 34px;
  }
}
.footer .footer-tagline-wrap {
  position: relative;
}
@media (min-width: 1023px) {
  .footer .footer-tagline-wrap {
    grid-area: tagline;
  }
}
@media (max-width: 1023px) {
  .footer .footer-tagline-wrap {
    order: 2;
  }
}
.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: 30rem;
  }
}
@media (min-width: 1440px) {
  .footer .footer-tagline {
    font-size: 2.25rem;
  }
}
@media (min-width: 1680px) {
  .footer .footer-tagline {
    font-size: 2.5rem;
  }
}
@media (max-width: 440px) {
  .footer .footer-tagline {
    font-size: 1.5rem;
  }
}
@media (max-width: 375px) {
  .footer .footer-tagline {
    font-size: 1.375rem;
  }
}
.footer .footer-links-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}
@media (min-width: 1680px) {
  .footer .footer-links-col {
    gap: 48px;
  }
}
@media (max-width: 1023px) {
  .footer .footer-links-col {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
  }
}
@media (max-width: 440px) {
  .footer .footer-links-col {
    gap: 20px;
    flex-direction: column;
  }
}
.footer .footer-socials {
  display: flex;
  gap: 32px;
}
@media (min-width: 1023px) {
  .footer .footer-socials {
    grid-area: socials;
    justify-self: end;
    align-self: center;
  }
}
@media (min-width: 1680px) {
  .footer .footer-socials {
    gap: 36px;
  }
}
@media (max-width: 1023px) {
  .footer .footer-socials {
    gap: 24px;
    opacity: 0.9;
    order: 3;
  }
}
@media (max-width: 440px) {
  .footer .footer-socials {
    gap: 20px;
  }
}
.footer .social-link {
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.footer .social-link:hover {
  opacity: 0.7;
}
.footer .social-link img {
  width: 24px;
  height: 24px;
}
@media (min-width: 1680px) {
  .footer .social-link img {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 440px) {
  .footer .social-link img {
    width: 22px;
    height: 22px;
  }
}
.footer .footer-nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 24px 60px;
  text-align: left;
}
@media (min-width: 1023px) {
  .footer .footer-nav {
    grid-area: nav;
    justify-self: end;
    align-self: end;
  }
}
@media (min-width: 1680px) {
  .footer .footer-nav {
    gap: 28px 80px;
  }
}
@media (max-width: 1023px) {
  .footer .footer-nav {
    width: auto;
    grid-template-columns: 1fr 1fr;
    gap: 16px 40px;
    text-align: left;
    order: 4;
  }
}
@media (max-width: 767px) {
  .footer .footer-nav {
    gap: 14px 30px;
  }
}
@media (max-width: 440px) {
  .footer .footer-nav {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }
}
.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 (min-width: 1680px) {
  .footer .footer-nav a {
    font-size: 0.875rem;
  }
}
@media (max-width: 1023px) {
  .footer .footer-nav a {
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0.7;
  }
}
@media (max-width: 440px) {
  .footer .footer-nav a {
    font-size: 0.6875rem;
  }
}
.footer .footer-animation {
  display: none;
}
@media (max-width: 767px) {
  .footer .footer-animation {
    display: block !important;
    position: absolute;
    top: -60px;
    right: -20px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
  }
}
.footer .animated-spree-icon {
  width: 100%;
  height: auto;
  max-width: 360px;
  display: block;
  margin: 0 auto;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .footer .animated-spree-icon {
    max-width: 280px;
  }
}
@media (max-width: 767px) {
  .footer .animated-spree-icon {
    max-width: 200px;
  }
}
@media (max-width: 440px) {
  .footer .animated-spree-icon {
    max-width: 160px;
  }
}

/* ============================================
   COPYRIGHT SECTION
   ============================================ */
.copyright {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #0C0C1F;
}
.copyright .copyright-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  opacity: 0.8;
}
.copyright .copyright-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 60px 0;
}
.copyright .copyright-content .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .copyright .copyright-content .header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.copyright .copyright-content .header .nav {
  display: flex;
  gap: 12px;
}
.copyright .copyright-content .header .nav .nav-link {
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5625rem;
  font-family: "Poppins-Medium", "Poppins", sans-serif;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.0313rem;
  transition: all 0.3s ease;
}
.copyright .copyright-content .header .nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
.copyright .copyright-content .hero-content {
  display: flex;
  align-items: center;
  flex: 1;
}
.copyright .copyright-content .hero-content .hero-text {
  max-width: 750px;
  text-align: left;
}
.copyright .copyright-content .hero-content .hero-title {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: #FFFFFF;
}
.copyright .copyright-content .hero-content .hero-title .hero-line {
  display: flex;
  align-items: center;
  gap: 12px;
}
.copyright .copyright-content .hero-content .hero-title .brush-font {
  font-family: "Brushlie-demo", cursive;
  color: #F966AC;
  font-size: clamp(60px, 8vw, 140px);
  line-height: 0.8;
}
.copyright .copyright-content .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #BFC0C6;
  margin-bottom: 1.5rem;
  max-width: 38.75rem;
}
.copyright .copyright-content .hero-content .hero-availability {
  font-family: "Poppins-Semibold", "Poppins", sans-serif;
  font-size: 1.125rem;
  color: #F0E4E4;
  margin-bottom: 2.5rem;
}
.copyright .copyright-content .hero-content .hero-buttons {
  display: flex;
  gap: 16px;
}
@media (max-width: 375px) {
  .copyright .copyright-content .hero-content .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
}
.copyright .copyright-content .hero-content .hero-buttons .btn {
  min-width: 200px;
}/*# sourceMappingURL=style.css.map */