:root {
    --text-white: #ffffff;
    --highlight-color: #ff00aa;
    --light-text: #dedede;
    --main-bg: #18181b;
    --secondary-bg: #252528;
    --mobile-breakpoint: 950px;
  }
  
  body, html {
    margin: 0;
    padding: 0;
    background-color: var(--main-bg);
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    width: 100vw;
    height: 100vh;
    background: transparent;
  }

  .filler {
    flex-grow: 1;
  }

  .copyright {
    font-family: 'Inter', sans-serif;
    margin-top: 30px;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: start;
    flex-grow: 1;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    color: var(--light-text);
    opacity: 0.6;
  }
  
  /* Background */
  .main-background,
  .main-background-shapes {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: -2;
  }
  
  .main-background {
    background-color: var(--main-bg);
  }
  
  .main-background-shapes {
    background-color: var(--secondary-bg);
    z-index: -1;
    -webkit-mask-image: url("assets/background-shapes.svg");
    mask-image: url("assets/background-shapes.svg");
    -webkit-mask-repeat: initial;
    mask-repeat: initial;
    -webkit-mask-size: initial;
    mask-size: initial;
    -webkit-mask-position: center;
    mask-position: center;
  }
  
  /* Landing Content */
  .landing {
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    top: 0;
    left: 0;
    width: -webkit-fill-available;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
  }
  
  .landing-content-container {
    display: flex;
    width: 100%;
    height: 420px;
    gap: 2rem;
    justify-content: center;
  }
  
  .content {
    display: flex;
    height: max-content;
    flex-direction: column;
    justify-content: space-between;
    max-width: 600px;
    /* FIX: This brings the text and button to the front layer */
    position: relative; 
    z-index: 10;
  }
  
  .content .logo {
    width: 180px;
    margin-bottom: 1rem;
  }
  
  .content .text {
    width: 100%;
  }
  
  .subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.2;
    font-style: italic;
    color: #fff;
    margin: 0;
  }
  
  .title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 1.1;
    font-style: italic;
    color: var(--highlight-color);
    margin: 0.5rem 0 1rem;
  }
  
  .description {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--light-text); 
    max-width: 500px;
    margin-bottom: 2rem;
  }

  /* BUTTON STYLES */
  .cta-button {
    display: inline-block;
    background-color: var(--highlight-color);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: fit-content;
    border: none;
    cursor: pointer;
    /* Ensure the button itself handles pointer events */
    pointer-events: auto; 
  }

  .cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 0, 170, 0.4);
  }
  
  .image {
    position: relative;
    border-radius: 40px;
    background-image: url("assets/party-girl-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 400px;
    height: 100%;
    /* Ensure image sits behind content */
    z-index: 1; 
  }
  
  .image img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 400px;
    border-radius: 2rem;
  }
  
  /* Responsive Styles */
  @media (max-width: 950px) {
    .copyright {
      font-size: 13px;
      line-height: 18px;
      justify-content: center;
      margin-bottom: 20px;
    }
    .landing {
      height: initial;
      overflow-y: scroll;
      position: absolute;
      padding: 2rem;
    }
    .landing-content-container {
      flex-direction: column;
      align-items: center;
      height: auto;
    }
  
    .content {
      align-items: center;
      text-align: center;
    }
  
    .subtitle {
      font-size: 28px;
      line-height: 1.2;
    }
  
    .title {
      font-size: 32px;
      line-height: 1.2;
    }
  
    .description {
      font-size: 14px;
      line-height: 22px;
      margin-top: 10px;
    }

    .cta-button {
        width: 100%;
        box-sizing: border-box;
    }
  
    .image {
      margin-top: 3rem;
      width: 100%;
      height: 350px;
      min-height: 350px;
    }
  }