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

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

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

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

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

  h1,
  h2,
  h3,
  button,
  input,
  label {
    line-height: 1.1;
  }

  p,
  li {
    text-wrap: pretty;
  }

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

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

@layer base {
  :root {
    --black: #080512;
    --white: #fff;
    --primary: #9810fa;
    --light-primary: #f6339a;
    --dark-primary: #c27aff;
    --light-gray: #f1f1f1;
    --gray: #8a8a8a;
    --dark-gray: #1a1a1a;
    --modal-bg: #0e0e0e;
    --modal-border: #2a2a2a;

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

  @view-transition {
    navigation: auto;
  }

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

  html {
    scroll-padding: 2rem;
    overflow-x: hidden;
  }
  body {
    font-size: 1rem;
    color: var(--white);
    background-color: var(--black);
    position: relative;
    font-family: "Outfit", sans-serif;
  }

  h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
  }

  h2 {
    font-size: 1.875rem;
    font-weight: 700;
  }

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

  p:empty {
    display: none;
  }

  .btn {
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(90deg, #e60076 0%, #8200db 100%);
    border: 2px solid var(--light-purple);
    border-radius: var(--border-radius-4);
    transition: all 0.3s ease-out;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    text-decoration: none !important;
    min-width: 240px;

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

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

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

    box-sizing: border-box;
  }

  .wrapper[data-width="narrowXS"] {
    --wrapper-max-width: 400px;
  }
  .wrapper[data-width="narrow"] {
    --wrapper-max-width: 745px;
  }
  .wrapper[data-width="medium"] {
    --wrapper-max-width: 1040px;
  }
  .wrapper[data-width="wide"] {
    --wrapper-max-width: 1440px;
  }
  .section {
    padding-block: 4rem;

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

@layer components {
  /* Navigation  */

  .top_bar {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 2.5rem;
    background: rgba(16, 184, 65, 0.06);
    border-bottom: 1px solid rgba(16, 184, 65, 0.12);
    align-items: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 1000;

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

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

    a {
      color: var(--gray);
      font-weight: 500;
      font-size: 0.8125rem;
      letter-spacing: 0.5px;
      transition: color 0.2s ease;

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

    .support-icon {
      width: 18px;
      height: 18px;
      opacity: 0.6;
    }
  }

  .site_header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    align-items: center;
    z-index: 999;
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

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

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

      &:hover {
        opacity: 0.8;
      }

      .logo_desktop {
        display: block;

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

      .logo_mobile {
        display: none;

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

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

      ul {
        display: flex;
        gap: 1.5rem;
        align-items: center;

        a {
          text-decoration: none;
          font-weight: 500;
          font-size: 0.875rem;
          letter-spacing: 0.5px;
          text-transform: uppercase;
          color: var(--gray);
          transition: color 0.2s ease;

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

      .signup-link {
        background: var(--primary);
        padding: 0.5rem 1.5rem;
        border-radius: 2097150rem;
        background: linear-gradient(90deg, #f6339a 0%, #9810fa 100%);
        color: var(--white);
        font-weight: 600;
        font-size: 0.8125rem;
        letter-spacing: 1px;
        transition:
          background-color 0.2s ease,
          box-shadow 0.2s ease;

        &:hover {
          background: var(--light-primary);
          color: var(--white);
          box-shadow: 0 0 20px rgba(16, 184, 65, 0.3);
        }
      }
    }

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

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

      .unsubLink {
        font-size: 0.8125rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--gray);
        transition: color 0.2s ease;

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

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

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      z-index: 1002;
      transition: border-color 0.2s ease;

      &:hover {
        border-color: rgba(16, 184, 65, 0.3);
      }

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

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

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

  /* Close button for slide-out panels */

  .nav-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.4rem;
    cursor: pointer;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
      border-color 0.2s ease,
      color 0.2s ease;

    &:hover {
      border-color: rgba(16, 184, 65, 0.4);
      color: var(--primary);
    }
  }

  /* Mobile slide-out panels (outside header to avoid backdrop-filter containing block) */

  .site_navigation--mobile {
    display: none;

    @media screen and (max-width: 767px) {
      display: block;
      position: fixed;
      top: 0;
      right: 0;
      width: 80%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-left: 1px solid rgba(255, 255, 255, 0.06);
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
      z-index: 1001;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;

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

      ul {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 5rem 2rem;

        a {
          text-decoration: none;
          font-weight: 500;
          font-size: 1.25rem;
          letter-spacing: 0.5px;
          text-transform: uppercase;
          color: var(--gray);
          transition: color 0.2s ease;

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

        .signup-link {
          background: none;
          display: inline-block;
          padding: 0;
          border-radius: 0;
          color: var(--gray);
          font-weight: 500;
          letter-spacing: 1px;
        }
      }
    }
  }

  .dropdown-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    width: 25%;
    padding: 5rem 2rem;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    z-index: 1001;

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

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

    &.active {
      right: 0;
    }

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

      li a {
        display: block;
        padding: 0.625rem 0.75rem;
        font-size: 0.9375rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: var(--gray);
        transition:
          color 0.2s ease,
          padding-left 0.2s ease;
        border-radius: 4px;

        &:hover {
          color: var(--primary);
          padding-left: 1rem;
          background: rgba(16, 184, 65, 0.05);
        }
      }
    }
  }

  /* Hero Section */

  .page_hero {
    position: relative;
    padding-block: 8rem;
    padding-left: 3rem;
    text-align: left;
    color: var(--white);
    background: linear-gradient(180deg, #080512 0%, #352178 50%, #352178 100%);
    min-height: 720px;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    overflow: hidden;

    /* Green glow effects - follow mouse */
    .hero-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(148, 16, 184, 0.08);
      filter: blur(64px);
      pointer-events: none;
      left: var(--glow-x, 50%);
      top: var(--glow-y, 50%);
      transition:
        left 0.3s ease-out,
        top 0.3s ease-out;
    }

    .hero-glow--1 {
      transform: translate(-60%, -60%);
    }

    .hero-glow--2 {
      transform: translate(-40%, -40%);
      transition-duration: 0.5s;
    }

    .hero_wave {
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 100%;
    }
    .hero_content {
      position: relative;
      z-index: 1;
      max-width: 700px;

      h1 {
        text-transform: none;
        color: #fff;
        font-size: 4.5rem;
        font-style: normal;
        font-weight: 900;
        line-height: 4.95rem; /* 110% */
        letter-spacing: -0.1125rem;

        span {
          display: block;
          background: linear-gradient(90deg, #fb64b6 0%, #c27aff 50%, #00d3f3 100%);
          background-clip: text;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        }

        @media screen and (max-width: 1199px) {
          font-size: 4.5rem;
        }
        @media screen and (max-width: 767px) {
          line-height: 3.5rem;
          font-size: 3rem;
        }
      }
    }
    .hero_login_img {
      bottom: 0;
      position: absolute;
      right: 0;
      z-index: 0;
    }

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

    .intro-text {
      font-size: 1.25rem;
      line-height: 1.4;
      color: var(--white);
      max-width: 635px;
      margin: 0 auto 2.5rem;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: flex-start;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-hero-primary {
      background: linear-gradient(90deg, #f97316 0%, #f6339a 50%, #9810fa 100%);

      color: var(--white);
      border: none;
      border-radius: 25px;

      font-weight: 600;
      font-size: 1rem;
      padding: 1rem 2.5rem;
      height: 56px;
      min-width: 250px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;

      &:hover {
        background: linear-gradient(90deg, #9810fa 0%, #f97316 50%, #f6339a 100%);
        transform: none;
      }
    }

    .btn-hero-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--modal-border);
      border-radius: 4px;

      font-weight: 600;
      font-size: 1rem;
      padding: 1rem 2.5rem;
      height: 60px;
      min-width: 188px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition:
        border-color 0.2s,
        color 0.2s;
      text-transform: uppercase;

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

    @media screen and (max-width: 767px) {
      padding-block: 3rem 5rem;
      min-height: 500px;
      padding-left: 1rem;

      .hero-glow {
        width: 300px;
        height: 300px;
      }

      .hero-actions {
        flex-direction: column;

        .btn-hero-primary,
        .btn-hero-outline {
          width: 100%;
          max-width: 300px;
        }
      }
    }
  }

  /* Compact logged-in hero */
  .home-hero {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background: url(../images/hero.png), linear-gradient(180deg, #080512 0%, #352178 50%, #352178 100%);
    background-size: contain, contain;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    overflow: hidden;

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

    h1 {
      font-size: 3.75rem;
      font-style: normal;
      font-weight: 700;
      line-height: 4rem; /* 106.667% */

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

    .home-hero__subtitle {
      font-size: 1.125rem;
      line-height: 1.5;
      color: var(--gray);
      max-width: 560px;
      margin: 0 auto;
    }

    @media screen and (max-width: 767px) {
      padding-block: 3rem 2rem;
    }
  }
  /* Content type picker tabs */
  .home-picker {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    .home-picker__tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;

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

    .home-picker__tab {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 2.5rem;
      border: 1px solid var(--modal-border);
      border-bottom: none;
      border-radius: 4px;
      border-radius: 1.25rem 1.25rem 0 0;
      background: #1f1346;
      color: var(--primary);
      font-weight: 600;
      font-size: 1.5rem;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.25s ease;
      text-transform: uppercase;
      justify-content: center;

      @media screen and (max-width: 575px) {
        width: 100%;
        font-size: 1rem;
        max-width: 150px;
        padding: 0.75rem 1.5rem;
      }

      svg {
        opacity: 0.6;
        transition: opacity 0.25s ease;

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

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

        svg {
          opacity: 1;
        }
      }

      &.home-picker__tab--active {
        border-color: var(--black);
        background: var(--black);
        color: var(--dark-primary);

        svg {
          opacity: 1;
          color: var(--primary);
        }
      }
    }
  }
  .category-section {
    padding-block: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;

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

  .category-section--alt {
    background: linear-gradient(135deg, rgba(16, 184, 65, 0.03) 0%, transparent 50%, rgba(16, 184, 65, 0.02) 100%);
  }

  .category-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(16, 184, 65, 0.15),
      rgba(255, 255, 255, 0.06),
      rgba(16, 184, 65, 0.15),
      transparent
    );
  }

  .category-section:last-of-type::after {
    display: none;
  }

  .category-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: 0.02em;
  }

  .category-section h2::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
  }

  /* Game Cards Grid Layout */
  .apps.row {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
    gap: 24px;
    width: 100%;
    margin: 0 auto;

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

  /* Enhanced Button Styling */
  .see-more-btn,
  .see-less-btn,
  #see-all,
  #see-less {
    background: none;
    border: none;
    padding: 0.75rem 2.5rem;
    border-radius: 4px;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
  }

  .see-more-btn:hover,
  .see-less-btn:hover,
  #see-all:hover,
  #see-less:hover {
    transform: translateY(-2px);
    color: var(--white);
    border-color: var(--white);
  }

  /* Transition effects for display toggling */
  .apps.row,
  #all-articles {
    transition: opacity 0.3s ease;
  }

  /* Game links styling */
  .apps.row a {
    text-decoration: none;
    display: block;
    width: 100px;
  }

  /* Category Cards */
  .visible-item {
    text-decoration: none;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  .visible-item:hover {
    transform: translateY(-6px);
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(16, 184, 65, 0.15);
  }

  .category_card {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: var(--dark-gray);

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
      z-index: 1;
      transition: opacity 0.3s ease;
    }

    &:hover::before {
      background: linear-gradient(to top, rgba(164, 16, 184, 0.6) 0%, rgba(0, 0, 0, 0.25) 45%, transparent 100%);
    }

    img.cardsImage {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease-out;
    }

    &:hover img.cardsImage {
      transform: scale(1.08);
    }

    .cardsTitle {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1rem;
      font-size: 0.9rem;
      line-height: 1.3;
      color: var(--white);
      font-weight: 600;
      z-index: 2;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    }
  }

  @media (max-width: 576px) {
    .category_card .cardsTitle {
      font-size: 0.8rem;
      padding: 0.75rem;
    }
  }

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

  .section__header {
    text-align: center;
    margin-bottom: 3rem;

    &.home {
      width: 20%;

      @media screen and (max-width: 767px) {
        width: 100%;
        margin-bottom: 1rem;
      }
    }
    h2 {
      line-height: 1.5;
      letter-spacing: 3.2px;
      background: linear-gradient(90deg, #fb64b6 0%, #c27aff 50%, #00d3f3 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.5rem;

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

    .section__subtitle {
      font-size: 1rem;
      line-height: 1.5;
      color: var(--white);
    }
  }

  .login_categories {
    .reverse {
      flex-direction: row-reverse;
    }
    .categories_section_content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
      flex: 1 0 0;

      h3 {
        background: linear-gradient(90deg, #fff 0%, #d1d5dc 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 3rem;
        font-style: normal;
        font-weight: 900;
        line-height: 3rem; /* 100% */
      }
      p {
        color: #d1d5dc;

        font-size: 1.125rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.82813rem; /* 162.5% */
      }
    }
    img {
      border-radius: 1.5rem;
      border: 2px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      width: 50%;

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

  .cards {
    display: flex;
    flex-wrap: wrap;

    img {
      width: 100%;
      height: auto;
      border-radius: 1rem;
      max-width: 250px;

      @media screen and (max-width: 767px) {
        max-width: 150px;
      }
    }
  }
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;

    @media screen and (max-width: 991px) {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin-inline: auto;
    }
  }

  .feature-card {
    background: var(--modal-bg);
    border: 1px solid var(--modal-border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .feature-card__image {
    height: 200px;
    background: linear-gradient(147deg, rgba(246, 51, 154, 0.2) 0%, rgb(0, 0, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature-card__label {
    font-size: 4rem;
    letter-spacing: 4px;
    color: rgba(246, 51, 154, 0.3);
  }

  .feature-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .feature-card__title {
    font-size: 1.5rem;
    letter-spacing: 1.2px;
    color: var(--white);
    line-height: 1.3;
  }

  .feature-card__desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--gray);
  }

  .feature-card__stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    font-size: 0.8125rem;
    color: var(--gray);
    margin-top: 0.5rem;
  }

  .stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
    flex-shrink: 0;
  }

  /* ===== Simple Pricing ===== */

  .pricing-card {
    background: var(--modal-bg);
    border: 1px solid var(--primary);
    border-radius: 4px;
    padding: 3rem 2rem;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .pricing-card__badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: var(--black);

    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 0.5rem 1.25rem;
    text-transform: uppercase;
  }

  .pricing-card__price {
    font-size: 5rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;

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

  .pricing-card__period {
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
  }

  .pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    max-width: 320px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
  }

  .pricing-card__features li {
    font-size: 1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .btn-pricing {
    background: var(--primary);
    color: var(--black);
    border: none;
    border-radius: 4px;

    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 3rem;
    min-width: 280px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    text-transform: uppercase;

    &:hover {
      background: var(--light-primary);
      transform: none;
    }
  }

  .pricing-card__recurs {
    font-size: 0.8125rem;
    color: var(--gray);
    margin-top: 1.5rem;
  }
  /* Scrollbar  */

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

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

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

  #title-section {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

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

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

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

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

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

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

  /* Single Page */
  .single-page {
    position: relative;
    padding-bottom: 4rem;
  }

  .single-page__banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 340px;
    overflow: hidden;
    z-index: 0;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: blur(20px) brightness(0.4);
      transform: scale(1.1);
    }
  }

  .single-page__banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, var(--black) 100%);
  }

  .single-page__content {
    position: relative;
    z-index: 1;
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .single-page__thumb {
    width: 140px;
    height: 140px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;

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

  .single-page__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;

    h1 {
      font-size: 2rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;

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

  .single-page__meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .single-page__tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: var(--primary);
    color: var(--black);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 6px;
    text-transform: capitalize;
  }

  .single-page__stat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 0.9rem;

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

  .single-page__cta {
    margin-top: 0.5rem;
    min-width: 200px;
  }

  .single-page__hero-image {
    width: 100%;
    max-height: 400px;
    border-radius: 14px;
    overflow: hidden;

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

  .single-page__body {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;

    p,
    ul li,
    ol li {
      font-size: 1rem;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 1.25rem;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      color: var(--white);
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    h2 {
      font-size: 1.5rem;
    }
    h3 {
      font-size: 1.25rem;
    }

    img {
      width: 100%;
      border-radius: 14px;
      margin-block: 1.5rem;
    }

    video {
      width: 100%;
      height: auto;
      border-radius: 14px;
    }

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

  /* Article variant — no thumb, wider header */
  .single-page--article .single-page__header {
    gap: 0.75rem;
  }

  .single-page--article .single-page__header h1 {
    font-size: 2.25rem;
    max-width: 720px;

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

  .unsub-container {
    border: 3px solid var(--dark-gray);
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    border-radius: var(--border-radius-2);

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

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

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

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

      .btn {
        width: 100%;
      }
    }

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

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

  /* Alert styles */

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

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

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

  .alert p {
    margin: 0;
  }

  /* Footer  */
  .backToTopBtn {
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(20, 20, 20);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 4px var(--primary);
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    position: fixed;
  }

  #backToTop {
    opacity: 0;
    visibility: hidden;

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

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

  .svgIcon path {
    fill: white;
  }

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

  .backToTopBtn:hover .svgIcon {
    /* width: 20px; */
    transition-duration: 0.3s;
    transform: translateY(-200%);
  }

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

  .backToTopBtn:hover::before {
    font-size: 13px;
    opacity: 1;
    bottom: unset;
    /* transform: translateY(-30px); */
    transition-duration: 0.3s;
  }

  footer {
    /* background: var(--dark-gray); */
    position: relative;
    overflow: hidden;

    .footer-glow {
      position: absolute;
      width: 384px;
      height: 384px;
      border-radius: 50%;
      background: rgba(16, 184, 65, 0.06);
      filter: blur(80px);
      pointer-events: none;
    }

    .footer-glow--left {
      left: -128px;
      bottom: -64px;
    }

    .footer-glow--right {
      right: -128px;
      bottom: -64px;
    }

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

    .site_footer {
      padding-block: 4rem;

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

      a {
        color: var(--gray);
        text-decoration: none;
        transition: color 0.2s;
        font-size: 0.8125rem;
        letter-spacing: 1px;

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

      .footer_links ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
      }

      .footer_divider {
        width: 100%;
        max-width: 520px;
        height: 1px;
        background: var(--modal-border);
        margin: 0 auto 2rem;
      }

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

      .credit_cards img {
        width: 60px;
        object-fit: contain;
        opacity: 0.7;
        transition: opacity 0.2s;

        &:hover {
          opacity: 1;
        }
      }

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

        .footer_links ul {
          flex-direction: column;
          gap: 1.25rem;
        }
      }
    }
  }

  /* Modals  */

  .spinner {
    border: 4px solid var(--white);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin-left: 10px;
  }
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  .otp-modal,
  .login-modal,
  .unsub-modal,
  .sign-up-modal {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem;

    /* Decorative green glow effects from Figma */
    .modal-glow {
      position: fixed;
      width: 384px;
      height: 384px;
      border-radius: 50%;
      background: rgba(170, 16, 184, 0.1);
      filter: blur(64px);
      pointer-events: none;
    }

    .modal-glow--left {
      left: -128px;
      top: 50%;
      transform: translateY(-50%);
    }

    .modal-glow--right {
      right: -128px;
      top: 55%;
      transform: translateY(-50%);
    }

    .close {
      position: absolute;
      right: 1rem;
      top: 0.75rem;
      font-size: 1.75rem;
      cursor: pointer;
      color: var(--gray);
      transition: color 0.2s;
      z-index: 1;

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

    /* Modal card - the main container from Figma */
    .modal-card {
      border-radius: 1.875rem;
      background: linear-gradient(180deg, #080512 50%, #321f72 100%);
      border-radius: 4px;
      width: 100%;
      max-width: 448px;
      padding: 2rem;
      position: relative;
      z-index: 1;
      animation: modalFadeIn 0.3s ease-out;
    }

    /* Modal heading section */
    .modal-heading {
      text-align: center;
      margin-bottom: 1rem;

      h2 {
        font-size: 2rem;
        letter-spacing: 2px;
        color: var(--white);
        margin-bottom: 0.25rem;
      }

      .modal-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        color: var(--gray);
      }
    }

    /* Form body */
    .modal-form-body {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    /* Individual field group (label + input) */
    .modal-field {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;

      label {
        font-weight: 600;
        font-size: 0.875rem;
        line-height: 1.4;
        color: var(--white);
        text-transform: uppercase;
      }
    }

    /* Input styling from Figma */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="number"] {
      background: var(--dark-gray);
      border: 1px solid var(--modal-border);
      border-radius: 4px;
      padding: 0.75rem 1rem;

      font-size: 1rem;
      color: var(--white);
      height: 50px;
      transition: border-color 0.2s;

      &::placeholder {
        color: rgba(255, 255, 255, 0.5);
      }

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

    /* Checkbox groups */
    .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;

      input[type="checkbox"] {
        height: auto;
        margin-top: 0.2rem;
        flex-shrink: 0;
      }

      label {
        color: var(--gray);
        font-size: 0.8125rem;
        line-height: 1.3;
      }

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

    .btn {
      width: 100%;
      height: 48px;
      background: var(--primary);
      border: none;
      border-radius: 4px;

      font-weight: 600;
      font-size: 1rem;
      color: var(--black);
      text-transform: uppercase;
      cursor: pointer;
      transition: background-color 0.2s;
      padding: 0;
      min-width: unset;

      &:hover {
        background: var(--light-primary);
        transform: none;
      }
    }

    /* Error message */
    .error {
      color: #ff4444;
      font-size: 0.875rem;
      text-align: center;
    }

    /* Footer text */
    .modal-footer-text {
      text-align: center;
      font-size: 0.875rem;
      color: var(--gray);
      margin-top: 1.5rem;
      line-height: 1.5;

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

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

      .modal-glow {
        display: none;
      }

      .modal-card {
        padding: 1.5rem;
      }

      .modal-heading h2 {
        font-size: 2rem;
      }
    }
  }

  /* Payment modal  */

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

  /* Payment Modal Styles */

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

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

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

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

      @media screen and (max-width: 767px) {
        padding: 0;
        margin-bottom: 20px !important;
      }
    }

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

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

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

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

      .form-group {
        flex: 1;
      }
    }

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

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

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

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

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

  /* Legals Pages  */

  .legals {
    h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      margin-top: 2.5rem;
    }
    h3 {
      font-size: 1.5rem;
      margin-top: 1.5rem;
      margin-bottom: 1rem;
    }
    h4 {
      font-size: 1.25rem;
      margin-top: 1.25rem;
      margin-bottom: 0.5rem;
    }
    p {
      font-size: 1rem;
      margin-bottom: 1rem;
    }
    ul {
      list-style: disc;
      padding-left: 20px;

      li {
        margin-bottom: 0.5rem;
      }
    }
    a {
      color: var(--white);
      text-decoration: underline;
      font-weight: 600;
    }
  }
}

@layer pages {
  .title-bar {
    background: var(--dark-gray);
    padding-block: 4rem;

    h1 {
      text-align: center;
      color: var(--gray);
      font-weight: 600;
      text-transform: uppercase;
      font-size: 2.5rem;

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

  /* Account Page */

  .account-page {
    h3 {
      color: var(--primary);
      font-size: 1.25rem;
      letter-spacing: 2px;
      margin-bottom: 0.5rem;
    }

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

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

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

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

  .account-hero {
    position: relative;
    padding-block: 6rem;
    text-align: center;
    overflow: hidden;

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

    h1 {
      font-size: 5rem;
      line-height: 0.95;
      letter-spacing: 4px;
      margin-bottom: 1.5rem;

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

    .intro-text {
      font-size: 1.125rem;
      color: var(--gray);
      max-width: 500px;
      margin: 0 auto;
    }

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

  .account-card {
    background: var(--dark-gray);
    border-radius: var(--border-radius-2);
    padding: 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;

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

    .account-card__icon {
      color: var(--primary);
      flex-shrink: 0;
    }

    .account-card__content {
      flex: 1;

      h2 {
        margin-bottom: 0.75rem;
      }
    }
  }

  .account-card--action {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1rem;

    .account-card__icon {
      background: rgba(16, 184, 65, 0.08);
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    h2 {
      font-size: 2rem;
    }

    p {
      max-width: 280px;
      margin-bottom: 0.5rem;
    }

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

  .account-card--wide .account-card__content {
    min-width: 0;
  }

  .account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;

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

  .account-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
  }

  .account-contact__item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;

    svg {
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 2px;
    }
  }

  .account-contact__label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.15rem;
  }

  .account-contact__value {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .account-contact__note {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.15rem;
  }
}

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

  .background-light {
    background-color: var(--light-gray);
  }
  .background-gradient {
    background: linear-gradient(180deg, #080512 0%, #6b21a8 50%, #080512 100%);
  }
  .d-flex {
    display: flex;
  }
  .flex-column {
    flex-direction: column;
  }
  .d-flex .column {
    flex-basis: 50%;
    flex-grow: 1;
  }

  .justify-center {
    justify-content: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .align-center {
    align-items: center;
  }
  .text-center {
    text-align: center;
  }
  .text-white {
    color: var(--white);
  }
  .text-black {
    color: var(--black);
  }
  .hidden {
    display: none;
  }
  .col-4 {
    width: 34%;
    @media screen and (max-width: 767px) {
      width: 100%;
    }
  }
  .col-7 {
    width: 60%;
    @media screen and (max-width: 767px) {
      width: 100%;
    }
  }
  .gap-1 {
    gap: 0.5rem;
  }
  .gap-2 {
    gap: 0.625rem;
  }
  .gap-3 {
    gap: 1rem;
  }
  .gap-20 {
    gap: 20px;
  }
  .gap-30 {
    gap: 30px;
  }
  .gap-40 {
    gap: 40px;
  }
  .gap-50 {
    gap: 50px;
  }
  .m-auto {
    margin-inline: auto !important;
  }
  .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;
  }

  .py-5 {
    padding-block: 5rem !important;

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

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

  .d-none {
    display: none;
  }

  .d-block {
    opacity: 1;
    height: auto;
  }

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