body[x-data='packs'] main.flex.flex-col.gap-5.pb-20 > div > p {
  margin-top: 13px;
}
body[x-data='packs']
  main.flex.flex-col.gap-5.pb-20
  div[class='group/list']
  > ul {
  gap: 15px;
}
body[x-data='packs'] p.mt-4.text-xs.text-content-dimmed {
  margin: 30px 0 !important;
}
body[x-data='packs'] ul.flex.flex-col.gap-1.mt-3 > li {
  background: #151618;
}
html[data-mode='light'] body[x-data='packs'] ul.flex.flex-col.gap-1.mt-3 > li {
  background: #ffffff;
}
body[x-data='packs'] ul.flex.flex-col.gap-1.mt-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  
  @media (max-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
  }
  
  @media (max-width: 500px) {
    grid-template-columns: 1fr;
  }

  > li {
    padding: 26px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;

    &:hover{
      transform: scale(1.03);

      div[class='md:text-end'] > div.text-lg.font-bold {
        outline-width: 2px;
      }
    }

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, #ffa24d -27.27%, #fd8c24 127.27%);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 0;
    }

    div.flex.gap-4 > div.flex.flex-col.gap-1 > h3 {
      transition: 0.3s;
      position: relative;
      z-index: 1;
    }
    div.flex.gap-4 > div.flex.flex-col.gap-1 > span {
      transition: 0.3s;
      position: relative;
      z-index: 1;
    }

    &.special {
      &::before {
        opacity: 1;
      }

      div.flex.gap-4 > div.flex.flex-col.gap-1 > h3 {
        color: #ffffff;
      }
      div.flex.gap-4 > div.flex.flex-col.gap-1 > span {
        color: #eeeeee;
      }
      div[class='md:text-end'] > div.text-lg.font-bold {
        background: #151618 !important;
        color: #eeeeee !important;
        outline-color: #151618 !important;
        position: relative;
        z-index: 1;
      }

      div.relative.text-lg.font-bold > div:nth-of-type(1) {
        color: #eeeeee !important;
        position: relative;
        z-index: 1;
      }
      div.relative.text-lg.font-bold > p {
        color: #151618 !important;
        position: relative;
        z-index: 1;
      }

      div.flex.gap-4 > .icon {
        border-color: #ffc06a !important;
        position: relative;
        z-index: 1;
      }
    }

    /* Default grid behavior - auto-fit will handle the layout */
  }
}
html[data-mode='light'] body[x-data='packs'] ul.flex.flex-col.gap-1.mt-3 {
  > li {
    &.special {
      div[class='md:text-end'] > div.text-lg.font-bold {
        background: #ffffff !important;
        color: #151618 !important;
        outline-color: #ffffff !important;
      }
    }
  }
}
body[x-data='packs'] div.flex.flex-col.gap-4 {
  margin-bottom: 28px;
}
body[x-data='packs'] div.flex.gap-4 > .icon {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 3px #302f2f;
  border-radius: 999px;
  transition: 0.3s;

  > img {
    width: 43px;
    height: 43px;
  }
}
html[data-mode='light'] body[x-data='packs'] div.flex.gap-4 > .icon {
  border-color: #1213143d;
}
body[x-data='packs'] div.flex.gap-4 > div.flex.flex-col.gap-1 > h3 {
  font-size: 22px;
}
body[x-data='packs'] div.flex.gap-4 > div.flex.flex-col.gap-1 > span {
  color: #abaeaf;
  font-size: 13px;
}
body[x-data='packs'] div.flex.flex-col.gap-4 + div {
  margin-bottom: 20px;
}
body[x-data='packs'] div.relative.text-lg.font-bold {
  display: flex;
  align-items: center;
  gap: 9px;
}
body[x-data='packs'] div.relative.text-lg.font-bold > div:nth-of-type(1) {
  font-size: 14px;
  color: #abaeaf;
  font-weight: 500;
  transition: 0.3s;
}
body[x-data='packs'] div.relative.text-lg.font-bold > p {
  font-size: 14px;
  color: #e3731c;
  font-weight: 500;
  transition: 0.3s;
}
body[x-data='packs'] div[class='md:text-end'] {
  margin-top: auto;
}
body[x-data='packs'] div[class='md:text-end'] > div.text-lg.font-bold {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  background: linear-gradient(180deg, #ffa24d -27.27%, #fd8c24 127.27%);
  color: #1b1b1b;
  outline: solid 0 #ffa24d;
  outline-offset: 2px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.3s;
}
html[data-mode='light']
  body[x-data='packs']
  div[class='md:text-end']
  > div.text-lg.font-bold {
  color: #fefefe;
}
body[x-data='packs'] a.absolute.top-0.left-0.w-full.h-full {
  z-index: 2;
}  