@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: #0a0a0f;
    --white: #fff;
    --primary: #ff8904;
    --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);
    --primary-gradient: linear-gradient(90deg, #ff8904 0%, #fe9a00 100%);
    --pink: #ec4899;
    --purple: #8b5cf6;
    --light-purple: #a78bfa;
    --light-gray: #f1f1f1;
    --md-gray: rgba(255, 255, 255, 0.12);
    --gray: #1f1f2e;
    --dark-gray: #15151f;

    --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-family: "Inter", sans-serif;
    font-size: 1rem;
    color: var(--black);
    background-color: var(--white);
    position: relative;
  }

  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 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;

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

    svg {
      flex-shrink: 0;
    }

    &.btn--primary {
      background: var(--primary);

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

    &.btn--outline {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.1);

      &:hover {
        border-color: rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.05);
      }
    }
  }
}

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

    + .section {
      padding-top: 1rem;
    }
  }

  .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;
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% - 10px));
    cursor: pointer;
    z-index: 1000;
    justify-content: space-between;
    padding: 0.6rem;
    background: var(--primary-gradient);
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    max-width: 450px;
    width: 90%;
    border-radius: 1rem 1rem 0 0;
    transition: transform 0.3s ease;

    &:hover {
      transform: translateX(-50%) translateY(0);
    }

    @media screen and (max-width: 767px) {
      padding: 0.5rem 1rem;
      transform: translateX(-50%) translateY(0);
    }

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

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

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

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

  .site_header {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    align-items: center;
    z-index: 999;
    background: var(--white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid;
    border-image: linear-gradient(90deg, rgba(99, 102, 241, 0.6), rgba(139, 92, 246, 0.6), rgba(236, 72, 153, 0.6)) 1;

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

    .logo_header {
      width: 100%;
      max-width: 160px;
      img {
        width: 100%;
        max-inline-size: none;
      }

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

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

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

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

      @media screen and (max-width: 767px) {
        position: absolute;
        top: 100%;
        right: 0;
        width: 220px;
        background: var(--white);
        padding: 0.5rem 0;
        border-radius: 0.75rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.08);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition:
          opacity 0.25s ease,
          transform 0.25s ease,
          visibility 0.25s ease;

        &.active {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);

          ul li {
            opacity: 1;
            transform: translateY(0);
          }
        }
      }

      ul {
        display: flex;
        gap: 1.25rem;

        a {
          text-decoration: none;
          font-weight: 400;
          color: var(--black);
          transition: color 0.2s ease;

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

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

          li {
            opacity: 0;
            transform: translateY(-8px);
            transition:
              opacity 0.25s ease,
              transform 0.25s ease;
          }

          li:nth-child(1) {
            transition-delay: 0.03s;
          }
          li:nth-child(2) {
            transition-delay: 0.06s;
          }
          li:nth-child(3) {
            transition-delay: 0.09s;
          }
          li:nth-child(4) {
            transition-delay: 0.12s;
          }

          li a {
            display: block;
            padding: 0.625rem 1.25rem;
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--black);
            text-decoration: none;
            transition:
              background 0.2s,
              color 0.2s;

            &:hover {
              background: rgba(0, 0, 0, 0.04);
              color: var(--primary);
            }
          }
        }
      }
    }

    .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;
        z-index: 10;

        span {
          display: block;
          width: 24px;
          height: 2.5px;
          background-color: var(--black);
          border-radius: 2px;
          transition: 0.3s ease-in-out;
        }

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

      .dropdown-menu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 220px;
        background: var(--white);
        padding: 0.5rem 0;
        border-radius: 0.75rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.08);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition:
          opacity 0.25s ease,
          transform 0.25s ease,
          visibility 0.25s ease;

        &.active {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);

          ul li {
            opacity: 1;
            transform: translateY(0);
          }
        }

        .mobile-nav {
          display: none;

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

        ul {
          display: flex;
          flex-direction: column;
          gap: 0;

          li {
            opacity: 0;
            transform: translateY(-8px);
            transition:
              opacity 0.25s ease,
              transform 0.25s ease;
          }

          li:nth-child(1) {
            transition-delay: 0.03s;
          }
          li:nth-child(2) {
            transition-delay: 0.06s;
          }
          li:nth-child(3) {
            transition-delay: 0.09s;
          }
          li:nth-child(4) {
            transition-delay: 0.12s;
          }

          li a {
            display: block;
            padding: 0.625rem 1.25rem;
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--black);
            text-decoration: none;
            transition:
              background 0.2s,
              color 0.2s;

            &:hover {
              background: rgba(0, 0, 0, 0.04);
              color: var(--primary);
            }
          }
        }
      }

      .unsubLink {
        font-size: 1rem;
        font-weight: 400;
        color: var(--black);
      }

      @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: 6px;
      cursor: pointer;
      padding: 5px;
      background: none;
      border: none;
      z-index: 10;

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

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

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

      &.dropdown-trigger {
        display: flex;
      }
    }
  }

  /* Hero Section */

  .page_hero {
    position: relative;
    padding-block-start: 8rem;
    padding-block-end: 5rem;
    text-align: center;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    h1 {
      margin-bottom: 30px;

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

  /* Hero Glow Effects */
  .hero-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: blur(64px);
    pointer-events: none;
  }

  /* Hero Badge */
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;

    span {
      font-size: 0.875rem;
      color: var(--white);
      line-height: 1.25rem;
    }
  }

  /* Hero Heading */
  .hero-heading {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;

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

  .hero-heading__gradient {
    background: linear-gradient(90deg, var(--primary) 0%, var(--purple) 50%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Hero Description */
  .hero-description {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.75rem;
    max-width: 45rem;
    margin-inline: auto;
    margin-bottom: 2.5rem;

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

  /* Hero Buttons */
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
  }

  /* Hero Stats */
  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;

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

  .hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-stat__number {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.5rem;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-stat__label {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.25rem;
  }

  /* Hero Warm Variant */
  .page_hero--warm {
    background: linear-gradient(150deg, #fff7ed 0%, #fffbeb 50%, #fefce8 100%);
    color: #101828;
    text-align: left;
    min-height: auto;
    padding-block: 8rem 5rem;
  }

  .hero-glow--orange {
    right: 0;
    top: 80px;
    width: 256px;
    height: 256px;
    left: auto;
    background: #ffd6a8;
    opacity: 0.36;
  }

  .hero-glow--yellow {
    left: 0;
    bottom: 0;
    top: auto;
    width: 384px;
    height: 384px;
    right: auto;
    background: #fee685;
    opacity: 0.41;
  }

  .hero-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;

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

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badge--light {
    background: white;
    border: none;
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.1),
      0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;

    span {
      color: #364153;
    }
  }

  .hero-heading--left {
    text-align: left;
    align-items: flex-start;

    > span:first-child {
      color: #101828;
      -webkit-text-fill-color: #101828;
      background: none;
    }
  }

  .hero-heading__gradient--orange {
    background: linear-gradient(90deg, #ff6900 0%, #fe9a00 50%, #f0b100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-description--dark {
    color: #4a5565;
    max-width: 34rem;
    margin-inline: 0;
    font-size: 1.25rem;
    line-height: 1.625;
    margin-bottom: 2.5rem;
  }

  .hero-buttons--left {
    justify-content: flex-start;
  }

  .btn--gradient-orange {
    background: linear-gradient(90deg, #ff6900, #fe9a00);
    color: white;
    border-radius: 9999px;
    padding: 1rem 2rem;
    font-weight: 700;

    &:hover {
      filter: brightness(1.05);
    }

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

  .btn--white-shadow {
    background: white;
    color: #101828;
    border-radius: 9999px;
    padding: 1rem 2rem;
    font-weight: 700;
    box-shadow:
      0 4px 6px rgba(0, 0, 0, 0.1),
      0 2px 4px rgba(0, 0, 0, 0.1);

    &:hover {
      box-shadow:
        0 6px 10px rgba(0, 0, 0, 0.12),
        0 3px 6px rgba(0, 0, 0, 0.1);
    }
  }

  .hero-stats--left {
    justify-content: flex-start;
    gap: 2rem;
    margin-top: 0;
  }

  .hero-stat--dark .hero-stat__number {
    color: #101828;
    background: none;
    -webkit-text-fill-color: #101828;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 2.25rem;
  }

  .hero-stat--dark .hero-stat__label {
    color: #4a5565;
  }

  .hero-stat__divider {
    width: 1px;
    height: 48px;
    background: #d1d5dc;
    align-self: center;
  }

  /* Hero Right - Featured Card */
  .hero-right {
    position: relative;
    display: flex;
    justify-content: center;

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

  .hero-emoji-badge {
    position: absolute;
    background: white;
    border-radius: 14px;
    box-shadow:
      0 10px 15px rgba(0, 0, 0, 0.1),
      0 4px 6px rgba(0, 0, 0, 0.1);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 16px;
    font-size: 1.5rem;
    z-index: 2;
  }

  .hero-emoji-badge--top {
    top: -30px;
    left: -16px;
  }

  .hero-emoji-badge--side {
    bottom: 50%;
    right: -16px;
    transform: translateY(50%);
  }

  .hero-featured-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 520px;
  }

  .hero-featured-card__image {
    background: url(../images/premium/top3.png) no-repeat center/cover;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 0.96;
    padding: 2rem;
    position: relative;

    svg {
      margin-bottom: 1rem;
      position: relative;
      z-index: 1;
    }

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      border-radius: 16px;
    }

    &.hero-featured-card__image--app {
      background: url(../images/premium/top1.png) no-repeat center/cover;
    }
  }

  .hero-featured-card__label {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;

    h3 {
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 2rem;
      margin-bottom: 0;
    }

    p {
      font-size: 1.125rem;
      opacity: 0.9;
      line-height: 1.75rem;
    }
  }

  .hero-featured-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 0;
  }

  .hero-featured-card__avatars {
    display: flex;
  }

  .hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #ffb86a 0%, #ffb900 100%);
    border: 2px solid white;
    margin-right: -8px;

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

  .hero-featured-card__playing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .hero-featured-card__playing-label {
    font-size: 0.875rem;
    color: #6a7282;
    line-height: 1.25rem;
  }

  .hero-featured-card__playing-count {
    font-size: 1.125rem;
    font-weight: 700;
    color: #101828;
    line-height: 1.75rem;
  }

  .section-online-games,
  .section-mobile-games,
  .section-gaming-articles {
    padding: 5rem 0;
  }

  .section-header-centered {
    text-align: center;
    margin-bottom: 3rem;

    h2 {
      font-size: 2.25rem;
      font-weight: 700;
      color: #101828;
      line-height: 2.5rem;
      margin-bottom: 0.75rem;
    }

    p {
      font-size: 1.125rem;
      color: #4a5565;
      line-height: 1.75rem;
      max-width: 38rem;
      margin: 0 auto;
    }
  }

  .section-footer {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
  }

  /* ── Online Games Section ── */

  .online-game-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;

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

  /* Shared card styles */
  .online-game-card,
  .mobile-game-card,
  .gaming-article-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;

    &:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }
  }

  .online-game-card,
  .gaming-article-card {
    overflow: hidden;
  }

  .online-game-card__image,
  .gaming-article-card__image {
    height: 10rem;
    position: relative;
    overflow: hidden;
  }

  .online-game-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
  }

  .online-game-card__rating {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--white);
    border-radius: 9999px;
    padding: 0.25rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #101828;
    z-index: 1;
  }

  .online-game-card__body,
  .gaming-article-card__body {
    padding: 1.25rem;
  }

  .online-game-card__info h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 0.25rem;
    line-height: 1.5rem;
  }

  .online-game-card__genre {
    font-size: 0.8125rem;
    color: #6a7282;
  }

  .online-game-card__footer,
  .gaming-article-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
  }

  .online-game-card__footer {
    margin-top: 1rem;
  }

  .online-game-card__players {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #6a7282;
  }

  .online-game-card__play,
  .gaming-article-card__read {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ff6900;
    text-decoration: none;
    transition: opacity 0.2s ease;

    &:hover {
      opacity: 0.8;
    }
  }

  /* ── Home page card adaptations ── */
  .online-game-card__image img.cardsImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  a.online-game-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
  }

  a.mobile-game-card {
    text-decoration: none;
    color: inherit;
  }

  .mobile-game-card__icon--img {
    padding: 0;
    overflow: hidden;

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

  /* ── Mobile Games Section ── */
  .section-mobile-games {
    background: linear-gradient(180deg, #fff7ed 0%, #fffbeb 100%);
  }

  .mobile-game-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;

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

  .mobile-game-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .mobile-game-card__header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .mobile-game-card__icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, #ff8904, #ff6900);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-game-card__title h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 0.125rem;
    line-height: 1.5rem;
  }

  .mobile-game-card__genre {
    font-size: 0.8125rem;
    color: #6a7282;
    display: block;
    margin-bottom: 0.5rem;
  }

  .mobile-game-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }

  .mobile-game-card__rating-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #101828;
  }

  .mobile-game-card__downloads {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: #6a7282;
  }

  .mobile-game-card__tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .mobile-game-card__tag {
    display: inline-block;
    padding: 0.1875rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 500;
    background: #f3f4f6;
    color: #374151;
  }

  .mobile-game-card__tag--orange {
    background: #fff7ed;
    color: #ff6900;
  }

  .mobile-game-card__actions {
    display: flex;
    gap: 0.75rem;
  }

  .mobile-game-card__download-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .btn--details {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    background: var(--white);
    border: 1px solid #d1d5db;
    text-decoration: none;
    transition: background 0.2s ease;

    &:hover {
      background: #f9fafb;
    }
  }

  /* ── Gaming Articles Section ── */

  .gaming-article-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;

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

  .gaming-article-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
  }

  .gaming-article-card__category {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 9999px;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white);
    z-index: 1;
  }

  .gaming-article-card__body h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 0.5rem;
    line-height: 1.5rem;
  }

  .gaming-article-card__body > p {
    font-size: 0.875rem;
    color: #6a7282;
    line-height: 1.375rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .gaming-article-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .gaming-article-card__author-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #101828;
  }

  .gaming-article-card__read-time {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: #6a7282;
  }

  .gaming-article-card__date {
    font-size: 0.8125rem;
    color: #6a7282;
  }

  /* Hero Payment  */
  .logo {
    width: 100px;
  }

  .hero_payment {
    background: linear-gradient(180deg, #fff7ed 0%, #fffbeb 60%, #fff 100%);
    padding: 3rem 0 4rem;

    > .wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
  }

  .payment-pricing,
  .payment-form-card {
    background: #fff;
    border: 1px solid rgba(255, 138, 4, 0.12);
    border-radius: 1.25rem;
    width: 100%;
    max-width: 540px;
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.04),
      0 12px 40px rgba(255, 138, 4, 0.08);
  }

  /* Pricing Card */
  .payment-pricing {
    padding: 2rem 2.5rem;
    text-align: center;
  }

  .payment-pricing__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ff8904;
    background: rgba(255, 138, 4, 0.1);
    border: 1px solid rgba(255, 138, 4, 0.18);
    border-radius: 9999px;
    padding: 0.3rem 1rem;
    margin-bottom: 1.25rem;
  }

  .pricing-toggle {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .pricing-option {
    text-align: center;

    .price {
      font-size: 2.5rem;
      font-weight: 800;
      color: #101828;
      margin: 0;
      letter-spacing: -0.03em;
    }

    .duration {
      font-size: 1.1rem;
      margin: 0.5rem 0 0.25rem;
      font-weight: 600;
      color: #344054;
    }

    .details {
      font-size: 0.875rem;
      color: #9ca3af;
      margin: 0;
    }
  }

  .payment-perks {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    border-top: 1px solid rgba(255, 138, 4, 0.1);
    padding-top: 1.5rem;

    li {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 0.95rem;
      color: #344054;
      font-weight: 500;

      svg {
        flex-shrink: 0;
        color: #ff8904;
      }
    }
  }

  /* Subscription Form Card */
  .payment-form-card {
    padding: 2rem 2.5rem 2.5rem;
  }

  .payment-form-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #101828;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.45;
  }

  .payment-form-card .highlight {
    background: #fffbeb;
    border: 1px solid rgba(255, 138, 4, 0.1);
    border-radius: 0.85rem;
    padding: 1.25rem 1.25rem 0.5rem;
  }

  .payment-form-card .checkbox-group {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;

    input[type="checkbox"] {
      margin-top: 0.2rem;
      accent-color: #ff8904;
      flex-shrink: 0;
      width: 1rem;
      height: 1rem;
    }

    label {
      font-size: 0.84rem;
      line-height: 1.55;
      color: #4a5565;
    }
  }

  .payment-form-card .btn {
    font-size: 1.15rem;
    width: 100%;
    font-weight: 700;
    padding: 0.9rem 1.5rem;
    margin-top: 1.5rem;
    display: block;
    border-radius: 0.75rem;
    background: linear-gradient(90deg, #ff8904, #fe9a00);
    color: #fff;
    border: none;
    cursor: pointer;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;

    &:hover:not(:disabled) {
      opacity: 0.92;
      transform: translateY(-1px);
    }

    &:disabled {
      opacity: 0.4;
      filter: grayscale(0.6);
      cursor: not-allowed;
    }
  }

  @media screen and (max-width: 600px) {
    .payment-pricing,
    .payment-form-card {
      padding: 1.5rem 1.25rem;
    }

    .pricing-option .price {
      font-size: 2rem;
    }
  }

  /* Enhanced Category Sections Styling */
  .category-section {
    padding-block: 3rem 2rem;
    position: relative;
    overflow: hidden;

    &.category-section--large {
      background: linear-gradient(180deg, #fff7ed 0%, #fffbeb 100%);
    }
  }

  .category-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  }

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

  .category-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
  }

  /* Game Cards Grid Layout */
  .apps.row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    padding-bottom: 15px;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    place-items: stretch;

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

  /* ===== Small cards grid (odd sections — 4 items, 2×2) ===== */
  .apps-row--small {
    grid-template-columns: repeat(2, 1fr) !important;
    place-items: stretch;
  }

  /* Category Cards */
  .category_card {
    width: 200px;
    min-height: 280px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--primary);
      mix-blend-mode: multiply;
      filter: opacity(0.5) brightness(0.5);
      z-index: 1;
    }

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

    img.cardsImage {
      position: absolute;
      width: auto;
      /* height: 180px; */
      object-fit: cover;
      transition: transform 0.3s ease-out;
      min-width: 100%;

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

    .cardsTitle {
      position: absolute;
      bottom: 0;
      padding: 0.75rem;
      font-size: 1rem;
      color: var(--white);
      font-weight: 500;
      z-index: 2;
    }

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

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

  /* Game links styling */
  .apps.row a {
    text-decoration: none;
  }

  /* Categorie Pills  */

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

  /* 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: #2c2c2c;
    border-radius: 10px;
  }

  /* Support pages  */

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

  .unsub-container {
    padding: 2rem 1rem 0rem;
    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.85rem 1rem;
        border: 1px solid #e5e7eb;
        border-radius: 0.75rem;
        background: #fafafa;
        color: #101828;
        font-size: 0.95rem;
        transition:
          border-color 0.2s ease,
          box-shadow 0.2s ease,
          background 0.2s ease;

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

        &:focus {
          outline: none;
          border-color: var(--primary);
          box-shadow: 0 0 0 3px rgba(255, 138, 4, 0.12);
          background: #fff;
        }
      }

      .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-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
  }

  .alert p {
    margin: 0;
  }

  /* Footer  */
  footer {
    background: #101828;

    .site_footer {
      padding-block: 3.125rem;

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

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

      p,
      .disclaimer {
        font-size: 14px;
        line-height: 18px;
        color: var(--light-gray);
      }

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

  .premium_footer {
    padding-block: 2.5rem 5rem;

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

    .premium_footer__panel {
      position: relative;
      display: grid;
      gap: 1.5rem;
      padding: 2rem 0 0;
    }

    .premium_footer__top {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 1.5rem;
    }

    .premium_footer__brand {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      color: var(--white);
      max-width: 100%;
    }

    .premium_footer__logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 3.75rem;
      height: 3.75rem;
      border: 1px solid rgba(255, 138, 4, 0.15);
      border-radius: 1.2rem;
      background: rgba(255, 138, 4, 0.06);

      img {
        width: 2.2rem;
        height: 2.2rem;
        object-fit: contain;
      }
    }

    .premium_footer__title {
      display: block;
      font-size: clamp(1.6rem, 3vw, 2.9rem);
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: -0.04em;
      text-transform: uppercase;
      word-break: break-word;
    }

    .premium_footer__cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 0.65rem;

      img {
        width: auto;
        height: 1.5rem;
        opacity: 0.82;
      }
    }

    .premium_footer__middle {
      padding-block: 1rem 1.25rem;
      border-top: 1px solid rgba(255, 138, 4, 0.1);
      border-bottom: 1px solid rgba(255, 138, 4, 0.1);
      display: flex;
      justify-content: space-between;

      @media screen and (max-width: 900px) {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
        justify-content: center;

        p {
          text-align: center;
        }
      }
    }

    .premium_footer__nav ul {
      display: flex;
      flex-direction: column;
      gap: 0.9rem 1.5rem;
      align-items: flex-start;
    }

    .premium_footer__nav a {
      position: relative;
      display: inline-flex;
      align-items: center;
      color: #4a5565;
      font-size: 0.84rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.2s ease;

      &::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.3rem;
        width: 100%;
        height: 1px;
        background: currentColor;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.2s ease;
      }

      &:hover::after,
      &:focus-visible::after {
        transform: scaleX(1);
      }
    }

    .premium_footer__bottom {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: flex-end;
      justify-content: center;

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

    .disclaimer {
      margin: 0;
      text-align: right;
      font-size: 0.9rem;
      line-height: 1.65;
      color: #9ca3af;
      max-width: 52rem;
    }

    .premium_footer__copyright {
      margin: 0;
      text-align: right;
      white-space: nowrap;
      color: #4a5565;
    }

    @media screen and (max-width: 900px) {
      .premium_footer__top,
      .premium_footer__bottom {
        grid-template-columns: 1fr;
        display: grid;
      }

      .premium_footer__cards {
        justify-content: center;
      }

      .premium_footer__copyright {
        text-align: center;
        white-space: normal;
      }
    }

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

      .premium_footer__title {
        font-size: clamp(1.35rem, 8vw, 2.2rem);
      }

      .premium_footer__nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }

      .premium_footer__middle {
        padding-block: 1.1rem;
      }
    }

    @media screen and (max-width: 479px) {
      .premium_footer__top {
        gap: 1.25rem;
      }

      .premium_footer__logo {
        width: 3.25rem;
        height: 3.25rem;
      }

      .premium_footer__logo img {
        width: 1.9rem;
        height: 1.9rem;
      }
    }
  }

  /* 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: linear-gradient(150deg, #fff7ed 0%, #fffbeb 50%, #fefce8 100%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem;

    &::before,
    &::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      z-index: 0;
    }

    &::before {
      width: 24rem;
      height: 24rem;
      top: -8rem;
      right: -6rem;
      background: rgba(255, 138, 4, 0.12);
    }

    &::after {
      width: 20rem;
      height: 20rem;
      bottom: -8rem;
      left: -4rem;
      background: rgba(254, 230, 133, 0.18);
    }

    .close {
      position: absolute;
      right: 1.25rem;
      top: 1rem;
      font-size: 2rem;
      cursor: pointer;
      color: #9ca3af;
      z-index: 2;
      transition: color 0.2s ease;

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

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

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

      p {
        font-size: 0.875rem;
        text-align: center;
        color: #4a5565;
      }

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

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

    h2 {
      color: #101828;
      font-weight: 800;
      font-size: 1.75rem;
    }

    label {
      font-size: 0.85rem;
      font-weight: 600;
      color: #344054;
    }

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

      label {
        color: #4a5565;
        font-size: 0.85rem;
        font-weight: 400;
        line-height: 1.4;
        display: inline-block;
      }

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

    input {
      padding: 0.75rem 1rem;
      border: 1px solid #e5e7eb;
      border-radius: 0.75rem;
      background: #fff;
      color: #101828;
      font-size: 0.95rem;
      transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

      &::placeholder {
        color: #9ca3af;
      }

      &:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(255, 138, 4, 0.12);
      }
    }

    .btn {
      width: 100%;
      padding: 0.85rem;
      justify-content: center;
      background: var(--primary-gradient);
      color: #fff;
      border: none;
      border-radius: 0.75rem;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.03em;
      cursor: pointer;
      transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;

      &:hover {
        box-shadow: 0 8px 24px rgba(255, 138, 4, 0.25);
        transform: translateY(-1px);
      }
    }

    .error {
      color: #dc2626;
      font-size: 0.85rem;
    }

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

      h2 {
        font-size: 1.35rem;
      }
    }

    .modal-content {
      background: #fff;
      border: 1px solid rgba(255, 138, 4, 0.1);
      border-radius: 1.25rem;
      width: 100%;
      max-inline-size: 480px;
      position: relative;
      overflow: hidden;
      z-index: 1;
      box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 20px 60px rgba(255, 138, 4, 0.08);

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

      .form-group input {
        background: #fafafa;
        padding: 0.75rem 1rem;

        &:focus-visible {
          outline: none;
          border-color: var(--primary);
          box-shadow: 0 0 0 3px rgba(255, 138, 4, 0.12);
        }

        &::placeholder {
          color: #9ca3af;
        }
      }
    }
  }

  /* Payment modal  */

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

  /* Payment Modal Styles */

  #paymentModal .modal-content {
    background: #fff;
    border: 1px solid rgba(255, 138, 4, 0.1);
    border-radius: 1.25rem;
    padding: 2rem;
    max-width: 480px;
    width: 90%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.04),
      0 20px 60px rgba(255, 138, 4, 0.08);

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

    h2 {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 1.25rem;
      text-align: center;
      color: #101828;
    }

    .form-group {
      margin-bottom: 1.25rem;
      gap: 0.5rem;

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

    label {
      display: block;
      margin-bottom: 0;
      color: #344054;
      font-size: 0.85rem;
      font-weight: 600;
    }

    input {
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: 0.95rem;
      transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
      color: #101828;
      background: #fafafa;
      border: 1px solid #e5e7eb;
      border-radius: 0.75rem;

      &::placeholder {
        color: #9ca3af;
      }

      &:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(255, 138, 4, 0.12);
        outline: none;
        background: #fff;
      }
    }

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

      .form-group {
        flex: 1;
      }
    }

    button[type="submit"] {
      width: 100%;
      padding: 0.85rem;
      background: var(--primary-gradient);
      border: none;
      border-radius: 0.75rem;
      color: white;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s ease;
      margin-top: 0.5rem;
      justify-content: center;

      &:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(255, 138, 4, 0.25);
      }
    }

    .close {
      position: absolute;
      right: 1.25rem;
      top: 1rem;
      font-size: 2rem;
      color: #9ca3af;
      cursor: pointer;
      transition: color 0.2s ease;

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

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

  /* Game Modal Styles */
  .game-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);
    backdrop-filter: blur(8px);
  }

  .game-modal .modal-content {
    position: relative;
    background: #fff;
    margin: 4% auto;
    padding: 0;
    width: 80%;
    max-width: 900px;
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.04),
      0 24px 60px rgba(0, 0, 0, 0.1);
    animation: modalFadeIn 0.35s ease-out;
    border-radius: 1.25rem;
    overflow: hidden;
  }

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

  .game-modal .close {
    position: absolute;
    right: 12px;
    top: 12px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    z-index: 10;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.35);
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    transition: background 0.2s ease;
  }

  .game-modal .close:hover {
    background: var(--primary);
  }

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

  .game-modal .video-container {
    width: 100%;
    background: #f5f5f5;
  }

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

  .game-modal .modal-body {
    padding: 1.5rem;
    color: #101828;
  }

  .game-modal .info h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #101828;
  }

  .game-modal .info {
    color: #4a5565;
    line-height: 1.6;
    font-size: 0.95rem;
  }

  .game-modal .game-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .game-modal .screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    cursor: pointer;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .game-modal .screenshot img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(255, 138, 4, 0.15);
  }

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

  .game-modal .btn-view-details {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition:
      box-shadow 0.2s ease,
      transform 0.2s ease;
  }

  .game-modal .btn-view-details:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 138, 4, 0.25);
  }

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

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

  .lightbox-image {
    max-width: 100%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    color: white;
    font-weight: bold;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    z-index: 2010;
    transition: background 0.2s ease;
  }

  .lightbox-close {
    right: 20px;
    top: 20px;
    font-size: 28px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    user-select: none;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }

  .lightbox-prev:hover,
  .lightbox-next:hover,
  .lightbox-close:hover {
    background: var(--primary);
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 9999px;
  }

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

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

  /* 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 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: clamp(3rem, 6vw, 4rem);
    background: linear-gradient(150deg, #fff7ed 0%, #fffbeb 50%, #fefce8 100%);

    &::before,
    &::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      z-index: -1;
    }

    &::before {
      width: 28rem;
      height: 28rem;
      top: -12rem;
      right: -6rem;
      background: rgba(255, 138, 4, 0.12);
    }

    &::after {
      width: 22rem;
      height: 22rem;
      bottom: -10rem;
      left: -4rem;
      background: rgba(254, 230, 133, 0.18);
    }

    .wrapper {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.25rem;
    }

    h1 {
      font-size: clamp(2.25rem, 5vw, 3.75rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      color: #101828;
      text-wrap: balance;
      background: linear-gradient(135deg, #101828 0%, #ff8904 60%, #fe9a00 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;

      @media screen and (max-width: 767px) {
        letter-spacing: -0.01em;
      }
    }

    h1::after {
      content: "";
      display: block;
      width: 3.5rem;
      height: 3px;
      margin: 1.25rem auto 0;
      border-radius: 9999px;
      background: var(--primary-gradient);
    }
  }

  /* ── Single Page (App & Article) ── */

  .sp-hero {
    position: relative;
    padding-block: 6rem 4rem;
    overflow: hidden;
    background: linear-gradient(150deg, #fff7ed 0%, #fffbeb 50%, #fefce8 100%);
  }

  .sp-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a5565;
    margin-bottom: 2rem;
    transition: color 0.2s ease;

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

  .sp-hero__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;

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

  .sp-hero__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .sp-hero__text--centered {
    align-items: center;
    text-align: center;
    max-width: 48rem;
    margin-inline: auto;
  }

  .sp-hero__title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #101828;
    -webkit-text-fill-color: #101828;
    z-index: 1;
  }

  .sp-hero__summary {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5565;
    max-width: 34rem;
    z-index: 1;
  }

  .sp-hero__summary--centered {
    max-width: 42rem;
    margin-inline: auto;
  }

  .sp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .sp-hero__media {
    display: flex;
    justify-content: center;

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

  .sp-hero__image-card {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);

    img {
      width: 100%;
      height: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
    }
  }

  .sp-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .sp-pill-row--centered {
    justify-content: center;
  }

  .sp-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    background: white;
    color: #364153;
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.1),
      0 1px 2px rgba(0, 0, 0, 0.06);
  }

  .sp-pill--muted {
    background: rgba(255, 137, 4, 0.1);
    color: #c2410c;
    box-shadow: none;
    border: 1px solid rgba(255, 137, 4, 0.2);
  }

  .sp-stats-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 0.5rem;

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

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

  .sp-stat__number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #101828;
    line-height: 1.2;
  }

  .sp-stat__label {
    font-size: 0.8125rem;
    color: #6a7282;
  }

  .sp-stat__divider {
    width: 1px;
    height: 40px;
    background: #d1d5dc;
    align-self: center;
  }

  /* Content section */
  .sp-content {
    background: #f9fafb;
  }

  .sp-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
    gap: 2rem;
    align-items: start;

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

  .sp-content__grid--article {
    grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);

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

  .sp-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 2.5vw, 2rem);
  }

  .sp-card--sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .sp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .sp-sidebar--sticky {
    position: sticky;
    top: 2rem;

    @media screen and (max-width: 960px) {
      position: static;
    }
  }

  .sp-sidebar__image {
    border-radius: 1rem;
    overflow: hidden;
    min-height: 14rem;

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

  .sp-sidebar__cta {
    width: 100%;
    justify-content: center;
    border-radius: 9999px;
  }

  .sp-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6a7282;
  }

  .sp-card__header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;

    h2 {
      margin: 0;
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 700;
      line-height: 1.15;
      color: #101828;
    }
  }

  .sp-fact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;

    li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: 0.85rem 1rem;
      border-radius: 0.75rem;
      background: #f9fafb;
      border: 1px solid #f3f4f6;

      span {
        color: #6a7282;
        font-size: 0.875rem;
      }

      strong {
        text-align: right;
        color: #101828;
        font-size: 0.875rem;
      }
    }
  }

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

  .sp-gallery__item {
    overflow: hidden;
    border-radius: 0.75rem;
    min-height: 6rem;
    background: #f3f4f6;

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

    &:hover img {
      transform: scale(1.04);
    }
  }

  .sp-prose {
    > * + * {
      margin-top: 1rem;
    }

    p,
    li {
      font-size: 1rem !important;
      line-height: 1.9 !important;
      color: #374151 !important;
      background: transparent !important;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      margin-top: 1.75rem;
      margin-bottom: 0.75rem;
      color: #101828 !important;
      background: transparent !important;
      text-transform: none;
      line-height: 1.2;
    }

    ul,
    ol {
      padding-left: 1.25rem;
    }

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

    img,
    video,
    iframe {
      width: 100%;
      max-width: 100%;
      border-radius: 1rem;
      overflow: hidden;
    }
  }

  .page {
    p {
      font-size: 14px;
      margin: 10px 0;
    }

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

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

    ul,
    ol {
      li {
        margin: 15px;
        list-style: disc;
      }
    }
  }

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

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

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

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

    a {
      color: var(--white);
      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;
      }
    }

    .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: 1.5rem;
        }
      }

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

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

      .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.5rem;
            line-height: 1.3;
            color: var(--white);
            font-weight: 600;
            flex-grow: 1;
            padding-right: 20px;

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

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

          p {
            margin: 15px 0;
          }
        }

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

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

  /* ── Support Page – Warm Variant ── */

  .support-page--warm {
    background: linear-gradient(180deg, #fefce8 0%, #fff 40%);

    .support-intro {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .support-intro__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 1rem;
      border-radius: 9999px;
      background: rgba(255, 138, 4, 0.08);
      border: 1px solid rgba(255, 138, 4, 0.15);
      color: var(--primary);
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 1.25rem;
    }

    .support-intro__heading {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 800;
      color: #101828;
      line-height: 1.2;
      margin-bottom: 0.75rem;
    }

    .support-intro__desc {
      font-size: 1.1rem;
      color: #4a5565;
      line-height: 1.7;
      max-width: 30rem;
      margin: 0 auto;
    }

    .support-card {
      background: #fff;
      border: 1px solid rgba(255, 138, 4, 0.1);
      border-radius: 1.5rem;
      padding: 2rem;
      box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 12px 40px rgba(255, 138, 4, 0.06);

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

    .support-form__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;

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

    .support-form__label {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .support-form__label--full {
      grid-column: 1 / -1;
    }

    .support-form__label-text {
      font-size: 0.85rem;
      font-weight: 600;
      color: #344054;
      letter-spacing: 0.01em;
    }

    .support-form__input {
      padding: 0.85rem 1rem;
      border: 1px solid #e5e7eb;
      border-radius: 0.75rem;
      background: #fafafa;
      color: #101828;
      font-size: 0.95rem;
      transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;

      &::placeholder {
        color: #9ca3af;
      }

      &:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(255, 138, 4, 0.12);
        background: #fff;
      }
    }

    .support-form__textarea {
      min-height: 160px;
      resize: vertical;
    }

    .support-form__footer {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .support-form__submit {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      min-width: 180px;
      justify-content: center;

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

    .support-form__note {
      margin-top: 1rem;
      font-size: 0.8rem;
      color: #9ca3af;
    }

    .support-alert {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 1.25rem;
      padding: 1rem 1.25rem;
      border-radius: 0.75rem;
      font-size: 0.9rem;
    }

    .support-alert--success {
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      color: #166534;
    }

    .support-alert--error {
      background: #fef2f2;
      border: 1px solid #fecaca;
      color: #991b1b;
    }

    .support-info {
      margin-top: 2.5rem;
      display: flex;

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

    .support-info__copy {
      color: #4a5565;
      line-height: 1.7;
      max-width: 50%;

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

      h2,
      h3,
      h4 {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        color: #101828;
      }

      p + p {
        margin-top: 0.75rem;
      }

      a {
        color: var(--primary);
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 2px;
      }

      ul,
      ol {
        padding-left: 1.2rem;
        margin-top: 0.75rem;
        list-style: disc;
      }
    }
  }

  /* ── Account Page – Warm ── */

  .account-page {
    background: linear-gradient(180deg, #fefce8 0%, #fff 40%);
  }

  .account-hero {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .account-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 138, 4, 0.08);
    border: 1px solid rgba(255, 138, 4, 0.15);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
  }

  .account-hero__desc {
    font-size: 1.1rem;
    color: #4a5565;
    line-height: 1.7;
    max-width: 34rem;
    margin: 0 auto;
  }

  .account-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;

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

  .account-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition:
      box-shadow 0.25s ease,
      transform 0.25s ease;

    &:hover {
      box-shadow:
        0 4px 16px rgba(255, 138, 4, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04);
      transform: translateY(-2px);
    }
  }

  .account-card--highlight {
    border-color: rgba(255, 138, 4, 0.2);
    background: linear-gradient(160deg, #fff 0%, #fff7ed 100%);
  }

  .account-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(255, 138, 4, 0.08);
    color: var(--primary);
  }

  .account-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #101828;
  }

  .account-card__desc {
    font-size: 0.9rem;
    color: #4a5565;
    line-height: 1.6;
    flex-grow: 1;
  }

  .account-card__btn {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
  }

  .btn--outline-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition:
      background 0.2s ease,
      color 0.2s ease;

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

  .account-assist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #ff8904 0%, #fe9a00 60%, #f0b100 100%);
    color: #fff;

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

  .account-assist__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.3;
  }

  .account-assist__subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.25rem;
  }

  .account-assist__channels {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;

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

  .account-assist__channel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
  }

  .account-assist__divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.3);

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

  .account-assist__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .account-assist__value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
  }
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999;
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 137, 4, 0.4);
    opacity: 0;
    visibility: hidden;
    translate: 0 1rem;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      translate 0.3s ease,
      scale 0.2s ease;
  }

  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }

  .back-to-top:hover {
    scale: 1.1;
    box-shadow: 0 6px 24px rgba(255, 137, 4, 0.55);
  }

  .back-to-top:active {
    scale: 0.95;
  }

  @media screen and (max-width: 767px) {
    .back-to-top {
      bottom: 5.25rem;
      right: 1.25rem;
      width: 2.75rem;
      height: 2.75rem;
    }
  }
}

@layer utilites {
  .background-dark {
    background-color: var(--dark-gray);
  }
  .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;
  }
  .text-center {
    text-align: center;
  }
  .text-white {
    color: var(--white);
  }
  .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-20 {
    gap: 20px;
  }
  .gap-50 {
    gap: 50px;
  }
  .m-auto {
    margin-inline: auto !important;
  }
  .mt-2 {
    margin-top: 1rem !important;
  }
  .mt-3 {
    margin-top: 1.5rem !important;
  }
  .mt-5 {
    margin-top: 2.5rem !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-3 {
    padding-top: 1.5rem !important;
  }
  .pt-5 {
    padding-top: 2.5rem !important;
  }
  .d-none {
    display: none;
  }

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

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