/* Reset */
    * { margin: 0; padding: 0; box-sizing: border-box; }

    html, body {
      font-family: Arial, sans-serif;
      background: rgba(0,0,0,1);
      /*background-image: radial-gradient(circle at 20% 30%, #FF0048 0%, transparent 80%),
      /*radial-gradient(circle at 70% 70%, #8000FF 0%, transparent 80%);
      /*background-blend-mode: overlay;*/
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    #blur-wrapper {
      backdrop-filter: blur(60px);
      -webkit-backdrop-filter: blur(60px);
    }

    .cards-container {
      display: flex;
      justify-content: center;
      gap: 2rem;
      padding: 2rem;
      margin-bottom: 6rem;
    }

    .card {
      width: 370px;
      height: 380px;

      clip-path: polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
      );

      background-size: cover;
      background-position: center;

      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;

      opacity: 0.4;
      transition: 0.3s ease;

      z-index: 2;
    }

    .card-wrapper {
      position: relative;
      width: 360px;
      height: 380px;
    }

    .card-wrapper::before {
      content: "";
      position: absolute;
      inset: -4px;

      clip-path: polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
      );

      background: transparent;
      box-shadow: 0 0 0 2px #555;

      z-index: 1;
    }

    .card-wrapper.active::before {
      box-shadow: 0 0 0 5px red, 0 0 18px rgba(255,0,102,0.6);
    }

    .card-wrapper.active .card,
    .card-wrapper:hover .card {
      opacity: 1;
    }

    .card::before {
      content: "";
      position: absolute;
      inset: 0;

      background: rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(0);

      opacity: 0;
      transition: 0.3s ease;

      z-index: 1;
    }

    .card-wrapper.active .card::before,
    .card-wrapper:hover .card::before {
      opacity: 1;
      transform: scale(1.1);
      backdrop-filter: blur(6px);
    }

    .card-content {
      position: relative;
      z-index: 3;

      opacity: 0;
      transition: 0.3s ease;
    }

    .card-content img{
            position: relative;
            width: 190px;
            height: auto;
          }

    .card-wrapper.active .card-content,
    .card-wrapper:hover .card-content {
      opacity: 1;
      transform: scale(1.1);
    }

    .top-gradient-overlay {
      position: fixed;
      top: 82px;
      left: 0;
      width: 100%;
      height: 120px; /* adjust as needed */
      pointer-events: none;
      z-index: 90;

      /* Always fully black at the top, fading to transparent */
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1), /* solid black at top */
        rgba(0, 0, 0, 0)  /* fully transparent at bottom */
      );

      opacity: 0; /* start invisible */
      transition: opacity 0.25s ease-out; /* smooth fade in */
    }

    /* Container for video */
    .video-bg {
      position: relative;
      inset: 0; /* shorthand for top/right/bottom/left: 0 */
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
      box-shadow: 0 25px 60px rgba(0,0,0,0.5); /* <-- add shadow */
    }

    .video-bg video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Header */
    header {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 2.5rem 1rem 1rem 1rem;
      position: fixed;   /* make header fixed */
      top: 0;            /* stick to top */
      left: 0;           /* align left edge */
      z-index: 101;      /* stay above everything */
      pointer-events: none; /* allow clicks to pass through except children */
      /* Gradient background */
      background: rgba(0,0,0,0);
      /*backdrop-filter: blur(10px); /* glass effect */
    }

    /*
    body {
      padding-top: 90px; /* roughly the height of your header */
    /*}
    

    /* Menu icon */
    .menu-icon {
      -webkit-tap-highlight-color: transparent; /* Remove mobile tap highlight */
      outline: none;                             /* Remove focus outline */
      background: none;                          /* Remove default button background */
      border: none;                              /* Remove button border */
      position: absolute;
      left: 2rem;
      font-size: 1.8rem;
      cursor: pointer;
      color: white;
      pointer-events: auto; /* make clickable */
    }

    /* Logo */
    .logo {
      width: 180px;
      pointer-events: auto;

      opacity: 0;                 /* start hidden */
      transform: translateY(-10px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    header.scrolled .logo {
      opacity: 1;
      transform: translateY(0);
    }

    /* Center content container (if you add content later)
    .center-content {
      min-height: calc(100vh - 80px);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      padding: 1rem;
    }
    */
    
    /* Down arrow (mobile-first) */
    .down-arrow {
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      bottom: 50px;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.15);
      border-radius: 50%;
      backdrop-filter: blur(4px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.35);
      cursor: pointer;
      z-index: 60;

      opacity: 0;                /* 👈 hidden by default */
      pointer-events: none;      /* 👈 not clickable when hidden */
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .down-arrow:active { transform: translateX(-50%) scale(0.96); }

    /* subtle bounce animation to draw attention */
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
      40% { transform: translateX(-50%) translateY(-8px); }
      60% { transform: translateX(-50%) translateY(-4px); }
    }

    .down-arrow.bounce { animation: bounce 2.4s infinite; }

    /* Arrow SVG styling */
    .down-arrow svg {
      width: 22px;
      height: 22px;
      display: block;
      pointer-events: none;
      transform: rotate(180deg);
    }

    /* Ensure there's something to scroll to for the demo */
    

    /* Portrait video box */
    .video-container {
      width: 90%;
      max-width: 1000px;
      height: 600px;
      margin: 1.5rem auto;
      overflow: hidden;
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      background: rgba(255, 255, 255, 0.05); /* semi-transparent */
      box-shadow: 0 8px 25px rgba(0,0,0,0.6);
      border: 1.5px solid rgba(255, 255, 255, 0.05); /* subtle glass border */
      backdrop-filter: blur(6px); /* glass effect */
    }

    .video-container video {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 105%;       /* slightly bigger than container, adjust as needed */
      height: 100%;      /* keep aspect ratio covered */
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%); /* perfectly center */
      object-fit: cover;
    }

    .description {
      max-width: 60%;
      margin: 5rem auto 0 auto;
      text-align: center;
      color: white;
      font-size: 1.6rem;
      line-height: 1.5;
      opacity: 0.95;
      font-family: 'FoundryGridnik Regular', sans-serif;
    }

    .description2 {
      max-width: 75%;
      margin: 1.5rem auto 0 auto;
      text-align: center;
      color: white;
      font-size: 1.2rem;
      line-height: 1.45;
      opacity: 0.95;
    }

    .description2 p{
      margin: 1rem auto 0 auto;
      width: 90%;
      text-align: center;
      color: white;
      font-size: 1.2rem;
      line-height: 1.45;
    }

    .register-row {
      position: relative;
      display: flex;
      justify-content: center;   /* center horizontally */
      align-items: center;
      gap: 1.5rem;               /* space between buttons */
      margin-top: 3rem;
      flex-wrap: wrap;           /* allows wrapping on smaller screens */
    }

    .register-btn {
      margin: 0;
      padding: 0.75rem 1.5rem;
      border: 2px solid white;
      background: white;
      color: black;
      text-align: center;
      width: fit-content;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: bold;
      letter-spacing: 1px;
      cursor: pointer;
      z-index: 99;
    }
    
    .platforms {
      margin-top: 5rem;
      z-index: 99;
      width: 300px;          /* prevents it getting too large */
      height: auto;
      display: block;
      margin-left: 38%;
    }

    .platforms2 {
      position: absolute;
      left: 42%;
      right: 0;
      bottom: -10%;
      margin-top: 2rem;
      width: 200px;
      height: auto;
      z-index: 99;
    }

    .register-btn3 {
      margin: 0;
      padding: 0.75rem 1.5rem;
      border: 2px solid white;
      background: none;
      color: white;
      text-align: center;
      width: fit-content;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: bold;
      letter-spacing: 1px;
      cursor: pointer;
      z-index: 99;
    }

    .community-btn {
      margin: 2rem auto 1rem auto;
      padding: 0.75rem 1.5rem;
      border: 2px solid white;
      background: white;
      color: black;
      text-align: center;
      width: fit-content;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: bold;
      letter-spacing: 1px;
      cursor: pointer;
    }

    /* Language selector with only EN and arrow */
    .profile {
      position: absolute;
      top: 2.25rem;
      right: 2rem;
      width: 30px;
      cursor: pointer;
    }

    .lang-selector:hover { background: rgba(255,255,255,0.1); }

    .red_text {
      color: #FF0066;
    }


    .social-buttons a {
      display: inline-block;
      width: 40px;
      height: 40px;
      cursor: pointer;
      transition: transform 0.2s;
      margin: 1rem;
      z-index: 55;
    }

    .social-buttons a:hover {
      transform: scale(1.1);
    }

   

    .bubble-container {
      width: 100%;
      height: 360px;
      max-width: 1000px;
      margin: 1.5rem auto 1rem;
      margin-bottom: 3rem;
      border-radius: 25px;
      position: relative;
      overflow: hidden;
      padding: 1rem;
      background: transparent;
      z-index: 2;
    }

    .bubble-area {
      width: 100%;
      height: 80%;
      position: relative;
      z-index: 2;
    }

    /* Bubbles default hidden */
    .bubble {
      opacity: 0;
      transform: scale(0.4);
      border-radius: 50%;
      position: absolute;
      transition: opacity 0.35s ease, transform 0.35s ease;
      object-fit: cover;
      object-position: center;
      z-index: 3;
    }

    /* Random floating movement */
    @keyframes float {
      0%   { transform: translate(0, 0) scale(var(--scale)); }
      25%  { transform: translate(6px, -8px) scale(var(--scale)); }
      50%  { transform: translate(-5px, 4px) scale(var(--scale)); }
      75%  { transform: translate(7px, 6px) scale(var(--scale)); }
      100% { transform: translate(0, 0) scale(var(--scale)); }
    }

    .bubble-emoji {
      position: absolute;
      font-size: 20px;
      pointer-events: none;
      opacity: 0;
      animation: emoji-pop 1.8s ease-out forwards;
      z-index: 4;
    }

    @keyframes emoji-pop {
      0% {
        transform: translate(0, 0) scale(0.6);
        opacity: 0;
      }
      20% {
        opacity: 1;
        transform: translate(-4px, -12px) scale(1);
      }
      80% {
        opacity: 1;
        transform: translate(-6px, -22px) scale(1.1);
      }
      100% {
        opacity: 0;
        transform: translate(-6px, -40px) scale(1.15);
      }
    }

    /* When activated */
    .bubble.show {
      opacity: 1;
      transform: scale(var(--scale));
      transition: opacity 0.4s ease, transform 0.4s ease;
      z-index: 3;
    }

    .bubble-title {
      text-align: center;
      font-size: 1.8rem;
      font-weight: 700;
      color: white;
      margin-bottom: 0.5rem; /* space above container */
      margin-top: 5rem;
      letter-spacing: -0.5px;
    }

    .bubble-title span {
    color: #FF0048;
    }


    /* Dropdown overlay */
    .dropdown-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh; /* full screen */
      display: none;  /* hidden by default */
      z-index: 100;    /* behind header */
      pointer-events: none; /* avoid interfering with clicks on header */

      /* Blurred background */
      background: rgba(0,0,0,0.50);
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
    }

    /* Menu buttons container inside dropdown */
    .dropdown-menu .menu-items {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: absolute;
      top: 100px; /* adjust depending on header/logo height */
      width: 100%;
      pointer-events: auto; /* allow clicks */
    }

    .menu-item {
      background: none;
      border: none;
      color: white;
      font-family: 'Roboto Flex Variable', sans-serif;
      font-size: 3rem;
      font-variation-settings:
        "wght" 766,
        "wdth" 130,
        "YTUC" 582,
        "opsz" 80;      
      margin: 0.1rem 0;
      cursor: pointer;
      width: 90%;
      text-align: center;
      transition: background 0.2s;
      padding: 0.1rem 0;
      border-radius: 8px;
      text-decoration: none;
    }

    .menu-item2 {
      background: white;
      border: none;
      color: black;
      font-size: 1.2rem;
      margin: 0.8rem 0;
      cursor: pointer;
      width: 90%;
      text-align: center;
      transition: background 0.2s;
      padding: 1.2rem 0;
      border-radius: 50px;
    }

    .menu-item3 {
      background: #FF0048;
      border: none;
      color: white;
      font-size: 1.2rem;
      margin: 0.8rem 0;
      cursor: pointer;
      width: 90%;
      text-align: center;
      transition: background 0.2s;
      padding: 1.2rem 0;
      border-radius: 50px;
      margin-top: 0.5rem;
    }

    .menu-item:hover {
      color: #FF0048;
      font-weight: bold;
    }

    @font-face {
      font-family: 'AmaticSC Bold';
      src: url('./fonts/AmaticSC-Bold.ttf') format('truetype-variations');
    }

    .join-text {
      font-family: 'AmaticSC Bold', sans-serif;
      font-size: 3rem;
      color: white;
      text-align: center;
      font-weight:lighter;
      margin-top: 4rem;
    }

    .join-text2 {
      font-size: 2rem;
      color: white;
      text-align: center;
      font-weight: bold;
      margin-top: 4rem;
    }

    .join-text3 {
      font-size: 2rem;
      color: white;
      text-align: center;
      font-weight: bold;
      margin-top: 3rem;
    }

    .join-text4 {
      font-size: 2rem;
      color: white;
      text-align: center;
      font-weight: bold;
      margin-top: 6rem;
    }

    @font-face {
      font-family: 'Roboto Flex Variable';
      src: url('./fonts/RobotoFlexVariable.ttf') format('truetype-variations');
      font-weight: 100 1000;
      font-stretch: 75% 150%;
      font-style: normal;
      font-display: swap;
    }

     @font-face {
      font-family: 'FoundryGridnik Regular';
      src: url('./fonts/FoundryGridnik Regular.otf') format('opentype-variations');
      font-weight: 100 1000;
      font-style: normal;
      font-display: swap;
    }

    .join-text5 {
      font-family: 'Roboto Flex Variable', sans-serif;
      font-size: 2.5rem;
      font-variation-settings:
        "wght" 766,
        "wdth" 130,
        "YTUC" 582,
        "opsz" 80;
      color: white;
      text-align: center;
      line-height: normal;
      letter-spacing: 1.6px;
    }

    .join-text6 {
      font-family: 'Roboto Flex Variable', sans-serif;
      font-size: 2.5rem;
      font-variation-settings:
        "wght" 766,
        "wdth" 130,
        "YTUC" 582,
        "opsz" 80;
      color: white;
      text-align: center;
      line-height: normal;
      letter-spacing: 1.6px;
    }

    .challenges {
      position: relative;
      width: 100%;          /* FIX */
      max-width: 900px;     /* optional */
      height: auto;
      overscroll-behavior: contain;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;    /* horizontal center */
    }

    .challenges h2{
      font-family: 'Roboto Flex Variable', sans-serif;
      font-size: 2.5rem;
      font-variation-settings:
        "wght" 766,
        "wdth" 130,
        "YTUC" 582,
        "opsz" 80;
      color: white;
      text-align: center;
      line-height: normal;
      letter-spacing: 1.6px;
      text-align: center;
      margin-left: 50%;
    }

    .challenges2 h2{
      font-family: 'Roboto Flex Variable', sans-serif;
      font-size: 2.5rem;
      font-variation-settings:
        "wght" 766,
        "wdth" 130,
        "YTUC" 582,
        "opsz" 80;
      color: white;
      text-align: center;
      line-height: normal;
      letter-spacing: 1.6px;
      text-align: center;
      margin-left: 72%;
    }

    .count {
      color: #FF0048; /* red for 100+ */
    }

    .footer-photo-section {
      position: relative;
      width: 100%;
      overflow: hidden; /* allow singer to pop out */
      height: 110vh;      /* adjust height as needed */
    }

    .main-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      bottom: 0;
      /* Optional top fade */
      mask-image: linear-gradient(to top, black 0%, transparent 100%);
      -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
      filter: blur(8px); /* 👈 adjust this value */

    }

    .creators-section {
      margin-top: 8rem;
      position: relative;
      width: 100%;
      height: fit-content;              /* adjust if needed */
      display: flex;              /* center child */
      justify-content: center;    /* horizontal center */
      align-items: center;        /* vertical center */
      margin-bottom: 2rem;
    }

    .creators-photo {
      width: 70%;
      max-width: 900px;           /* prevents it getting too large */
      height: auto;
      display: block;
    }

    .pricing-section {
      position: relative;
      width: 100%;
      height: 90vh;              /* adjust if needed */
      display: flex;              /* center child */
      justify-content: center;    /* horizontal center */
      align-items: center;        /* vertical center */
      margin-bottom: 0.5rem;
    }

    .locations-section {
      position: relative;
      width: 100%;
      height: 190vh;              /* adjust if needed */
      display: flex;              /* center child */
      flex-direction: row;
      justify-content: center;    /* horizontal center */
      align-items: center;        /* vertical center */
      margin-bottom: 0.5rem;
    }

    .locations-photo {
      width: 100%;
      max-width: 900px;           /* prevents it getting too large */
      height: auto;
      display: block;
    }

    .pricing-photo {
      width: 100%;
      max-width: 1100px;           /* prevents it getting too large */
      height: auto;
      display: block;
    }

    .register-btn2 {
      position: absolute;      /* position relative to roadmap-section */
      bottom: -24%;                /* vertical center */
      left: 50%;               /* horizontal center */
      transform: translate(-50%, -50%); /* center exactly */
      border: none;
      cursor: pointer;
      z-index: 10;             /* on top of the image */
      width: 640px;
      margin-bottom: 7rem;
    }

    .roadmap-section {
      margin-top: 1px;
      position: relative;
      width: 100%;
      display: flex;              /* center child */
      justify-content: center;    /* horizontal center */
      align-items: center;        /* vertical center */
      margin-bottom: 5rem;
    }

    .roadmap-photo {
      width: 100%;
      max-width: 1200px;           /* prevents it getting too large */
      height: auto;
      display: block;
    }

    .usercount-photo {
      width: 300px;          /* prevents it getting too large */
      height: auto;
      display: block;
      margin-left: 570px;
    }

    .quote {
      width: 360px;          /* prevents it getting too large */
      height: auto;
      display: block;
      margin-left: 10px;
    }

    .quote2 {
    width: 70%;
    height: auto;
    display: block;
}

    .quote3 {
      width: 70%;          /* prevents it getting too large */
      height: auto;
      display: block;
      margin-left: 16%;
      margin-top: 20px;
    }

    .overlay-content {
      position: relative;
      text-align: center;
      margin-top: 2rem;
      margin-bottom: 10rem;
      z-index: 1;
    }

    /* Put watermark behind text */
    .page-watermark {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 50vw;
      max-width: 400px;
      opacity: 0.08;       /* subtle */
      z-index: 0;          /* behind text */
      pointer-events: none;
    }

    .overlay-content p{
      margin: 1rem auto 0 auto;
      width: 90%;
      text-align: center;
      color: white;
      font-size: 1.3rem;
      line-height: 1.45;
    }

    .comingsoon-title {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 2rem;
      color: white;
      font-weight: bold;
      margin: 0;
      white-space: nowrap;
      text-align: center;
    }

    .singer-overlay {
      position: absolute;
      bottom: -16%;
      left: 27%;
      width: 600px;
      z-index: 40; /* in front of photo, behind overlay-content */
      pointer-events: none;
      transition: transform 0.05s linear;
    }

    .menu-divider {
      width: 90%;
      height: 1px;
      background: rgba(255,255,255,0.2);
      border: none;
      margin: 8px 0;
      margin-top: 30px;
    }

   

    .bookings-header {
      position: relative;
      top: -50%;   /* adjust under header */
      left: 27%;
      width: 100px;
      height: 45px;
      z-index: 19;
    }

    .groups-header {
      position: relative;
      top: -50%;   /* adjust under header */
      left: 22%;
      width: 170px;
      height: 55px;
      z-index: 19;
    }

    .launch-header {
      position: relative;
      top: -50%;   /* adjust under header */
      left: 28%;
      width: 120px;
      height: 55px;
      z-index: 19;
    }

  

    .city-container {
      display: flex;
      align-items: center;
      gap: 1rem;
      width: 90%;
      max-width: 1000px;
      margin: 1.5rem auto;
      padding: 1rem 1.2rem;
      border-radius: 14px;
      background: none;
      border: 2px solid rgba(255,255,255,0.1);
      backdrop-filter: blur(12px);
    }

    .city-icon {
        width: 55px;          /* adjust size */
        height: 55px;
        object-fit: contain;
    }

    .city-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .city-title {
        font-size: 1.2rem;
        color: white;
        margin: 0;
        font-weight: 600;
    }

    .city-subtext {
        margin: 0.3rem 0 0 0;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.75);
    }

    .city-subtext-wrapper {
      display: flex;
      align-items: center;
      gap: 0.5rem; /* space between text and badge */
    }

    .countdown-badge {
      background-color: #FF0048; /* red */
      color: white;
      font-size: 0.65rem;
      font-weight: 600;
      padding: 0.2rem 0.4rem;
      border-radius: 4px;
      white-space: nowrap;
      margin-top: 4px;
    }


    .floating-img-btn {
      position: fixed;
      bottom: 20px;         /* distance from bottom */
      right: 20px;          /* distance from right */
      width: 60px;          /* adjust size */
      height: auto;         /* keep image proportions */
      cursor: pointer;
      z-index: 999;         /* stays above all content */
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    /* Larger screens adjustments */
    @media (min-width: 768px) {
      .logo { width: 200px; }
      .menu-icon { font-size: 2.5rem; }
      .down-arrow { width: 56px; height: 56px; bottom: 32px; }
      .down-arrow svg { width: 26px; height: 26px; }
      .lang-selector { font-size: 0.9rem; padding: 0.4rem 0.6rem; }
    }

    .top-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 780px;
      background: url("images/top-background.png") top center / cover no-repeat;
      z-index: 0;
    }

    .perks {
      width: 900px;
      max-width: 900px;
      display: block;
      margin: 0 auto;
      margin-bottom: 5rem;
      pointer-events: none;
    }

    .footer-links {
      display: flex;
      justify-content: center;    /* center horizontally */
      gap: 1.5rem;                /* space between links */
      margin-bottom: 3rem;        /* spacing from bottom */
      flex-wrap: wrap;             /* wrap on small screens */
      font-size: 0.9rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: underline;
      cursor: pointer;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: white; /* highlight on hover */
    }

    .footer-logos {
      position: absolute;
      top: 80%;        /* center vertically over photo */
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      justify-content: center; /* center horizontally */
      align-items: center;
      gap: 2rem;               /* space between logos */
      padding: 2rem 1rem;      /* vertical padding */
      flex-wrap: wrap;          /* wrap on smaller screens */
      z-index: 89;
    }

    .footer-logo {
      width: 100px;              /* adjust size */
      height: auto;
      object-fit: contain;
      filter: brightness(1.2);   /* optional: make them pop on dark background */
      transition: transform 0.25s;
    }

    .spinning-ball {
      position: absolute;
      top: 110px;   /* adjust under header */
      right: 80px;
      width: 100px;
      height: 100px;
      z-index: 19;
    }

    .spinning-ball img {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }

    /* Frame 1 animation */
    .spinning-ball img:nth-child(1) {
      animation: frame1 0.8s infinite;
    }

    /* Frame 2 animation */
    .spinning-ball img:nth-child(2) {
      animation: frame2 0.8s infinite;
    }

    @keyframes frame1 {
      0%, 49%   { opacity: 0.4; }
      50%, 100% { opacity: 0; }
    }

    @keyframes frame2 {
      0%, 49%   { opacity: 0; }
      50%, 100% { opacity: 0.4; }
    }

    .music_note {
      position: absolute;
      top: 265px;   /* adjust under header */
      left: 60px;
      width: 60px;
      height: 60px;
      z-index: 19;
    }

    .music_note img {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }

    /* Frame 1 animation */
    .music_note img:nth-child(1) {
      animation: frame3 0.9s infinite;
    }

    /* Frame 2 animation */
    .music_note img:nth-child(2) {
      animation: frame4 0.9s infinite;
    }

    @keyframes frame3 {
      0%, 49%   { opacity: 0.6; }
      50%, 100% { opacity: 0; }
    }

    @keyframes frame4 {
      0%, 49%   { opacity: 0; }
      50%, 100% { opacity: 0.6; }
    }

    .uni_logo {
      position: absolute;
      top: 465px;   /* adjust under header */
      left: 40px;
      width: 210px;
      height: 140px;
      z-index: 19;
      transform: rotate(7deg);
    }

    .uni_logo img {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }

    /* Frame 1 animation */
    .uni_logo img:nth-child(1) {
      animation: frame5 1s infinite;
    }

    /* Frame 2 animation */
    .uni_logo img:nth-child(2) {
      animation: frame6 1s infinite;
    }

    @keyframes frame5 {
      0%, 49%   { opacity: 0.4; }
      50%, 100% { opacity: 0; }
    }

    @keyframes frame6 {
      0%, 49%   { opacity: 0; }
      50%, 100% { opacity: 0.4; }
    }

    .rewards {
      position: relative;
      width: 100%;          /* FIX */
      max-width: 900px;     /* optional */
      height: 680px;
      margin-top: 180px; /* center it */
      overscroll-behavior: contain;
    }

    .rewards p{
        width: 100%;
        font-size: 0.75rem;
        color: white;
        text-align: center
    }

    .challenges p{
        width: 100%;
        font-size: 1.2rem;
        color: white;
        text-align: center;
        margin-left: 25%;
        margin-top: 10px;
    }

    .rewards2 {
      position: relative;
      width: 100%;          /* FIX */
      max-width: 900px;     /* optional */
      height: auto;
      margin-top: 180px; /* center it */
      overscroll-behavior: contain;
    }

    /* Add spacing below header */
      .rewards h2 {
        margin-bottom: 10px;
      }

      /* Image container */
      .rewards-images {
        position: relative;
        width: 100%;
        height: 80px; /* your animation area */
      }

      /* Images now stay inside this box */
      .rewards-images img {
        position: absolute;
        top: 0;
        left: 35%;
        width: 100%;
        height: auto;
      }

      /* Animations */
      .rewards-images img:nth-child(1) {
        animation: frame7 1s infinite;
      }

      .rewards-images img:nth-child(2) {
        animation: frame8 1s infinite;
      }

      @keyframes frame7 {
        0%, 49%   { opacity: 1; }
        50%, 100% { opacity: 0; }
      }

      @keyframes frame8 {
        0%, 49%   { opacity: 0; }
        50%, 100% { opacity: 1; }
      }

    .moon {
      position: absolute;
      top: 120px;   /* adjust under header */
      left: 120px;
      width: 45px;
      height: 45px;
      z-index: 19;
      animation: float 4s ease-in-out infinite;
    }

    .moon img {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }

    @keyframes float {
      0%   { transform: translateY(0); }
      50%  { transform: translateY(-12px); }
      100% { transform: translateY(0); }
    }

    .circle-row {
      display: flex;
      justify-content: center; /* keeps row centered */
      gap: 2rem;              /* you can tweak */
      margin: 2rem 0 0 0;      /* remove any right-margin */
      width: 100%;             /* ensures full-width for centering */
    }

    .circle-wrapper {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      min-height: 260px;
      
      /* NEW: make wrapper same width as bg image */
      width: 340px; /* match .circle-bg-image width */
    }

    .circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: white;
      color: black;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5rem;
      font-weight: bold;
      transition: background 0.3s ease, color 0.3s ease;
      z-index: 1;
    }

    .circle-text {
      margin-top: 3rem;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
      color: white;
      font-size: 1rem;
      text-align: center;
    }

    .circle-arrow {
      position: relative;
      width: 20px;
      height: 12px;
      margin-top: 20px;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    /* Both lines */
    .circle-arrow::before,
    .circle-arrow::after {
      content: '';
      position: absolute;
      width: 12px;
      height: 2px;
      background: white;
      top: 0;
    }

    /* Left line */
    .circle-arrow::before {
      left: 0;
      transform: rotate(35deg);   /* wider angle */
      transform-origin: left center;
    }

    /* Right line */
    .circle-arrow::after {
      right: 0;
      transform: rotate(-35deg);  /* wider angle */
      transform-origin: right center;
    }

    .circle-text p{
      margin-top: 0.7rem;
      z-index: 1;
    }

    /* Hover effect */
    .circle-wrapper:hover .circle {
      background: #FF0048;
      color: white;
    }

    .circle-wrapper:hover .circle-text {
      opacity: 1;
      transform: translateY(0);
    }

    /* Default active circle */
    .circle-wrapper.active .circle {
      background: #FF0048;
      color: white;
    }

    .circle-wrapper.active .circle-text,
    .circle-wrapper.active .circle-arrow {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto; /* only active arrow clickable */
    }

    /* Background image container */
    .circle-bg-image {
      position: absolute;
      top: 40px;
      left: 0;       /* relative to wrapper now */
      width: 100%;   /* fill wrapper */
      height: 240px;
      overflow: hidden;
      z-index: 0;
      border-radius: 30px;
    }

    /* Actual image */
    .circle-bg-image img {
      width: 100%;
      display: block;
    }

    /* Black gradient fade */
    .circle-bg-image::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 70%;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,1) 100%
      );
    }

    /* Show only for active */
    .circle-wrapper.active .circle-bg-image {
      box-shadow: 0 -20px 25px #FF0048;
    }

    /* Show only for active */
    .circle-wrapper.active .circle-bg-image img{
      opacity: 0.3;
      filter: blur(4px);
    }

    .gallery-section {
      padding: 0;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;                  /* cleaner spacing */
      max-width: 1000px;           /* ⬅️ controls image size */
      margin-top: 1rem;
      margin-bottom: 1rem;
      margin-right: auto;
      margin-left: auto;
      padding: 1.5rem 1rem 2rem;
    }

    .reveal-item {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease;
      height: auto;
      width: 100%;
    }

    /* When visible */
    .reveal-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-item:nth-child(1) { transition-delay: 0.2s; }
    .reveal-item:nth-child(2) { transition-delay: 0.3s; }
    .reveal-item:nth-child(3) { transition-delay: 0.4s; }
    .reveal-item:nth-child(4) { transition-delay: 0.5s; }
    .reveal-item:nth-child(5) { transition-delay: 0.6s; }
    .reveal-item:nth-child(6) { transition-delay: 0.7s; }
    .reveal-item:nth-child(7) { transition-delay: 0.8s; }
    .reveal-item:nth-child(8) { transition-delay: 0.9s; }

    .newsletter-input {
      margin: 20px auto 0 auto;
      width: 300px;              /* adjust width */
      left: 50%;
    }

    .email-input {
      margin: 20px auto 0 auto;
      width: 300px;              /* adjust width */
      position: absolute;
      top: 48%;                  /* middle vertically */
      left: 11%;                 /* middle horizontally */
      transform: translate(-50%, -50%); /* center exactly */
      padding: 1rem 2rem;
      border-radius: 15px;
      text-align: center;
      z-index: 10;               /* ensure it’s above image */
    }

    .email-input input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.3); /* gray line */
      padding: 8px 0;
      font-size: 20px;
      color: white;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .number-input {
      margin: 20px auto 0 auto;
      width: 300px;              /* adjust width */
      position: absolute;
      top: 48%;                  /* middle vertically */
      left: 30%;                 /* middle horizontally */
      transform: translate(-50%, -50%); /* center exactly */
      padding: 1rem 2rem;
      border-radius: 15px;
      text-align: center;
      z-index: 10;               /* ensure it’s above image */
    }

    .number-input input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.3); /* gray line */
      padding: 8px 0;
      font-size: 20px;
      color: white;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .age-input {
      margin: 20px auto 0 auto;
      width: 300px;              /* adjust width */
      position: absolute;
      top: 57%;                  /* middle vertically */
      left: 30%;                 /* middle horizontally */
      transform: translate(-50%, -50%); /* center exactly */
      padding: 1rem 2rem;
      border-radius: 15px;
      text-align: center;
      z-index: 10;               /* ensure it’s above image */
    }

    .age-input input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.3); /* gray line */
      padding: 8px 0;
      font-size: 20px;
      color: white;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .name-input {
      margin: 20px auto 0 auto;
      width: 300px;              /* adjust width */
      position: absolute;
      top: 57%;                  /* middle vertically */
      left: 11%;                 /* middle horizontally */
      transform: translate(-50%, -50%); /* center exactly */
      padding: 1rem 2rem;
      border-radius: 15px;
      text-align: center;
      z-index: 10;               /* ensure it’s above image */
    }
  

    .name-input input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.3); /* gray line */
      padding: 8px 0;
      font-size: 20px;
      color: white;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .carousel {
        width: 70%;
        padding: 0 1rem;
        margin-top: 40px;
        margin-bottom: 10px;
        height: auto;
        margin-left: 14%;
      }

    .party-btn {
      margin: 20px auto 0 auto;
      width: 620px;              /* adjust width */
      position: absolute;
      bottom: 3%;                  /* middle vertically */
      left: 30%;                 /* middle horizontally */
      padding: 1rem 2rem;
      text-align: center;
      z-index: 10;               /* ensure it’s above image */
      cursor: pointer;
    }

    .partyplus-btn {
      position: relative;
      width: 100%;
      opacity: 0;
    }
    

    .newsletter-input input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.3); /* gray line */
      padding: 8px 0;
      font-size: 20px;
      color: white;
      outline: none;
      transition: border-color 0.3s ease;
    }

    /* Placeholder style */
    .newsletter-input input::placeholder {
      color: rgba(255,255,255,0.4);
    }

    /* On focus */
    .newsletter-input input:focus {
      border-bottom: 1px solid rgba(255,255,255,0.7);
    }

    .footer-center-image2 {
      position: absolute;
      top: 40%;
      left: 59%;
      transform: translate(-50%, -50%);

      width: 500px;        /* adjust this */
      max-width: 70%;      /* responsive */
      height: auto;

      z-index: 100;
      pointer-events: none;
    }

    .footer-center-image {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);

      width: 15%;        /* adjust this */
      height: auto;

      z-index: 100;
      pointer-events: none;
    }

    /* HERO SECTION */
    .hero-section {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* LOCATIONS */
    .hero-section2 {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-section::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 45%; /* adjust size of fade */
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.85) 75%,
        rgba(0,0,0,1) 100%
      );
      z-index: 2;
      pointer-events: none;
    }

    /* GIF background */
    .hero-bg {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    /* Heavy blur layer */
    .hero-blur {
      position: absolute;
      width: 100%;
      height: 100%;
      backdrop-filter: blur(100px);
      -webkit-backdrop-filter: blur(100px);
      background: rgba(0,0,0,0.6); /* slight dark tint */
      z-index: 1;
    }

    /* Centered content */
    .hero-content {
      position: relative;
      z-index: 99;
      text-align: center;
    }

    /* Big centered logo */
    .hero-logo {
      margin-top: 11rem;
      width: 700px;
      max-width: 100%;
      height: auto;
      margin-bottom: 2rem;
    }

    /* Slightly larger register button for hero */
    .hero-register {
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
    }

    .final-footer-image {
      width: 100%;
      height: 102vh; /* adjust height */
      position: relative;
      overflow: hidden;

      margin-top: -160px;   /* 🔥 This creates the overlap */
      z-index: 50;           /* make sure it appears above previous section */
      margin-bottom: 4rem;
    }

    .final-footer-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .beta-container {
      position: absolute;
      top: 20%;
      right: 36%;
      width: 440px;
      height: auto;
    }

    .challenges2 {
      position: relative;
      width: 100%;
      max-width: 1000px;
      margin-top: 40px;
      margin-bottom: 20px;
      height: auto;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;    /* horizontal center */
    }

    .challenges-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* space between videos */
}

    .challenges,
.challenges2 {
    width: 100%;
    display: flex;
    justify-content: center;
}

    .challenges2 p{
        width: 100%;
        font-size: 1.2rem;
        color: white;
        text-align: center;
        margin-left: 36%;
        margin-top: 10px;
    }

    .beta {
      position: absolute;
      width: 100%;
      transition: all 0.6s ease;
    }

    /* default state */
    .beta1-img {
      opacity: 0.5;
      transform: scale(1);
      transition: all 0.6s ease;
    }

    .beta2-img {
      opacity: 0;
      transform: scale(0.95);
      transition: all 0.6s ease;
    }

    /* hover effect */
    .beta-container:hover .beta1-img {
      opacity: 0;
      transform: scale(0.95);
    }

    .beta-container:hover .beta2-img {
      opacity: 1;
      transform: scale(1.08);
    }

    .launch-container{
      position:absolute;
      top:49%;
      right:36%;
      width:440px;
      height:auto;
    }

    .launch{
      position:absolute;
      width:100%;
      transition: all 0.6s ease;
    }

    /* default state */
    .launch1-img{
      opacity:0.5;
      transform:scale(1);
    }

    .launch2-img{
      opacity:0;
      transform:scale(0.95);
    }

    /* when activated by scroll */
    .launch-container.active .launch1-img{
      opacity:0;
      transform:scale(0.95);
    }

    .launch-container.active .launch2-img{
      opacity:1;
      transform:scale(1.08);
    }

    /* Launch hover effect */
    .launch-container .launch1-img {
      opacity: 0.5;
      transform: scale(1);
      transition: all 0.6s ease;
    }
    .launch-container .launch2-img {
      opacity: 0;
      transform: scale(0.95);
      transition: all 0.6s ease;
    }

    .launch-container:hover .launch1-img {
      opacity: 0;
      transform: scale(0.95);
    }
    .launch-container:hover .launch2-img {
      opacity: 1;
      transform: scale(1.08);
    }

    .alpha-container{
      position:absolute;
      top:39%;
      right:36%;
      width:440px;
      height:auto;
      transform: rotate(4deg);
    }

    /* when activated by scroll */
    .alpha-container.active .launch1-img{
      opacity:0;
      transform:scale(0.95);
    }

    .alpha-container.active .launch2-img{
      opacity:1;
      transform:scale(1.08);
    }

    /* Launch hover effect */
    .alpha-container .launch1-img {
      opacity: 0.5;
      transform: scale(1);
      transition: all 0.6s ease;
    }
    .alpha-container .launch2-img {
      opacity: 0;
      transform: scale(0.95);
      transition: all 0.6s ease;
    }

    .alpha-container:hover .launch1-img {
      opacity: 0;
      transform: scale(0.95);
    }
    .alpha-container:hover .launch2-img {
      opacity: 1;
      transform: scale(1.08);
    }

    /* Full width image */
    .full-width-img {
      width: 100%;
      display: block; /* 🔥 removes gap */
      margin-top: 30px;
    }

    .countdown-container {
      position: relative;
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
    }

    .countdown-image {
      width: 100%;
      display: block;
    }

    #countdown {
      position: absolute;
      top: 72%;
      left: 47%;
      transform: translate(-50%, -50%);

      color: white;
      font-family: 'FoundryGridnik Regular', sans-serif;
      font-size: 1.75rem;

      text-align: center;
      text-decoration:none;
    }

    /* CONFIRMATION PAGE */

    #confirmation-page{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      height:100vh;
      background:black;
      display:none;
      overflow-y:auto;
      z-index:9999;
    }

    #confirmation-page.active{
      display:block;
    }

    .confirmation-image{
      width:100%;
      height:auto;
      display:block;
    }

    /* anchored button */

    #back-home{
      position:fixed;
      bottom:20px;
      left:50%;
      transform:translateX(-50%);
      padding:0.9rem 2rem;
      border-radius:30px;
      border:2px solid white;
      background:white;
      color:black;
      font-weight:bold;
      cursor:pointer;
      z-index:10000;
    }

    /* Sign-Up Modal (hidden by default, slides up from bottom) */
    .signup-modal {
      position: fixed;
      bottom: -120%;             
      left: 0;
      width: 107%;
      height: 110vh;
      z-index: 998;
      transition: bottom 0.4s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;   /* center items horizontally */
      overflow: hidden;
    }

    /* Show modal */
    .signup-modal.active {
      bottom: 0;                 /* slide into view */
    }

    /* Image fills width */
    .signup-modal img {
      width: 100%;
      height: auto;
    }

    .register-plus-btn {
        position: fixed;
        width: 100%;
        opacity: 1;
        left: 82%;
        transform: translateX(-55%);
        bottom: 5%;
        height: 56px;
        display: flex;
        z-index: 1000;
      }

    /* Back button at bottom of modal */
    #closeSignupModal {
      margin-top: auto;          /* push button to bottom */
      width: 90%;
      padding: 0.8rem 1rem;
      font-size: 1rem;
      border-radius: 25px;
      border: none;
      background: #FF0048;
      color: white;
      cursor: pointer;
      margin-bottom: 1rem;
    }

    /* ============================= */
    /* MOBILE RESPONSIVE STYLES */
    /* ============================= */

    @media (max-width: 768px) {

      /* HERO */
      .hero-logo{
        width: 100%;
        margin-top: 9rem;
        margin-left: 2%;
        margin-right: 0;
      }

      .top-gradient-overlay {
        position: fixed;
        top: 66px;
        left: 0;
        width: 100%;
        height: 120px; /* adjust as needed */
        pointer-events: none;
        z-index: 90;

        /* Always fully black at the top, fading to transparent */
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 1), /* solid black at top */
          rgba(0, 0, 0, 0)  /* fully transparent at bottom */
        );

        opacity: 0; /* start invisible */
        transition: opacity 0.25s ease-out; /* smooth fade in */
      }

      .quote3 {
        width: 100%;          /* prevents it getting too large */
        height: auto;
        display: block;
        margin-left: 0;
        margin-top: 20px;
      }

      .party-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        /* hitbox covers bottom + visual offset + safe area */
        height: calc(250px + env(safe-area-inset-bottom));
        z-index: 1000;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: flex-end; /* bottom align for inner content */
        background-color: rgba(0,0,0,0.01); /* invisible but tappable */
        pointer-events: auto;
      }

      /* Full width image */
      .full-width-img {
        width: 100%;
        display: block; /* 🔥 removes gap */
      }

      .party-btn img {
        width: 150%;
        height: auto;
        display: block;
        pointer-events: none; /* clicks handled by parent */
        opacity: 0;
      }

      /* Active state (optional: slide down a bit) */
      .party-btn.active img{
        opacity: 1;           /* you can make it visible if needed */
      }

      .platforms {
        margin-top: 4rem;
        z-index: 99;
        width: 240px;          /* prevents it getting too large */
        height: auto;
        display: block;
        margin-left: 19%;
      }

      .join-text5 {
        font-family: 'Roboto Flex Variable', sans-serif;
        font-size: 2rem;
        font-variation-settings:
          "wght" 766,
          "wdth" 130,
          "YTUC" 582,
          "opsz" 80;
        color: white;
        text-align: center;
        line-height: normal;
        letter-spacing: 1.6px;
      }

      .rewards2 {
        position: relative;
        width: 100%;          /* FIX */
        max-width: 900px;     /* optional */
        height: auto;
        margin-top: 180px; /* center it */
        overscroll-behavior: contain;
      }

      /* Sign-Up Modal (hidden by default, slides up from bottom) */
      .signup-modal {
        position: fixed;
        bottom: -150%;             
        left: 0;
        width: 100%;
        height: 100dvh;
        z-index: 998;
        transition: bottom 0.4s ease-in-out;
        display: flex;
        align-items: flex-start;
        justify-content: center;   /* center items horizontally */
        overflow: hidden;
      }

      .signup-modal-content {
        width: 100%;
      }

      /* Show modal */
      .signup-modal.active {
        bottom: 0;                 /* slide into view */
        padding-bottom: env(safe-area-inset-bottom);
      }

      /* Image fills width */
      .signup-modal img {
        width: 100%;
        height: auto;
        display: block;
        z-index: 999;
      }

      /* Lock body scroll when modal open */
      body.modal-open {
        position: fixed;
        width: 100%;
        overflow: hidden;
      }

      .locations-section {
        position: relative;
        width: 100%;
        height: 80vh;              /* adjust if needed */
        display: flex;              /* center child */
        justify-content: center;    /* horizontal center */
        align-items: center;        /* vertical center */
        margin-bottom: 0.5rem;
        object-fit: cover;
      }

      /* Base button */
      .register-plus-btn {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        transition: all 0.3s ease;
      }

      /* Images */
      .register-plus-btn img {
        display: block;
        width: 100%;
        transition: opacity 0.3s ease;
      }

      /* Large button (default) */
      .btn-large {
        width: 90vw;
        max-width: 340px;
        opacity: 1;
        margin-left: 25px;
      }

      /* Small button (hidden initially) */
      .btn-small {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        max-width: 240px;
        opacity: 0;
      }

      /* 🔥 Scrolled state */
      .register-plus-btn.scrolled .btn-large {
        opacity: 0;
      }

      .register-plus-btn.scrolled .btn-small {
        opacity: 1;
      }

      /* Optional: shrink container slightly */
      .register-plus-btn.scrolled {
        transform: translateX(-50%) scale(0.9);
      }

      .email-input {
      margin: 20px auto 0 auto;
      width: 300px;              /* adjust width */
      position: absolute;
      top: 48%;                  /* middle vertically */
      left: 11%;                 /* middle horizontally */
      transform: translate(-50%, -50%); /* center exactly */
      padding: 1rem 2rem;
      border-radius: 15px;
      text-align: center;
      z-index: 10;               /* ensure it’s above image */
    }

    .email-input input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0); /* gray line */
      padding: 8px 0;
      font-size: 20px;
      color: rgba(255,255,255,0);
      outline: none;
      transition: border-color 0.3s ease;
    }

    .number-input {
      margin: 20px auto 0 auto;
      width: 300px;              /* adjust width */
      position: absolute;
      top: 48%;                  /* middle vertically */
      left: 30%;                 /* middle horizontally */
      transform: translate(-50%, -50%); /* center exactly */
      padding: 1rem 2rem;
      border-radius: 15px;
      text-align: center;
      z-index: 10;               /* ensure it’s above image */
    }

    .number-input input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0); /* gray line */
      padding: 8px 0;
      font-size: 20px;
      opacity: 0;      
      outline: none;
      transition: border-color 0.3s ease;
    }

    .age-input {
      margin: 20px auto 0 auto;
      width: 300px;              /* adjust width */
      position: absolute;
      top: 57%;                  /* middle vertically */
      left: 30%;                 /* middle horizontally */
      transform: translate(-50%, -50%); /* center exactly */
      padding: 1rem 2rem;
      border-radius: 15px;
      text-align: center;
      z-index: 10;               /* ensure it’s above image */
    }

    .age-input input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0); /* gray line */
      padding: 8px 0;
      font-size: 20px;
      opacity: 0;      
      outline: none;
      transition: border-color 0.3s ease;
    }

    .name-input {
      margin: 20px auto 0 auto;
      width: 300px;              /* adjust width */
      position: absolute;
      top: 57%;                  /* middle vertically */
      left: 11%;                 /* middle horizontally */
      transform: translate(-50%, -50%); /* center exactly */
      padding: 1rem 2rem;
      border-radius: 15px;
      text-align: center;
      z-index: 10;               /* ensure it’s above image */
    }
  

    .name-input input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0); /* gray line */
      padding: 8px 0;
      font-size: 20px;
      opacity: 0;      
      outline: none;
      transition: border-color 0.3s ease;
    }

      .pricing-section {
        position: relative;
        width: 100%;
        height: 30dvh;              /* adjust if needed */
        display: flex;              /* center child */
        justify-content: center;    /* horizontal center */
        align-items: center;        /* vertical center */
        margin-bottom: 0.5rem;
      }

      .creators-section {
        margin-top: 20px;
        position: relative;
        width: 100%;
        height: fit-content;              /* adjust if needed */
        display: flex;              /* center child */
        justify-content: center;    /* horizontal center */
        align-items: center;        /* vertical center */
        margin-bottom: 2rem;
      }

      .creators-photo {
        width: 130%;
        height: auto;
        display: block;
      }

      .challenges h2{
        font-family: 'Roboto Flex Variable', sans-serif;
        font-variation-settings:
          "wght" 766,
          "wdth" 130,
          "YTUC" 582,
          "opsz" 80;
        color: white;
        text-align: center;
        line-height: normal;
        letter-spacing: 1.6px;
        text-align: center;
        margin-left: 0;
        font-size: 1.6rem;
      }

      .challenges2 h2{
        font-family: 'Roboto Flex Variable', sans-serif;
        font-variation-settings:
          "wght" 766,
          "wdth" 130,
          "YTUC" 582,
          "opsz" 80;
        color: white;
        text-align: center;
        line-height: normal;
        letter-spacing: 1.6px;
        text-align: center;
        margin-left: 0;
        font-size: 1.6rem;
      }

    .challenges p{
      text-align: center;
      margin-left: 0;
      font-size: 0.5;
      font-weight: 50;
      color: white;
      margin-top: 10px;
    }

    .challenges2 p{
      text-align: center;
      margin-top: 10px;
      margin-left: 0;
      font-size: 0.5;
      font-weight: 50;
      color: white;
    }

      #countdown{
        font-size: 1.4rem;
        top: 78%;
        margin-left: 5px;
        text-decoration:none;
      }

      .countdown-container {
      position: relative;
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
    }

      .rewards {
        width: 100%;
        padding: 0 1rem;
        margin-top: 40px;
        margin-bottom: 80px;
        height: 300px;
      }

      .challenges {
        width: 100%;
        padding: 0 1rem;
        margin-top: 40px;
        margin-bottom: 20px;
        align-items: center;
        display: flex;
        height: 350px;
      }

      .quote2 {
        width: 100%;
        height: auto;        /* ✅ let it scale naturally */
        display: block;
        margin-left: 0;      /* remove random offset */

        position: relative;   /* ✅ important */
        top: auto;            /* reset */
      }

      /* Containers */
      .challenges,
      .challenges2 {
        width: 100%;
        margin-top: 40px;
        margin-bottom: 20px;
        position: relative;
        height: auto;
        overflow: visible;
      }

      .challenges2 {
        width: 100%;
        padding: 0;
        margin-top: 40px;
        margin-bottom: 20px;
        height: 350px;
      }

      .carousel {
        width: 100%;
        margin-top: 40px;
        margin-bottom: 10px;
        height: auto;
        margin-left: 5%;
      }

      /* Add spacing below header */
      .rewards h2 {
        margin-bottom: 10px;
      }

      /* Image container */
      .rewards-images {
        position: relative;
        width: 100%;
        height: 100px; /* your animation area */
      }

      /* Images now stay inside this box */
      .rewards-images img {
        position: absolute;
        top: 0;
        left: 5%;
        width: 100%;
        height: auto;
      }

      /* Animations */
      .rewards-images img:nth-child(1) {
        animation: frame7 1s infinite;
      }

      .rewards-images img:nth-child(2) {
        animation: frame8 1s infinite;
      }

      @keyframes frame7 {
        0%, 49%   { opacity: 1; }
        50%, 100% { opacity: 0; }
      }

      @keyframes frame8 {
        0%, 49%   { opacity: 0; }
        50%, 100% { opacity: 1; }
      }

      /* HEADER */
      header{
        padding: 1.5rem 1rem;
      }

      .menu-icon{
        left: 1rem;
        font-size: 2rem;
      }

      .profile{
        right: 1rem;
        width: 24px;
      }

      .logo{
        width: 170px;
      }

      /* VIDEO */
      .video-container2{
        width: 94%;
        height: auto;
        aspect-ratio: 16/9;
      }

      .video-container{
        width: 100%;
        height: 400px;
        border-radius: 0;
        border: none;
        margin: 0;
        margin-top: 20px;
        margin-bottom: 0;
        background: black;
        box-shadow: none;
        backdrop-filter: 0;
        line-height: 0;
      }

      .video-container video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;       /* slightly bigger than container, adjust as needed */
        height: auto;      /* keep aspect ratio covered */
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%); /* perfectly center */
        display: block;
      }

      /* TEXT */
      .join-text5{
        font-size: 1.6rem;
        padding: 0 1rem;
      }

      .description,
      .description2{
        max-width: 90%;
        font-size: 1.5rem;
        margin-top: 0;
        opacity: 1;
      }

      .description {
        max-width: 90%;
        font-size: 1.5rem;
        margin-bottom: 40px;
        margin-top: 0;
        opacity: 1;
      }
      

      /* BUTTONS */
      .register-row{
        gap: 0.7rem;
        padding: 0 1rem;
      }

      .register-btn,
      .register-btn3{
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
      }

      .footer-photo-section {
        position: relative;
        width: 100%;
        overflow: hidden;
        height: 80vh; /* ✅ NOT dvh */
        overscroll-behavior: contain;
      }

      .main-photo {
        width: 100%;
        height: 80vh; /* ✅ match container */
        object-fit: cover;
        display: block;
        margin-top: 100px;

        mask-image: linear-gradient(to top, black 0%, transparent 100%);
        -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
      }

      /* CARDS */
      .cards-container{
        flex-direction: column;
        align-items: center;
        gap: 5rem;
        padding: 10px;
        margin-top: 25px;
      }

      .card{
        width: 110%;
        height: 390px;
        right: 5%;
      }

      .card-content p{
        width: 100%;
        font-size: 1.05rem;
      }

      .card-content img{
        position: relative;
        width: 200px;
        height: auto;
      }

      /* PRICING / LOCATIONS */
      .pricing-photo,
      .locations-photo{
        width: 95%;
      }

      /* USER COUNT */
      .usercount-photo{
        width: 150px;
        margin: 0 auto;
        display: block;
      }

      /* ROADMAP */
      .beta-container,
      .launch-container{
        position: relative;
        right: auto;
        top: auto;
        width: 80%;
        margin: 2rem auto;
      }

      /* BUBBLES */
      .bubble-container{
        height: 280px;
        overflow: visible;
      }

      /* GALLERY */
      .gallery-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 1rem;
      }

      .close-btn3 {
        position: absolute;
        top: 20px;
        left: 30px;
        font-size: 40px;
        color: white;
        cursor: pointer;
        z-index: 1000;
      }

      .footer-center-image {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);

        width: 35%;        /* adjust this */
        max-width: 350px;      /* responsive */
        height: auto;

        z-index: 100;
        pointer-events: none;
      }

      .singer-overlay{
        width: 350px;
        left: 10%;
        bottom: -8%;
      }

      /* FINAL FOOTER */
      .final-footer-image{
        margin-top: -80px;
        height: 60vh;
      }

      /* FOOTER LOGOS */
      .footer-logos{
        gap: 1rem;
        top: 72%;
      }

      .footer-logo{
        width: 45%;
      }

      /* NEWSLETTER */
      .newsletter-input{
        width: 85%;
      }

      .reveal-item {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.6s ease;
        height: auto;
        width: 100%;
      }

    }

    .inputs-grid{
      position:absolute;
      top:45%;                /* adjust depending on your image layout */
      left:50%;
      transform:translateX(-50%);
      width:70%;

      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:20px;
    }

  /* Fullscreen overlay */
  .image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    backdrop-filter: blur(12px);   /* blur background */
    background: rgba(0,0,0,0.4);   /* dark overlay */

    display: none;                 /* hidden by default */
    align-items: center;
    justify-content: center;

    z-index: 999;
  }

  /* Centered image */
  .image-overlay img {
    max-width: 70%;
    max-height: 70%;
    border-radius: 12px;
  }

  .image-overlay2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    backdrop-filter: blur(12px);   /* blur background */
    background: black;
    display: none;                 /* hidden by default */
    align-items: center;
    justify-content: center;

    z-index: 999;
  }

  /* Centered image */
  .image-overlay2 video {
    max-width: 100%;
    max-height: 100%;
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
  }

  .close-btn2 {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
  }

  .close-btn3 {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
  }

  .bottom-hitbox {
    position: fixed;
    bottom: 0;
    left: 60%;
    transform: translateX(-50%);

    width: 400px;
    height: 80px;          /* adjust clickable height */

    background: transparent;
    cursor: pointer;
    z-index: 9999;         /* make sure it's above everything */
  }
