@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 {
    text-wrap: balance;
    font-optical-sizing: auto;
    font-style: normal;
  }

  p,
  li {
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.6em;
  }

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

@layer base {
  :root {
    --black: #080808;
    --white: #fff;
    --primary: #39ff14;
    --secondary: #00d9ff;
    --light-primary: oklch(from var(--primary) clamp(0, l + 0.22, 1) calc(c * 0.9) h);
    --dark-primary: oklch(from var(--primary) clamp(0, l - 0.22, 1) calc(c * 0.92) h);
    --light-gray: #ececec;
    --gray: #b4b4b4;
    --gray-md: #646464;
    --dark-gray: #26292c;

    --border-radius-1: 0.5rem;
    --border-radius-2: 1.25rem;
    --border-radius-3: 2rem;
    --border-radius-4: 3rem;
  }

  @view-transition {
    navigation: auto;
  }

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

  html {
    scroll-padding: 2rem;
    overflow-x: hidden;
  }
  body {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    color: var(--black);
    background-color: var(--white);
    position: relative;
    line-height: normal;
    width: 100%;
    overflow-x: hidden;
  }

  h1 {
    font-size: 3.6em;
    font-weight: 700;

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

  h2 {
    font-size: 2rem;
    font-weight: 700;

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

  h3 {
    font-size: 1.75rem;
    font-weight: 700;

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

  a {
    color: var(--light-primary);
    text-decoration: none;
  }

  .btn {
    font-weight: 700;
    color: var(--black);
    background-color: var(--primary);
    border-radius: var(--border-radius-1);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 4rem;
    line-height: 24px;
    font-size: 1.8em;
    border: none;
    transition: all 0.2s ease-out;
    width: fit-content;
    min-width: 240px;

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

    @media screen and (max-width: 767px) {
      padding: 0.75rem 2rem;
      font-size: 1.4rem;
      min-width: 200px;
    }
  }
  p:empty {
    display: none;
  }
}

@layer layout {
  .wrapper {
    --wrapper-max-width: 1200px;
    --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: 745px;
  }

  .wrapper[data-width="narrowXS"] {
    --wrapper-max-width: 400px;
  }

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

  .wrapper[data-width="wide"] {
    --wrapper-max-width: 1330px;
  }

  .section {
    padding-block: 4rem;

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

    + .section {
      padding-top: 0;
    }
  }

  .modal-grid {
    display: grid;
    place-items: center;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    height: 100%;

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

@layer components {
  /* Scrolling Contact Ticker */
  .top-ticker {
    background: var(--black);
    overflow: hidden;
    border-bottom: 1px solid rgba(57, 255, 20, 0.25);
    padding-block: 0.6rem;
    position: relative;
    z-index: 1000;

    &::before,
    &::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 60px;
      z-index: 2;
      pointer-events: none;
    }

    &::before {
      left: 0;
      background: linear-gradient(to right, var(--black), transparent);
    }

    &::after {
      right: 0;
      background: linear-gradient(to left, var(--black), transparent);
    }
  }

  .top-ticker__track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 22s linear infinite;

    &:hover {
      animation-play-state: paused;
    }
  }

  .top-ticker__content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-inline: 1.25rem;
    flex-shrink: 0;
  }

  .top-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 1rem;
    color: var(--gray);

    svg {
      color: var(--secondary);
      flex-shrink: 0;
    }

    a {
      color: var(--white);
      font-size: inherit;
      font-weight: 500;
      transition: color 0.2s ease;

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

  .top-ticker__tagline {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 1.2rem;
  }

  .top-ticker__divider {
    color: var(--gray-md);
    font-size: 1rem;
    user-select: none;
  }

  @keyframes ticker-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .site_header {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    align-items: center;
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    z-index: 999;
    gap: 1.5rem;
    background: transparent;
    transition:
      background 0.35s ease,
      box-shadow 0.35s ease,
      padding 0.35s ease;

    &.scrolled {
      background: rgba(8, 8, 8, 0.85);
      backdrop-filter: blur(16px) saturate(180%);
      -webkit-backdrop-filter: blur(16px) saturate(180%);
      box-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
      padding-block: 0.7rem;
      border-bottom: 1px solid rgba(57, 255, 20, 0.15);
      top: 0;
    }

    &.payment {
      top: 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 248, 0.95) 100%);
      border-bottom: 2px solid rgba(57, 255, 20, 0.15);
      backdrop-filter: blur(10px);
    }

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

      &.scrolled {
        padding-block: 0.6rem;
      }
    }

    .logo_header {
      max-width: 160px;
      width: 100%;
      overflow: hidden;
      position: relative;
      z-index: 11;

      .logo_mobile {
        display: none;
      }

      @media screen and (max-width: 767px) {
        max-width: 42px;
        height: 36px;

        .logo_desktop {
          display: none;
        }

        .logo_mobile {
          display: block;
        }
      }

      img {
        width: 100%;
        max-inline-size: none;
      }
    }

    .site_navigation {
      @media screen and (min-width: 768px) {
        display: flex;
        align-items: center;
        gap: 2rem;

        .btn-header-cta {
          display: none;
        }
      }

      @media screen and (max-width: 767px) {
        position: fixed;
        inset: 0;
        background: rgba(8, 8, 8, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 10;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;

        &.active {
          transform: translateX(0);
          -webkit-transform: translateX(0);
        }
      }

      ul {
        display: flex;
        gap: 0.5rem;
        list-style: none;

        li a {
          text-decoration: none;
          font-weight: 600;
          color: rgba(255, 255, 255, 0.75);
          font-size: 1.4rem;
          padding: 0.5rem 1rem;
          border-radius: var(--border-radius-1);
          transition:
            color 0.2s ease,
            background 0.2s ease;
          display: block;

          &:hover {
            color: var(--white);
            background: rgba(255, 255, 255, 0.08);
          }
        }

        @media screen and (max-width: 767px) {
          flex-direction: column;
          align-items: center;
          gap: 0.5rem;

          li a {
            font-size: 2rem;
            padding: 0.75rem 2rem;
          }
        }
      }
    }

    .header-right {
      position: relative;
      display: flex;
      gap: 1rem;
      align-items: center;
      z-index: 11;

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

      .dropdown-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        background: rgba(8, 8, 8, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 25%;
        padding: 5rem 1.5rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        z-index: 9;

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

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

        &.active {
          right: 0;
        }

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

          li a {
            display: block;
            padding: 0.75rem 1rem;
            font-size: 1.125rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.75);
            border-radius: var(--border-radius-1);
            transition:
              color 0.2s,
              background 0.2s;

            &:hover {
              color: var(--primary);
              background: rgba(57, 255, 20, 0.06);
            }
          }
        }
      }
    }

    .btn-header-cta {
      padding: 0.6rem 2rem;
      font-size: 1.3rem;
      min-width: auto;
      border-radius: var(--border-radius-4);
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.03em;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 5px;
      background: none;
      border: none;
      z-index: 11;

      span {
        display: block;
        width: 26px;
        height: 2px;
        background-color: var(--white);
        transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;

        &:nth-child(2) {
          width: 18px;
          margin-left: auto;
          background: var(--primary);
        }
      }

      &.active,
      &[aria-expanded="true"] {
        span:first-child {
          transform: translateY(7px) rotate(45deg);
          background: var(--primary);
        }
        span:nth-child(2) {
          opacity: 0;
          transform: scaleX(0);
        }
        span:last-child {
          transform: translateY(-7px) rotate(-45deg);
          background: var(--primary);
        }
      }

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

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

  /* Hero Section */

  .page_hero {
    position: relative;
    height: 90dvh;

    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: var(--black);
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Dark gradient overlay */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(8, 8, 8, 0.85) 0%,
        rgba(8, 8, 8, 0.55) 40%,
        rgba(8, 8, 8, 0.25) 70%,
        transparent 100%
      );
      z-index: 1;
    }

    /* Slide text content */
    .hero-slide-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 0 8%;
      text-align: left;
    }

    .hero-slide-content .hero-tag {
      display: inline-block;
      color: var(--primary);
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 1rem;
      opacity: 0;
      transform: translateY(20px);
    }

    .hero-slide-content h1 {
      color: var(--white);
      font-size: clamp(2.6rem, 4.5vw, 5rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.25rem;
      text-wrap: balance;
      opacity: 0;
      transform: translateY(30px);
    }

    .hero-slide-content p {
      color: rgba(255, 255, 255, 0.8);
      font-size: clamp(1.4rem, 1.6vw, 1.8rem);
      line-height: 1.5;
      margin-bottom: 2rem;
      max-width: 520px;
      opacity: 0;
      transform: translateY(30px);
    }

    .hero-cta {
      text-decoration: none;
      opacity: 0;
      transform: translateY(20px);
    }

    /* Animate on active slide */
    .swiper-slide-active .hero-slide-content .hero-tag {
      animation: heroFadeUp 0.6s 0.2s ease-out forwards;
    }

    .swiper-slide-active .hero-slide-content h1 {
      animation: heroFadeUp 0.6s 0.4s ease-out forwards;
    }

    .swiper-slide-active .hero-slide-content p {
      animation: heroFadeUp 0.6s 0.6s ease-out forwards;
    }

    .swiper-slide-active .hero-cta {
      animation: heroFadeUp 0.6s 0.8s ease-out forwards;
    }

    /* Swiper nav arrows */
    .swiper-button-next,
    .swiper-button-prev {
      color: var(--white);
      opacity: 0.6;
      transition: opacity 0.3s ease;

      &:hover {
        opacity: 1;
      }
    }

    @media screen and (max-width: 767px) {
      .hero-slide-content {
        padding: 0 5%;
        justify-content: flex-end;
        padding-bottom: 15%;
      }

      .hero-overlay {
        background: linear-gradient(to top, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.5) 50%, transparent 100%);
      }

      .swiper-button-next,
      .swiper-button-prev {
        display: none;
      }
    }
  }

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

  /* Latest Updates */

  .latestUpdate {
    h2 {
      font-size: 3rem;
      font-weight: 600;
      display: flex;
      align-items: center;

      @media screen and (max-width: 767px) {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 30px;
      }
    }

    /* Swiper  */

    .swiper {
      width: 100%;
      overflow: hidden;
    }

    .swiper-wrapper {
      display: flex;
      padding-left: 50px;

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

    .swiper-slide {
      position: relative;
      width: auto !important; /* Override Swiper's default width calculation */
      flex-shrink: 0;
      border-radius: var(--border-radius-2);
      overflow: hidden;
    }

    .swiper-slide img {
      width: 100%;
      max-width: 160px;
      min-width: 160px;
      height: 220px;
      object-fit: cover;
      filter: brightness(0.5) grayscale(0.25) contrast(1.1);
      transition: all 0.3s ease-out;

      &:hover {
        transform: scale(1.1);
        filter: brightness(1) grayscale(0) contrast(1);
      }
    }

    .slide-number {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: -50px;
      font-size: 120px;
      font-weight: 900;
      color: var(--dark-gray);
      z-index: -1;
    }
  }

  /* Hero Payment  */

  .hero_payment {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, #f8f8f8 50%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;

    &::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(57, 255, 20, 0.05) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    &::after {
      content: "";
      position: absolute;
      bottom: -20%;
      left: -5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(0, 217, 255, 0.04) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
  }

  /* Pricing Section */
  .pricing_section {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;

    .section_header {
      text-align: center;
      margin-bottom: 60px;

      h2 {
        font-size: clamp(28px, 5vw, 35px);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: -1px;
        background: linear-gradient(135deg, var(--black) 0%, #333 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 12px;
      }

      .section_subtitle {
        font-size: 16px;
        color: var(--gray-md);
        max-width: 500px;
        margin: 0 auto;
        font-weight: 400;
        line-height: 1.6;
      }
    }

    .pricing_container {
      display: flex;
      justify-content: center;

      .pricing_card {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
        border: 2px solid rgba(57, 255, 20, 0.25);
        border-radius: 20px;
        padding: 50px 40px;
        width: 100%;
        max-width: 480px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

        &::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 2px;
          background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }

        &:hover {
          border-color: rgba(57, 255, 20, 0.5);
          box-shadow: 0 20px 60px rgba(57, 255, 20, 0.15);
          transform: translateY(-5px);

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

        .pricing_badge {
          position: absolute;
          top: 20px;
          right: 20px;
          background: rgba(57, 255, 20, 0.1);
          color: var(--primary);
          padding: 6px 14px;
          border-radius: 50px;
          font-size: 11px;
          font-weight: 700;
          letter-spacing: 0.5px;
          transition: all 0.3s ease;
          border: 1px solid var(--primary);
        }

        .card_header {
          margin-bottom: 30px;
          padding-bottom: 30px;
          border-bottom: 2px solid rgba(57, 255, 20, 0.15);

          h2 {
            font-size: 24px;
            font-weight: 600;
            margin: 0 0 20px 0;
            color: var(--black);
          }

          .price_display {
            display: flex;
            align-items: flex-start;
            gap: 10px;

            .currency {
              font-size: 14px;
              color: var(--gray-md);
              font-weight: 500;
              margin-top: 4px;
            }

            .amount {
              font-size: 48px;
              font-weight: 700;
              color: var(--primary);
              line-height: 1;
            }
          }
        }

        .billing_info {
          font-size: 14px;
          color: var(--gray-md);
          margin-bottom: 30px;
          font-weight: 500;
        }

        .benefits_list {
          display: flex;
          flex-direction: column;
          gap: 16px;
          margin-bottom: 30px;
          padding-bottom: 30px;
          border-bottom: 2px solid rgba(57, 255, 20, 0.15);

          .benefit_item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--black);
            font-size: 15px;
            font-weight: 500;

            .benefit_icon {
              width: 20px;
              height: 20px;
              color: var(--primary);
              flex-shrink: 0;
            }

            span {
              line-height: 1.4;
            }
          }
        }

        .pricing_terms {
          p {
            font-size: 13px;
            color: var(--gray-md);
            line-height: 1.6;
            margin: 0;

            strong {
              color: var(--black);
            }
          }
        }
      }
    }
  }

  /* Agreement Section */
  .agreement_section {
    padding: 60px 0 80px;
    position: relative;
    z-index: 1;

    #getNow {
      .form_container {
        max-width: 550px;
        margin: 0 auto;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
        border: 2px solid rgba(57, 255, 20, 0.25);
        border-radius: 20px;
        padding: 45px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

        @media (max-width: 767px) {
          padding: 30px 20px;
          margin: 0 20px;
        }

        .form_title {
          font-size: 28px;
          font-weight: 700;
          text-align: center;
          margin-bottom: 35px;
          color: var(--black);
        }

        .agreements {
          display: flex;
          flex-direction: column;
          gap: 20px;
          margin-bottom: 35px;

          .checkbox-group {
            &.modern_checkbox {
              position: relative;

              input[type="checkbox"] {
                position: absolute;
                opacity: 0;
                cursor: pointer;
                width: 100%;
                height: 100%;
                margin: 0;
                top: 0;
                left: 0;
                z-index: 1;

                &:checked + label {
                  .checkbox_custom {
                    background: var(--primary);
                    border-color: var(--primary);
                    box-shadow: 0 0 12px rgba(57, 255, 20, 0.3);

                    &::after {
                      opacity: 1;
                      transform: scale(1);
                    }
                  }
                }

                &:focus + label {
                  .checkbox_custom {
                    box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.2);
                  }
                }
              }

              label {
                display: flex;
                align-items: flex-start;
                gap: 14px;
                cursor: pointer;
                user-select: none;
                padding: 15px;
                border-radius: 12px;
                transition: all 0.3s ease;
                position: relative;
                z-index: 0;

                &:hover {
                  background: rgba(57, 255, 20, 0.08);

                  .checkbox_custom {
                    border-color: var(--primary);
                  }
                }

                .checkbox_custom {
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  width: 20px;
                  height: 20px;
                  min-width: 20px;
                  min-height: 20px;
                  border: 2px solid rgba(57, 255, 20, 0.4);
                  border-radius: 6px;
                  background: white;
                  transition: all 0.3s ease;
                  margin-top: 2px;

                  &::after {
                    content: "✓";
                    color: var(--black);
                    font-size: 14px;
                    font-weight: 700;
                    opacity: 0;
                    transform: scale(0.5);
                    transition: all 0.3s ease;
                  }
                }

                .label_text {
                  font-size: 14px;
                  color: var(--gray-md);
                  line-height: 1.6;
                  font-weight: 500;

                  a {
                    color: var(--primary);
                    text-decoration: none;
                    font-weight: 600;
                    transition: all 0.3s ease;

                    &:hover {
                      text-decoration: underline;
                      color: var(--dark-primary);
                    }
                  }

                  strong {
                    color: var(--black);
                  }
                }
              }
            }
          }
        }

        .payment_submit_btn {
          width: 100%;
          padding: 16px 24px;
          background: linear-gradient(135deg, var(--primary) 0%, #32cc0d 100%);
          border: none;
          border-radius: 12px;
          color: var(--black);
          font-size: 16px;
          font-weight: 700;
          cursor: pointer;
          transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          position: relative;
          overflow: hidden;
          letter-spacing: 0.5px;

          &::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.4s ease;
          }

          .btn_text {
            position: relative;
            z-index: 1;
          }

          .btn_icon {
            position: relative;
            z-index: 1;
            font-size: 18px;
            transition: transform 0.3s ease;
          }

          &:hover:not(:disabled) {
            box-shadow: 0 15px 40px rgba(57, 255, 20, 0.3);
            transform: translateY(-2px);

            &::before {
              left: 100%;
            }

            .btn_icon {
              transform: translateX(4px);
            }
          }

          &:active:not(:disabled) {
            transform: translateY(0);
          }

          &:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: linear-gradient(135deg, #ccc 0%, #aaa 100%);
          }
        }

        .security_notice {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          margin-top: 20px;
          font-size: 13px;
          color: var(--gray-md);
          font-weight: 500;

          .security_icon {
            width: 16px;
            height: 16px;
            color: var(--primary);
            flex-shrink: 0;
          }
        }
      }
    }
  }

  @media (max-width: 767px) {
    .pricing_section {
      padding: 60px 0 40px;

      .section_header {
        margin-bottom: 40px;

        h1 {
          font-size: 28px;
          margin-bottom: 10px;
        }

        .section_subtitle {
          font-size: 14px;
        }
      }

      .pricing_container {
        .pricing_card {
          padding: 35px 25px;

          .card_header {
            padding-bottom: 20px;

            h2 {
              font-size: 20px;
              margin-bottom: 15px;
            }

            .price_display {
              .amount {
                font-size: 36px;
              }
            }
          }

          .benefits_list {
            gap: 12px;
            margin-bottom: 20px;
            padding-bottom: 20px;

            .benefit_item {
              font-size: 14px;
              gap: 10px;

              .benefit_icon {
                width: 18px;
                height: 18px;
              }
            }
          }
        }
      }
    }
  }

  .headpart {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: var(--dark-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.4;

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

/* Home Apps */

.homeApps {
  padding: 4.125rem 3.125rem;
  margin-bottom: 3.125rem;
  border-radius: var(--border-radius-2);

  /* Swiper  */

  .swiper {
    width: 100%;
    overflow: hidden;
  }

  .swiper-wrapper {
    display: flex;
    padding-left: 50px;

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

  .swiper-slide {
    position: relative;
    width: auto !important; /* Override Swiper's default width calculation */
    flex-shrink: 0;
    border-radius: var(--border-radius-2);
    overflow: hidden;
  }

  .swiper-slide img {
    width: 100%;
    max-width: 160px;
    min-width: 160px;
    height: 220px;
    object-fit: cover;
    filter: brightness(0.5) grayscale(0.25) contrast(1.1);
    transition: all 0.3s ease-out;

    &:hover {
      transform: scale(1.1);
      filter: brightness(1) grayscale(0) contrast(1);
    }
  }

  .slide-number {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
    font-size: 120px;
    font-weight: 900;
    color: var(--dark-gray);
    z-index: -1;
  }

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

  .homeApps_text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    text-align: left;

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

    h3 {
      text-transform: capitalize;
      font-size: 1.875rem;

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

    .btn {
      padding: 0.5rem 1.25rem;
      font-size: 1rem;
      color: var(--primary);

      &:hover,
      &:focus-visible {
        transform: scale(1.05);
        color: var(--white);
      }
    }
  }

  .homeApps__container {
    padding: 1rem;
    border-radius: var(--border-radius-2);
    gap: 0.625rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }

    @media (max-width: 767px) {
      width: 100%;
      justify-content: flex-start;
    }
  }

  .homeApps__item {
    width: 120px;
    height: 120px;
    flex-shrink: 0;

    @media (max-width: 576px) {
      width: 100px;
      height: 100px;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--border-radius-2);
    }
  }
}
.intro-title {
  font-size: 2.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25rem;
  text-transform: uppercase;

  @media (max-width: 767px) {
    font-size: 1.75rem;
  }
}
/* Cards on login page  */
.features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;

  > .text-center {
    flex: 0 1 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    min-width: 260px;
  }

  > .price-buttons {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .feature {
    position: relative;
    border: 1px solid rgba(8, 8, 8, 0.08);
    border-radius: var(--border-radius-3);
    padding: 2.5rem 1.5rem;
    height: 100%;
    min-height: 420px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background:
      radial-gradient(circle at top right, color-mix(in srgb, var(--secondary) 8%, transparent), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
    box-shadow: 0 20px 40px rgba(8, 8, 8, 0.06);
    overflow: hidden;

    &::before {
      content: "";
      position: absolute;
      inset: 1rem;
      border: 1px solid rgba(8, 8, 8, 0.05);
      border-radius: calc(var(--border-radius-3) - 0.75rem);
      pointer-events: none;
    }

    img {
      margin: 0 auto 1.25rem;
      width: 60px;
      height: 60px;
      padding: 0.8rem;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(0, 217, 255, 0.16));
    }

    .feature-name {
      font-size: 1.6rem;
      line-height: 1.25;
      margin-bottom: 0.9rem;
    }

    .text {
      color: var(--gray-md);
      font-size: 1.6em;
      line-height: 1.65;
    }
  }

  @media (max-width: 991px) {
    > .text-center {
      flex: 0 1 calc((100% - 20px) / 2);
      max-width: calc((100% - 20px) / 2);
    }
  }

  @media (max-width: 767px) {
    > .text-center {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
}

.testimonials-shell {
  position: relative;
  padding: 3rem clamp(1.25rem, 3vw, 2.5rem);
  border-radius: var(--border-radius-3);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--secondary) 10%, transparent), transparent 34%),
    radial-gradient(circle at bottom left, color-mix(in srgb, var(--primary) 12%, transparent), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  color: var(--black);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(8, 8, 8, 0.08);
  box-shadow: 0 22px 50px rgba(8, 8, 8, 0.06);

  &::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(8, 8, 8, 0.06);
    border-radius: calc(var(--border-radius-3) - 0.75rem);
    pointer-events: none;
    z-index: -1;
  }

  .intro-title {
    margin-bottom: 1rem;
  }

  .intro-text {
    color: var(--gray-md);
  }
}

.testimonials-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background-color: rgba(57, 255, 20, 0.14);
  border: 1px solid rgba(57, 255, 20, 0.35);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;

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

  @media (max-width: 767px) {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 100%;
  padding: 2rem 1.5rem;
  text-align: left;
  border-radius: var(--border-radius-2);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 8, 8, 0.08);
  box-shadow: 0 18px 35px rgba(8, 8, 8, 0.08);

  h3 {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 0.25rem;
  }

  p {
    margin: 0;
  }
}

.testimonial-card--featured {
  background: linear-gradient(180deg, rgba(57, 255, 20, 0.12), rgba(255, 255, 255, 0.96));
  border-color: rgba(57, 255, 20, 0.28);
  transform: translateY(-0.5rem);

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

.testimonial-card__rating {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.testimonial-card__quote {
  font-size: 1.8em;
  line-height: 1.7;
  color: rgba(8, 8, 8, 0.84);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;

  p {
    font-size: 1.4em;
    color: var(--gray-md);
    line-height: 1.4;
  }
}

.testimonial-card__avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.offer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;

  @media (max-width: 991px) {
    grid-template-columns: 1fr;
  }
}

.offer-copy,
.offer-card {
  border-radius: var(--border-radius-3);
  border: 1px solid rgba(8, 8, 8, 0.08);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--secondary) 8%, transparent), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  box-shadow: 0 20px 45px rgba(8, 8, 8, 0.06);
}

.offer-copy {
  padding: 2.5rem clamp(1.25rem, 3vw, 2.5rem);

  .intro-title {
    text-align: left;
    margin-bottom: 1rem;
  }
}

.offer-text {
  margin: 0;
  max-width: 720px;
  color: var(--gray-md);
  text-align: left;
}

.offer-benefits {
  display: grid;
  gap: 1rem;
}

.offer-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border-radius: var(--border-radius-2);
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(8, 8, 8, 0.06);

  h3 {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
    color: var(--black);
  }

  p {
    font-size: 1.55em;
    color: var(--gray-md);
    line-height: 1.6;
    margin: 0;
  }
}

.offer-benefit__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--secondary) 55%, white));
  flex-shrink: 0;
}

.offer-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;

  h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--black);
  }

  .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
}

.offer-card__label {
  margin-bottom: 0.75rem;
  color: var(--gray-md);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.offer-card__list {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
  padding: 0;

  li {
    position: relative;
    padding-left: 1.6rem;
    font-size: 1.6em;
    color: rgba(8, 8, 8, 0.82);

    &::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.62em;
      width: 0.65rem;
      height: 0.65rem;
      border-radius: 50%;
      background-color: var(--primary);
    }
  }
}

.offer-card__note {
  margin-top: 1rem;
  font-size: 1.4em;
  color: var(--gray-md);
  text-align: center;
}

/* Category Page */

.category_hero {
  padding: 7.125rem 2rem;
  background-size: cover;
  color: var(--white);
  text-align: center;
  border-radius: var(--border-radius-2);

  h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
  }

  p {
    font-size: 1.125rem;
  }
}

/* Fix for category cards layout */

.category_card:hover img.cardsImage {
  transform: scale(1.05);
}

.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;
}

.cardsTitle {
  position: absolute;
  bottom: 20px;
  left: 15px;
  font-size: 1rem;
  font-weight: 600;
  z-index: 2;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.category-carousel {
  position: relative;
}

.category-items-swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 1rem;
}

.category-items-swiper .swiper-slide {
  height: auto;
}

.category-item-link {
  display: block;
  height: 100%;
}

.category-swiper-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.category-swiper-button {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  min-width: 90px;
}

.category-swiper-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.category-swiper-button.swiper-button-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.category-swiper-pagination {
  position: static;
  margin-top: 1rem;
}

.category-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.category-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

/* Category Cards */

.category_card {
  width: 220px;
  height: 240px;
  overflow: hidden;
  border-radius: var(--border-radius-1);
  position: relative;
  transition: transform 0.3s ease-in-out;
  margin: 0;

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

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

  img.cardsImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    filter: brightness(0.5) grayscale(0.25) contrast(1.1);
  }
}

.category_card:hover img.cardsImage {
  transform: scale(1.05);
}

.cardsTitle {
  position: absolute;
  width: 80%;
  bottom: 20px;
  left: 15px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  z-index: 2;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.category-carousel .category_card {
  width: 100%;
  height: 240px;
}

.category-carousel .cardsTitle {
  width: calc(100% - 30px);
}

.app-section,
#app-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  justify-items: center;
}

@media (max-width: 767px) {
  .category-swiper-controls {
    justify-content: center;
  }

  .category-swiper-button {
    min-width: 84px;
    padding: 0.65rem 1rem;
  }

  .category-carousel .category_card {
    height: 240px;
  }
}

/* Categorie Pills  */

.features-bar {
  margin: 30px 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;
    font-family: "Poppins", sans-serif;
    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;
}

.rating > img {
  width: 15px;
}

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

.categories {
  position: relative;
  overflow-x: auto;
}

form.categories-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  transition: transform 0.3s ease-in-out;
  width: max-content;
  padding: 0 0 10px 0;
  margin: 0 auto;

  .category-pill {
    padding: 0.5rem 1rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    border-radius: var(--border-radius-3);
    background-color: #232323;
    color: var(--white);
    font-size: 0.875rem;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;

    img {
      width: 20px;
      height: 20px;
      filter: brightness(10) contrast(5);
    }

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

/* Search Page  */

#filter-content {
  position: absolute;
  inset: 0;
  background: var(--black);
  padding: 160px 20px;
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjust columns dynamically */
  gap: 40px 20px; /* Keeps consistent spacing between items */
  justify-content: start; /* Align items to the start */
  justify-items: center;
  align-content: start; /* Align the grid's content to the top */
  z-index: 2;

  p {
    color: var(--white);
  }
}

.film-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  max-width: 180px;
  max-height: min-content;
}

.film-item img {
  height: 250px;
  width: 100%;
  max-width: 180px;
}

.film-item a {
  color: var(--white);
}

.film-item h3 {
  font-size: 14px;
  margin-top: 10px;
  text-align: left;
}

/* 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-switcher-wrap {
  padding-block: 1.25rem 2.5rem;
}

.section_picker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--black) 90%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 35%, transparent);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);

  @media screen and (max-width: 767px) {
    gap: 0.5rem;
    padding: 0.5rem;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  button {
    flex: 1 1 0;
    min-width: 180px;
    padding: 0.95rem 1.25rem;
    border: 1px solid transparent;
    background: transparent;
    color: var(--gray);
    cursor: pointer;
    border-radius: 999px;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: all 0.2s ease-out;
    scroll-snap-align: center;

    &:hover {
      color: var(--white);
      border-color: color-mix(in srgb, var(--white) 25%, transparent);
      background: color-mix(in srgb, var(--white) 10%, transparent);
      transform: translateY(-1px);
    }

    &.active {
      color: var(--black);
      background: var(--primary);
      border-color: var(--primary);
      box-shadow: 0 8px 20px rgba(57, 255, 20, 0.25);
      cursor: default;
      transform: none !important;
    }

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

/* Latest Articles  */

.latest_articles {
  background: var(--black);
  background-attachment: fixed;
  background-size: cover;

  .btn {
    display: block;
    width: fit-content;
    margin: 1rem auto 0;
    padding: 0.75rem 2rem;
  }

  .d-flex {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 0;
  }

  .article_card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;

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

    picture {
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-radius: var(--border-radius-2);

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;

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

    .article-content {
      padding: 0.5rem;

      h5 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
        color: var(--white);
      }

      .excerp p {
        font-size: 0.875rem;
        color: var(--white);
        line-height: 1.6;
      }
    }
  }
}

/* Game Modal Styles */
.featured-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.featured-modal .modal-content {
  position: relative;
  background-color: #1a1a1a;
  margin: 2% auto;
  padding: 0;
  width: 80%;
  max-width: 900px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.4s;
  border-radius: 8px;
  overflow: hidden;
}

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

.featured-modal .close {
  position: absolute;
  right: 15px;
  top: 15px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  z-index: 10;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}

.featured-modal .close:hover {
  background-color: rgba(255, 0, 0, 0.7);
}

.featured-modal .modal-header {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.featured-modal .video-container {
  width: 100%;
  background-color: #000;
}

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

.featured-modal .modal-body {
  padding: 20px;
  color: #fff;
}

.featured-modal .info h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 24px;
  color: #fff;
}

.featured-modal .featured-screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.featured-modal .screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.featured-modal .screenshot img:hover {
  transform: scale(1.03);
}

.featured-modal .modal-footer {
  margin-top: 20px;
  text-align: center;
}

.featured-modal .btn-view-details {
  background-color: #e50914;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.featured-modal .btn-view-details:hover {
  background-color: #f40612;
}

.featured-modal .btn-secondary {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.featured-modal .btn-secondary:hover {
  background-color: #555;
}

.featured-modal .description {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.featured-modal .description h3 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
}

.featured-modal .description ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.featured-modal .description li {
  margin-bottom: 5px;
}

.featured-modal .description p {
  margin-bottom: 15px;
}

.featured-modal .screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.featured-modal .featured-screenshots h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 20px;
}

/* Lightbox Gallery Styles */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.lightbox-content {
  position: relative;
  width: 80%;
  height: 80%;
  max-width: 1200px;
  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: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  z-index: 2010;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  user-select: none;
  z-index: 2010;
  transition: background-color 0.3s ease;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
  background-color: rgba(255, 0, 0, 0.7);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 15px;
  border-radius: 15px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .featured-modal .modal-content {
    width: 95%;
    margin: 10% auto;
  }

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

/* Support pages  */

.contact__info {
  display: flex;
  flex-direction: column;
  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 {
  padding-block: 6.25rem 2.5rem;
  background: var(--dark-gray);

  h1 {
    color: var(--white);
  }
}

.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;
    color: var(--gray);
  }

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

  .btn {
    width: 100%;
  }
}

/* Single Items  */
.single-item,
.single-movie {
  background: var(--light-gray);
  padding: 2.5rem 1.5rem;
  border-radius: var(--border-radius-2);
  margin-top: 40px;
  h1 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 30px;
    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: 240px;
    height: 100%;
    max-height: 240px;
    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: 150px;
      max-height: 150px;
      margin: 0 auto;
    }

    &.large {
      max-width: 100%;

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

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

  video {
    max-height: 450px;
  }

  .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;
    }

    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 {
  .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: 3px solid var(--dark-gray);
  padding: 3rem 1%;
  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(--dark-gray);
      border-radius: var(--border-radius-2);
      width: 100%;
      background: var(--dark-gray);
      color: var(--white);
    }

    .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-danger {
  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: "Inrter", sans-serif;

        &::placeholder {
          color: var(--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 */
        }
      }
    }
  }
}

.support-test-page {
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--secondary) 10%, transparent), transparent 34%),
    radial-gradient(circle at bottom left, color-mix(in srgb, var(--primary) 12%, transparent), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  .support-test-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1.5rem;

    @media (max-width: 991px) {
      grid-template-columns: 1fr;
    }
  }
  .support-container {
    background: none;
    h2 {
      color: var(--dark-gray) !important;
    }
  }
  .support-test-intro {
    color: var(--black);
    border-radius: 25px;
    padding: 2.25rem;

    h2 {
      margin: 0.5rem 0 1rem;
      max-width: 16ch;
    }

    p {
      color: var(--gray);
      margin: 0;
      max-width: 52ch;
      font-size: 1.05rem;
      line-height: 1.6;
    }
  }

  .support-test-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;

    .btn {
      min-width: 180px;
      text-decoration: none;
    }

    .btn.ghost {
      background: transparent;
      color: var(--secondary);
      border: 1px solid var(--secondary);
    }
  }

  .support-test-channels {
    display: grid;
    gap: 1rem;
  }

  .support-test-channel-card {
    color: var(--black);
    border-radius: 25px;
    padding: 1.5rem;

    h4 {
      margin: 0 0 0.75rem;
      color: var(--secondary);
      font-size: 1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .support-number {
      font-size: clamp(1.4rem, 3.5vw, 2.4rem);
      line-height: 1.1;
      margin-bottom: 0.4rem;
      white-space: normal;
      color: var(--secondary);
    }

    .support-mail {
      color: var(--secondary);
      font-size: 1.2rem;
      line-height: 1.25;
      text-decoration: none;
      overflow-wrap: anywhere;
      display: inline-block;
      margin-bottom: 0.4rem;
    }

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

  .support-test-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 1.5rem;
    align-items: start;

    @media (max-width: 991px) {
      grid-template-columns: 1fr;
    }
  }

  .support-test-form-panel {
    padding: 2rem;
    color: var(--black);

    h3 {
      margin-bottom: 0.6rem;
    }

    h2 {
      margin-top: 0;
      margin-bottom: 1.25rem;
      font-size: 2rem;
      line-height: 1.2;
    }

    .contact_form .btn {
      width: 100%;
    }

    .alert {
      margin: 1rem 0 0;
    }
  }

  .support-test-copy-panel {
    padding: 2rem;
    text-align: left;

    h3 {
      margin-bottom: 1rem;
    }

    h2,
    h4,
    h5,
    h6 {
      color: var(--white);
      margin: 0 0 0.75rem;
      line-height: 1.3;
      font-size: 1.45rem;
    }

    p,
    li {
      color: var(--gray);
      margin: 0 0 1rem;
      font-size: 1rem;
      line-height: 1.6;
    }

    ul,
    ol {
      margin: 0 0 1rem;
      padding-left: 1.25rem;
      list-style: disc;
    }

    a {
      color: var(--primary);
      text-decoration: none;
      overflow-wrap: anywhere;
    }
  }

  .support-test-unsub-section {
    .unsub-container {
      border-color: rgba(0, 217, 255, 0.35);
    }
  }
}

/* Footer  */

.site_footer {
  position: relative;
  padding: 0;
}

.footer__accent-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 3rem;
  padding: 3.5rem 0 2.5rem;
  &.payment-footer {
    grid-template-columns: 1.5fr 1fr;
  }
}

.footer__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer__brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer__tagline {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.25s ease;
}

.footer__contact-item:hover {
  color: var(--secondary);
}

.footer__contact-item svg {
  flex-shrink: 0;
  stroke: var(--secondary);
  opacity: 0.8;
}

.footer__heading {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  margin-bottom: 1.25rem;
  position: relative;
}

.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
  display: inline-block;
}

.footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__disclaimer {
  color: var(--gray-md);
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__payments {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__payments img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.footer__payments img:hover {
  opacity: 1;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--gray-md);
  margin: 0;
}

@media screen and (max-width: 991px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__legal {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.backToTopBtn {
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px var(--primary);
  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(--white);
}

.backToTopBtn:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: var(--light-primary);
  align-items: center;
}

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

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

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

/* Modals  */
.spinner {
  border: 4px solid var(--white);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.otp-modal,
.login-modal,
.unsub-modal,
.sign-up-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  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: 1rem;
    top: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
    line-height: 1;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(8, 8, 8, 0.08);
    box-shadow: 0 12px 24px rgba(8, 8, 8, 0.08);
    transition:
      transform 0.2s ease,
      background-color 0.2s ease;

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

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

  .modal-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .modal-form {
    width: 100%;
  }

  form {
    width: 100%;

    .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;

      label {
        font-size: 0.8rem;
        display: inline;
        color: var(--gray-md);
        line-height: 1.5;
      }

      input[type="checkbox"] {
        accent-color: var(--primary);
        min-height: auto !important;
        margin-top: 0.3rem;
        flex-shrink: 0;
      }
    }

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

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

    input {
      padding: 0.95rem 1rem;
      border: 1px solid rgba(8, 8, 8, 0.1);
      border-radius: var(--border-radius-2);
      background: rgba(255, 255, 255, 0.92);
      color: var(--black);
      min-height: 56px;
      transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;

      &:focus-visible {
        outline: none;
        border-color: rgba(57, 255, 20, 0.55);
        box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.12);
        background: var(--white);
      }

      &::placeholder {
        color: #8b8b8b;
      }
    }

    .btn {
      width: 100%;
      margin-top: 0.75rem;
      padding: 1rem;
      min-width: 0;
      border-radius: var(--border-radius-4);
      font-size: 1.5em;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      padding: 3rem clamp(1.25rem, 4vw, 3rem);
      background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--secondary) 10%, transparent), transparent 32%),
        radial-gradient(circle at bottom left, color-mix(in srgb, var(--primary) 12%, transparent), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
      border-radius: var(--border-radius-3);
      border: 1px solid rgba(8, 8, 8, 0.08);
      box-shadow: 0 22px 50px rgba(8, 8, 8, 0.08);
      position: relative;
      overflow: hidden;

      &::before {
        content: "";
        position: absolute;
        inset: 1rem;
        border: 1px solid rgba(8, 8, 8, 0.05);
        border-radius: calc(var(--border-radius-3) - 0.75rem);
        pointer-events: none;
      }

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

      label {
        color: var(--gray-md);
        font-weight: 400;
        font-size: 0.75rem;
      }

      p {
        font-size: 1.2em;
        text-align: center;
        color: var(--gray-md);
      }

      a {
        color: var(--secondary);
        font-weight: 700;
      }

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

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

  h2 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    margin: 0 0 0.5rem;
    color: var(--black);

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

  .error {
    color: #b42318;
    min-height: 1.5em;
  }

  .modal-content {
    background: transparent;
    border-radius: var(--border-radius-3);
    width: min(100%, 560px);
    overflow: visible;
    max-inline-size: 560px;
    position: relative;

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

    .form-group input {
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(8, 8, 8, 0.1);
      color: var(--black);
    }
  }
}

/* Payment modal  */

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

/* Payment Modal Styles */

#paymentModal .modal-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 248, 0.95) 100%);
  border: 2px solid rgba(57, 255, 20, 0.25);
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  height: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

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

  h2 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--black);
    font-weight: 700;
  }

  .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;

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

  label {
    display: block;
    margin-bottom: 0;
    color: var(--gray-md);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--black);
    background: white;
    border: 2px solid rgba(57, 255, 20, 0.2);
    border-radius: 8px;
    font-family: inherit;

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

    &:focus {
      border-color: var(--primary);
      background: white;
      box-shadow: 0 0 12px rgba(57, 255, 20, 0.2);
      outline: none;
    }
  }

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

    .form-group {
      flex: 1;
    }
  }

  button[type="submit"] {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #32cc0d 100%);
    border: none;
    border-radius: 12px;
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    letter-spacing: 0.5px;

    &:hover {
      box-shadow: 0 15px 40px rgba(57, 255, 20, 0.3);
      transform: translateY(-2px);
    }

    &:active {
      transform: translateY(0);
    }
  }

  .close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    opacity: 0.7;

    @media screen and (max-width: 479px) {
      right: 15px;
      top: 15px;
      font-size: 28px;
    }

    &:hover {
      color: var(--dark-primary);
      opacity: 1;
      transform: rotate(90deg);
    }
  }
}

/* Input placeholder styling */
input::placeholder {
  color: #bbb;
}

/* 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;
      font-size: 1rem;
    }
  }
}

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

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

    .info-frame {
      background: var(--dark-gray);
      background-size: cover;
      padding: 40px 30px;
      border-radius: 20px;
      gap: 10px;

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

      p {
        margin-bottom: 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: 0.25s ease-out;

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

  .account_page {
    .text-frame {
      background: var(--dark-gray);
      border: 1px solid rgba(57, 255, 20, 0.2);
      border-radius: var(--border-radius-2);
      padding: 1.75rem;

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

      p {
        color: var(--light-gray);
        margin: 0 0 1rem;

        strong {
          color: var(--white);
        }
      }

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

    .info-frame {
      border: 1px solid rgba(0, 217, 255, 0.25);

      p {
        color: var(--light-gray);
      }

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

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

      .text-frame,
      .info-frame {
        padding: 1.25rem;
      }
    }
  }
}

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

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

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

  .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-column {
    flex-direction: column;
  }

  .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;
  }
  .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;
  }

  .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;
  }

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