@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,500;9..144,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  /* https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/ */
  html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
  }

  body,
  h1,
  h2,
  h3,
  h4,
  p,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }

  /* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  body {
    min-block-size: 100vh;
    line-height: 1.6;
  }

  h1,
  h2,
  h3,
  button,
  input,
  label {
    line-height: 1.1;
    font-size: 1.6em;
  }

  h1,
  h2,
  h3,
  h4 {
    font-optical-sizing: auto;
    font-style: normal;
  }

  p,
  li {
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1rem;
    margin: 1rem 0;
  }

  img,
  picture {
    max-inline-size: 100%;
    display: block;
  }
}

@layer base {
  :root {
    --black: #1c2b29;
    --white: #fffef9;
    --primary: #0f9d84;
    --secondary: #0c6b5f;
    --dark-gray: #344240;
    --md-gray: #70807c;
    --gray: #dde7e2;
    --light-gray: #f2f7f3;
    --gradient-primary: linear-gradient(135deg, #0f9d84 0%, #f59e0b 100%);
    --gradient-secondary: linear-gradient(135deg, #0c6b5f 0%, #d9f99d 100%);
    --surface-0: #fffef9;
    --surface-1: #f7fbf8;
    --surface-2: #edf6f1;
    --accent-warm: #f59e0b;
    --shadow-soft: 0 16px 40px rgba(9, 47, 41, 0.12);

    --border-radius-1: 0.65rem;
    --border-radius-2: 1rem;
    --border-radius-3: 1.7rem;
    --border-radius-4: 2.5rem;
  }

  @view-transition {
    navigation: auto;
  }

  @media (prefers-reduced-motion: no-preference) {
    html {
      scroll-behavior: smooth;
    }
  }

  html {
    scroll-padding: 2rem;
    overflow-x: hidden;
  }

  body {
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    font-size: 10px;
    line-height: 1.3;
    color: var(--black);
    background:
      radial-gradient(circle at 12% 0%, rgba(15, 157, 132, 0.08), transparent 26%),
      radial-gradient(circle at 88% 18%, rgba(245, 158, 11, 0.12), transparent 22%),
      linear-gradient(180deg, var(--surface-0) 0%, var(--surface-1) 56%, var(--surface-0) 100%);
    position: relative;
    line-height: normal;
    width: 100%;
    overflow-x: hidden;
  }

  h1 {
    font-family: "Fraunces", "Times New Roman", serif;
    font-size: 4em;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 0.95;
    margin: 0;

    span {
      color: var(--primary);
    }

    strong {
      font-weight: 500;
    }

    @media screen and (max-width: 767px) {
      font-size: 2.5rem;
    }
  }

  h2 {
    font-family: "Fraunces", "Times New Roman", serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.015em;
    margin: 0;

    @media screen and (max-width: 767px) {
      font-size: 2rem;
    }

    span {
      color: var(--primary);
    }
  }

  h3 {
    font-family: "Fraunces", "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0;

    @media screen and (max-width: 767px) {
      font-size: 1.5rem;
    }
  }

  a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
    text-underline-offset: 0.22rem;
  }

  .btn,
  .btn-watch,
  input[type="submit"] {
    --btn-bg-start: #0f9d84;
    --btn-bg-end: #0c6b5f;
    --btn-shadow: rgba(12, 107, 95, 0.36);
    --btn-border: rgba(8, 68, 60, 0.4);
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    font-weight: 700;
    color: var(--white);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)) padding-box,
      linear-gradient(135deg, var(--btn-bg-start) 0%, var(--btn-bg-end) 100%) border-box;
    border-radius: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    font-size: 1rem;
    transition:
      transform 0.26s cubic-bezier(0.2, 0.8, 0.2, 1),
      box-shadow 0.26s ease,
      filter 0.26s ease,
      background-position 0.26s ease;
    width: fit-content;
    min-width: 176px;
    text-transform: none;
    letter-spacing: 0.01em;
    box-shadow:
      0 14px 28px -14px var(--btn-shadow),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;

    @media (max-width: 767px) {
      min-width: 152px;
      padding-inline: 1.15rem;
    }

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: -132%;
      width: 44%;
      height: 100%;
      background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.42), transparent);
      transform: skewX(-20deg);
      transition: left 0.5s ease;
      pointer-events: none;
      z-index: -1;
    }

    &::after {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: inherit;
      border: 1px solid var(--btn-border);
      pointer-events: none;
      opacity: 0.7;
    }

    &:hover {
      transform: translateY(-3px) scale(1.01);
      box-shadow:
        0 20px 34px -16px var(--btn-shadow),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
      filter: saturate(1.1);

      &::before {
        left: 128%;
      }
    }

    &:focus-visible {
      outline: 2px solid #fde68a;
      outline-offset: 3px;
    }

    &:active {
      transform: translateY(0);
      box-shadow:
        0 8px 18px -12px var(--btn-shadow),
        inset 0 2px 0 rgba(0, 0, 0, 0.12);
    }

    &:disabled {
      cursor: not-allowed;
      opacity: 0.65;
      transform: none;
      box-shadow: none;
      filter: grayscale(0.15);

      &::before {
        display: none;
      }

      &::after {
        opacity: 0.45;
      }
    }

    &.large {
      margin: 0;
      font-size: 1.4rem;
      padding: 1rem 3rem;
    }

    &.btn-secondary {
      color: var(--secondary);
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(15, 157, 132, 0.3);
      box-shadow: 0 10px 24px -16px rgba(12, 107, 95, 0.5);
      font-size: 0.95rem;
      padding: 0.6rem 1.1rem;
      min-width: fit-content;

      &::after {
        border-color: rgba(15, 157, 132, 0.3);
      }
    }
  }

  .btn-img {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: var(--border-radius-2);
    overflow: hidden;
    transition: 0.2s ease-in-out;

    &:hover {
      transform: scale(1.05);
    }
  }

  .subtitle {
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
  }
}

@layer layout {
  .wrapper {
    --wrapper-max-width: 1320px;
    --wrapper-padding: 1rem;

    max-width: var(--wrapper-max-width);
    margin-inline: auto;
    padding-inline: var(--wrapper-padding);

    /* helps to match the Figma file */
    box-sizing: border-box;
    width: 100%;
  }

  .wrapper[data-width="narrow"] {
    --wrapper-max-width: 720px;
  }

  .wrapper[data-width="medium"] {
    --wrapper-max-width: 900px;
  }

  .wrapper[data-width="large"] {
    --wrapper-max-width: 1440px;
  }

  .section {
    padding-block: clamp(3.5rem, 6vw, 5.25rem);

    @media (max-width: 767px) {
      padding-block: 3rem;
    }

    + .section {
      padding-top: 0;
    }

    &.background-light {
      padding-top: 4rem;

      @media (max-width: 767px) {
        padding-top: 3rem;
      }

      + .section {
        padding-block: 4rem;

        @media (max-width: 767px) {
          padding-top: 3rem;
        }
      }
    }
  }
}

@layer components {
  /* Navigation  */
  .top_bar {
    display: flex;
    flex-direction: row;
    padding: 0.55rem 2.5rem;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.98), rgba(34, 197, 94, 0.98));
    gap: 1.5rem;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    z-index: 999;
    transition:
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      padding 0.35s ease,
      gap 0.35s ease,
      opacity 0.35s ease,
      box-shadow 0.35s ease;
    will-change: transform, opacity;

    @media screen and (min-width: 1024px) {
      --top-bar-shift: 0px;
      position: fixed;
      top: 50%;
      right: 0;
      transform: translate(var(--top-bar-shift), -50%);
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
      width: max-content;
      max-width: min(320px, calc(100vw - 1.5rem));
      padding: 1rem 1.1rem 1rem 1.4rem;
      border-radius: 20px 0 0 20px;
      border-bottom: none;
      border-left: 1px solid rgba(255, 255, 255, 0.28);
      box-shadow:
        inset 1px 0 0 rgba(255, 255, 255, 0.12),
        0 18px 32px rgba(9, 52, 44, 0.24);
    }

    &::after {
      content: "";
      position: absolute;
      right: -120px;
      top: -60px;
      width: 280px;
      height: 180px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
      pointer-events: none;
    }

    @media screen and (max-width: 767px) {
      padding: 0.5rem 0.9rem;
      gap: 0.5rem;
    }

    @media screen and (max-width: 374px) {
      flex-direction: column;
      align-items: stretch;
    }

    a {
      color: var(--white);
      font-size: 0.92rem;
      letter-spacing: 0;
      line-height: 1.2;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.32);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(3px);
      padding: 0.45rem 0.9rem;
      transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;

      &:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.58);
        transform: translateY(-1px);
      }

      @media screen and (max-width: 767px) {
        font-size: 0.82rem;
        padding: 0.4rem 0.65rem;
      }

      @media screen and (max-width: 374px) {
        width: 100%;
        justify-content: center;
      }
    }

    > div {
      position: relative;
      z-index: 1;
    }

    > a {
      position: relative;
      z-index: 1;
    }

    .d-flex {
      gap: 0.6rem;
      min-width: 0;

      @media screen and (min-width: 1024px) {
        justify-content: flex-end;
      }
    }

    .support-icon {
      width: 22px;
      height: 22px;
      padding: 4px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.35);
      flex-shrink: 0;
    }
  }

  .site_header {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    margin: 0.7rem 1.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 118, 110, 0.18);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(242, 250, 246, 0.96));
    box-shadow: 0 16px 28px rgba(9, 52, 44, 0.12);
    backdrop-filter: blur(6px);
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      padding 0.3s ease,
      margin 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease,
      background 0.3s ease,
      opacity 0.3s ease;
    transform-origin: top center;
    will-change: transform, opacity;

    &.site_header_payment {
      position: relative;
      top: 0;
      margin: 0;
      border-radius: 0;
      border: none;
      box-shadow: none;
      background: transparent;
    }

    @media screen and (max-width: 1024px) {
      top: 55px;
    }
    @media screen and (max-width: 374px) {
      top: 90px;
    }

    .logo_header {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(15, 118, 110, 0.18);
      border-radius: 14px;
      padding: 0.45rem 0.7rem;

      .logo_desktop {
        display: block;
        width: 138px;

        @media screen and (max-width: 767px) {
          display: none;
        }
      }
      .logo_mobile {
        display: none;
        width: 42px;

        @media screen and (max-width: 767px) {
          display: block;
        }
      }
    }

    .site_navigation {
      grid-column: 3;
      justify-self: end;

      @media screen and (max-width: 767px) {
        position: fixed;
        inset: 0;
        background: linear-gradient(180deg, #0e2f29, #133f36);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90%;
        z-index: 2;
        right: -50px;
        left: auto;
        height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translateX(100%);
        border-left: 1px solid rgba(255, 255, 255, 0.14);

        &.active {
          transform: translateX(-50px);
          -webkit-transform: translateX(-50px);
          /* For iOS compatibility */
        }
      }

      ul {
        display: flex;
        gap: 1.25rem;

        @media (min-width: 767px) and (max-width: 1199px) {
          gap: 1rem;
        }

        a {
          text-decoration: none;
          font-weight: 700;
          color: #0f5d52;
          padding: 0.4rem 0.75rem;
          border-radius: 999px;
          transition:
            color 0.2s ease,
            background-color 0.2s ease,
            transform 0.2s ease;

          &:hover {
            color: #08322c;
            background: rgba(15, 118, 110, 0.12);
            transform: translateY(-1px);
          }

          @media (min-width: 767px) and (max-width: 1199px) {
            font-size: 0.9rem;
          }

          @media screen and (max-width: 767px) {
            font-size: 20px;
            color: #d9fff4;
            padding: 0.3rem 0.45rem;
          }
        }

        @media screen and (max-width: 767px) {
          flex-direction: column;
          gap: 1.5rem;
          padding: 2rem 0;
        }
      }
    }

    .header-right {
      position: relative;
      display: flex;
      gap: 0.7rem;
      align-items: center;

      .dropdown-trigger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        padding: 5px;
        cursor: pointer;
        justify-content: center;
      }

      a {
        font-weight: 600;
      }

      .unsubLink {
        border-radius: 999px;
        padding: 0.45rem 0.85rem;
        border: 1px solid rgba(15, 118, 110, 0.24);
        background: rgba(15, 118, 110, 0.08);
        color: #0f5d52;
        transition:
          background-color 0.2s ease,
          color 0.2s ease;

        &:hover {
          background: rgba(15, 118, 110, 0.16);
          color: #08322c;
        }

        @media screen and (max-width: 767px) {
          display: none;
        }
      }

      .dropdown-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(242, 250, 246, 0.96));
        width: 25%;
        padding: 4rem 1.5rem;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 9;

        @media screen and (min-width: 768px) and (max-width: 1199px) {
          width: 60%;
        }

        @media screen and (max-width: 767px) {
          width: 85%;
        }

        &.active {
          right: 0;
        }

        ul {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;

          li {
            margin: 0;

            a {
              display: block;
              padding: 0.5rem;
              font-size: 1.125rem;
              font-weight: 600;
              color: var(--primary);
              transition: color 0.2s;
              background: transparent !important;
              backdrop-filter: unset;

              &:hover {
                color: var(--primary);
              }
            }
          }
        }
      }
    }

    .desktop-nav {
      display: flex;
      gap: 1.25rem;

      @media screen and (max-width: 767px) {
        display: none;
      }

      a {
        text-decoration: none;
        font-weight: 700;
      }
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      padding: 7px;
      background: rgba(15, 118, 110, 0.08);
      border: 1px solid rgba(15, 118, 110, 0.24);
      border-radius: 10px;
      z-index: 10;

      span {
        display: block;
        width: 24px;
        height: 3px;
        background-color: #0f5d52;
        transition: 0.3s ease-in-out;
      }

      &.active {
        position: fixed;
        right: 40px;

        @media screen and (max-width: 767px) {
          right: 18px;
        }

        span:first-child {
          transform: translateY(9px) rotate(45deg);
        }

        span:nth-child(2) {
          opacity: 0;
        }

        span:last-child {
          transform: translateY(-9px) rotate(-45deg);
        }
      }

      &[aria-expanded="true"] {
        position: fixed;
        right: 40px;
        font-weight: 700;

        @media screen and (max-width: 767px) {
          right: 10px;
          top: 15px;
        }

        span:first-child {
          transform: translateY(9px) rotate(45deg);
        }

        span:nth-child(2) {
          opacity: 0;
        }

        span:last-child {
          transform: translateY(-5px) rotate(-45deg);
        }
      }

      @media screen and (max-width: 767px) {
        display: flex;
        align-items: flex-end;
      }
    }

    .mobile-nav {
      @media screen and (min-width: 768px) {
        display: none;
      }
    }
  }

  body.is-scrolled {
    .site_header {
      padding: 0.5rem 0.8rem;
      margin: 0.45rem 1rem 0.65rem;
      box-shadow: 0 10px 22px rgba(9, 52, 44, 0.1);
      border-color: rgba(15, 118, 110, 0.12);
      background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(245, 251, 248, 0.94));

      .logo_header {
        padding: 0.3rem 0.5rem;
      }

      .logo_desktop {
        width: 112px;
      }

      .logo_mobile {
        width: 34px;
      }

      .site_navigation ul {
        gap: 0.75rem;

        a {
          padding: 0.28rem 0.55rem;
        }
      }

      .header-right {
        gap: 0.45rem;

        .unsubLink {
          padding: 0.32rem 0.7rem;
        }
      }
    }

    @media screen and (min-width: 1024px) {
      .top_bar {
        padding: 0.7rem 0.8rem 0.7rem 1rem;
        gap: 0.7rem;
        box-shadow:
          inset 1px 0 0 rgba(255, 255, 255, 0.12),
          0 12px 24px rgba(9, 52, 44, 0.18);

        a {
          font-size: 0.78rem;
          padding: 0.32rem 0.65rem;
        }

        .support-icon {
          width: 18px;
          height: 18px;
          padding: 3px;
        }
      }
    }
  }

  body.is-scrolling-down {
    .site_header {
      transform: translateY(calc(-100% - 0.8rem)) scale(0.96);
      opacity: 0.82;
      pointer-events: none;
    }

    @media screen and (min-width: 1024px) {
      .top_bar {
        --top-bar-shift: calc(100% - 3.8rem);
        opacity: 0.92;
      }
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .site_header,
    .top_bar {
      transition: none;
    }
  }

  /* Hero Section */

  .page_hero {
    position: relative;
    padding: 5rem 3rem;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-3);

    @media screen and (max-width: 1199px) {
      padding: 3rem 1rem;
    }

    .hero-bck {
      position: absolute;
      right: 5%;
      height: 105%;
      top: -2.5%;
      z-index: 0;
      object-fit: contain;

      @media (min-width: 768px) and (max-width: 1199px) {
        right: 0;
        height: 105%;
        top: inherit;
        bottom: 0;
      }
    }

    .hero-content {
      text-align: left;
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 30px;
      color: var(--white);

      @media (min-width: 768px) and (max-width: 1199px) {
        align-items: center;
        text-align: center;
        min-height: auto;
      }

      @media screen and (max-width: 767px) {
        align-items: center;
        text-align: center;
        min-height: auto;
      }

      span {
        font-size: 1rem;
      }

      h1 {
        font-size: 2rem;
        font-weight: 600;

        @media screen and (max-width: 1199px) {
          font-size: 4rem;
        }

        @media screen and (max-width: 767px) {
          font-size: 2.5rem;
        }
      }

      p {
        font-size: 1.25rem;
        margin: 0;
        max-width: 500px;
      }

      .btn {
        font-size: 1.15rem;
        padding: 1rem 3rem;
        margin-top: 20px;
      }
    }

    &.login {
      .hero-bck {
        right: 0;
        height: 105%;
        top: inherit;
        bottom: 0;

        @media screen and (max-width: 767px) {
          inset: 0;
          object-fit: cover;
          filter: brightness(0.75) blur(2px);
        }
      }
    }
  }

  .page_hero--lifestyle {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: 2rem;
    align-items: end;
    overflow: hidden;
    margin-top: 115px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background:
      radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.24), transparent 42%),
      radial-gradient(circle at 78% 84%, rgba(231, 255, 77, 0.2), transparent 35%),
      linear-gradient(135deg, #0f766e 0%, #10a371 52%, #22c55e 100%);

    .hero-bck {
      right: -1%;
      top: auto;
      bottom: -2%;
      height: clamp(65%, 88%, 100%);
      opacity: 0.24;
      mix-blend-mode: screen;
      pointer-events: none;
    }

    .hero-content--lifestyle {
      max-width: 760px;
      gap: 1rem;

      .hero-kicker {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 999px;
        padding: 0.35rem 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        background: rgba(255, 255, 255, 0.12);
        font-weight: 700;
      }

      h1 {
        font-size: clamp(2rem, 4.6vw, 4.5rem);
        line-height: 0.97;
        letter-spacing: -0.02em;
        margin: 0;
        max-width: 14ch;
      }

      p {
        font-size: 1.1rem;
        line-height: 1.55;
        max-width: 56ch;
      }
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 0.65rem;
    }

    .hero-tag {
      padding: 0.4rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.46);
      background: rgba(255, 255, 255, 0.12);
      font-size: 0.88rem;
      font-weight: 600;
      line-height: 1;
      color: var(--white);
      backdrop-filter: blur(4px);
    }

    .hero-side-card {
      position: relative;
      z-index: 1;
      padding: 1.25rem 1.2rem;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.32);
      background: rgba(8, 60, 53, 0.52);
      box-shadow: 0 18px 36px rgba(5, 28, 25, 0.24);
      backdrop-filter: blur(5px);
      color: var(--white);

      .hero-side-kicker {
        display: inline-block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #e6ff9f;
      }

      h3 {
        margin: 0 0 0.5rem;
        font-size: 1.35rem;
        font-weight: 600;
        line-height: 1.2;
      }

      p {
        margin: 0;
        font-size: 0.98rem;
        line-height: 1.5;
      }
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(1px);

      &.hero-orb--one {
        width: clamp(220px, 24vw, 360px);
        height: clamp(220px, 24vw, 360px);
        left: -5%;
        top: -32%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 70%);
      }

      &.hero-orb--two {
        width: clamp(160px, 18vw, 260px);
        height: clamp(160px, 18vw, 260px);
        right: 22%;
        bottom: -24%;
        background: radial-gradient(circle, rgba(231, 255, 77, 0.3), rgba(231, 255, 77, 0) 72%);
      }
    }

    @media (max-width: 1199px) {
      grid-template-columns: 1fr;
      gap: 1.2rem;

      .hero-content--lifestyle {
        align-items: flex-start;
        text-align: left;
      }

      .hero-side-card {
        max-width: 620px;
      }

      .hero-bck {
        right: -12%;
        height: 92%;
      }
    }

    @media (max-width: 767px) {
      padding: 2.6rem 1rem;

      .hero-content--lifestyle {
        h1 {
          line-height: 1.03;
          max-width: 100%;
        }

        p {
          font-size: 1rem;
        }
      }

      .hero-tags {
        gap: 0.5rem;
      }

      .hero-tag {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
      }

      .hero-side-card {
        padding: 1rem;

        h3 {
          font-size: 1.15rem;
        }

        p {
          font-size: 0.92rem;
        }
      }

      .hero-bck {
        right: -25%;
        opacity: 0.2;
      }
    }
  }

  .home-hero-shell {
    padding: 0;
  }

  .parallax-hero {
    --hero-ribbon: linear-gradient(130deg, #ffe45a 0%, #7bff6b 44%, #4af8ff 100%);
    position: relative;
    min-height: clamp(540px, 90vh, 860px);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    isolation: isolate;
    border-radius: 0 0 28px 28px;
    box-shadow:
      0 42px 72px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(190, 255, 220, 0.2) inset;
  }

  .parallax-hero__video,
  .parallax-hero__wash,
  .parallax-hero__glow,
  .parallax-hero__streak,
  .parallax-hero__grain {
    position: absolute;
    inset: 0;
  }

  .parallax-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    filter: contrast(1.08) saturate(1.14);
  }

  .parallax-hero__wash {
    background:
      radial-gradient(circle at 12% 14%, rgba(255, 228, 90, 0.3), transparent 32%),
      radial-gradient(circle at 88% 85%, rgba(74, 248, 255, 0.3), transparent 34%),
      linear-gradient(120deg, rgba(0, 15, 13, 0.2), rgba(4, 18, 15, 0.64) 42%, rgba(1, 5, 11, 0.86));
    z-index: 1;
  }

  .parallax-hero__grain {
    z-index: 2;
    opacity: 0.32;
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 0.7px, transparent 0.7px);
    background-size: 3px 3px;
    mix-blend-mode: soft-light;
    pointer-events: none;
  }

  .parallax-hero__glow {
    border-radius: 999px;
    z-index: 3;
    filter: blur(3px);
    animation: heroPulse 5.5s ease-in-out infinite alternate;
  }

  .parallax-hero__glow--one {
    width: clamp(200px, 25vw, 360px);
    height: clamp(200px, 25vw, 360px);
    top: -22%;
    left: -8%;
    background: radial-gradient(circle, rgba(249, 255, 189, 0.7), rgba(249, 255, 189, 0));
  }

  .parallax-hero__glow--two {
    width: clamp(160px, 20vw, 260px);
    height: clamp(160px, 20vw, 260px);
    right: 7%;
    bottom: -16%;
    background: radial-gradient(circle, rgba(119, 245, 255, 0.58), rgba(119, 245, 255, 0));
    animation-delay: 1.1s;
  }

  .parallax-hero__streak {
    z-index: 3;
    pointer-events: none;
    opacity: 0.65;
  }

  .parallax-hero__streak--one {
    inset: auto -14% 20% auto;
    width: clamp(220px, 26vw, 460px);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 238, 97, 0.95), transparent);
    transform: rotate(-14deg);
    box-shadow: 0 0 26px rgba(255, 238, 97, 0.75);
  }

  .parallax-hero__streak--two {
    inset: 28% auto auto -18%;
    width: clamp(170px, 18vw, 320px);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(78, 247, 255, 0.95), transparent);
    transform: rotate(20deg);
    box-shadow: 0 0 22px rgba(78, 247, 255, 0.72);
  }

  .parallax-hero__inner {
    position: relative;
    z-index: 4;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
    align-items: end;
    gap: clamp(1.2rem, 4vw, 3.5rem);
    padding-block: clamp(6.2rem, 12vh, 8.6rem) clamp(2.4rem, 5vh, 4rem);
  }

  .parallax-hero__content,
  .parallax-hero__card {
    transition:
      transform 0.22s linear,
      opacity 0.45s ease,
      filter 0.45s ease;
  }

  .parallax-hero__content {
    opacity: 0;
    transform: translateY(26px);
    max-width: 760px;

    h1 {
      color: #faffff;
      font-size: clamp(2.4rem, 7vw, 6.2rem);
      line-height: 0.9;
      letter-spacing: -0.03em;
      text-transform: uppercase;
      text-wrap: balance;
      margin-bottom: 1rem;
      text-shadow:
        0 16px 30px rgba(2, 7, 10, 0.34),
        0 0 22px rgba(155, 255, 193, 0.18);
    }

    p {
      color: rgba(244, 255, 251, 0.92);
      max-width: 58ch;
      font-size: clamp(1rem, 1.5vw, 1.22rem);
      margin: 0;
      line-height: 1.52;
      text-wrap: pretty;
    }
  }

  .parallax-hero__kicker {
    display: inline-flex;
    margin-bottom: 1.2rem;
    padding: 0.42rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #ecfff3;
    font-weight: 700;
    background: rgba(7, 30, 24, 0.46);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 0 1px rgba(227, 255, 238, 0.18) inset;
  }

  .parallax-hero__ticker {
    margin-top: 1.2rem;
    display: flex;
    gap: 1.3rem;
    width: min(100%, 660px);
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);

    span {
      color: rgba(235, 255, 246, 0.9);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.76rem;
      font-weight: 700;
      animation: heroTicker 12s linear infinite;
    }
  }

  .parallax-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .parallax-hero__ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #f1fff8;
    border-color: rgba(214, 255, 226, 0.62);
    box-shadow: 5px 5px 0 rgba(7, 22, 18, 0.74);
  }

  .parallax-hero__card {
    opacity: 0;
    transform: translateY(32px);
    border-radius: 20px;
    border: 1px solid rgba(220, 255, 229, 0.32);
    background: linear-gradient(150deg, rgba(8, 37, 34, 0.82), rgba(3, 13, 18, 0.78)), rgba(5, 25, 23, 0.64);
    backdrop-filter: blur(9px);
    color: #effff8;
    padding: 1.2rem;
    box-shadow:
      0 26px 38px rgba(0, 6, 5, 0.44),
      0 0 0 1px rgba(224, 255, 235, 0.1) inset;

    h3 {
      font-size: 1.35rem;
      margin: 0.3rem 0 0.7rem;
      font-weight: 600;
    }

    p {
      margin: 0;
      font-size: 0.96rem;
      line-height: 1.52;
      color: rgba(239, 255, 248, 0.88);
    }
  }

  .parallax-hero__card-kicker {
    display: inline-flex;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #082b22;
    background: var(--hero-ribbon);
    box-shadow: 0 5px 16px rgba(255, 227, 95, 0.35);
  }

  .parallax-hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.1rem;

    div {
      border-radius: 14px;
      border: 1px solid rgba(200, 255, 225, 0.26);
      padding: 0.68rem;
      background: rgba(6, 35, 29, 0.52);
    }

    strong {
      display: block;
      font-size: 1.3rem;
      color: #eeff99;
      line-height: 1;
      margin-bottom: 0.2rem;
    }

    span {
      display: block;
      color: rgba(234, 255, 247, 0.88);
      font-size: 0.8rem;
      line-height: 1.2;
    }
  }

  .parallax-hero.is-visible {
    .parallax-hero__content,
    .parallax-hero__card {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
  }

  @media (max-width: 1023px) {
    .parallax-hero__inner {
      grid-template-columns: 1fr;
      align-items: end;
      padding-top: clamp(6rem, 18vw, 7.2rem);
    }

    .parallax-hero__card {
      max-width: 460px;
    }
  }

  @media (max-width: 767px) {
    .parallax-hero {
      min-height: 86vh;
      border-radius: 0 0 22px 22px;
    }

    .parallax-hero__inner {
      padding-bottom: 2.2rem;
    }

    .parallax-hero__content {
      max-width: 350px;
      width: 100%;
      h1 {
        line-height: 1;
      }
    }

    .parallax-hero__ticker {
      margin-top: 0.9rem;

      span {
        font-size: 0.68rem;
      }
    }

    .parallax-hero__actions {
      flex-direction: column;
      .btn {
        min-width: 170px;
      }
    }

    .parallax-hero__stats {
      grid-template-columns: 1fr;
    }
    .parallax-hero__card {
      max-width: 300px;
      width: 100%;
    }
  }

  @media (max-width: 650px) {
    .parallax-hero__inner {
      padding-top: 8rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .parallax-hero__content,
    .parallax-hero__card,
    .parallax-hero__video,
    .parallax-hero__glow,
    .parallax-hero__streak,
    .parallax-hero__ticker span {
      transition: none;
      animation: none;
      transform: none !important;
    }
  }

  @keyframes heroPulse {
    0% {
      transform: scale(1) translate3d(0, 0, 0);
      opacity: 0.75;
    }

    100% {
      transform: scale(1.16) translate3d(0, -8px, 0);
      opacity: 0.48;
    }
  }

  @keyframes heroTicker {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-120%);
    }
  }

  .login-text {
    h2 {
      font-size: 2.5rem;
      font-weight: 200;
      margin: 0 0 30px;

      @media screen and (max-width: 767px) {
        font-size: 2rem;
      }

      span {
        font-size: 1.25rem;
        margin-bottom: 10px;
        color: var(--primary);
        text-transform: uppercase;
        display: block;
      }
    }
  }

  .highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    margin-top: 30px;

    li {
      display: flex;
      align-items: center;
      gap: 15px;
      border-bottom: 1px solid var(--light-gray);
      font-size: 1.25rem;
      font-weight: 500;
      padding-bottom: 20px;
      margin: 0 0 20px;

      span {
        color: var(--primary);
        font-size: 1.5rem;
        font-weight: 600;
      }
    }
  }

  .card {
    background: var(--light-gray);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius-2);
  }

  .banner {
    padding-block: 8rem;
    background-size: cover;
    position: relative;

    video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    &::after {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 0;
      background:
        radial-gradient(circle at 12% 14%, rgba(255, 228, 90, 0.3), transparent 32%),
        radial-gradient(circle at 88% 85%, rgba(74, 248, 255, 0.3), transparent 34%),
        linear-gradient(120deg, rgba(0, 15, 13, 0.2), rgba(4, 18, 15, 0.64) 42%, rgba(1, 5, 11, 0.86));
    }

    .banner-content {
      position: relative;
      z-index: 1;

      .banner-text {
        text-align: center;
        font-size: 3.25rem;
        color: var(--white);

        font-weight: 300;

        @media screen and (max-width: 1199px) {
          font-size: 2.5rem;
        }

        @media screen and (max-width: 767px) {
          font-size: 2rem;
        }

        span {
          display: block;
          font-size: 4rem;
          color: var(--primary);
          font-weight: 200;

          @media screen and (max-width: 1199px) {
            font-size: 3.5rem;
          }

          @media screen and (max-width: 767px) {
            font-size: 3rem;
          }
        }
      }
    }
  }

  .login-lifestyle-page {
    .page_hero.login {
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.2), transparent 38%),
        linear-gradient(125deg, #0f766e 0%, #12a36d 52%, #22c55e 100%);

      .hero-content.login-page {
        max-width: 620px;
      }
    }

    .login-page {
      .eyebrow {
        display: inline-block;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 999px;
        padding: 0.35rem 0.85rem;
        background: rgba(255, 255, 255, 0.1);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 600;
      }

      h1 {
        font-size: clamp(2.4rem, 6.2vw, 4.75rem) !important;
        line-height: 0.98;
        letter-spacing: -0.02em;
      }

      p {
        font-size: 1.17rem;
        max-width: 550px;
        line-height: 1.5;
      }
    }

    .hero-glow {
      position: absolute;
      width: clamp(220px, 34vw, 460px);
      height: clamp(220px, 34vw, 460px);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.02) 68%);
      top: -16%;
      left: -10%;
      z-index: 0;
      pointer-events: none;
      animation: glowFloat 8s ease-in-out infinite;
    }

    .login-card {
      align-items: stretch;
      position: relative;

      > .d-flex.flex-wrap {
        flex: 1;
        min-width: 0;
      }
    }

    .card-content {
      background: linear-gradient(165deg, #fff, #f3faf5);
      border: 1px solid rgba(15, 118, 110, 0.16);
      border-radius: var(--border-radius-2);
      padding: clamp(1.2rem, 3vw, 2rem);
      box-shadow: 0 14px 30px rgba(15, 118, 110, 0.08);
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 320px;

      p {
        line-height: 1.5;
      }
    }

    .cat-box {
      flex: 0 0 calc(50% - 10px);
      padding: 34px 24px;
      border-radius: var(--border-radius-2);
      text-align: left;
      min-height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-sizing: border-box;
      border: 1px solid rgba(15, 118, 110, 0.18);
      background: linear-gradient(135deg, #ffffff, #f7fdf8);
      transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

      &:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 26px rgba(15, 118, 110, 0.12);
      }

      h2 {
        font-size: 1.5rem;
        font-weight: 600;
        margin: 0 0 10px;
      }

      p {
        margin: 0;
      }

      @media (max-width: 767px) {
        flex: 1;
      }
    }

    .cat-box.box-a,
    .cat-box.box-c {
      transform: translateY(-8px);
    }

    .cat-box.box-b,
    .cat-box.box-d {
      transform: translateY(8px);
    }

    .highlight-list li {
      align-items: flex-start;
      line-height: 1.35;

      span {
        margin-top: 2px;
      }
    }

    .lifestyle-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
    }

    .chip {
      border: 1px solid var(--gray);
      border-radius: 999px;
      background: linear-gradient(145deg, #ffffff, #f2f8f3);
      color: var(--secondary);
      font-size: 0.95rem;
      font-weight: 600;
      padding: 0.55rem 1rem;
      margin: 0;
    }

    .lifestyle-pillars {
      h2 {
        font-size: clamp(2rem, 3.8vw, 2.8rem);
        font-weight: 300;
        letter-spacing: -0.02em;

        &::after {
          content: "";
          display: block;
          width: 74px;
          height: 4px;
          border-radius: 999px;
          margin-top: 0.7rem;
          background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
        }
      }

      .lifestyle-pillar-card {
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(15, 118, 110, 0.2);
        border-radius: 20px;
        padding: clamp(1.2rem, 2.6vw, 1.8rem);
        background:
          radial-gradient(circle at 90% -10%, rgba(20, 184, 166, 0.15), transparent 42%),
          linear-gradient(160deg, #ffffff 0%, #f1fbf5 100%);
        box-shadow: 0 14px 30px rgba(15, 118, 110, 0.1);
        transition:
          transform 0.22s ease,
          box-shadow 0.22s ease,
          border-color 0.22s ease;

        &:hover {
          transform: translateY(-6px);
          box-shadow: 0 18px 34px rgba(15, 118, 110, 0.15);
          border-color: rgba(15, 118, 110, 0.35);
        }

        h3 {
          margin: 0.3rem 0 0.55rem;
          font-size: 1.5rem;
          font-weight: 600;
          color: #12453f;
        }

        p {
          margin: 0;
          color: #4d5d66;
          line-height: 1.5;
          min-height: 90px;
        }

        .btn {
          margin-top: 1.15rem;
          min-width: 170px;
        }
      }

      .category-card__icon {
        width: 56px;
        height: 56px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        border: 1px solid rgba(15, 118, 110, 0.16);
        background: linear-gradient(145deg, #ffffff, #e9f8f2);
        box-shadow: 0 8px 20px rgba(15, 118, 110, 0.12);
      }

      @media (max-width: 991px) {
        .lifestyle-pillar-card p {
          min-height: auto;
        }
      }

      @media (max-width: 767px) {
        h2::after {
          width: 58px;
          height: 3px;
        }

        .lifestyle-pillar-card {
          padding: 1.2rem 1rem;

          h3 {
            font-size: 1.35rem;
          }

          p {
            font-size: 0.98rem;
          }

          .btn {
            min-width: 150px;
          }
        }
      }
    }

    .lifestyle-alt-squares {
      .alt-square-row {
        position: relative;
        border-radius: clamp(18px, 3vw, 28px);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.28);
        margin-bottom: 1.35rem;
        background: linear-gradient(125deg, #0f766e 0%, #10a371 52%, #22c55e 100%);
        box-shadow: 0 18px 34px rgba(15, 118, 110, 0.2);
        isolation: isolate;

        &:last-child {
          margin-bottom: 0;
        }

        &::before {
          content: "";
          position: absolute;
          inset: 0;
          background:
            radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.28), transparent 44%),
            radial-gradient(circle at 80% 86%, rgba(225, 255, 77, 0.18), transparent 36%);
          pointer-events: none;
          z-index: 0;
        }

        > .flex-1 {
          position: relative;
          z-index: 1;
          min-width: 0;
        }

        img {
          width: 100%;
          height: 100%;
          min-height: 320px;
          object-fit: cover;
          object-position: center;
          filter: saturate(1.08) contrast(1.02);
        }

        &.is-reverse {
          background: linear-gradient(125deg, #14532d 0%, #0f766e 56%, #0b3a63 100%);
        }
      }

      .alt-square-copy {
        background: linear-gradient(160deg, rgba(8, 32, 28, 0.52), rgba(8, 32, 28, 0.34));

        .p-all {
          padding: clamp(1.4rem, 2.6vw, 2.2rem);
        }

        h3 {
          font-size: clamp(1.7rem, 2.6vw, 2.35rem);
          letter-spacing: -0.02em;
          margin-bottom: 0.7rem;

          span {
            color: #e1ff4d;
          }
        }

        p {
          margin: 0;
          color: rgba(255, 255, 255, 0.9);
          line-height: 1.55;
          max-width: 60ch;
        }

        .btn {
          margin-top: 1.25rem;
        }
      }

      @media (max-width: 991px) {
        .alt-square-row {
          img {
            min-height: 260px;
          }
        }
      }

      @media (max-width: 767px) {
        .alt-square-row {
          border-radius: 18px;
          margin-bottom: 1rem;

          img {
            min-height: 220px;
          }
        }

        .alt-square-copy {
          .p-all {
            padding: 1.2rem 1rem;
          }

          h3 {
            font-size: 1.55rem;
          }

          p {
            font-size: 0.98rem;
          }
        }
      }
    }

    .btn-img {
      border-radius: 20px;
      border: 1px solid rgba(15, 118, 110, 0.14);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

      img {
        aspect-ratio: 5 / 6;
        width: 100%;
        max-width: 240px;
        object-fit: cover;
      }

      &:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
      }
    }

    .banner-quote {
      background: rgba(255, 255, 255, 0.75);
      border: 1px solid rgba(15, 118, 110, 0.2);
      border-radius: var(--border-radius-2);
      padding: 1.2rem 1.5rem;
      font-size: 1.05rem;
      max-width: 740px;
      margin: 0;
      text-align: center;
    }

    @media (max-width: 1199px) {
      .login-card {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;

        > .d-flex.flex-wrap {
          width: 100%;
          gap: 1rem;
          justify-content: center;
        }
      }

      .page_hero.login .hero-content.login-page {
        max-width: 100%;
      }

      .card-content {
        min-width: 100%;
        text-align: center;
        align-items: center;

        .btn {
          min-width: 220px;
        }
      }

      .cat-box {
        flex: 0 0 calc(50% - 0.5rem);
        min-height: 180px;
      }
    }

    @media (max-width: 767px) {
      .hero-glow {
        width: 260px;
        height: 260px;
        top: -10%;
        left: -18%;
      }

      .login-page h1 {
        line-height: 1.02;
      }

      .card-content {
        min-width: 100%;
        padding: 1.25rem;
      }

      .cat-box.box-a,
      .cat-box.box-b,
      .cat-box.box-c,
      .cat-box.box-d {
        transform: none;
      }

      .login-card {
        gap: 1.2rem;

        > .d-flex.flex-wrap {
          gap: 0.85rem;
        }
      }

      .cat-box {
        flex: 1 1 100%;
        min-height: auto;
        padding: 1.2rem 1rem;
      }

      .cat-box h2 {
        font-size: 1.3rem;
      }

      .cat-box p {
        font-size: 1rem;
        line-height: 1.45;
      }

      .btn-img img {
        max-width: 180px;
      }
    }
  }

  @keyframes glowFloat {
    0%,
    100% {
      transform: translateY(0) scale(1);
      opacity: 0.9;
    }

    50% {
      transform: translateY(12px) scale(1.04);
      opacity: 0.65;
    }
  }

  /* Hero Payment  */

  .hero_payment {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    /* Price Cards Payment  */

    .price_cards {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 40px;
      padding: 40px 0 60px;

      h1 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 0px;
        text-transform: uppercase;
      }

      .pricing-toggle {
        display: flex;
        justify-content: center;
        width: 90%;
        max-width: 720px;
        margin: 0 auto;
        overflow: hidden;
        gap: 10px;

        .pricing-option {
          background-color: var(--dark-gray);
          padding: 20px 30px;
          cursor: pointer;
          transition:
            background-color 0.3s,
            color 0.3s,
            border-color 0.3s;
          border-radius: 8px;
          border: solid 1px var(--modal-border);
          flex: 1;
          color: var(--white);
          justify-content: space-between;
          gap: 20px;

          @media screen and (max-width: 767px) {
            padding: 15px;
            gap: 30px;
          }

          .pricing-price {
            text-align: right;
          }

          .plan-name {
            line-height: 30px;
            text-align: left;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--white);

            @media screen and (max-width: 767px) {
              font-size: 21px;
            }
          }

          .price {
            line-height: 30px;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 5px;
            color: var(--primary);

            @media screen and (max-width: 767px) {
              font-size: 24px;
            }
          }

          .duration {
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            line-height: normal;
            margin-bottom: 0;
            color: var(--gray);
          }

          .details {
            font-size: 14px;
            line-height: normal;
            margin-bottom: 0;
            color: var(--gray);
          }

          &.active {
            border: solid 1px var(--primary);
            background-color: rgba(16, 184, 65, 0.1);

            .plan-name {
              color: var(--primary);
            }

            .price {
              color: var(--primary);
            }

            .duration,
            .details {
              color: var(--secondary);
            }
          }
        }
      }
    }

    .headpart {
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      background-color: var(--light-gray);
      padding: 60px 0;

      h1 {
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 30px;
        text-align: center;
      }

      .flex-container-col {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }

      .checkbox-group {
        margin-bottom: 15px;
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;

        .checkbox-group input[type="checkbox"] {
          margin-top: 5px;
        }

        label {
          font-size: 14px;
          line-height: 1.5;
          display: block;
          margin-left: 10px;
          position: relative;
        }
      }

      .btn {
        padding: 18px;
        font-size: 30px;
        font-weight: 700;
        line-height: 30px;
        margin: 30px auto;
        display: block;
        width: 100%;
        max-width: 360px;

        &:disabled {
          border: none;
          cursor: not-allowed;
          box-shadow: none;
          opacity: 0.5;

          &:hover {
            transform: none;
          }
        }
      }
    }
  }

  /* Slider  */

  /* CONTAINER */
  .slider {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    overflow: hidden;
    position: relative;
    aspect-ratio: 2 / 1;
    border-radius: var(--border-radius-3);

    @media (max-width: 767px) {
      min-height: 70vh;
      border-radius: var(--border-radius-2);
    }

    .slides {
      display: flex;
      height: 100%;
      transition: transform 0.8s ease-in-out;

      /* Safari fix */
      will-change: transform;
      transform: translate3d(0, 0, 0);

      .slide {
        flex: 0 0 100%;
        height: 100%;
        position: relative;
        overflow: hidden;

        &::after {
          content: "";
          position: absolute;
          inset: 0;
          background: rgba(0, 0, 0, 0.3);
          z-index: 1;
        }

        .content {
          position: absolute;
          z-index: 2;
          top: 50%;
          left: 10%;
          transform: translateY(-50%);
          color: white;
          max-width: 600px;
          width: 80%;

          @media (max-width: 767px) {
            left: 5%;
          }

          h1 {
            font-size: 3rem;
            margin-bottom: 10px;

            @media (max-width: 767px) {
              font-size: 2rem;
            }
          }

          p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            line-height: 1.5;

            @media (max-width: 1199px) {
              font-size: 1rem;
              display: -webkit-box;
              -webkit-box-orient: vertical;
              -webkit-line-clamp: 3;
              overflow: hidden;
            }
          }

          .btn {
            padding: 10px 20px;
          }
        }

        .bg {
          width: 100%;
          height: 100%;
          object-fit: cover;
          /* fills nicely */
          object-position: center;
          display: block;

          /* Safari rendering fix */
          transform: scale(1.01);
        }
      }
    }

    .dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 3;

      .dot {
        width: 12px;
        height: 12px;
        background: white;
        opacity: 0.5;
        border-radius: 50%;
        cursor: pointer;

        &.active {
          opacity: 1;
        }
      }
    }
  }

  .home-video-content {
    .home-text-container {
      max-width: 420px;
    }

    .category_card {
      position: relative;
      max-width: 100%;

      @media screen and (max-width: 1199px) {
        max-width: 162px;
      }

      &::before {
        content: "";
        background: url(../images/icons/icon-play.svg) center center no-repeat;
        background-size: cover;
        position: absolute;
        top: calc(50% - 22px);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 60px;
        height: 60px;
        display: block;
      }

      img {
        height: 280px;
        object-fit: cover;
        max-width: 100%;

        @media screen and (max-width: 1199px) {
          height: 180px;
        }
      }
    }
  }

  .home-lifestyle-page {
    background: linear-gradient(180deg, #fffdf8 0%, #f8f4ea 42%, #eef8f3 100%);

    .home-hero-shell {
      padding-bottom: 1rem;

      .wrapper {
        position: relative;

        &::after {
          content: "";
          position: absolute;
          inset: auto -10% -24% auto;
          width: 280px;
          height: 280px;
          border-radius: 50%;
          background: radial-gradient(circle, rgba(231, 255, 77, 0.25), rgba(231, 255, 77, 0));
          pointer-events: none;
        }
      }
    }

    .home-panel {
      margin-top: clamp(1.2rem, 2.5vw, 2.2rem);
    }

    .home-panel > .wrapper,
    .home-panel {
      position: relative;
      overflow: hidden;
      border-radius: 30px;
      border: 1px solid rgba(17, 95, 80, 0.2);
      padding: clamp(1.3rem, 3vw, 2.6rem);
      box-shadow: 0 24px 42px -24px rgba(19, 56, 48, 0.35);
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 247, 0.92));

      &::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: inherit;
        pointer-events: none;
        background:
          radial-gradient(circle at 15% 12%, rgba(245, 158, 11, 0.14), transparent 34%),
          radial-gradient(circle at 88% 82%, rgba(15, 157, 132, 0.12), transparent 30%);
      }

      > * {
        position: relative;
        z-index: 1;
      }
    }

    .panel-fitness > .wrapper {
      border-left: 10px solid rgba(245, 158, 11, 0.55);
      background: linear-gradient(170deg, #fffef9 0%, #fdf6ea 95%);
    }

    .panel-nutrition > .wrapper {
      border-left: 10px solid rgba(15, 157, 132, 0.56);
      background: linear-gradient(170deg, #fbfffd 0%, #ecf9f4 92%);
    }

    .panel-wellness {
      border-left: 10px solid rgba(12, 107, 95, 0.45);
      background: linear-gradient(170deg, #f9fffd 0%, #edf7f2 92%);
    }

    .home-video-content {
      display: grid;
      grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
      align-items: start;
      gap: clamp(1rem, 2.4vw, 2rem);
    }

    .home-text-container {
      align-self: start;

      .subtitle {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        border-radius: 999px;
        border: 1px solid rgba(17, 95, 80, 0.2);
        background: rgba(255, 255, 255, 0.75);
        color: #0d5d52;
        padding: 0.4rem 0.9rem;
        margin-bottom: 0.9rem;
      }

      h2 {
        font-size: clamp(2.15rem, 4.2vw, 3.45rem);
        line-height: 0.95;
        margin-bottom: 0.9rem;
        text-wrap: balance;
      }

      p {
        max-width: 50ch;
        line-height: 1.62;
        color: #3f5a56;
      }

      .btn {
        margin-top: 1.45rem;
      }
    }

    .app-section {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
      padding-bottom: 0.2rem;

      > a {
        min-width: 0;
      }
    }

    .category_card {
      position: relative;
      border-radius: 18px;
      border: 1px solid rgba(17, 95, 80, 0.24);
      background: linear-gradient(170deg, #ffffff 0%, #f1f8f2 100%);
      box-shadow: 0 16px 28px -18px rgba(12, 52, 45, 0.5);
      padding: 0.6rem;
      overflow: hidden;
      transition:
        transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;

      img {
        width: 100%;
        height: clamp(170px, 20vw, 260px);
        border-radius: 12px;
        object-fit: cover;
      }

      .cardsTitle {
        width: 100%;
        font-size: 0.92rem;
        line-height: 1.3;
        color: #153f38;
        margin: 0.7rem 0.25rem 0.2rem;
      }

      &:hover {
        transform: translateY(-8px) rotate(-0.2deg);
        border-color: rgba(17, 95, 80, 0.48);
        box-shadow: 0 30px 36px -24px rgba(12, 52, 45, 0.55);
      }
    }

    .home-video-content .category_card {
      &::before {
        content: "";
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background-color: rgba(255, 255, 255, 0.94);
        background-size: 22px;
        position: absolute;
        top: 14px;
        left: 14px;
        transform: none;
        box-shadow: 0 8px 20px rgba(16, 44, 38, 0.2);
      }
    }

    .home-audio-content {
      .home-text-container {
        max-width: 760px;
      }

      .app-section {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .category_card {
        &::before {
          content: "";
          width: 46px;
          height: 46px;
          border-radius: 12px;
          background-color: rgba(12, 107, 95, 0.85);
          background-size: 22px;
          position: absolute;
          top: 14px;
          left: 14px;
          transform: none;
          box-shadow: 0 10px 18px rgba(12, 52, 45, 0.3);
        }
      }
    }

    .audio-item {
      border: 1px solid rgba(17, 95, 80, 0.2);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.86);
      padding: 0.95rem 1rem;
      transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;

      img {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(15, 157, 132, 0.12);
        padding: 0.5rem;
      }

      h3 {
        margin: 0;
        line-height: 1.32;
        color: #164741;
      }

      &:hover {
        transform: translateX(6px);
        border-color: rgba(17, 95, 80, 0.45);
        box-shadow: 0 14px 24px -20px rgba(19, 56, 48, 0.8);
      }
    }

    .article-item {
      border: 1px solid rgba(17, 95, 80, 0.2);
      border-radius: 16px;
      background: linear-gradient(170deg, #fffef9, #f5f8ef);
      padding: 0.95rem;
      transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;

      .article-content h3 {
        color: #163f3a;
      }

      &:hover {
        transform: translateY(-6px);
        border-color: rgba(17, 95, 80, 0.44);
        box-shadow: 0 18px 32px -24px rgba(19, 56, 48, 0.8);
      }
    }

    @media (max-width: 1199px) {
      .home-video-content {
        grid-template-columns: 1fr;
      }

      .app-section,
      .home-audio-content .app-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .category_card img {
        height: 210px;
      }
    }

    @media (max-width: 767px) {
      .home-panel > .wrapper,
      .home-panel {
        border-radius: 20px;
        border-left-width: 6px;
        padding: 1rem;
      }

      .home-text-container h2 {
        font-size: clamp(1.7rem, 8vw, 2.35rem);
      }

      .app-section,
      .home-audio-content .app-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
      }

      .category_card {
        padding: 0.45rem;

        .cardsTitle {
          font-size: 0.84rem;
        }
      }

      .category_card img {
        height: 165px;
      }

      .audio-item {
        padding: 0.75rem;
      }
    }
  }

  .home-audio-content {
    .home-text-container {
      max-width: 800px;
    }

    .category_card {
      position: relative;
      max-width: 100%;

      &::before {
        content: "";
        background: url(../images/icons/icon-audio-white.svg) center center no-repeat;
        background-size: cover;
        position: absolute;
        top: calc(50% - 22px);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 60px;
        height: 60px;
        display: block;
      }

      img {
        height: 300px;
        object-fit: cover;
        max-width: 100%;

        @media screen and (max-width: 1199px) {
          height: 180px;
        }
      }
    }
  }

  /* Fix for category cards layout */

  .audio-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);

    h3 {
      font-size: 1.125rem;
      font-weight: 500;
      margin: 0;
      color: var(--black);
    }
  }

  .audio-image-container {
    max-width: 360px;
    height: auto;

    img {
      border-radius: var(--border-radius-3);
    }
  }

  .article-item {
    max-width: 100%;

    .article-img-container {
      width: 120px;
      min-width: 120px;
      height: 120px;
      overflow: hidden;
      border-radius: var(--border-radius-2);

      @media (max-width: 767px) {
        width: 100%;
      }

      img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
      }
    }

    .article-content {
      max-width: 100%;
      min-width: 0;

      h3 {
        font-size: 1.25rem;
        font-weight: 500;
        margin: 0;
        color: var(--black);
        overflow: hidden;
        white-space: nowrap;
        /* Don't forget this one */
        text-overflow: ellipsis;
      }

      .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.85rem;
        /* min-width: 180px; */
      }
    }

    .excerpt {
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;

      h1,
      h2,
      h3,
      h4,
      p,
      ul li,
      ol,
      li {
        font-size: 0.9rem;
        color: var(--dark-gray);
        margin: 0;
      }
    }
  }

  .book-item {
    width: calc(25% - 23.3333px);

    @media (max-width: 767px) {
      width: calc(50% - 15px);
    }

    @media (max-width: 374px) {
      width: 100%;
    }

    .book-img-container {
      height: 240px;
      min-width: 100%;
      overflow: hidden;
      border-radius: var(--border-radius-2);

      @media (max-width: 767px) {
        height: 200px;
      }

      img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
      }
    }

    .book-content {
      width: 100%;

      h3 {
        font-size: 1.125rem;
        font-weight: 500;
        margin: 0;
        color: var(--white);
        font-family: "Inter", sans-serif;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
      }

      .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.85rem;
        margin-top: 0.5rem;
        min-width: 180px;
      }
    }

    .excerpt {
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;

      h1,
      h2,
      h3,
      h4,
      p,
      ul li,
      ol,
      li {
        font-size: 0.9rem;
        color: var(--gray);
        margin: 0;
      }
    }
  }

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }

  .category_card:hover .video-overlay {
    opacity: 1;
  }

  .card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Button transition effects */

  .see-more-btn,
  .see-less-btn {
    transition: all 0.3s ease;
    border: 2px solid var(--gray);
    color: var(--primary);
    background: transparent;
    padding: 0.75rem 2rem;
    margin-block: 20px;
  }

  .see-more-btn:hover,
  .see-less-btn:hover {
    transform: translateY(-3px);
  }

  .hidden-items:empty {
    display: none !important;
  }

  /* Item appear animation */

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Category Cards */

  .category_card {
    width: 100%;
    min-width: 150px;
    transition: transform 0.3s ease-in-out;
    margin: 0;
    max-width: 162px;

    @media screen and (max-width: 1199px) {
      margin-inline: auto;
    }

    &:hover {
      transform: translateY(-4px);

      img {
        filter: brightness(1) grayscale(0) contrast(1);
      }
    }

    img {
      width: 100%;
      height: 210px;
      overflow: hidden;
      border-radius: var(--border-radius-3);
      object-fit: cover;
      transition: all 0.3s ease-in-out;
      filter: brightness(0.5) grayscale(0.25) contrast(1.1);
    }

    .cardsTitle {
      padding-top: 1rem;
      font-weight: 600;
      color: var(--black);
      width: 80%;
      font-size: 0.8rem;
      z-index: 2;
      margin: 0;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
    }
  }

  .app-section,
  #app-section {
    display: flex;
    gap: 1rem;
    justify-items: center;
    overflow-x: auto;
    padding-bottom: 20px;
    flex-wrap: wrap;

    > a {
      flex: 1;
    }
  }

  .pic-container {
    max-width: 360px;
    height: auto;

    img {
      border-radius: var(--border-radius-3);
    }
  }

  /* Categorie Pills  */

  .features-bar {
    margin: 0;
    flex-wrap: wrap;

    @media screen and (max-width: 767px) {
      justify-content: center;
    }

    .labels {
      .item-label {
        display: inline-block;
        padding: 5px 10px;
        background: var(--primary);
        color: var(--black);
        font-weight: 600;

        border-radius: 5px;
        max-height: fit-content;
        overflow: hidden;
        white-space: nowrap;
        /* Don't forget this one */
        text-overflow: ellipsis;
      }
    }

    .rating {
      display: flex;
      align-items: center;
      gap: 5px;

      > img {
        width: 15px;
      }

      > span {
        font-size: 1.5em;
      }
    }
  }

  /* Scrollbar  */

  /* width */
  ::-webkit-scrollbar {
    width: 15px;
    height: 5px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(128, 128, 128, 0.329);
    border-radius: 10px;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #2c2c2c;
    border-radius: 10px;
  }

  /* Section Picker */

  .section_picker {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    max-width: 100%;

    @media screen and (max-width: 767px) {
      flex-direction: column;
    }

    button {
      padding: 30px;
      background: transparent;
      width: 100%;
      transition: 0.2s;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: all 0.2s ease-out;
      border-radius: var(--border-radius-2);
      text-align: left;
      background: var(--secondary);
      border: none;

      @media screen and (max-width: 767px) {
        background-size: 50% !important;
      }

      &:hover {
        transform: scale(1.05);
        background: var(--primary);
      }

      &.active {
        cursor: default;
        transform: none !important;
      }

      span {
        font-weight: 600;
        font-size: 1.25rem;
      }

      p {
        font-size: 1.5rem;
        font-weight: 100 !important;
        margin: 0 0 10px;
        max-width: 80%;

        @media screen and (max-width: 767px) {
          max-width: 100%;
        }
      }

      .btn {
        font-size: 1.25rem;
      }

      &:nth-of-type(1) {
        background: var(--secondary) url(../images/picker-bck-recipes.png) no-repeat bottom right;
        background-size: 33.33%;

        &.active {
          background: var(--primary) url(../images/picker-bck-recipes.png) no-repeat bottom right;
        }
      }

      &:nth-of-type(2) {
        background: var(--secondary) url(../images/picker-bck-videos.png) no-repeat bottom right;
        background-size: 33.33%;

        &.active {
          background: var(--primary) url(../images/picker-bck-videos.png) no-repeat bottom right;
        }
      }

      &:nth-of-type(3) {
        background: var(--secondary) url(../images/picker-bck-tips.png) no-repeat bottom right;
        background-size: 33.33%;

        &.active {
          background: var(--primary) url(../images/picker-bck-tips.png) no-repeat bottom right;
        }
      }
    }
  }

  /* Game Modal Styles */

  .game-modal .modal-content,
  .game-modal .modal-header,
  .game-modal .modal-body,
  .game-modal #item-title,
  .game-modal #item-description,
  .game-modal .similar-items-section,
  .game-modal .item-screenshots {
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
    will-change: opacity, transform;
  }

  .game-modal .modal-content.is-switching .modal-header,
  .game-modal .modal-content.is-switching .modal-body {
    opacity: 0;
    transform: translateY(8px);
  }

  .game-modal .video-container video,
  .game-modal .video-container iframe,
  .game-modal .video-container img {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;

    @media (max-width: 767px) {
      aspect-ratio: 1/1;
    }
  }

  .js-item-modal-trigger {
    cursor: pointer;
  }

  .game-modal {
    display: none;
    position: fixed;
    z-index: 1200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: clamp(1rem, 2.8vw, 2.2rem);
    background:
      radial-gradient(circle at 12% 8%, rgba(15, 157, 132, 0.22), transparent 32%),
      radial-gradient(circle at 88% 92%, rgba(245, 158, 11, 0.2), transparent 30%), rgba(12, 27, 25, 0.72);
    backdrop-filter: blur(6px);

    .close {
      position: absolute;
      right: 1rem;
      top: 1rem;
      color: #0d5348;
      font-size: 1.35rem;
      font-weight: 700;
      z-index: 10;
      cursor: pointer;
      background-color: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(17, 95, 80, 0.28);
      width: 36px;
      height: 36px;
      line-height: 34px;
      text-align: center;
      border-radius: 12px;
      transition:
        background-color 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease;

      &:hover {
        background-color: var(--secondary);
        color: var(--white);
        transform: translateY(-2px);
      }
    }

    .modal-header {
      width: 100%;
      position: relative;
      overflow: hidden;
      max-height: 460px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-bottom: 1px solid rgba(17, 95, 80, 0.18);
    }

    .video-container {
      width: 100%;
      background: #0a1513;
    }

    .modal-content {
      position: relative;
      background: linear-gradient(160deg, #fffef9 0%, #f4faf6 100%);
      margin: 0 auto;
      padding: 0;
      width: min(960px, 100%);
      box-shadow: 0 30px 55px rgba(7, 32, 28, 0.38);
      animation: modalFadeIn 0.45s ease;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.38);
      color: #153f38;
    }

    .modal-body {
      padding: clamp(1rem, 2.4vw, 1.7rem);
    }

    .info {
      h2 {
        margin-top: 0;
        margin-bottom: 0.65rem;
        display: block;
        font-size: clamp(1.8rem, 3.2vw, 2.5rem);
        font-weight: 600;
        color: #123f39;
        line-height: 1;
      }

      #item-description {
        font-size: 1rem;
        padding-bottom: 0.7rem;
        line-height: 1.55;
        color: #3e5e58;
      }
    }

    .similar-items-section {
      margin-top: 1.25rem;
      padding-top: 1rem;
      border-top: 1px dashed rgba(17, 95, 80, 0.26);

      h3 {
        margin: 0 0 0.9rem;
        font-size: 0.84rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #486963;
      }
    }

    .similar-items {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;

      @media screen and (max-width: 767px) {
        grid-template-columns: repeat(1, minmax(0, 1fr));
      }

      .similar-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        padding: 0.65rem;
        border: 1px solid rgba(17, 95, 80, 0.18);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.75);
        color: #153f38;
        text-align: left;
        cursor: pointer;
        transition:
          background-color 0.24s ease,
          border-color 0.24s ease,
          transform 0.24s ease,
          box-shadow 0.24s ease;

        &:hover {
          background: #ffffff;
          border-color: rgba(17, 95, 80, 0.32);
          transform: translateY(-2px);
          box-shadow: 0 12px 22px -18px rgba(17, 58, 50, 0.8);
        }

        img {
          width: 56px;
          height: 56px;
          border-radius: 10px;
          object-fit: cover;
          flex-shrink: 0;
        }

        span {
          font-size: 0.88rem;
          font-weight: 600;
          color: #244844;
          line-height: 1.4;
        }
      }
    }

    .game-screenshots {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 0.65rem;
      margin-top: 1rem;
      padding: 0.8rem;
      background: rgba(255, 255, 255, 0.68);
      border: 1px solid rgba(17, 95, 80, 0.15);
      border-radius: 14px;
    }

    .screenshot {
      img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 10px;
        border: 1px solid rgba(17, 95, 80, 0.16);
        cursor: pointer;
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease,
          border-color 0.25s ease;

        &:hover {
          transform: translateY(-2px) scale(1.02);
          border-color: rgba(17, 95, 80, 0.35);
          box-shadow: 0 10px 18px -10px rgba(17, 58, 50, 0.7);
        }
      }
    }

    .modal-footer {
      margin-top: 1rem;
      text-align: center;
    }

    .btn-view-details {
      min-width: 210px;
      margin-block: 0.55rem 0.3rem;
    }
  }

  @keyframes modalFadeIn {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Lightbox Gallery Styles */

  .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 10%, rgba(15, 157, 132, 0.18), transparent 30%), rgba(8, 21, 19, 0.9);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .lightbox-content {
    position: relative;
    width: min(90%, 1200px);
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  }

  .lightbox-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #0d5348;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 95, 80, 0.25);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 12px;
    z-index: 2010;
    transition:
      background-color 0.22s ease,
      color 0.22s ease,
      transform 0.22s ease;
  }

  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #0d5348;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(17, 95, 80, 0.25);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 12px;
    user-select: none;
    z-index: 2010;
    transition:
      background-color 0.22s ease,
      color 0.22s ease,
      transform 0.22s ease;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }

  .lightbox-prev:hover,
  .lightbox-next:hover,
  .lightbox-close:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    color: #0f3b35;
    font-size: 14px;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(17, 95, 80, 0.2);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
  }

  /* Responsive styles */
  @media (max-width: 768px) {
    .game-modal .modal-content {
      width: min(96%, 720px);
      border-radius: 18px;
    }

    .game-modal .game-screenshots {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .game-modal .modal-header {
      max-height: none;
    }

    .game-modal .close {
      right: 0.7rem;
      top: 0.7rem;
    }
  }

  /* Support pages  */

  .contact__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    width: 60%;
    font-size: 1rem;
    line-height: 1.3;

    h2,
    h3 {
      font-size: 1.25rem;
      margin-top: 1rem;
      margin-bottom: 0;
    }

    p,
    ul li {
      margin-bottom: 1rem;
    }

    a {
      color: var(--primary);
      margin-bottom: 1rem;
      font-weight: 600;
      font-size: 1rem;
    }

    @media screen and (max-width: 767px) {
      width: 100%;
      margin-top: 0;
      gap: 0.5rem;

      &label {
        font-size: 0.75rem;
      }
    }
  }

  .title-section {
    margin-top: 120px;
    h1 {
      padding: 3rem 1rem;
      background:
        radial-gradient(circle at 10% 12%, rgba(20, 184, 166, 0.12), transparent 40%),
        radial-gradient(circle at 88% 80%, rgba(225, 255, 77, 0.2), transparent 35%),
        linear-gradient(180deg, #fcfefd 0%, #f3fbf6 100%);
      color: var(--primary);
      border-radius: var(--border-radius-3);

      @media screen and (max-width: 767px) {
        padding: 2rem 1rem;
      }
    }
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    @media screen and (max-width: 767px) {
      margin-top: 0;
      width: 100%;
    }

    p {
      font-size: 0.875rem;
      text-align: center;
    }

    a {
      color: var(--primary);
    }

    label {
      display: flex;
      flex-direction: column;
    }

    input,
    textarea {
      padding: 0.75rem 1rem;
      border: none;
      border-radius: var(--border-radius-2);
      background: var(--light-gray);
      font-size: 1rem;
      color: var(--black);
    }

    .btn {
      width: 100%;
    }
  }

  /* Single Items  */
  .single-item,
  .single-movie {
    h1 {
      font-size: 30px;
      line-height: 1.3;
      font-weight: 600;
      margin-bottom: 10px;
      text-align: left;
      text-wrap: inherit;

      @media screen and (max-width: 767px) {
        font-size: 24px;
        text-align: center;
      }
    }

    h2 {
      font-size: 19px;
      line-height: 20px;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .img-radial {
      width: 100%;
      max-width: 150px;
      height: 100%;
      max-height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      border-radius: var(--border-radius-2);
      overflow: hidden;

      @media screen and (max-width: 767px) {
        max-width: 240px;
        max-height: 240px;
        margin: 0 auto;
      }

      &.large {
        max-width: 100%;

        @media screen and (max-width: 767px) {
          max-height: 200px;
        }
      }

      img {
        width: auto;
        min-height: 150px;
        min-width: 100%;
        border-radius: var(--border-radius-2);
        object-fit: cover;
        filter: brightness(0.7) grayscale(0.5);

        @media screen and (max-width: 767px) {
          min-height: 240px;
        }
      }
    }

    video {
      max-width: 100%;
      border-radius: var(--border-radius-2);
      overflow: hidden;
    }

    .single-video-player {
      width: 100%;
      max-width: 100%;
      border-radius: var(--border-radius-2);
      overflow: hidden;
      background: #000;
    }
    .single-item-info {
      width: 100%;
      padding: 0;

      @media screen and (max-width: 767px) {
        width: 100%;
      }

      p,
      ul li,
      ol li {
        line-height: 24px;
        margin: 0 0 20px !important;
        background: none !important;
        font-size: 16px !important;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        background: none !important;
      }

      h2 {
        font-size: 1.75rem;
        font-weight: 600;
        margin-block: 30px 10px;
      }

      h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-block: 30px 10px;
      }

      video {
        width: 100%;
        height: auto;
        object-fit: cover;
      }

      table {
        width: 100% !important;
        font-size: 15px;
        margin: 20px 0;

        @media screen and (max-width: 767px) {
          display: block;
          /* allows overflow */
          overflow-x: auto;
          /* enable horizontal scroll */
          white-space: nowrap;
          /* prevent cells from breaking */
          width: 100%;
          /* make it responsive */
          -webkit-overflow-scrolling: touch;
          /* smooth scroll on iOS */
        }

        tr {
          td {
            padding: 0.5rem 1rem;
            text-align: left !important;
          }
        }
      }
    }

    .btn {
      @media screen and (max-width: 767px) {
        margin: 0 auto;
      }
    }
  }

  .blog,
  article {
    margin-top: 70px;
    .single-item,
    .single-movie {
      .img-radial {
        max-width: 100%;
        min-height: 300px;

        img {
          width: 100%;
          object-fit: cover;
        }
      }
    }
  }

  .single-movie .single-item-info {
    width: 100%;
  }

  .unsub-container {
    border: 2px solid var(--primary);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    border-radius: var(--border-radius-2);
    margin: 0 auto;

    @media screen and (max-width: 767px) {
      width: 100%;
      padding: 2rem 1rem;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      width: 100%;
      max-width: 420px;

      .form-group {
        padding: 0;
      }

      input {
        padding: 0.75rem 1rem;
        border: 1px solid var(--gray);
        border-radius: var(--border-radius-2);
        width: 100%;
        background: var(--light-gray);
        color: var(--black);
      }

      .btn {
        width: 100%;
      }
    }

    #errorMsg {
      color: var(--gray);
      font-size: 0.875rem;
    }
  }

  .h-captcha {
    overflow: auto;
    max-width: 100%;
  }

  /* Alert styles */
  .alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
  }

  .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
  }

  .alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
  }

  .alert p {
    margin: 0;
  }

  /* Support page */

  .support-page {
    .wrapper[data-width="medium"] {
      --wrapper-max-width: 900px;
    }

    h3 {
      color: var(--primary);
      font-size: 1.25rem;
      margin: 0;

      @media (max-width: 767px) {
        text-align: center;
      }
    }

    h2 {
      font-size: 3rem;
      font-weight: 200;
      margin: 0;

      @media (max-width: 767px) {
        font-size: 2rem;
      }
    }

    a {
      color: var(--white);
      text-decoration: underline;
      font-weight: 600;
      overflow: hidden;
      white-space: nowrap;
      /* Don't forget this one */
      text-overflow: ellipsis;
    }

    .text-large {
      color: var(--gray);
      font-size: 2.125rem;
      font-weight: 300;
      line-height: 1.3;

      @media (max-width: 767px) {
        font-size: 1.75rem;
        text-align: center;
      }
    }

    .tablet-column {
      @media (max-width: 1199px) {
        flex-direction: column;
      }
    }

    .support-video {
      width: 100%;
      height: 100%;
      border-radius: 25px;
    }

    .support-container {
      background: var(--dark-gray);
      position: relative;
      padding: 50px;
      border-radius: 25px;

      @media (max-width: 767px) {
        padding: 30px 20px;
        text-align: center !important;
      }

      &.email-frame {
        text-align: left;
        max-width: 680px;

        img {
          left: auto;
          right: 0;
          top: -20px;
        }

        a {
          font-size: 1.5rem;
          color: var(--white);
          line-height: normal;
          text-decoration: none;
        }
      }

      > .d-flex {
        position: relative;
        z-index: 1;
      }

      > img {
        position: absolute;
        left: 0;
        top: -40px;
        height: 100%;
        width: auto;
        z-index: 0;
        object-fit: contain;
        object-position: top;
        max-width: 280px;
        filter: grayscale(0.75) brightness(1.5);

        @media (max-width: 767px) {
          display: none;
        }
      }

      .support-number {
        font-size: 4rem;
        line-height: 1.25;
        font-weight: 800;
        display: block;
        color: var(--white);
        text-decoration: none;

        @media (max-width: 767px) {
          font-size: 10vw;
        }
      }

      @supports (-webkit-touch-callout: none) {
        @media screen and (max-device-width: 767px) and (-webkit-min-device-pixel-ratio: 2) {
          .support-number {
            color: var(--white) !important;
            text-decoration: none !important;

            a {
              color: var(--white) !important;
              text-decoration: none !important;
            }
          }
        }
      }

      .support-text {
        color: var(--gray);
        display: block;
        font-size: 0.9rem;
      }
    }

    .contact_form {
      padding: 0;
      background: transparent;
      max-width: 100%;

      .form-group {
        width: 100%;
        margin: 0;

        input,
        textarea {
          padding: 15px;
          background: var(--dark-gray) !important;
          color: var(--white);
          border: none !important;
          border-radius: 25px;
          font-family: "Inter", sans-serif;

          &::placeholder {
            color: var(--dark-gray);
          }
        }
      }
    }

    .accordion {
      width: 100%;
      margin: auto;
      overflow: hidden;

      .accordion-item {
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--gray);
        border-radius: 0 !important;

        .accordion-header {
          cursor: pointer;
          padding: 25px 0 10px;
          font-weight: bold;
          display: flex;
          justify-content: space-between;
          align-items: center;

          .arrow {
            color: var(--white);
            transition: transform 0.3s ease;
            margin-right: 10px;
            font-size: 18px;
          }

          span {
            font-size: 1.5rem;
            line-height: 1.3;
            color: var(--white);
            font-weight: 600;
            flex-grow: 1;
            padding-right: 20px;

            @media (max-width: 767px) {
              font-size: 1.25rem;
            }
          }
        }

        .accordion-content {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease;
          padding: 0 0 15px;
          color: var(--gray);

          p {
            margin: 15px 0;
          }
        }

        &.active {
          .accordion-content {
            max-height: 450px;
            /* adjust if answers are long */
            overflow-y: auto;
          }

          .arrow {
            transform: rotate(90deg);
            /* arrow points down when open */
          }
        }
      }
    }
  }

  /* Footer  */

  .backToTopBtn {
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #edf9f2);
    border: 1px solid rgba(15, 118, 110, 0.38);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
      0 10px 20px rgba(15, 118, 110, 0.2),
      0 0 0 3px rgba(20, 184, 166, 0.18);
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    position: fixed;
  }

  #backToTop {
    opacity: 0;
    visibility: hidden;

    &.visible {
      opacity: 1;
      visibility: visible;
    }
  }

  .svgIcon {
    width: 12px;
    transition-duration: 0.3s;
  }

  .svgIcon path {
    fill: var(--secondary);
  }

  .backToTopBtn:hover {
    width: 140px;
    border-radius: 50px;
    transition-duration: 0.3s;
    background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
    align-items: center;
  }

  .backToTopBtn:hover .svgIcon path {
    fill: var(--white);
  }

  .backToTopBtn:hover .svgIcon {
    transition-duration: 0.3s;
    transform: translateY(-200%);
  }

  .backToTopBtn::before {
    position: absolute;
    bottom: -20px;
    content: "Back to Top";
    color: var(--white);
    font-size: 0px;
  }

  .backToTopBtn:hover::before {
    font-size: 13px;
    opacity: 1;
    bottom: unset;
    transition-duration: 0.3s;
  }

  .site-footer-shell {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(15, 118, 110, 0.14);
    background:
      radial-gradient(circle at 10% 12%, rgba(20, 184, 166, 0.12), transparent 40%),
      radial-gradient(circle at 88% 80%, rgba(225, 255, 77, 0.2), transparent 35%),
      linear-gradient(180deg, #fcfefd 0%, #f3fbf6 100%);
    color: var(--dark-gray);
  }

  .site-footer-shell::before {
    content: "";
    position: absolute;
    inset: auto -16% -45% auto;
    width: clamp(240px, 34vw, 420px);
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.14), rgba(15, 118, 110, 0));
    pointer-events: none;
  }

  .site_footer {
    position: relative;
    z-index: 1;
    padding-block: clamp(2.6rem, 5vw, 3.5rem);

    a {
      color: var(--secondary);
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 0.01em;
      transition:
        color 0.25s ease,
        text-decoration-color 0.25s ease;

      &:hover,
      &:focus-visible {
        color: var(--primary);
        text-decoration: underline;
        text-decoration-color: rgba(20, 184, 166, 0.55);
        text-underline-offset: 0.2rem;
      }
    }

    p {
      font-size: 15px;
      line-height: 1.45;
      text-align: center;
      margin-bottom: 1rem;
      color: #46545f;
    }

    .logos img {
      width: 46px;
      height: 46px;
      object-fit: contain;
      border: 1px solid rgba(15, 118, 110, 0.16);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.92);
      padding: 0.35rem;
      box-shadow: 0 8px 16px rgba(15, 118, 110, 0.08);
    }

    .footer_link ul {
      flex-wrap: wrap;
      row-gap: 0.7rem;
    }

    .copyrights p {
      color: #4f5d67;
      font-size: 0.92rem;
      margin: 0;
    }

    @media screen and (max-width: 767px) {
      .footer_link ul {
        flex-direction: column;
        gap: 0.8rem !important;
      }

      .copyrights {
        font-size: 0.875rem;
      }
    }

    .logo_footer {
      max-width: 90px;
      height: auto;
      filter: drop-shadow(0 8px 16px rgba(15, 118, 110, 0.14));
    }

    .disclaimer {
      font-size: 15px;
      line-height: 1.4;
      color: #54626b;
      max-width: 74ch;
    }
  }

  /* Modals  */
  .otp-modal,
  .login-modal,
  .unsub-modal,
  .sign-up-modal {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem;

    @media screen and (max-width: 767px) {
      padding: 1rem;
    }

    .close {
      position: absolute;
      right: 1.25rem;
      top: 1.25rem;
      font-size: 2rem;
      cursor: pointer;
      color: var(--primary);
      line-height: 20px;

      @media screen and (max-width: 767px) {
        right: 1rem;
        top: 1rem;
      }
    }

    form {
      width: 100%;

      .checkbox-group {
        label {
          font-size: 0.875rem;
          display: inline;
        }

        input[type="checkbox"] {
          accent-color: var(--primary);
          min-height: auto !important;
        }
      }

      .checkbox-group {
        &:first-of-type {
          margin-top: 10px;
        }

        label {
          display: inline;
          font-size: 0.875rem;
        }
      }

      input {
        padding: 0.5rem;
        border: 1px solid var(--gray);
        border-radius: var(--border-radius-2);
      }

      .btn {
        width: 100%;
        margin-top: 1rem;
        padding: 0.75rem;
      }

      .form-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 3rem 6rem;

        p {
          font-size: 0.875rem;
          text-align: center;

          &:empty {
            display: none;
          }
        }

        a {
          color: var(--primary);
        }

        @media screen and (max-width: 767px) {
          margin-top: 0;
          padding: 2rem 1rem;
          max-width: 100%;

          &label {
            font-size: 0.75rem;
          }
        }
      }
    }

    h2 {
      @media screen and (max-width: 767px) {
        font-size: 1.5rem;
        text-align: center;
        margin: 10px auto;
      }
    }

    .modal-content {
      background: var(--white);
      border-radius: var(--border-radius-2);
      border: 2px solid var(--primary);
      width: 100%;
      overflow: auto;
      max-inline-size: 600px;
      position: relative;

      @media screen and (max-width: 767px) {
        width: 100%;
        margin-top: 2rem;
      }

      .form-group input {
        background: var(--light-gray);
        border: 2px solid var(--gray) !important;
        border: none;
        padding: 0.5rem 1rem;
        min-height: 50px;
        color: var(--black);

        &:focus-visible {
          outline: none;
          border: 2px solid var(--primary) !important;
        }

        &::placeholder {
          color: var(--dark-gray);
        }
      }
    }

    .modal-bck {
      background: url(../images/modal-image.jpg) center no-repeat;
      background-size: cover;
      height: 100%;
      width: 100%;

      @media (max-width: 767px) {
        display: none;
      }
    }
  }

  /* Payment modal  */

  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.9);
    align-items: center;
    justify-content: center;
    padding: 30px 0;
  }

  /* Payment Modal Styles */

  #paymentModal .modal-content {
    background: var(--white);
    border-radius: var(--border-radius-2);
    border: 2px solid var(--primary);
    padding: var(--border-radius-2);
    max-width: 480px;
    width: 90%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;

    @media screen and (max-width: 479px) {
      padding: 20px;
      height: 90%;
      overflow-y: scroll;
    }

    h2 {
      font-size: 24px;
      margin-bottom: 20px;
      text-align: center;
    }

    .form-group {
      margin-bottom: 20px;
      gap: 8px;

      @media screen and (max-width: 767px) {
        padding: 0;
      }
    }

    label {
      display: block;
      margin-bottom: 0;
      font-size: 14px;
      font-weight: 500;
      color: var(--dark-gray);
    }

    input {
      width: 100%;
      padding: 8px 15px;
      font-size: 16px;
      transition: border-color 0.3s ease;
      color: var(--black);

      &:focus {
        border-color: var(--primary);
        outline: none;
      }
    }

    .d-flex {
      display: flex;
      gap: 15px;

      .form-group {
        flex: 1;
      }
    }

    button[type="submit"] {
      width: 100%;
      padding: 14px;
      background: var(--primary);
      border: none;
      border-radius: 30px;
      color: white;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 10px;

      &:hover {
        background: var(--primary);
        transform: translateY(-1px);
        box-shadow: 0 5px 15px rgba(26, 47, 163, 0.2);
      }
    }

    .close {
      position: absolute;
      right: 20px;
      top: 15px;
      font-size: 2rem;
      color: var(--primary);
      cursor: pointer;
      transition: color 0.3s ease;

      @media screen and (max-width: 479px) {
        right: 10px;
        top: 10px;
      }

      &:hover {
        color: var(--primary);
      }
    }
  }

  /* Input placeholder styling */
  input::placeholder {
    color: var(--dark-gray);
  }

  /* Error state */
  input.error {
    border-color: #dc3545;
  }

  /* Success state */
  input.success {
    border-color: #28a745;
  }

  /* Custom Audio Player Styling */
  audio {
    width: 100%;
    height: 50px;
    border-radius: var(--border-radius-3);
  }

  /* Webkit (Chrome, Safari, newer versions of Opera) */
  audio::-webkit-media-controls-panel {
    background-color: var(--light-gray);
    border-radius: var(--border-radius-3);
  }

  audio::-webkit-media-controls-play-button {
    background-color: var(--primary);
    border-radius: 50%;
    color: var(--white);
  }

  audio::-webkit-media-controls-play-button:hover {
    background-color: var(--light-primary);
  }

  audio::-webkit-media-controls-timeline {
    background-color: var(--gray);
    border-radius: 25px;
    margin: 0 10px;
  }

  audio::-webkit-media-controls-timeline:hover {
    background-color: var(--primary);
  }

  audio::-webkit-media-controls-volume-slider {
    background-color: var(--gray);
    border-radius: 25px;
    padding: 0 5px;
  }

  audio::-webkit-media-controls-volume-slider:hover {
    background-color: var(--primary);
  }

  /* Audio player container - for additional styling */
  .audio-player-container {
    background: linear-gradient(135deg, #f5f5f5 0%, var(--light-primary) 40 100%);
    padding: 1.25rem;
    border-radius: var(--border-radius-2);
    box-shadow: 0px 0px 1rem rgba(221, 162, 222, 0.4);
    margin: 1rem 0;
    width: 100%;
  }

  /* Table  */

  .blog table {
    width: 100% !important;
    margin: 20px auto;
    font-size: 0.875rem;

    td {
      padding: 10px 5px;
    }
  }

  .blog table tr:first-child th,
  .blog table tr:first-child td {
    background: var(--primary);
    color: var(--white);
  }

  /* Legals Pages  */

  .legals {
    font-size: 16px;
    line-height: 1.4;

    h2 {
      font-size: 2rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    h3 {
      font-size: 1.5rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    h4 {
      font-size: 1.25rem;
      margin-top: 1.5rem;
      margin-bottom: 0.5rem;
    }

    p {
      font-size: 1rem;
      margin-bottom: 1rem;
    }

    ul {
      list-style: disc;
      padding-left: 20px;

      li {
        margin-bottom: 0.5rem;
      }
    }
  }
}

@layer pages {
  .page {
    p {
      margin: 15px 0;
    }

    h1,
    h2 {
      margin-top: 30px;
    }

    .info-frame {
      background: var(--secondary);
      background-size: cover;
      padding: 30px;
      border-radius: var(--border-radius-2);
      gap: 10px;
      color: var(--white);

      h2 {
        color: var(--white);
        margin: 0;
      }

      p {
        margin: 0;
      }

      .text-xl {
        font-size: 1.5rem;
        font-weight: 700;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;

        @media screen and (max-width: 991px) {
          font-size: 1.2rem;
        }
      }
    }

    ul,
    ol {
      li {
        margin: 15px;
      }
    }
  }

  .btn.primary {
    padding: 12px 40px;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: transform 0.22s ease;

    &:hover {
      transform: translateY(-2px);
    }
  }

  .account_page {
    @media screen and (max-width: 750px) {
      flex-direction: column;
    }
  }
}

@layer utilites {
  .background-dark {
    background-color: var(--black);
  }

  .background-primary {
    background-color: var(--primary);
  }

  .background-light {
    background-color: var(--light-gray);
  }

  .intro-text {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.8em;
    line-height: normal;
  }

  .d-none,
  .hidden {
    display: none !important;
  }

  .d-flex {
    display: flex;

    .flex-1 {
      flex: 1;
      min-width: 0;
    }
  }

  .flex-wrap {
    flex-wrap: wrap;
  }

  .flex-column {
    flex-direction: column;
  }

  .flex-row {
    flex-direction: row;
  }

  .d-flex .column {
    flex-basis: 50%;
    flex-grow: 1;
  }

  .justify-center {
    justify-content: center;
  }

  .justify-between {
    justify-content: space-between;
  }

  .align-center {
    align-items: center;
  }

  .text-center {
    text-align: center;
  }

  .text-white {
    color: var(--white);
  }

  .text-black {
    color: var(--black);
  }

  .m-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .ml-auto {
    margin-left: auto !important;
  }

  .xs-hide {
    @media screen and (max-width: 767px) {
      display: none;
    }
  }

  .md-hide {
    @media screen and (min-width: 768px) and (max-width: 1199px) {
      display: none;
    }
  }

  .arrow-right {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
  }

  .mt-0 {
    margin-top: 0 !important;
  }

  .mt-1 {
    margin-top: 1rem;
  }

  .mt-2 {
    margin-top: 1.25rem;
  }

  .mt-3 {
    margin-top: 1.5rem;
  }

  .mt-4 {
    margin-top: 2rem;
  }

  .mt-5 {
    margin-top: 2.5rem;
  }

  .mb-1 {
    margin-bottom: 1rem;
  }

  .mb-2 {
    margin-bottom: 1.25rem;
  }

  .mb-3 {
    margin-bottom: 1.5rem;
  }

  .mb-4 {
    margin-bottom: 2rem;
  }

  .mb-5 {
    margin-bottom: 2.5rem;
  }

  .pt-0 {
    padding-top: 0 !important;
  }

  .pt-1 {
    padding-top: 1rem;
  }

  .pt-2 {
    padding-top: 1.25rem;
  }

  .pt-3 {
    padding-top: 1.5rem;
  }

  .pt-4 {
    padding-top: 2rem;
  }

  .pt-5 {
    padding-top: 2.5rem;
  }

  .pb-1 {
    padding-bottom: 1rem;
  }

  .pb-2 {
    padding-bottom: 1.25rem;
  }

  .pb-3 {
    padding-bottom: 1.5rem;
  }

  .pb-4 {
    padding-bottom: 2rem;
  }

  .pb-5 {
    padding-bottom: 2.5rem;
  }

  .p-all {
    padding: 3rem;

    @media (max-width: 767px) {
      padding: 1.5rem;
    }
  }

  .no-padding-top {
    padding-top: 0 !important;
  }

  .no-padding-bottom {
    padding-bottom: 0 !important;
  }

  .col-4 {
    width: 35%;

    @media screen and (min-width: 768px) and (max-width: 1199px) {
      width: 45%;
    }

    @media screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .col-7 {
    width: 60%;

    @media screen and (min-width: 768px) and (max-width: 1199px) {
      width: 50%;
    }

    @media screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .col-6 {
    width: 50%;

    @media screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .gap-1 {
    gap: 0.5rem;
  }

  .gap-2 {
    gap: 0.625rem;
  }

  .gap-3 {
    gap: 1rem;
  }

  .gap-20 {
    gap: 20px;
  }

  .gap-30 {
    gap: 30px;
  }

  .gap-50 {
    gap: 50px;
  }

  .gap-100 {
    gap: 100px;

    @media screen and (max-width: 1199px) {
      gap: 50px;
    }
  }

  .w-100 {
    width: 100%;
  }

  .border-bottom {
    border-bottom: 1px solid var(--light-gray);
  }

  .mobile-column {
    @media screen and (max-width: 767px) {
      flex-direction: column;
    }
  }

  .mobile-column-reverse {
    @media screen and (max-width: 767px) {
      flex-direction: column-reverse;
    }
  }

  .tablet-column {
    @media screen and (min-width: 768px) and (max-width: 1199px) {
      flex-direction: column;
    }
  }

  .reverse-mobile {
    @media screen and (max-width: 767px) {
      flex-direction: column-reverse;
    }
  }
}
