  /* Import fonts */
      @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@400..800&display=swap');

      /* Base styles */
      * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        font-family: "nure-variable", sans-serif;
        font-variation-settings: "opsz" 12, "wdth" 100, "wght" 500;
        overflow: hidden;
      }
      :root {
        --text-color: #ffffff;
        --handle-bg: #ffffff;
        --handle-icon-color: #333333;
        --connector-bg: rgba(255, 255, 255, 0.1);
        --connector-border: rgba(255, 255, 255, 0.4);
        --blur-intensity: 10px;
        --swipe-button-height: 57px;
        --bottom-safe-area: 47px;
      }
      .mt-1{
        margin-top: 10px;
      }

      /* Typography */
      .heading-1 {
        color: #000;
        text-align: center;
        font-size: 50px;
        font-style: normal;
        font-variation-settings: "opsz" 12, "wdth" 100, "wght" 800;
        line-height: 80%;
        text-transform: uppercase;
      }
      .heading-2 {
        color: #000;
        font-size: 18px;
        font-style: normal;
        font-variation-settings: "opsz" 12, "wdth" 100, "wght" 700;
        line-height: 16px;
        text-transform: uppercase;
      }
      .text-1 {
        color: #000;
        text-align: center;
        font-family: "Manrope", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
      }
      .text-2 {
        color: #000;
        text-align: center;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 19px;
      }
      .text-3 {
        color: #000;
        text-align: center;
        font-family: Inter;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 19px;
        text-transform: uppercase;
      }
      .btn-text {
        color: #FFF;
        font-size: 18px;
        font-style: normal;
        font-variation-settings: "opsz" 12, "wdth" 100, "wght" 600;
        line-height: 100%;
        letter-spacing: 0.36px;
        text-transform: uppercase;
      }
      .op-08 {
        opacity: 0.8;
      }
      .color-2 {
        color: #000;
      }

      /* Layout */
      .card-wrapper {
        position: relative;
        height: 100vh;
        width: 100%;
        max-width: 468px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        overflow: hidden;
      }
      .blur-bg {
        position: absolute;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background-image: url("/assets/fajar-kandoth.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 60%;
        transition: filter 0.3s ease;
        z-index: 0;
        overflow: hidden;
      }
      .gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: transparent;
        transition: background 0.3s ease;
        z-index: 1;
        pointer-events: none;
      }
      .content-wrapper {
        padding-top: 24rem;
        height: 100%;
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        position: relative;
        z-index: 2;
      }
      .content-wrapper::-webkit-scrollbar {
        display: none;
      }
      .content {
        padding: 90px 15px 12rem;
        text-align: center;
      }
      .content h1 {
        margin-bottom: 12px;
      }
      .swiper-btn {
        padding: 50px;
        position: fixed;
        bottom: 0;
        text-align: center;
        z-index: 10;
        transition: opacity 0.3s ease;
      }

      .info-section{
        margin-top: 20px;
      }
      /* Components */
      .swipe-connector {
        position: fixed;
        margin: 0 auto;
        bottom: 1rem;
        left: 0;
        right: 0;
        height: var(--swipe-button-height);
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid var(--connector-border);
        border-radius: 50px;
        display: flex;
        align-items: left;
        justify-content: left;
        font-size: 16.921px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.338px;
        cursor: pointer;
        overflow: hidden;
        width: 350px;
        backdrop-filter: blur(5px);
      }
      .swipe-handle {
        position: absolute;
        width: 56px;
        height: 57px;
        background: var(--handle-bg);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        transition: left 0.3s ease;
      }
      .swipe-handle svg {
        color: var(--handle-icon-color);
      }
      .social-links {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 30px;
      }
      .contact-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .contact {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        color: #000;
        text-decoration: none;
        padding-bottom: 20px;
        border-bottom: 1px solid #96A2A2;
      }
      .contact span {
        display: flex;
        align-items: center;
        gap: 24px;
      }
      .partners-section,
      .contact-section {
        padding-top: 50px;
      }
      .partners {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-top: 23px;
      }
      .card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 6px;
        background: #BEC8C9;
        padding: 20px;
      }