      :root {
        --letter-spacing: -0.0015em;
        --line-height: 1.3;
      }
      html {
        font-size: clamp(1.375rem, 2.225vw, 2rem);
      }
      body,
      html {
        margin: 0;
        padding: 0 0 50px 0;
        height: 100%;
        width: 100%;
        font-family: "Inter Display", sans-serif;
        letter-spacing: var(--letter-spacing);
        line-height: var(--line-height);
        min-height: 100vh;
        background: linear-gradient(to left, rgb(0, 120, 250), rgb(0, 80, 210));
      }
      body {
        color: #fff;
      }
      h1 .lighten {
        font-weight: 200;
      }
      h2 {
        text-align: center;
      }
      h3 {
        font-family: "Rubik", sans-serif;
      }
      hr {
        height: 3px;
        width: 50px;
        margin: 0 auto;
        background-color: #fff;
        border: 0;
      }
      .hero {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
      }
      .hero canvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
      .logo {
        z-index: 10;
        margin-top: 20px;
      }

      .content {
        padding: 20px;
        max-width: 800px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }

      .content p {
        font-size: 1rem;
        font-family: "Rubik", sans-serif;
        opacity: 0.8;
      }
      
      .content ul li {
        font-size: 1rem;
        font-family: "Rubik", sans-serif;
        opacity: 0.8;
      }

      .screenshots {
        margin: 2rem 0;
      }

      .screenshots .figures-container {
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1rem;
      }

      .screenshots figure {
        margin: 0;
        flex: 1;
        min-width: 200px;
        max-width: 300px;
      }

      .screenshots img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      }

      .screenshots figcaption {
        text-align: center;
        margin-top: 0.5rem;
        font-size: 0.8rem;
        opacity: 0.8;
      }

      .newsletter {
        position: relative;
        width: 100%;
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 20px; /* Space for stacked layers */
      }
      .newsletter .container {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        position: relative;
        z-index: 3;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
      .newsletter__content {
        max-width: 450px;
        margin: auto;
      }
      .newsletter .stack-layer {
        position: absolute;
        background-color: white;
        border-radius: 10px;
        left: 50%;
        width: 95%; /* Slightly smaller than the container above */
        height: 95%;
        transform: translateX(-50%);
        opacity: 0.5;
      }
      .newsletter .stack-layer-1 {
        bottom: 10px;
        z-index: 2;
        width: 95%;
      }
      .newsletter .stack-layer-2 {
        bottom: 0px;
        z-index: 1;
        width: 90%; /* Even smaller */
      }
      .newsletter .icon {
        font-size: 48px;
        color: #ff69b4;
      }
      .newsletter__title {
        margin-top: 20px;
        font-size: 1.2rem;
        color: #232323;
      }
      .newsletter p {
        color: #666;
        font-size: 0.9rem;
      }
      .newsletter input[type="email"] {
        width: calc(100% - 22px);
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
      }
      .newsletter button {
        background-color: #ff69b4;
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 5px;
        cursor: pointer;
        width: 100%;
        font-size: 16px;
        font-weight: bold;
        margin-top: 10px;
      }
      a,
      a:hover,
      a:visited {
        color: #fff;
      }

      .newsletter a,
      .newsletter a:hover,
      .newsletter a:visited {
        color: #232323;
        text-decoration: underline;
      }

      .content section img[src*="download"] {
        display: block;
        margin: 1rem auto;
        filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
        max-width: 200px;
        height: auto;
      }

      .newsletter img[src*="download"] {
        filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
        max-width: 200px;
        height: auto;
      }
