: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-family: var(--font-inter);
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
  }
  
  /* 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;
  }
  
  .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: 73px;
    font-style: italic;
    color: #fff;
  }
  
  .title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 73px;
    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: f00000;
    max-width: 500px;
  }
  
  .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%;
  }
  
  .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;
    }
    .landing {
      height: initial;
      overflow-y: scroll;
      position: absolute;
    }
    .landing-content-container {
      flex-direction: column;
      align-items: center;
      height: 100%;
    }
  
    .content {
      align-items: center;
      text-align: center;
    }
  
    .subtitle {
      font-size: 32px;
      line-height: 38px;
      margin: 0px;
    }
  
    .title {
      font-size: 32px;
      line-height: 38px;
      margin: 0px;
    }
  
    .description {
      font-size: 12px;
      line-height: 22px;
      margin: 0px;
      margin-top: 10px;
    }
  
    .image {
      margin-top: 4rem;
      width: 100%;
      height: 350px;
      min-height: 350px;
    }
  }
  