@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;
    -webkit-text-size-adjust: 100%;
    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;
  }

  p:empty {
    display: none;
  }

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

  input,
  button,
  textarea,
  select {
    font: inherit;
  }
}

@layer base {
  :root {
    --black: #010101;
    --white: #fff;
    --primary: #38bdf8;
    --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);
    --background: #0f172a;
    --dark-gray: #161515;
    --md-gray: #505050;
    --light-gray: #f3f3f3;
    --gray: #ababab;

    --border-radius-xS: 0.25rem;
    --border-radius-1: 1rem;
    --border-radius-2: 1.5rem;
    --border-radius-3: 2rem;
    --border-radius-4: 3rem;

    /* Shared backgrounds */
    --dark-gradient:
      radial-gradient(ellipse at 20% 0%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 100%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
      linear-gradient(160deg, #0a1628 0%, #0f172a 40%, #131d35 70%, #0f172a 100%);

    /* Slider */
    --accent: #ff6b6b;
    --muted: rgba(255, 255, 255, 0.8);
    --thumb-bg: rgba(255, 255, 255, 0.03);
  }

  @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: 1rem;
    color: var(--white);
    background-color: var(--background);
    position: relative;
  }

  h1 {
    font-weight: 700;
    font-size: 2.5rem;
    font-family: "Plus Jakarta Sans", sans-serif;
  }

  h2 {
    font-size: 1.875rem;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
  }

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

  .btn {
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
    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: 0.75rem 2.5rem;
    transition: all 0.2s ease-out;
    border: none;
    white-space: nowrap;

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

    &.see-more-btn,
    &.see-less-btn {
      background: transparent;
      border: 2px solid var(--gray);
      color: var(--primary);
    }

    &.see-less-btn {
      margin-top: 30px;
    }

    /* Loading state styles */
    &:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none !important;
    }

    .btn-loader {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-loader::after {
      content: "";
      width: 16px;
      height: 16px;
      border: 2px solid transparent;
      border-top: 2px solid currentColor;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    p:empty {
      display: none;
    }
  }

  .no-trailer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-2);
  }
}

@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: content-box;
  }

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

  .wrapper[data-width="narrowMd"] {
    --wrapper-max-width: 540px;
  }

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

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

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

  .wrapper[data-width="largeXl"] {
    --wrapper-max-width: 1600px;
  }

  .section {
    padding-block: 8rem;

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

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

  .w-100 {
    width: 100% !important;
  }

  .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 {
  /* Navigation  */

  .top_bar {
    display: flex;
    justify-content: flex-end;
    padding: 0.5rem 2.5rem;
    background: transparent;
    gap: 1.25rem;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition:
      background 0.4s ease,
      transform 0.4s ease,
      box-shadow 0.4s ease;

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

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

    .support-icon {
      width: 25px;
      height: 25px;
    }

    a {
      color: var(--white);
      font-weight: 600;
      transition: color 0.3s ease;
    }

    &.scrolled {
      background: rgba(15, 23, 42, 0.6);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(56, 189, 248, 0.1);
    }
  }

  .site_header {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    .icons {
      width: 24px;
    }

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

    &.scrolled {
      top: 0;
      background: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(16px) saturate(180%);
      -webkit-backdrop-filter: blur(16px) saturate(180%);
      padding-block: 0.75rem;
      box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(56, 189, 248, 0.15);
      border-bottom: 1px solid rgba(56, 189, 248, 0.08);

      .logo_header {
        max-width: 160px;
      }
    }

    &.header-hidden {
      transform: translateY(-100%);
    }

    .logo_header {
      max-width: 200px;
      width: 100%;
      overflow: hidden;
      transition: max-width 0.4s ease;

      img {
        width: 100%;
        max-inline-size: none;
      }
      .logo_desktop {
        display: block;
        @media screen and (max-width: 767px) {
          display: none;
        }
      }
    }

    .unsub-link {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--white);
      text-transform: uppercase;
    }

    .site_navigation {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.25rem;

      ul {
        display: flex;
        gap: 20px;

        a {
          color: var(--white);
          font-weight: 600;
        }
      }

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

      @media screen and (max-width: 767px) {
        position: fixed;
        inset: 0;
        background: var(--dark-gradient);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90%;
        z-index: 2;
        right: 0;
        left: auto;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        /* Add for iOS smooth scrolling */
        -webkit-transform: translateX(100%);
        /* Ensure compatibility with older iOS */

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

        ul {
          display: flex;
          gap: 1.25rem;

          a {
            text-decoration: none;
            font-weight: 700;
            color: var(--white);

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

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

    .header-right {
      grid-column: 3;
      position: relative;
      display: flex;
      gap: 0.75rem;
      align-items: center;

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

      .dropdown-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        background: var(--dark-gradient);
        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: 1.25rem;

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

          li a {
            display: block;
            padding: 0.5rem;
            font-size: 1.125rem;
            font-weight: 500;
            color: var(--white);
            transition: color 0.2s;

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

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

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

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

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

      a {
        text-decoration: none;
        font-weight: 700;
        color: var(--white);
      }
    }

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

      span {
        display: block;
        width: 30px;
        height: 3px;
        background-color: var(--white);
        transition: 0.3s ease-in-out;
      }

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

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

        span {
          background-color: var(--white);
        }

        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;

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

        span {
          background-color: var(--white);
        }

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

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

  @keyframes headerSlideIn {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .logo_mobile {
    display: none;

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

  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes pulse {
    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
      box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.1);
    }
  }

  .refund_bar {
    #refund-btn {
      position: fixed;
      top: 140px;
      right: 1.25rem;
      z-index: 1000;
      color: var(--white);
      padding: 10px 20px;
      border-radius: 45px;
      font-size: 1rem;
      text-transform: none;
      font-weight: 400;
      gap: 10px;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      overflow: hidden;

      @media (max-width: 1199px) {
        top: 120px;
      }

      &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transform: translate(-50%, -50%);
        transition:
          width 0.6s,
          height 0.6s;
      }

      &:hover {
        background-color: var(--dark-primary);
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);

        &::before {
          width: 350px;
          height: 350px;
        }
      }

      img {
        transition: transform 0.3s ease;
      }
    }

    &.scrolled {
      #refund-btn {
        width: 100%;
        top: 0;
        right: 0;
        border-radius: 0;
        animation: pulse 2s ease-in-out infinite;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);

        &:hover {
          transform: scale(1.02);
          box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
        }
      }
    }
  }

  /* Updates / Top */

  .topItems {
    .section-title {
      font-size: 1.875rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .title-accent {
      font-size: 1.5rem;
    }

    .swiper {
      width: 100%;

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

    .swiper-wrapper {
      display: flex;
    }

    .swiper-slide {
      width: 180px !important;
      height: 250px !important;
      cursor: pointer;
      position: relative;
      width: auto !important;
      /* Override Swiper's default width calculation */
      flex-shrink: 0;
      border-radius: 4px;

      &:first-child {
        margin-left: 1.5rem;
      }

      img {
        width: 100%;
        width: 180px !important;
        height: 250px !important;
        object-fit: cover;
        border-radius: 4px;
      }
    }
    .slide-number {
      position: absolute;
      bottom: -18px;
      left: -30px;
      font-size: 140px;
      line-height: 1;
      font-weight: 900;
      font-style: italic;
      z-index: 2;
      background: linear-gradient(to bottom, var(--primary), var(--dark-primary));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-stroke: 3px rgba(0, 0, 0, 0.4);
      paint-order: stroke fill;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
      pointer-events: none;
      user-select: none;
    }
  }

  .curve {
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
    height: 6.25rem;
    z-index: 1;

    * {
      box-sizing: border-box;
    }
  }

  .curve-line {
    box-sizing: border-box;
    position: absolute;
    height: 100%;
    top: 0;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: solid 0.25rem transparent;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    border-bottom: none;
    background:
      radial-gradient(50% 500% at 50% -420%, rgba(56, 189, 248, 0.8) 80%, rgba(15, 23, 42, 0.1) 100%), var(--background);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    width: 200%;
    left: -50%;

    @media screen and (min-width: 600px) {
      width: 180%;
      left: -40%;
    }
    @media screen and (min-width: 960px) {
      width: 150%;
      left: -25%;
    }
    @media screen and (min-width: 1280px) {
      width: 130%;
      left: -15%;
    }

    &::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: -1;
      margin-top: -0.25rem;
      border-radius: inherit;
      background: linear-gradient(
        to right,
        var(--background) 16%,
        rgba(56, 189, 248, 0.4),
        rgba(56, 189, 248, 0.6),
        rgba(56, 189, 248, 0.4),
        var(--background) 84%
      );
    }
  }

  /* Hero Section */

  .intro-text {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: normal;

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

  .page_hero {
    background-image: url(../images/hero.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 95vh;
    display: flex;
    align-items: center;
    text-align: left;
    padding-block: 0;
    position: relative;

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, #0f172a, rgba(15, 23, 42, 0.6) 50%, transparent),
        linear-gradient(to right, #0f172a, transparent 50%, rgba(15, 23, 42, 0.4)), rgba(15, 23, 42, 0.4);
      z-index: 1;
    }

    .hero-content {
      max-width: 672px;
      position: relative;
      z-index: 2;
      padding: 6rem 3rem 2rem;

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

    .content-hero__title {
      margin-block-start: 1rem;
    }

    .content-hero__title-accent {
      display: block;
      margin-block-start: 0.75rem;
    }

    .hero-description {
      font-size: 1.25rem;
      line-height: 2;
      color: #d1d5dc;
      max-width: 556px;
      margin-block-start: 1.5rem;
    }
    .hero-stats {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin-block-start: 3rem;
    }

    .hero-stat {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .hero-stat-value {
      font-size: 1.875rem;
      font-weight: 700;
      line-height: 1.2;
      color: var(--primary);
      font-family: "Plus Jakarta Sans", sans-serif;
    }

    .hero-stat-label {
      font-size: 0.875rem;
      color: #99a1af;
      line-height: 1.4;
    }

    .hero-stat-divider {
      width: 1px;
      height: 48px;
      background: #1e293b;
    }

    .wrapper {
      display: flex;
      flex-direction: column;
      gap: 40px;

      h1 {
        font-size: 3rem;

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

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

      .intro-text {
        max-width: 720px;
        margin: 0 auto;
        font-size: 1.25rem;
      }

      .btn {
        padding: 0.5rem 5.5rem;
        font-size: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        max-width: fit-content;
      }

      .btn:hover,
      .btn:focus-visible {
        transform: translateY(-3px);
      }
    }
  }

  @keyframes hero-bounce {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(8px);
    }
  }

  /* Items custom sizes */

  .homeApps.Astrology .swiper-slide,
  .homeApps.Learn .swiper-slide,
  .section.category-section .apps.article .category_card {
    height: 190px !important;
  }

  .homeApps.Fitness .swiper-slide,
  .homeApps.Play .swiper-slide,
  .section.category-section .apps.app .category_card {
    height: 160px !important;
  }

  .section.category-section .apps.film .category_card,
  .section.category-section .apps.video .category_card,
  .homeApps.Watch .swiper-slide {
    height: 220px !important;
  }

  /* Home Apps */

  .homeApps {
    --section-accent: var(--primary);
    padding-block: 2rem;
    margin-block: 2rem;
    position: relative;
    border-radius: var(--border-radius-2);
    transition: all 0.35s ease;

    /* Subtle side accent bar */
    &::before {
      content: "";
      position: absolute;
      left: 0;
      top: 20%;
      bottom: 20%;
      width: 3px;
      background: linear-gradient(to bottom, transparent, var(--section-accent), transparent);
      border-radius: 3px;
      opacity: 0.6;
      transition: opacity 0.3s ease;
    }

    &:hover::before {
      opacity: 1;
    }

    .swiper {
      width: 100%;

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

    .swiper-wrapper {
      display: flex;
    }

    .swiper-slide {
      width: 160px !important;
      height: 210px !important;
      cursor: pointer;
      position: relative;
      width: auto !important;
      flex-shrink: 0;
      border-radius: 4px;
      overflow: hidden;

      .img-radial,
      .movie_image {
        filter: grayscale(0.25) brightness(0.6) contrast(1.125);
        transition: all 0.35s ease;
        border-radius: 4px;

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

        img {
          width: 100%;
          width: 160px !important;
          height: 210px !important;
          object-fit: cover;
          border-radius: 4px;
        }
      }
    }

    /* ── Section Header Redesign ── */
    .section-header {
      position: relative;
      padding: 1rem;
      margin-bottom: 0.5rem;

      /* Gradient underline */
      &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        width: 100%;
        background: linear-gradient(to right, var(--section-accent) 0%, transparent 70%);
        opacity: 0.4;
      }

      .section-header-text {
        h2 {
          font-size: 1.5rem;
          font-weight: 800;
          letter-spacing: -0.02em;
          text-transform: capitalize;

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

        .section-description {
          color: var(--gray);
          font-size: 0.875rem;
          line-height: 1.5;
          max-width: 500px;
        }
      }

      .seeAll {
        font-size: 0.8rem;
        padding: 0.5rem 1.25rem;
        background: transparent;
        border: 1.5px solid color-mix(in srgb, var(--section-accent) 50%, transparent);
        color: var(--section-accent);
        font-weight: 600;
        letter-spacing: 0.04em;
        transition: all 0.25s ease;
        border-radius: 4px;

        &:hover {
          background: var(--section-accent);
          color: var(--background);
          border-color: var(--section-accent);
          transform: translateY(-2px);
          box-shadow: 0 4px 15px color-mix(in srgb, var(--section-accent) 30%, transparent);
        }
      }

      @media (max-width: 767px) {
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start;
        gap: 10px;

        .btn {
          margin: 0;
        }
      }
    }

    .section-icon {
      width: 28px;
      height: 28px;
      padding: 4px;
      background: color-mix(in srgb, var(--section-accent) 15%, transparent);
      border-radius: var(--border-radius-xS);
      object-fit: contain;
    }

    @media (max-width: 767px) {
      background-image: none !important;

      &::before {
        display: none;
      }
    }

    .wrapper {
      gap: 90px;

      @media (min-width: 768px) and (max-width: 1279px) {
        gap: 40px;
      }

      @media (max-width: 767px) {
        flex-direction: column-reverse !important;
        gap: 40px;
      }

      h2 {
        margin-bottom: 20px;
      }

      .swiper-slide:first-child {
        margin-left: 0;
      }
    }

    @media (max-width: 1279px) {
      padding: 2rem 0;
      margin-block: 0;
    }

    @media (max-width: 1199px) {
      flex-direction: column;
      gap: 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;

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

  .homeApps.Play {
    --section-accent: #38bdf8;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.04) 0%, transparent 50%);

    .swiper-slide {
      border: 1.5px solid rgba(56, 189, 248, 0.1);
      transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

      /* Top neon accent line */
      &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 20%;
        right: 20%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #38bdf8, #0ea5e9, transparent);
        border-radius: 0 0 4px 4px;
        z-index: 3;
        opacity: 0;
        transition:
          opacity 0.3s ease,
          left 0.3s ease,
          right 0.3s ease;
      }

      &:hover {
        transform: translateY(-6px) scale(1.03);
        border-color: rgba(56, 189, 248, 0.35);
        box-shadow:
          0 8px 25px rgba(56, 189, 248, 0.2),
          0 0 0 1px rgba(56, 189, 248, 0.1),
          inset 0 -30px 30px -30px rgba(56, 189, 248, 0.08);

        &::before {
          opacity: 1;
          left: 10%;
          right: 10%;
        }
      }

      .img-radial,
      .movie_image {
        transition: filter 0.3s ease;
      }

      &:hover .img-radial,
      &:hover .movie_image {
        filter: grayscale(0) brightness(1.1) contrast(1.05) saturate(1.15);
      }

      .cardsTitle {
        background: linear-gradient(to top, rgba(14, 165, 233, 0.35) 0%, transparent 100%);
      }
    }
  }
  .homeApps.Watch {
    --section-accent: #f43f5e;
    background: linear-gradient(to right, rgba(244, 63, 94, 0.05) 0%, transparent 40%);

    &::before {
      width: 4px;
      background: linear-gradient(to bottom, #f43f5e, #e11d48, transparent);
    }

    .swiper-slide {
      border: 1.5px solid rgba(244, 63, 94, 0.08);
      transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

      /* Cinematic letterbox bars */
      &::before,
      &::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 3;
        transition: height 0.35s ease;
      }

      &::before {
        top: 0;
        border-radius: var(--border-radius-1) var(--border-radius-1) 0 0;
      }

      &::after {
        bottom: 0;
        border-radius: 0 0 var(--border-radius-1) var(--border-radius-1);
      }

      &:hover {
        transform: scale(1.06);
        border-color: rgba(244, 63, 94, 0.4);
        box-shadow:
          0 0 35px rgba(244, 63, 94, 0.25),
          0 10px 25px rgba(0, 0, 0, 0.5);

        &::before {
          height: 6px;
        }

        &::after {
          height: 6px;
        }
      }

      .img-radial,
      .movie_image {
        transition: filter 0.35s ease;
      }

      &:hover .img-radial,
      &:hover .movie_image {
        filter: grayscale(0) brightness(1.05) contrast(1.15) saturate(1.25);
      }

      .cardsTitle {
        background: linear-gradient(to top, rgba(244, 63, 94, 0.3) 0%, transparent 100%);
      }
    }
  }

  .homeApps.Fitness {
    --section-accent: #22c55e;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.04) 0%, transparent 60%);

    &::before {
      width: 3px;
      background: linear-gradient(to bottom, transparent, #22c55e 30%, #16a34a 70%, transparent);
    }

    .swiper-slide {
      border: 1.5px solid rgba(34, 197, 94, 0.08);
      border-radius: var(--border-radius-1);
      transition:
        transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;

      /* Diagonal energy stripe */
      &::before {
        content: "";
        position: absolute;
        top: 8px;
        right: 8px;
        width: 28px;
        height: 3px;
        background: linear-gradient(90deg, #22c55e, #16a34a);
        border-radius: 3px;
        z-index: 3;
        opacity: 0;
        transform: rotate(-45deg) scale(0.5);
        transition:
          opacity 0.3s ease,
          transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      &:hover {
        transform: translateY(-10px);
        border-color: rgba(34, 197, 94, 0.35);
        box-shadow:
          0 14px 35px rgba(34, 197, 94, 0.2),
          0 4px 10px rgba(0, 0, 0, 0.3);

        &::before {
          opacity: 1;
          transform: rotate(-45deg) scale(1);
        }
      }

      .img-radial,
      .movie_image {
        transition: filter 0.25s ease;
      }

      &:hover .img-radial,
      &:hover .movie_image {
        filter: grayscale(0) brightness(1.1) contrast(1.1) saturate(1.2);
      }

      .cardsTitle {
        background: linear-gradient(to top, rgba(34, 197, 94, 0.3) 0%, transparent 100%);
      }
    }
  }

  .homeApps.Learn {
    --section-accent: #f59e0b;
    background: radial-gradient(ellipse at top left, rgba(245, 158, 11, 0.05) 0%, transparent 50%);

    &::before {
      background: linear-gradient(to bottom, transparent, #f59e0b 40%, #d97706 60%, transparent);
    }

    .swiper-slide {
      border: 1.5px solid rgba(245, 158, 11, 0.1);
      transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

      /* Bookmark ribbon on top-right */
      &::before {
        content: "";
        position: absolute;
        top: -1px;
        right: 14px;
        width: 18px;
        height: 26px;
        background: linear-gradient(135deg, #f59e0b, #d97706);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 75%, 0 100%);
        z-index: 3;
        opacity: 0;
        transform: translateY(-10px);
        transition:
          opacity 0.3s ease,
          transform 0.3s ease;
      }

      &:hover {
        transform: translateY(-5px) rotate(-0.5deg);
        border-color: rgba(245, 158, 11, 0.35);
        box-shadow:
          0 8px 24px rgba(245, 158, 11, 0.15),
          0 2px 8px rgba(0, 0, 0, 0.3);

        &::before {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .img-radial,
      .movie_image {
        transition: filter 0.3s ease;
      }

      &:hover .img-radial,
      &:hover .movie_image {
        filter: grayscale(0) brightness(1.05) contrast(1.05) saturate(1.1) sepia(0.1);
      }

      .cardsTitle {
        background: linear-gradient(to top, rgba(245, 158, 11, 0.3) 0%, transparent 100%);
        font-style: italic;
      }
    }
  }

  .homeApps.Astrology {
    --section-accent: #a78bfa;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.06) 0%, rgba(139, 92, 246, 0.02) 50%, transparent 100%);

    &::before {
      width: 3px;
      background: linear-gradient(to bottom, transparent, #a78bfa 20%, #8b5cf6 50%, #7c3aed 80%, transparent);
    }

    .swiper-slide {
      border: 1.5px solid rgba(167, 139, 250, 0.1);
      transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

      /* Mystic corner sparkle — top-left + bottom-right radial glows */
      &::before {
        content: "";
        position: absolute;
        top: -1px;
        left: -1px;
        width: 40px;
        height: 40px;
        background: radial-gradient(circle at top left, rgba(167, 139, 250, 0.4), transparent 70%);
        border-radius: var(--border-radius-1) 0 0 0;
        z-index: 3;
        opacity: 0;
        transition: opacity 0.4s ease;
      }

      &::after {
        content: "";
        position: absolute;
        bottom: -1px;
        right: -1px;
        width: 40px;
        height: 40px;
        background: radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.35), transparent 70%);
        border-radius: 0 0 var(--border-radius-1) 0;
        z-index: 3;
        opacity: 0;
        transition: opacity 0.4s ease;
      }

      &:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: rgba(167, 139, 250, 0.35);
        box-shadow:
          0 0 25px rgba(167, 139, 250, 0.2),
          0 0 50px rgba(139, 92, 246, 0.08),
          0 8px 20px rgba(0, 0, 0, 0.3);

        &::before,
        &::after {
          opacity: 1;
        }
      }

      .img-radial,
      .movie_image {
        transition: filter 0.4s ease;
      }

      &:hover .img-radial,
      &:hover .movie_image {
        filter: grayscale(0) brightness(1.05) contrast(1) saturate(1.15) hue-rotate(5deg);
      }

      .cardsTitle {
        background: linear-gradient(to top, rgba(139, 92, 246, 0.35) 0%, rgba(167, 139, 250, 0.1) 50%, transparent 100%);
      }
    }
  }

  /* Category Cards */

  .category_card {
    width: 160px;
    height: 220px;
    overflow: hidden;
    border-radius: var(--border-radius-1);
    position: relative;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

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

    &.large {
      width: 280px;
      height: 280px;
    }

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1;
      transition: all 0.3s ease;
    }

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

      &::before {
        background-color: rgba(0, 0, 0, 0);
      }

      img.cardsImage {
        filter: saturate(1.125) brightness(1.25);
        transform: scale(1.05);
      }
    }

    img.cardsImage {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.3s ease;
    }

    .hover-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .image-container {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
  }

  .cardsTitle {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 12px 12px;
    text-align: center;
    color: var(--white);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 2;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    transition: padding 0.3s ease;
  }

  /* Scrollbar  */

  /* width */
  ::-webkit-scrollbar {
    width: 7px;
    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: var(--dark-primary);
    border-radius: 10px;
  }

  /* Game Modal Styles */
  .game-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    .modal-content {
      position: relative;
      background: var(--background);
      background-image: var(--dark-gradient);
      margin: 3vh auto;
      padding: 0;
      width: 90%;
      max-width: 860px;
      border: 1px solid rgba(56, 189, 248, 0.12);
      box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.04);
      animation: modalSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      border-radius: var(--border-radius-2);
      overflow: hidden;
    }

    .modal-close {
      position: absolute;
      right: 12px;
      top: 12px;
      color: var(--white);
      font-size: 1.25rem;
      font-weight: 600;
      z-index: 10;
      cursor: pointer;
      background-color: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(8px);
      width: 36px;
      height: 36px;
      line-height: 36px;
      text-align: center;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.2s ease-out;
      display: flex;
      align-items: center;
      justify-content: center;

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

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

    .video-container {
      width: 100%;
      background-color: rgba(0, 0, 0, 0.4);

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

      img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
      }
    }

    .modal-body {
      padding: 1.5rem 1.75rem 1.75rem;
      color: var(--white);
    }

    .modal-info-header {
      margin-bottom: 1.25rem;
    }

    .modal-title-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 0.75rem;

      h2 {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 700;
        font-family: "Plus Jakarta Sans", sans-serif;
        color: var(--white);
        line-height: 1.2;
      }

      .modal-meta {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-shrink: 0;

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

          img {
            width: 16px;
            height: 16px;
          }

          span {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray);
          }
        }
      }
    }

    .modal-description {
      font-size: 0.9375rem;
      line-height: 1.6;
      color: var(--gray);
      max-height: 120px;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: var(--md-gray) transparent;

      p {
        margin: 0.5rem 0;
      }
    }

    .game-screenshots {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 12px;
      margin-bottom: 1.5rem;
    }

    .screenshot {
      border-radius: var(--border-radius-1);
      overflow: hidden;
      position: relative;
      cursor: pointer;

      &::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 1;
        transition: all 0.25s ease;
        border-radius: var(--border-radius-1);
      }

      &:hover {
        &::before {
          background-color: rgba(0, 0, 0, 0);
        }

        img {
          transform: scale(1.06);
          filter: brightness(1.15);
        }
      }

      img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        display: block;
        transition: all 0.3s ease;
      }
    }

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

    .btn-view-details {
      background-color: var(--primary);
      color: var(--white);
      border: none;
      padding: 0.75rem 2.5rem;
      border-radius: var(--border-radius-1);
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.2s ease-out;
      display: inline-flex;
      align-items: center;
      justify-content: center;

      &:hover {
        background-color: var(--dark-primary);
        transform: translateY(-3px);
      }
    }

    @media (max-width: 768px) {
      .modal-content {
        width: 95%;
        margin: 5vh auto;
        border-radius: var(--border-radius-1);
      }

      .modal-body {
        padding: 1.25rem;
      }

      .modal-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }

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

      .screenshot img {
        height: 90px;
      }
    }
  }

  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: translateY(20px) scale(0.97);
    }

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

  /* Lightbox Gallery Styles */
  .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    overflow: hidden;

    .lightbox-content {
      position: relative;
      width: 85%;
      height: 85%;
      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: var(--border-radius-1);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    }

    .lightbox-close {
      position: absolute;
      right: 20px;
      top: 20px;
      color: var(--white);
      font-size: 1.5rem;
      font-weight: 600;
      cursor: pointer;
      background-color: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(8px);
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 2010;
      transition: all 0.2s ease-out;

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

    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: var(--white);
      font-size: 1.5rem;
      font-weight: 600;
      cursor: pointer;
      background-color: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(8px);
      width: 44px;
      height: 44px;
      line-height: 44px;
      text-align: center;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      user-select: none;
      z-index: 2010;
      transition: all 0.2s ease-out;

      &:hover {
        background-color: var(--primary);
        border-color: var(--primary);
        transform: translateY(-50%) scale(1.08);
      }
    }

    .lightbox-prev {
      left: 20px;
    }

    .lightbox-next {
      right: 20px;
    }

    .lightbox-counter {
      position: absolute;
      bottom: 24px;
      color: var(--white);
      font-size: 0.875rem;
      font-weight: 600;
      background-color: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(8px);
      padding: 6px 18px;
      border-radius: var(--border-radius-4);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
  }

  /* Support pages  */

  .contact_form {
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin: 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.8rem;
        border: 1px solid transparent;
        border-radius: var(--border-radius-2);
        background: var(--dark-gray);
        color: var(--white);

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

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

  /* ── Single Page — Unified Design ── */

  .single-page {
    --accent: var(--primary);
    position: relative;
    @media screen and (max-width: 764px) {
      padding-top: 6rem;
    }

    &.page-play {
      --accent: #38bdf8;
    }
    &.page-watch {
      --accent: #f43f5e;
    }
    &.page-fitness {
      --accent: #22c55e;
    }
    &.page-learn {
      --accent: #f59e0b;
    }
    &.page-astrology {
      --accent: #a78bfa;
    }
  }

  /* Back link */
  .single-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
    transition: color 0.25s ease;

    svg {
      width: 18px;
      height: 18px;
      transition: transform 0.25s ease;
    }

    &:hover {
      color: var(--accent);

      svg {
        transform: translateX(-4px);
      }
    }
  }

  /* Single card container */
  .single-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-2);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  /* Hero banner area (blurred background image) */
  .single-hero {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    padding: 2rem;

    &::before {
      content: "";
      position: absolute;
      inset: -20px;
      background: var(--hero-bg) center / cover no-repeat;
      filter: blur(25px) brightness(0.4) saturate(1.4);
      z-index: 0;
    }

    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 100%);
      z-index: 1;
    }

    .single-hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      gap: 1.5rem;
      align-items: flex-end;
      width: 100%;

      @media (max-width: 576px) {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    }
  }

  /* App thumbnail in hero */
  .single-thumb {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: var(--border-radius-1);
    overflow: hidden;
    box-shadow:
      0 8px 30px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.08);
    border: 2px solid color-mix(in srgb, var(--accent) 30%, transparent);

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

    @media (max-width: 576px) {
      width: 120px;
      height: 120px;
      margin-bottom: -0.5rem;
    }
  }

  /* Hero text info */
  .single-hero-text {
    flex: 1;
    min-width: 0;

    h1 {
      font-size: 1.75rem;
      font-weight: 800;
      font-family: "Plus Jakarta Sans", sans-serif;
      line-height: 1.2;
      margin-bottom: 0.75rem;
      letter-spacing: -0.02em;

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

  /* Meta pills (label, rating, downloads) */
  .single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    align-items: center;

    @media (max-width: 576px) {
      justify-content: center;
    }
  }

  .meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--border-radius-4);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;

    img {
      width: 14px;
      height: 14px;
    }
  }

  .meta-pill--label {
    background: var(--accent);
    color: var(--black);
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
  }

  .meta-pill--stat {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  /* Body area below hero */
  .single-body {
    padding: 0rem 2rem 2rem;

    @media (max-width: 576px) {
      padding: 1.25rem;
    }
  }

  /* Description text */
  .single-description {
    color: var(--gray);
    font-size: 0.9375rem;
    line-height: 1.75;

    p,
    ul li,
    ol li {
      line-height: 1.75;
      margin: 0.75rem 0;
      background: none !important;
      font-size: 0.9375rem;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      background: none !important;
      color: var(--white);
      margin: 1.25rem 0 0.5rem;
    }

    table {
      width: 100% !important;
      font-size: 0.875rem;
      margin: 1rem 0;
      border-collapse: collapse;

      tr td {
        padding: 0.5rem 1rem;
        text-align: left !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      @media screen and (max-width: 767px) {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
      }
    }
  }

  /* CTA button */
  .single-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 2.5rem;
    background: var(--accent);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    border-radius: var(--border-radius-1);
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 200px;
    text-decoration: none;

    svg {
      width: 20px;
      height: 20px;
    }

    &:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px color-mix(in srgb, var(--accent) 35%, transparent);
      color: var(--white);
    }

    &.watching {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid var(--accent);
      color: var(--accent);
      pointer-events: none;
    }
  }

  /* Divider line */
  .single-divider {
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
    opacity: 0.2;
    margin: 1rem 0;
  }

  /* Article / Blog hero image */
  .single-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;

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

    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    }
  }

  /* Article header */
  .single-article-header {
    padding: 2rem 2rem 0;

    h1 {
      font-size: 1.75rem;
      font-weight: 800;
      font-family: "Plus Jakarta Sans", sans-serif;
      line-height: 1.3;
      margin-block: 1rem 0;
      letter-spacing: -0.02em;

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

  /* Media player container */
  .single-player {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-1);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);

    video {
      width: 100%;
      display: block;
      max-height: 480px;
    }

    #player {
      height: 100%;
      width: 100%;

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

  /* Audio player */
  .single-audio {
    width: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-1);

    audio {
      width: 100%;
    }
  }

  /* Film player area */
  .single-film-player {
    aspect-ratio: 16/9;
    border-radius: var(--border-radius-1);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);

    #player {
      width: 100%;
      height: 100%;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--border-radius-1);
      }
    }
  }

  .unsub-container {
    align-items: center;

    p {
      margin: 0 auto 20px;
      color: var(--gray);
    }

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

      label {
        font-size: 0.8125rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #94a3b8;
      }

      input {
        padding: 0.75rem 1rem;
        border: 1px solid rgba(71, 85, 105, 0.4);
        border-radius: 0.75rem;
        background: rgba(15, 23, 42, 0.6);
        color: var(--white);
        font-size: 1rem;
        font-family: inherit;
        transition: border-color 0.25s ease;
        resize: vertical;
        width: 100%;

        &::placeholder {
          color: #64748b;
        }
      }

      .btn {
        width: 100%;
      }
    }

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

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

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

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

    p {
      margin: 0;
    }
  }

  /* Footer  */

  footer {
    background: var(--dark-gradient);
    .backToTopBtn {
      bottom: 20px;
      left: 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;
    }

    .site_footer {
      padding-block: 3.125rem;

      .logo_footer {
        max-width: 50px;
      }

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

      p,
      .disclaimer {
        font-size: 14px;
        line-height: 18px;
        text-align: center;
        margin-bottom: 1rem;
        color: var(--gray);
      }

      .logos img {
        width: 40px;
        height: 40px;
        object-fit: contain;
      }

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

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

  /* 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);
    }
  }
  .refund-modal,
  .otp-modal,
  .login-modal,
  .unsub-modal,
  .sign-up-modal {
    position: fixed;
    inset: 0;
    background: var(--dark-gradient);
    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: 0.75rem;
      font-size: 1.75rem;
      cursor: pointer;
      color: #94a3b8;
      transition: color 0.2s ease;
      line-height: 1;
      z-index: 1;

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

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

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

      p {
        font-size: 0.875rem;
        text-align: center;
        line-height: normal;
        color: #94a3b8;
      }

      a {
        color: var(--primary);
        transition: opacity 0.2s ease;

        &:hover {
          opacity: 0.8;
        }
      }

      label {
        font-size: 0.8125rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #94a3b8;
      }

      @media screen and (max-width: 767px) {
        margin-top: 0;
        gap: 0.75rem;
        padding: 1.25rem;
        max-width: fit-content;

        &label {
          line-height: 1.25rem;
        }
      }
    }

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

      label {
        color: #94a3b8;
        font-size: 0.8125rem;
        font-weight: 400;
        text-transform: none;
        letter-spacing: normal;
        display: inline;
      }

      input[type="checkbox"] {
        accent-color: var(--primary);
        margin: 0 10px 0 0;
      }
    }

    input {
      padding: 0.75rem 1rem;
      border: 1px solid rgba(71, 85, 105, 0.4);
      border-radius: 0.75rem;
      background: rgba(15, 23, 42, 0.6);
      color: var(--white);
      font-size: 1rem;
      transition: border-color 0.25s ease;

      &::placeholder {
        color: #64748b;
      }

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

    .btn {
      width: 100%;
      margin-top: 0.5rem;
      padding: 0.875rem;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 0.75rem;
      font-size: 0.9375rem;
      font-weight: 600;
      cursor: pointer;
      transition:
        opacity 0.25s ease,
        transform 0.25s ease;

      &:hover {
        opacity: 0.9;
        transform: translateY(-1px);
      }
    }

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

    .modal-content {
      background: rgba(30, 41, 59, 0.4);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(71, 85, 105, 0.3);
      width: 80%;
      overflow: auto;
      max-inline-size: 1200px;
      position: relative;
      border-radius: 1.25rem;

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

      h2 {
        color: var(--white);
        font-weight: 700;
        letter-spacing: -0.02em;
      }

      .form-group input {
        background: rgba(15, 23, 42, 0.6);
        padding: 0.75rem 1rem;
        color: var(--white);
        border: 1px solid rgba(71, 85, 105, 0.4);

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

        &::placeholder {
          color: #64748b;
        }

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

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

      &::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent 60%, rgba(30, 41, 59, 0.4) 100%);
      }

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

    .modal-form {
      padding: 4rem 0;

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

  .refund-modal {
    .btn {
      margin-top: 0;
    }
    .form-group {
      gap: 2rem;

      p {
        padding: 0;
        margin: 0;
        color: #94a3b8;
      }

      h3 {
        font-weight: 600;
        font-size: 1.125rem;
        color: var(--white);

        &:first-child {
          margin-bottom: 0.75rem;
        }
      }

      a {
        font-weight: 600;
        color: var(--primary);
      }
    }

    .info-frame {
      padding: 1.5rem 1rem;
      background: rgba(56, 189, 248, 0.06);
      border: 1px solid rgba(71, 85, 105, 0.3);
      border-radius: 0.75rem;
    }
  }

  /* Payment modal  */

  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: var(--dark-gradient);
    align-items: center;
    justify-content: center;
    padding: 30px 0;
  }

  /* Payment Modal Styles */
  #paymentModal {
    .modal-content {
      background: rgba(30, 41, 59, 0.4);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(71, 85, 105, 0.3);
      border-radius: 1.25rem;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      padding: 2rem;
      max-width: 540px;
      width: 90%;
      margin: 20px auto;
      display: flex;
      flex-direction: column;
      height: auto;
      position: relative;

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

    h2 {
      font-size: 1.5rem;
      color: var(--white);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      text-align: center;

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

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

    input {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1px solid rgba(71, 85, 105, 0.4);
      border-radius: 0.75rem;
      font-size: 1rem;
      transition: border-color 0.25s ease;
      background: rgba(15, 23, 42, 0.6);
      color: var(--white);

      &::placeholder {
        color: #64748b;
      }

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

      &.error {
        border-color: #dc3545;
      }

      &.success {
        border-color: #28a745;
      }
    }

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

      .form-group {
        flex: 1;
      }
    }

    button[type="submit"] {
      width: 100%;
      padding: 0.875rem;
      background: var(--primary);
      border: none;
      border-radius: 0.75rem;
      color: var(--white);
      font-size: 0.9375rem;
      font-weight: 600;
      cursor: pointer;
      transition:
        opacity 0.25s ease,
        transform 0.25s ease;
      margin-top: 0.5rem;
      box-sizing: border-box;

      &:hover {
        opacity: 0.9;
        transform: translateY(-1px);
      }
    }

    .close {
      position: absolute;
      right: 1.25rem;
      top: 0.75rem;
      font-size: 1.75rem;
      color: #94a3b8;
      cursor: pointer;
      transition: color 0.2s ease;
      line-height: 1;

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

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

  /* Custom Audio Player Styling */

  audio {
    width: 100%;
    height: 50px;
    border-radius: var(--border-radius-3);

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

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

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

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

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

  /* Legals Pages  */

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

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

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

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

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

@layer pages {
  /* Account Page Redesign */

  .account-redesign {
    background: var(--background);
  }

  .account-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    text-align: center;

    &::before {
      content: "";
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }
  }

  .account-hero-content {
    position: relative;
    z-index: 1;

    h1 {
      font-size: 3.5rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--white);
      margin: 0.75rem 0 1rem;

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

    p {
      font-size: 1.25rem;
      color: #94a3b8;
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;

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

  .account-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .account-cards-section {
    padding: 0 0 4rem;
    position: relative;
  }

  .account-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    @media screen and (max-width: 767px) {
      grid-template-columns: 1fr;
    }
  }

  .account-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 1.25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition:
      border-color 0.3s ease,
      transform 0.3s ease;

    &:hover {
      border-color: rgba(56, 189, 248, 0.3);
      transform: translateY(-2px);
    }

    h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      margin: 0;
    }

    p {
      font-size: 1rem;
      color: #94a3b8;
      line-height: 1.6;
      margin: 0;
    }

    &-highlight {
      border-color: rgba(56, 189, 248, 0.25);
      background: linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, rgba(30, 41, 59, 0.5) 100%);
    }

    &-icon {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.75rem;
      background: rgba(56, 189, 248, 0.1);
      color: var(--primary);
      flex-shrink: 0;
    }
  }

  .account-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(56, 189, 248, 0.4);
    border-radius: 0.75rem;
    color: var(--primary);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    width: fit-content;

    &:hover {
      background: rgba(56, 189, 248, 0.1);
      border-color: var(--primary);
      transform: translateX(4px);
    }

    svg {
      transition: transform 0.25s ease;
    }

    &:hover svg {
      transform: translateX(4px);
    }
  }

  .account-support-section {
    padding: 0 0 5rem;
  }

  .account-support-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.06) 0%, rgba(30, 41, 59, 0.5) 100%);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 1.25rem;

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

    .account-support-left {
      display: flex;
      align-items: center;
      gap: 1.25rem;

      h3 {
        font-size: 1.375rem;
        font-weight: 700;
        color: var(--white);
        margin: 0;
      }

      p {
        font-size: 0.9375rem;
        color: #94a3b8;
        margin: 0.25rem 0 0;
      }

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

    .account-support-contacts {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-shrink: 0;

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

    .account-support-divider {
      width: 1px;
      height: 40px;
      background: rgba(71, 85, 105, 0.4);

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

    .account-support-item {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .account-support-label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--primary);
    }

    .account-support-value {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--white);
    }
  }

  .payment-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    text-align: center;

    &::before {
      content: "";
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .pricing-grid {
      margin-top: 2.5rem;
    }

    .payment-hero-content {
      position: relative;
      z-index: 1;
    }

    .pricing-recur-note {
      font-size: 0.8125rem;
      color: #64748b;
      text-align: center;
      margin: 0;
    }
  }

  .payment-agreement-section {
    padding: 0 0 3rem;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);

    .account-card {
      padding: 2.5rem;
    }

    h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--white);
      margin: 0 0 0.5rem;
    }

    #subscription-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .payment-agreement-subtitle {
      color: #94a3b8;
      margin: 0 0 2rem;
    }
  }

  .payment-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;

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

      input[type="checkbox"] {
        accent-color: var(--primary);
        margin-top: 3px;
        flex-shrink: 0;
      }

      label {
        font-size: 0.875rem;
        color: #94a3b8;
        line-height: 1.5;
        cursor: pointer;
      }
    }
  }

  .payment-footer-section {
    padding: 0 0 3rem;

    .payment-footer-content {
      text-align: center;

      p {
        font-size: 0.8125rem;
        color: #64748b;
        line-height: 1.6;
        margin: 0 0 1rem;
      }
    }

    .payment-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
      margin-top: 1rem;

      img {
        height: 30px;
        opacity: 0.6;
      }
    }
  }

  /* Support Page Redesign */

  .support-redesign {
    background: var(--background);
  }

  .support-info-card .support-info-content {
    color: #94a3b8;
    line-height: 1.7;

    h2,
    h3 {
      color: var(--white);
      margin-bottom: 0.5rem;
    }

    p {
      margin-bottom: 1rem;
    }

    a {
      color: var(--primary);
      font-weight: 600;
    }
  }

  .support-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;

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

      label {
        font-size: 0.8125rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #94a3b8;
      }

      input,
      textarea {
        padding: 0.75rem 1rem;
        border: 1px solid rgba(71, 85, 105, 0.4);
        border-radius: 0.75rem;
        background: rgba(15, 23, 42, 0.6);
        color: var(--white);
        font-size: 1rem;
        font-family: inherit;
        transition: border-color 0.25s ease;
        resize: vertical;

        &::placeholder {
          color: #64748b;
        }

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

  .support-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
    width: 100%;
    margin-top: 0.5rem;

    &:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }
  }

  .support-alert {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    margin-top: 1rem;

    &-success {
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.3);
      color: #4ade80;
    }

    &-error {
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid rgba(239, 68, 68, 0.3);
      color: #f87171;
    }
  }

  /* Support page */

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

    h3 {
      color: var(--primary);
      font-size: 1.2rem;
      text-transform: uppercase;

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

    .intro-text {
      max-width: 640px;
      margin: 20px auto;
      color: var(--gray);
      font-weight: 400;
      font-size: 1.2;
    }

    h2 {
      font-size: 3rem;
      font-weight: 200;
      color: var(--gray);

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

    .support-phone {
      display: flex;
      align-items: center;
      gap: 15px;
      width: max-content;
      color: var(--dark-gray);
      background: var(--white);
      border-radius: 75px;
      padding: 20px 50px 20px 20px;
      font-size: 4rem;
      text-decoration: none;
      line-height: 60px;
      margin: 20px auto;
      transition: all 0.2s ease-out;
      font-weight: 700;

      @media (max-width: 767px) {
        font-size: 9vw;
        padding: 12px 30px 12px 12px;
      }

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

      img {
        background: green;
        padding: 13px;
        border-radius: 50px;
        width: 60px;
        height: 60px;
      }
    }

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

    .insight-frame {
      width: 100%;
      background: var(--dark-gray);
      border-radius: var(--border-radius-2);
      padding: var(--border-radius-4) var(--border-radius-2);
      transition: all 0.2s ease-out;
      filter: brightness(0.9) contrast(1);
      -webkit-filter: brightness(0.75) contrast(1);

      &:hover {
        transform: scale(1.05);
        filter: brightness(2.5) contrast(1.25);
        -webkit-filter: brightness(2.5) contrast(1.25);
      }

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

      img {
        filter: brightness(0.25);
      }

      h2 {
        font-weight: 600;
        color: var(--primary);
        margin: 20px 0 10px;

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

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

    .support-live-chat {
      background: var(--primary);
      background: linear-gradient(to bottom, var(--dark-primary), var(--primary));
      position: relative;
      padding: 60px 80px;
      border-radius: var(--border-radius-2);

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

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

      .chat-content {
        position: relative;
        z-index: 1;
        max-width: 60%;
        margin-left: auto;
        text-align: right;

        @media (max-width: 767px) {
          max-width: 100%;
          margin-left: 0;
          text-align: center;
        }

        h2 {
          font-size: 4rem;
          color: var(--black);

          @media (max-width: 767px) {
            font-size: 11vw;
            letter-spacing: -0.5px;
            font-weight: 300;
          }
        }

        h3 {
          color: var(--light-primary);
        }

        p {
          color: var(--dark-gray);
          font-weight: 500;
          font-size: 1.2rem;
        }
      }

      > img {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 0;
        max-height: 100%;

        @media (min-width: 768px) and (max-width: 1199px) {
          right: -10px;
          z-index: 0;
          height: 340px;
          width: auto;
        }

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

      .chat-button {
        display: block;
        max-width: max-content;
        padding: 0.6rem 2.5rem 0.6rem 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
        border-radius: var(--border-radius-3);
        border: none;
        transition: all 0.2s ease-out;
        margin: 20px 0 0 auto;
        cursor: pointer;

        @media (max-width: 767px) {
          padding: 0.6rem 1rem;
          width: 100%;
          max-inline-size: none;
          justify-content: center;
        }

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

        span {
          text-transform: uppercase;
          font-weight: 600;
          font-size: 1.25rem;

          @media (max-width: 767px) {
            font-size: 5vw;
            letter-spacing: -0.5px;
          }
        }

        img {
          width: 40px;
          height: 40px;
        }
      }
    }

    .video-wrapper {
      height: fit-content;
      overflow: hidden;
      border-radius: var(--border-radius-1);

      .controls {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2px;

        button {
          width: 100%;
          padding: 2.25rem 1.5rem;
          display: flex;
          gap: 1rem;
          background: var(--dark-gray);
          color: var(--gray);
          border: none;
          cursor: pointer;
          transition: filter 0.3s ease-out;

          @media (max-width: 1199px) {
            padding: 1.5rem 1rem;

            span {
              font-size: 14px !important;
            }

            .gap-30 {
              gap: 10px !important;
            }
          }

          &:hover,
          &.active {
            color: var(--white);

            img {
              filter: brightness(1);
              -webkit-filter: brightness(1);
            }
          }

          img {
            transition: filter 0.3s ease-out;
            filter: brightness(0.5);
            -webkit-filter: brightness(0.5);
          }
        }
      }

      .video-frame {
        flex: 1;
        position: relative;
        width: 100%;
        height: auto;
        min-height: 240px;

        .cover {
          position: absolute;
          background: url("../images/video-cover.jpg") center / cover no-repeat;
          width: 100%;
          height: 100%;
        }

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

    .testimonial-slider {
      width: 100%;
      border-radius: 10px;
      text-align: center;
      position: relative;

      .testimonial {
        display: none;

        &.active {
          display: block;
          animation: fade 0.4s ease-in-out;
        }

        img {
          margin: 0 auto 20px;
        }

        .stars {
          color: #f5b301;
          font-size: 18px;
        }

        .text {
          color: var(--gray);
          font-size: 18px;
          padding: 0 5rem;
          margin: 20px auto 30px;
          max-width: 800px;

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

        .name {
          font-weight: 600;
          color: var(--md-gray);
        }
      }

      .controls {
        position: absolute;
        width: 100%;
        left: 0;
        top: 50%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);

        button {
          transition: all 0.2s ease-out;
          color: var(--white);
          border: 1px solid var(--md-gray);
          padding: 20px 24px;
          font-size: 24px;
          line-height: 20px;
          cursor: pointer;
          border-radius: 50px;
          background: transparent;

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

      @keyframes fade {
        from {
          opacity: 0;
        }

        to {
          opacity: 1;
        }
      }
    }

    .contact-card-section {
      padding: 60px 0 40px;

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

      .wrapper {
        --wrapper-max-width: 1080px;
      }

      .contact-card-lead {
        margin: 0 0 30px 0;
        font-size: 30px;
        line-height: 42px;
        font-weight: 300;
        color: #8f8f8f;
        text-align: center;

        @media (max-width: 767px) {
          font-size: 22px;
          line-height: 32px;
          margin-bottom: 20px;
        }
      }

      .contact-card-grid {
        display: flex;
        gap: 30px;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
        padding: 0 20px;
      }

      .contact-card {
        background: rgba(35, 36, 33, 0.8);
        border-radius: 20px;
        padding: 20px 30px 40px;
        width: 320px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;

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

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

      .contact-card-icon {
        width: 60px;
        height: 60px;
        display: grid;
        place-items: center;
      }

      .contact-card-icon img {
        width: 60px;
        height: 60px;
      }

      .contact-card-icon.link-box {
        background: #0a0b09;
        border-radius: 40px;
        overflow: hidden;
      }

      .contact-card-body {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .contact-card-title {
        margin: 0;
        font-weight: 700;
        font-size: 18px;
        text-transform: uppercase;
        color: var(--primary);
      }

      .contact-card-link {
        font-weight: 600;
        font-size: 15px;
        color: var(--white);
        text-decoration: underline;
        text-underline-offset: 2px;
      }

      .contact-card-links-inline {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
      }

      .contact-card-links-inline .divider {
        color: var(--white);
        opacity: 0.6;
      }
    }

    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: var(--border-radius-2);
    }

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

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

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

        img {
          left: auto;
          right: 20px;
        }

        a {
          font-size: 1.5rem;
          text-decoration: none;
        }
      }

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

      > img {
        position: absolute;
        left: 0;
        top: -30px;
        height: 100%;
        width: auto;
        z-index: 0;
        object-fit: contain;
        object-position: top;
        max-width: 350px;

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

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

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

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

    .contact_form {
      padding: 0;
      background: none;

      .form-control {
        padding: 15px;
        background: var(--dark-gray) !important;
        color: var(--white);
        border: none !important;
        border-radius: var(--border-radius-1);

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

  /* Features Section */
  .features-section {
    text-align: center;

    .features-header {
      margin-bottom: 4rem;
    }

    .features-title {
      font-size: 3rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--white);

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

    .features-subtitle {
      max-width: 655px;
      margin: 1rem auto 0;
      font-size: 1.25rem;
      line-height: 1.75;
      color: #99a1af;

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

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;

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

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

    .feature-card {
      background: rgba(30, 41, 59, 0.3);
      border: 1px solid #1e293b;
      border-radius: 1rem;
      padding: 2rem;
      text-align: left;
      transition:
        border-color 0.3s ease,
        transform 0.3s ease;

      &:hover {
        border-color: rgba(56, 189, 248, 0.3);
        transform: translateY(-4px);
      }

      h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--white);
        margin-top: 1.5rem;
      }

      p {
        font-size: 1rem;
        line-height: 1.625;
        color: #99a1af;
        margin-top: 0.75rem;
      }

      .feature-icon {
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(56, 189, 248, 0.1);
        border: 1px solid rgba(56, 189, 248, 0.2);
        border-radius: 14px;
        color: var(--primary);
      }

      &.feature-card-highlight {
        background: linear-gradient(141deg, #38bdf8 0%, #0ea5e9 100%);
        border-color: transparent;

        &:hover {
          border-color: transparent;
        }

        .feature-icon {
          background: rgba(255, 255, 255, 0.2);
          border-color: transparent;
          color: var(--white);
        }

        p {
          color: rgba(255, 255, 255, 0.9);
        }
      }
    }

    .feature-cta {
      margin-top: 1.5rem;
      background: var(--white);
      color: var(--background);
      font-size: 1rem;
      font-weight: 600;
      padding: 0.75rem 1.5rem;
      border-radius: 10px;
      text-transform: none;
    }
  }

  /* Pricing Section */
  .pricing-section,
  .payment-hero {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    text-align: center;

    .pricing-header {
      margin-bottom: 3rem;
    }

    .pricing-title {
      font-size: 3rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--white);

      .text-accent {
        color: var(--primary);
      }

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

    .pricing-subtitle {
      max-width: 670px;
      margin: 1rem auto 0;
      font-size: 1.25rem;
      line-height: 1.75;
      color: #99a1af;

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

    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr;
      max-width: 500px;
      margin-inline: auto;
    }

    .pricing-card {
      background: rgba(30, 41, 59, 0.5);
      border: 1px solid #1e293b;
      border-radius: 1.5rem;
      padding: 2rem;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 2rem;
      position: relative;
      transition:
        border-color 0.3s ease,
        transform 0.3s ease;

      &:hover {
        border-color: rgba(56, 189, 248, 0.3);
        transform: translateY(-4px);
      }

      h3 {
        font-size: 1.875rem;
        font-weight: 700;
        color: var(--white);
        text-align: center;
      }

      &-popular {
        border-color: var(--primary);
        box-shadow:
          0 20px 25px rgba(56, 189, 248, 0.2),
          0 8px 10px rgba(56, 189, 248, 0.2);

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

    .pricing-badge {
      position: absolute;
      top: -1rem;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary);
      color: var(--white);
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      padding: 0.5rem 1.5rem;
      border-radius: 9999px;
      white-space: nowrap;
    }

    .pricing-card-top {
      text-align: center;
    }

    .pricing-tagline {
      font-size: 1rem;
      color: #99a1af;
      margin-top: 0.5rem;
    }

    .pricing-price {
      margin-top: 1.5rem;
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 0.25rem;
    }

    .price-amount {
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;

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

    .price-period {
      font-size: 1.25rem;
      color: #99a1af;
    }

    .pricing-features {
      display: flex;
      flex-direction: column;
      gap: 1rem;

      li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1rem;
        color: #d1d5dc;
        line-height: 1.5;

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

    .pricing-btn {
      width: 100%;
      background: #1e293b;
      border: 1px solid rgba(56, 189, 248, 0.3);
      color: var(--white);
      font-size: 1rem;
      font-weight: 700;
      padding: 1rem;
      border-radius: 14px;
      text-transform: none;
      margin-top: auto;

      &-primary {
        background: var(--primary);
        border-color: var(--primary);
        box-shadow:
          0 10px 15px rgba(56, 189, 248, 0.3),
          0 4px 6px rgba(56, 189, 248, 0.3);
      }
    }

    .pricing-guarantee {
      margin-top: 3rem;
      font-size: 1rem;
      color: #99a1af;
      text-align: center;

      strong {
        color: var(--primary);
        font-weight: 600;
      }
    }
  }

  .faqs-section {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  }

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

    .accordion-title {
      font-weight: 600;
      color: var(--md-gray);
      font-size: 18px;
    }

    .accordion-item {
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--md-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.25rem;
          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 */
        }
      }
    }
  }
  /* Unsubscribe Confirmation Modal Styles */
  .unsub-confirm-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.4);
    justify-content: center;
    align-items: center;

    .unsub-modal-content {
      background-color: #ffffff;
      border-radius: 20px;
      padding: 30px 50px;
      width: 90%;
      max-width: 600px;
      box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
      animation: unsubModalSlideIn 0.3s ease-out;
    }

    .unsub-modal-header {
      margin-bottom: 30px;
      text-align: center;

      h2 {
        font-family: "Roboto", sans-serif;
        font-size: 20px;
        font-weight: 600;
        color: #0a0b09;
        margin: 0;
        line-height: 24px;
      }
    }

    .unsub-modal-body {
      margin-bottom: 30px;
    }

    .unsub-reasons {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .unsub-reason-item {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 12px 0;
      cursor: pointer;
      font-family: "Roboto", sans-serif;
      font-size: 16px;
      font-weight: 400;
      color: #0a0b09;
      line-height: 24px;
      border-bottom: 1px solid #f0f0f0;

      &:last-child {
        border-bottom: none;
      }

      input[type="radio"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
        flex-shrink: 0;
        accent-color: #0a0b09;
      }

      span {
        flex: 1;
      }
    }

    .unsub-modal-footer {
      display: flex;
      justify-content: center;
    }

    .btn-unsubscribe {
      width: 100%;
      max-width: 480px;
      padding: 25px 0 !important;
      background-color: #10be00 !important;
      border-radius: 35px !important;
      font-family: "Roboto", sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #ffffff !important;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;

      &:hover {
        background-color: #0fa300 !important;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(16, 190, 0, 0.3);
      }

      &:active {
        transform: translateY(-1px);
      }
    }
  }

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

  /* Features List Component */
  .features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background-color: #161815;
    border-radius: 60px;
    transition: all 0.3s ease-out;

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

    &:hover {
      transform: translateY(-2px);
      background-color: #1a1a18;
    }

    .feature-icon {
      flex-shrink: 0;
      width: 68.75px;
      height: 68.75px;
      display: flex;
      align-items: center;
      justify-content: center;

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

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

    .feature-text {
      margin: 0;
      font-size: 24px;
      font-weight: 600;
      color: #989898;
      line-height: 24px;
      flex: 1;

      @media (max-width: 1199px) {
        font-size: 20px;
      }

      @media (max-width: 767px) {
        font-size: 16px;
        line-height: 20px;
      }
    }

    &--disabled {
      opacity: 0.8;
    }
  }
}

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

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

  .background-gray {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .br-xS {
    border-radius: var(--border-radius-xS) !important;
  }

  .br-1 {
    border-radius: var(--border-radius-1) !important;
  }

  .br-2 {
    border-radius: var(--border-radius-2) !important;
  }

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

  .flex-wrap {
    @media (max-width: 1199px) {
      flex-wrap: wrap;
    }
  }

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

  .justify-end {
    justify-content: flex-end;
  }

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

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

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

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

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

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

  .text-small {
    font-size: 0.75rem;
  }

  .col-4 {
    width: 35%;

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

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

  .col-7 {
    width: 60%;

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

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

  .col-6 {
    width: 50%;

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

  .m-auto {
    margin: 0 auto;
  }

  .w-80 {
    width: 80%;
  }

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

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

  .mt-1 {
    margin-top: 0.625rem !important;
  }

  .mt-2 {
    margin-top: 1rem !important;
  }

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

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

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

  .mb-0 {
    margin-bottom: 0 !important;
  }

  .mb-1 {
    margin-bottom: 0.625rem !important;
  }

  .mb-2 {
    margin-bottom: 1rem !important;
  }

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

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

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

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

  .pt-1 {
    padding-top: 0.625rem !important;
  }

  .pt-2 {
    padding-top: 1rem !important;
  }

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

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

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

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

  .pb-1 {
    padding-bottom: 0.625rem !important;
  }

  .pb-2 {
    padding-bottom: 1rem !important;
  }

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

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

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

  .p-2 {
    padding: 1rem !important;
  }

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

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

@keyframes playHeroDrift {
  0% {
    transform: scale(1.08) translate(0, 0);
  }
  100% {
    transform: scale(1.15) translate(-1%, -0.5%);
  }
}

@keyframes playHeroPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}

@keyframes playScrollBounce {
  0%,
  100% {
    top: 6px;
    opacity: 1;
  }
  50% {
    top: 18px;
    opacity: 0.3;
  }
}

.content-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--background);
}

.content-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: playHeroDrift 25s ease-in-out infinite alternate;
}

.content-hero__bg.play {
  background-image: url(../../assets/images/play-bck.png);
}
.content-hero__bg.watch {
  background-image: url(../../assets/images/watch_bck.png);
}

.content-hero__bg.astrology {
  background-image: url(../../assets/images/enjoy-bck.png);
}

.content-hero__bg.fitness {
  background-image: url(../../assets/images/train-bck.png);
}

.content-hero__bg.learn {
  background-image: url(../../assets/images/learn-bck.png);
}

.content-hero__bg--video {
  background: none;
  transform: none;
  animation: none;
}

.content-hero__bg--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.content-hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      var(--background) 0%,
      rgba(15, 23, 42, 0.85) 40%,
      rgba(15, 23, 42, 0.4) 70%,
      rgba(15, 23, 42, 0.6) 100%
    ),
    linear-gradient(to top, var(--background) 0%, transparent 40%);
}

.content-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-block: 6rem;
}

.content-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
  width: fit-content;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 6px;
  padding: 0.5rem 1rem;
}

.content-hero__pulse {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: playHeroPulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
}

.content-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.content-hero__title span {
  background: linear-gradient(135deg, var(--primary), #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.content-hero__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 480px;
}

.content-hero__cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}

.content-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-hero__btn--primary {
  background: linear-gradient(135deg, var(--primary), #0ea5e9);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.35);
}

.content-hero__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.45);
}

.content-hero__btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.content-hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.content-hero__tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.content-hero__tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(100, 116, 139, 0.25);
  border-radius: 4px;
}

/* Hero visual: stacked cards */
.content-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 900px;
}

.content-hero__card-stack {
  position: relative;
  width: 280px;
  height: 380px;
}

.content-hero__card {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(calc(var(--i) * 30px)) translateY(calc(var(--i) * -15px)) rotate(calc(var(--i) * -4deg))
    scale(calc(1 - var(--i) * 0.06));
}

.content-hero__card:hover {
  transform: translateX(calc(var(--i) * 40px)) translateY(calc(var(--i) * -20px)) rotate(calc(var(--i) * -2deg))
    scale(calc(1 - var(--i) * 0.03));
}

.content-hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero scroll indicator */
.content-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.content-hero__scroll span {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}

.content-hero__scroll span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 4px;
  animation: playScrollBounce 2s ease-in-out infinite;
}

.content-hero__scroll p {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* Hero mobile */
@media screen and (max-width: 991px) {
  .content-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding-block: 8rem 5rem;
  }

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

  .content-hero__desc {
    max-width: 100%;
  }

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

  .content-hero__visual {
    order: -1;
  }

  .content-hero__card-stack {
    width: 220px;
    height: 300px;
  }

  .content-hero__scroll {
    display: none;
  }

  .content-hero__gradient {
    background:
      radial-gradient(ellipse at center bottom, var(--background) 0%, transparent 50%),
      linear-gradient(to top, var(--background) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(15, 23, 42, 0.5) 100%);
  }
}

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

  .content-hero__tags {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ── Spotlight: Horizontal Showcase ── */

.content-spotlight {
  padding: 4rem 0 3rem;
  background: var(--background);
  position: relative;
  overflow: hidden;

  &.home {
    padding: 4rem 0 0;
  }
}

.content-spotlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(56, 189, 248, 0.2), transparent);
}

.content-spotlight__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-inline: 1rem;
}

.content-spotlight__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.content-spotlight__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.15), transparent);
}

.content-spotlight__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 1rem 2rem;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 189, 248, 0.3) transparent;
}

.content-spotlight__track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.content-spotlight__track::-webkit-scrollbar {
  height: 4px;
}

.content-spotlight__track::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.3);
  border-radius: 4px;
}

.content-spotlight__item {
  flex: 0 0 auto;
  width: 240px;
  height: 340px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.content-spotlight__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.4s ease;
  filter: brightness(0.75) saturate(0.9);
}

.content-spotlight__item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(56, 189, 248, 0.15);
}

.content-spotlight__item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.1);
}

.content-spotlight__rank {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
}

.content-spotlight__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.content-spotlight__overlay h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.content-spotlight__cta-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.content-spotlight__item:hover .content-spotlight__cta-hint {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .content-spotlight__item {
    width: 180px;
    height: 260px;
  }
}

/* ── Floating Navigation ── */

.content-nav {
  position: sticky;
  top: 65px;
  z-index: 50;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.content-nav.header-away {
  top: 0;
}

.content-nav--stuck {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.content-nav__inner {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.35rem;
}

.content-nav__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
  color: #94a3b8;

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

.content-nav__pill:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.content-nav__pill--active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.content-nav__pill--active:hover {
  background: var(--primary);
  color: var(--white);
}

.content-nav__pill svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.content-nav__pill--active svg {
  opacity: 1;
}

/* ── Category Sections: Magazine Grid ── */

.category {
  padding: 3rem 0 2rem;
  position: relative;
}

.category + .category {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.category__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.category__accent {
  width: 4px;
  height: 28px;
  border-radius: 4px;
  background: linear-gradient(to bottom, var(--primary), #0ea5e9);
  flex-shrink: 0;
}

.category__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  flex: 1;
}

.category__count {
  font-size: 0.75rem;
  color: #475569;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 6px;
  white-space: nowrap;
}

/* Magazine grid: first item spans 2 rows */
.category__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  width: 100%;
}

.category__card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.category__grid.article .category__card {
  height: 220px;
}

.category__card--featured {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
  min-height: 416px;
}

.category__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(56, 189, 248, 0.1);
}

.category__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.4s ease;
  filter: brightness(0.7) saturate(0.85);
}

.category__card:hover .category__img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}

.category__card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  z-index: 1;
}

.category__card-overlay h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

.category__card--featured .category__card-overlay h3 {
  font-size: 1.15rem;
}

/* More / Less buttons */
.category__more {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.category__more-btn,
.category__less-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 2rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: var(--primary);
}

.category__more-btn:hover,
.category__less-btn:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
}

.category__more-btn svg,
.category__less-btn svg {
  flex-shrink: 0;
}

/* Responsive category grid */
@media screen and (max-width: 767px) {
  .category__items {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.75rem;
  }

  .category__card--featured {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 200px;
  }

  .category__card {
    height: 170px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .category__items {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .category__card--featured {
    min-height: 300px;
  }
}
