#opening .text-16 {
    font-size: 0.75rem;
    line-height: 1.6;
  }
  
  #opening .text-18 {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  #opening .text-20 {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  #opening .text-25 {
    font-size: clamp(1.2rem, 2vw, 1.25rem);
    line-height: 1.5;
  }
  
  #opening .text-30 {
    font-size: clamp(1.25rem, 2.25vw, 1.5rem);
    line-height: 1.2;
  }
  
  #opening .text-40 {
    font-size: clamp(1.5rem, 2.75vw, 2rem);
    line-height: 1.2;
  }
  
  #opening .text-60 {
    font-size: clamp(1.75rem, 3.75vw, 3rem);
    line-height: 1.2;
    color: white;
    font-weight: 700;
    font-family: Poppins;
  }
  
  @media only screen and (min-width: 768px) {
    #opening .text-60 {
      line-height: 1.1;
    }
  }
  
  #opening .text-90 {
    font-size: clamp(2.5rem, 5.25vw, 4.5rem);
    line-height: 1.2;
  }
  @media only screen and (min-width: 768px) {
    #opening .text-90 {
      line-height: 1.1;
    }
  }
  
  #opening .hover-underline {
    cursor: pointer;
    --border-color: currentColor;
    --border-width: var(--1px);
    --bottom-distance: 0px;
    display: inline;
    background-image: linear-gradient(var(--border-color), var(--border-color));
    background-size: 0% var(--border-width);
    background-repeat: no-repeat;
    transition: background-size 0.3s ease-in-out;
    background-position: 0 calc(100% - var(--bottom-distance));
    width: fit-content;
  }
  #opening .hover-underline:hover, #opening .hover-underline:focus, #opening .hover-underline.active {
    background-size: 100% var(--border-width);
  }
  
  #opening .hover-underline-white {
    display: inline-flex;
    position: relative;
    overflow: hidden;
    width: fit-content;
  }
  
  #opening .hover-underline-white:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--1px);
    background-color: currentColor;
  }
  
  #opening .hover-underline-white:after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--1px);
    background-color: #f6f6f6;
    transform: translateX(-100%);
    transition: 0.6s;
  }
  
  #opening .hover-underline-white:hover:after {
    transform: translateX(100%);
  }
  
  #opening .button {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline flex;
    gap: 1rem;
    border-radius: 0.25rem;
    text-align: center;
    padding: 1.25rem 1.5rem;
    line-height: 1;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    white-space: nowrap;
    transition: 0.3s ease-in-out;
    width: fit-content;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 18px;
  }
  @media only screen and (min-width: 576px) {
      #opening .button {
      padding: 1rem 2rem;
    }
  }
  
  #opening .button > svg {
    width: 1rem;
    min-width: 1rem;
    height: 1rem;
    object-fit: contain;
  }
  
  #opening .button--green {
    background-color: #33C3EA;
    color: #171717;
  }
  
  #opening .button--green:hover, #opening .button--green:focus-visible {
    background-color: #171717;
    color: #f6f6f6;
  }
  
  #opening .button--hollow {
    border: var(--1px) solid #171717;
    color: #171717;
  }
  
  #opening .button--hollow:hover, #opening .button--hollow:focus-visible {
    background-color: #171717;
    color: #fff;
  }
  
  #opening .button--hollow-white {
    border: var(--1px) solid #f6f6f6;
    color: #f6f6f6;
  }
  
  #opening .button--hollow-white:hover, #opening .button--hollow-white:focus-visible {
    background-color: #f6f6f6;
    color: #171717;
  }
  
  #opening .button__text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: opacity 0.1s ease-in-out;
  }
  
  #opening .button__text > svg {
    width: 1rem;
    min-width: 1rem;
    height: 1rem;
    object-fit: contain;
  }
  
  #opening .button__loader {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
  }
  
  #opening .button__loader svg {
    display: block;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
  }
  
  #opening .container {
      width: 100%;
      padding: 0 15px;
  }
  
  #opening {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    color: #f6f6f6;
    margin: 0;
    padding: 0;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  }
  
  #opening.visible {
      display: flex; /* Only display when class 'visible' is added */
      opacity: 1;
      visibility: visible;
      pointer-events: all;
  }
  
  #opening.visible .flex {
    opacity: 1;
  }
  
  #opening .flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
  }
  #opening .flex .logo {
    display: block;
  }
  #opening .flex .logo svg {
    width: 30rem;
    max-width: 35%;
    height: auto;
  }
  #opening .flex .logo svg path:last-child {
    fill: #f6f6f6;
  }
  #opening .flex .buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  @media only screen and (max-width: 420px) {
    #opening .flex .buttons {
      width: 100%;
      gap: 0.5rem;
    }
  }
  @media only screen and (max-width: 420px) {
    #opening .flex .buttons a,
    #opening .flex .buttons button {
      width: 100%;
      padding-left: 0;
      padding-right: 0;
      display: block;
      text-align: center;
    }
  }
  #opening .flex p {
    width: 30rem;
    max-width: 100%;
    font-size: 16px;
    color: #aaa;
  }