

/* ==========================================
   PILIHAN PLATFORM GAMING
========================================== */

.gaming-platform {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(90px, 10vw, 145px);
  background:
    radial-gradient(
      circle at 14% 25%,
      rgba(7, 87, 217, 0.13),
      transparent 29%
    ),
    radial-gradient(
      circle at 88% 75%,
      rgba(21, 151, 255, 0.11),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #030b1d 0%,
      #061126 48%,
      #020817 100%
    );
}

.gaming-platform::before,
.gaming-platform::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(70, 184, 255, 0.28),
      transparent
    );
}

.gaming-platform::before {
  top: 0;
}

.gaming-platform::after {
  bottom: 0;
}

/* Background */

.gaming-platform__background {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.gaming-platform__grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(
      rgba(86, 175, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(86, 175, 255, 0.045) 1px,
      transparent 1px
    );
  background-size: 68px 68px;
  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 18%,
      #000 82%,
      transparent
    );
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 18%,
      #000 82%,
      transparent
    );
}

.gaming-platform__glow {
  position: absolute;
  border-radius: 50%;
}

.gaming-platform__glow--left {
  top: 12%;
  left: -280px;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(70, 184, 255, 0.08);
  background: rgba(7, 87, 217, 0.055);
}

.gaming-platform__glow--right {
  right: -290px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(70, 184, 255, 0.08);
  background: rgba(21, 151, 255, 0.05);
  box-shadow: 0 0 145px rgba(8, 120, 249, 0.08);
}

/* Container */

.gaming-platform__container {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

/* Header */

.gaming-platform__header {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.gaming-platform__eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding-inline: 14px;
  color: #a9dcff;
  border: 1px solid rgba(70, 184, 255, 0.21);
  border-radius: 100px;
  background: rgba(21, 151, 255, 0.08);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gaming-platform__title {
  margin: 22px 0 0;
  color: #f3f9ff;
  font-size: clamp(2.4rem, 4.5vw, 4.25rem);
  font-weight: 850;
  line-height: 1.07;
  letter-spacing: -0.053em;
  text-wrap: balance;
}

.gaming-platform__title span {
  color: transparent;
  background:
    linear-gradient(
      100deg,
      #7bd5ff,
      #1597ff
    );
  background-clip: text;
  -webkit-background-clip: text;
}

.gaming-platform__description {
  max-width: 760px;
  margin: 23px auto 0;
  color: #8fa8c1;
  font-size: 0.98rem;
  line-height: 1.82;
}

.gaming-platform__description strong {
  color: #dceeff;
  font-weight: 720;
}

/* Grid */

.gaming-platform__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

/* Card */

.gaming-platform__card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(104, 180, 255, 0.14);
  border-radius: 23px;
  background:
    linear-gradient(
      145deg,
      rgba(12, 38, 77, 0.74),
      rgba(4, 17, 39, 0.9)
    );
  box-shadow:
    0 24px 65px rgba(0, 9, 29, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.gaming-platform__card:hover {
  border-color: rgba(70, 184, 255, 0.32);
  box-shadow:
    0 34px 78px rgba(0, 10, 32, 0.4),
    0 0 40px rgba(8, 120, 249, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translateY(-7px);
}

.gaming-platform__card--featured {
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(99, 204, 255, 0.2),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(16, 59, 118, 0.86),
      rgba(4, 18, 43, 0.94)
    );
}

.gaming-platform__card-glow {
  position: absolute;
  top: -110px;
  right: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(21, 151, 255, 0.09);
  filter: blur(12px);
  pointer-events: none;
}

/* Card top */

.gaming-platform__card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.gaming-platform__badge,
.gaming-platform__category {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding-inline: 11px;
  border-radius: 100px;
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.gaming-platform__badge {
  color: #d9f2ff;
  border: 1px solid rgba(70, 184, 255, 0.25);
  background: rgba(21, 151, 255, 0.13);
}

.gaming-platform__category {
  color: #819ab7;
  border: 1px solid rgba(104, 180, 255, 0.1);
  background: rgba(5, 20, 45, 0.43);
}

.gaming-platform__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #9cb6cd;
  font-size: 0.63rem;
  font-weight: 730;
  text-transform: uppercase;
}

.gaming-platform__status > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #36d393;
  box-shadow: 0 0 12px rgba(54, 211, 147, 0.72);
}

.gaming-platform__number {
  color: rgba(132, 180, 220, 0.42);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

/* Icon */

.gaming-platform__icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  place-items: center;
  margin-top: 29px;
  color: #ffffff;
  border: 1px solid rgba(115, 205, 255, 0.31);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      #1597ff,
      #0757d9
    );
  box-shadow:
    0 15px 30px rgba(8, 120, 249, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 1.2rem;
  font-weight: 900;
}

.gaming-platform__icon--number {
  font-size: 0.82rem;
}

.gaming-platform__icon--wayang {
  background:
    radial-gradient(
      circle at 25% 18%,
      rgba(116, 215, 255, 0.5),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #1597ff,
      #064dbd
    );
}

/* Content */

.gaming-platform__content {
  position: relative;
  z-index: 2;
  margin-top: 22px;
}

.gaming-platform__content h3 {
  margin: 0;
  color: #f3f9ff;
  font-size: 1.45rem;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.gaming-platform__content p {
  margin: 13px 0 0;
  color: #849eb9;
  font-size: 0.85rem;
  line-height: 1.75;
}

/* Featured list */

.gaming-platform__list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.gaming-platform__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9fb7cd;
  font-size: 0.73rem;
}

.gaming-platform__list li span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  color: #71d1ff;
  border: 1px solid rgba(70, 184, 255, 0.18);
  border-radius: 6px;
  background: rgba(21, 151, 255, 0.08);
  font-size: 0.62rem;
  font-weight: 900;
}

/* Meta */

.gaming-platform__meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 21px;
}

.gaming-platform__meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding-inline: 11px;
  color: #829cb7;
  border: 1px solid rgba(104, 180, 255, 0.1);
  border-radius: 100px;
  background: rgba(5, 20, 45, 0.46);
  font-size: 0.63rem;
  font-weight: 680;
}

/* Card link */

.gaming-platform__link {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 51px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-inline: 17px;
  margin-top: auto;
  color: #dceeff;
  border: 1px solid rgba(70, 184, 255, 0.18);
  border-radius: 13px;
  background: rgba(21, 151, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.gaming-platform__link:hover {
  color: #ffffff;
  border-color: rgba(70, 184, 255, 0.42);
  background:
    linear-gradient(
      135deg,
      rgba(21, 151, 255, 0.24),
      rgba(7, 87, 217, 0.19)
    );
  box-shadow: 0 12px 28px rgba(8, 120, 249, 0.15);
}

.gaming-platform__link svg {
  width: 18px;
  height: 18px;
  color: #58c1ff;
  transition: transform 0.25s ease;
}

.gaming-platform__link:hover svg {
  transform: translateX(4px);
}

/* Bottom block */

.gaming-platform__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 23px 25px;
  margin-top: 20px;
  border: 1px solid rgba(104, 180, 255, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(13, 42, 84, 0.61),
      rgba(4, 17, 39, 0.75)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.gaming-platform__bottom-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gaming-platform__bottom-icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  color: #49baff;
  border: 1px solid rgba(70, 184, 255, 0.18);
  border-radius: 13px;
  background: rgba(21, 151, 255, 0.08);
}

.gaming-platform__bottom-icon svg {
  width: 22px;
  height: 22px;
}

.gaming-platform__bottom-content > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gaming-platform__bottom-content strong {
  color: #e4f2ff;
  font-size: 0.84rem;
  font-weight: 760;
}

.gaming-platform__bottom-content small {
  color: #768fa9;
  font-size: 0.7rem;
  line-height: 1.55;
}

.gaming-platform__blog-link {
  display: inline-flex;
  min-height: 47px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding-inline: 19px;
  color: #ffffff;
  border: 1px solid rgba(107, 200, 255, 0.36);
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      #1597ff,
      #0757d9
    );
  box-shadow:
    0 13px 28px rgba(8, 120, 249, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 0.74rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.gaming-platform__blog-link:hover {
  box-shadow:
    0 19px 38px rgba(8, 120, 249, 0.37),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.gaming-platform__blog-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s ease;
}

.gaming-platform__blog-link:hover svg {
  transform: translateX(4px);
}

/* Focus */

.gaming-platform__link:focus-visible,
.gaming-platform__blog-link:focus-visible {
  outline: 3px solid rgba(70, 184, 255, 0.4);
  outline-offset: 4px;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {
  .gaming-platform__grid {
    grid-template-columns: 1fr;
  }

  .gaming-platform__card {
    min-height: 390px;
  }

  .gaming-platform__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 720px) {
  .gaming-platform {
    padding-block: 75px;
  }

  .gaming-platform__container {
    width: min(100% - 28px, 1240px);
  }

  .gaming-platform__eyebrow {
    min-height: 31px;
    padding-inline: 12px;
    font-size: 0.62rem;
  }

  .gaming-platform__title {
    margin-top: 19px;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.1;
  }

  .gaming-platform__description {
    margin-top: 20px;
    font-size: 0.88rem;
    line-height: 1.78;
  }

  .gaming-platform__grid {
    gap: 14px;
    margin-top: 38px;
  }

  .gaming-platform__card {
    min-height: auto;
    padding: 20px;
    border-radius: 19px;
  }

  .gaming-platform__icon {
    width: 55px;
    height: 55px;
    flex-basis: 55px;
    margin-top: 24px;
    border-radius: 16px;
  }

  .gaming-platform__content {
    margin-top: 18px;
  }

  .gaming-platform__content h3 {
    font-size: 1.25rem;
  }

  .gaming-platform__content p {
    font-size: 0.8rem;
    line-height: 1.7;
  }

  .gaming-platform__link {
    margin-top: 25px;
  }

  .gaming-platform__bottom {
    padding: 19px;
  }

  .gaming-platform__bottom-content {
    align-items: flex-start;
  }

  .gaming-platform__blog-link {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .gaming-platform__card-top {
    align-items: flex-start;
  }

  .gaming-platform__category {
    max-width: 150px;
  }

  .gaming-platform__bottom-content {
    flex-direction: column;
  }
}