
/* =========================================
   AVAILABLE GAMES SECTION
========================================= */

.games-meta108 {
  --games-navy-950: #020817;
  --games-navy-900: #061329;
  --games-navy-850: #081a35;
  --games-navy-800: #0a2142;
  --games-blue-700: #075fd7;
  --games-blue-600: #087df1;
  --games-blue-500: #1c98ff;
  --games-blue-400: #56b6ff;
  --games-blue-300: #91d1ff;
  --games-white: #ffffff;
  --games-text: #dcecff;
  --games-muted: #91a9c8;
  --games-border: rgba(102, 184, 255, 0.17);
  --games-shadow: 0 24px 65px rgba(0, 0, 0, 0.3);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 20px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(8, 125, 241, 0.16),
      transparent 36%
    ),
    linear-gradient(
      180deg,
      var(--games-navy-950) 0%,
      var(--games-navy-900) 50%,
      #030c1c 100%
    );
  color: var(--games-white);
}

.games-meta108 *,
.games-meta108 *::before,
.games-meta108 *::after {
  box-sizing: border-box;
}

.games-meta108__container {
  position: relative;
  z-index: 2;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.games-meta108__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.games-meta108__glow--one {
  top: 13%;
  left: -180px;
  width: 420px;
  height: 420px;
  background: rgba(8, 125, 241, 0.1);
}

.games-meta108__glow--two {
  right: -180px;
  bottom: 5%;
  width: 430px;
  height: 430px;
  background: rgba(28, 152, 255, 0.09);
}

/* Header */
.games-meta108__header {
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
}

.games-meta108__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 9px 16px;
  border: 1px solid rgba(86, 182, 255, 0.24);
  border-radius: 999px;
  background: rgba(8, 125, 241, 0.09);
  color: var(--games-blue-300);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.games-meta108__eyebrow svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.games-meta108__header h2 {
  margin: 0;
  color: var(--games-white);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.games-meta108__header h2 span {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--games-blue-400),
    var(--games-blue-500)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.games-meta108__header p {
  max-width: 750px;
  margin: 23px auto 0;
  color: var(--games-muted);
  font-size: 17px;
  line-height: 1.8;
}

/* Grid */
.games-meta108__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.games-meta108__card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--games-border);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(13, 37, 72, 0.95),
      rgba(5, 19, 40, 0.98)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 45px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.games-meta108__card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  border-radius: 0 0 0 100%;
  background: radial-gradient(
    circle at top right,
    rgba(28, 152, 255, 0.15),
    transparent 70%
  );
  content: "";
  pointer-events: none;
}

.games-meta108__card::after {
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 28px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(86, 182, 255, 0.5),
    transparent
  );
  content: "";
  opacity: 0;
  transition: opacity 0.35s ease;
}

.games-meta108__card:hover {
  transform: translateY(-8px);
  border-color: rgba(86, 182, 255, 0.42);
  box-shadow:
    0 26px 65px rgba(0, 0, 0, 0.32),
    0 0 35px rgba(8, 125, 241, 0.1);
}

.games-meta108__card:hover::after {
  opacity: 1;
}

.games-meta108__card--featured {
  border-color: rgba(86, 182, 255, 0.35);
  background:
    linear-gradient(
      145deg,
      rgba(8, 62, 122, 0.88),
      rgba(5, 23, 49, 0.98)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 22px 55px rgba(0, 70, 165, 0.2);
}

.games-meta108__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 25px;
}

.games-meta108__icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(86, 182, 255, 0.3);
  border-radius: 17px;
  background:
    linear-gradient(
      145deg,
      rgba(28, 152, 255, 0.2),
      rgba(7, 95, 215, 0.08)
    );
  color: var(--games-blue-400);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 25px rgba(0, 85, 190, 0.15);
}

.games-meta108__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.games-meta108__number {
  color: rgba(145, 209, 255, 0.3);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.games-meta108__badge {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 7px 11px;
  border: 1px solid rgba(86, 182, 255, 0.25);
  border-radius: 999px;
  background: rgba(28, 152, 255, 0.12);
  color: var(--games-blue-300);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.games-meta108__card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 13px;
  color: var(--games-white);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.games-meta108__card > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--games-muted);
  font-size: 14px;
  line-height: 1.75;
}

.games-meta108__features {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin: 22px 0 25px;
  padding: 0;
  list-style: none;
}

.games-meta108__features li {
  position: relative;
  padding-left: 24px;
  color: var(--games-text);
  font-size: 13px;
  line-height: 1.55;
}

.games-meta108__features li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      var(--games-blue-500),
      var(--games-blue-700)
    );
  box-shadow: 0 0 15px rgba(28, 152, 255, 0.28);
  content: "";
}

.games-meta108__features li::after {
  position: absolute;
  top: 7px;
  left: 5px;
  width: 5px;
  height: 3px;
  border-bottom: 1.5px solid #fff;
  border-left: 1.5px solid #fff;
  content: "";
  transform: rotate(-45deg);
}

.games-meta108__link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--games-blue-400);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.games-meta108__link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.games-meta108__link:hover {
  gap: 12px;
  color: var(--games-white);
}

/* Bottom CTA */
.games-meta108__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 27px 30px;
  border: 1px solid rgba(86, 182, 255, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(
      110deg,
      rgba(7, 95, 215, 0.22),
      rgba(7, 26, 55, 0.92)
    );
  box-shadow: var(--games-shadow);
}

.games-meta108__cta-content {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
}

.games-meta108__cta-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(86, 182, 255, 0.3);
  border-radius: 16px;
  background: rgba(28, 152, 255, 0.14);
  color: var(--games-blue-400);
}

.games-meta108__cta-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.games-meta108__cta strong {
  display: block;
  margin-bottom: 5px;
  color: var(--games-white);
  font-size: 18px;
  line-height: 1.35;
}

.games-meta108__cta p {
  margin: 0;
  color: var(--games-muted);
  font-size: 13px;
  line-height: 1.65;
}

.games-meta108__button {
  display: inline-flex;
  min-height: 50px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  background:
    linear-gradient(
      135deg,
      var(--games-blue-500),
      var(--games-blue-700)
    );
  color: var(--games-white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow:
    0 12px 28px rgba(7, 95, 215, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.games-meta108__button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.games-meta108__button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 17px 35px rgba(7, 95, 215, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* Keyboard Accessibility */
.games-meta108__link:focus-visible,
.games-meta108__button:focus-visible {
  outline: 3px solid rgba(145, 209, 255, 0.7);
  outline-offset: 4px;
}

/* Tablet */
@media (max-width: 1024px) {
  .games-meta108 {
    padding: 90px 20px;
  }

  .games-meta108__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 767px) {
  .games-meta108 {
    padding: 72px 16px;
  }

  .games-meta108__header {
    margin-bottom: 38px;
  }

  .games-meta108__eyebrow {
    margin-bottom: 17px;
    padding: 8px 13px;
    font-size: 10px;
  }

  .games-meta108__header h2 {
    font-size: clamp(30px, 10vw, 41px);
    line-height: 1.15;
  }

  .games-meta108__header p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.75;
  }

  .games-meta108__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .games-meta108__card {
    padding: 23px 20px;
    border-radius: 20px;
  }

  .games-meta108__card:hover {
    transform: translateY(-4px);
  }

  .games-meta108__top {
    margin-bottom: 20px;
  }

  .games-meta108__icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    border-radius: 15px;
  }

  .games-meta108__icon svg {
    width: 26px;
    height: 26px;
  }

  .games-meta108__card h3 {
    font-size: 21px;
  }

  .games-meta108__card > p {
    font-size: 14px;
  }

  .games-meta108__features {
    margin: 19px 0 23px;
  }

  .games-meta108__cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 18px;
    padding: 22px 19px;
    border-radius: 20px;
  }

  .games-meta108__cta-content {
    align-items: flex-start;
  }

  .games-meta108__cta-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 14px;
  }

  .games-meta108__cta strong {
    font-size: 16px;
  }

  .games-meta108__button {
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 390px) {
  .games-meta108 {
    padding-right: 13px;
    padding-left: 13px;
  }

  .games-meta108__header h2 {
    font-size: 29px;
  }

  .games-meta108__card {
    padding: 21px 17px;
  }

  .games-meta108__badge {
    padding: 6px 8px;
    font-size: 9px;
  }

  .games-meta108__cta-content {
    gap: 13px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .games-meta108__card,
  .games-meta108__link,
  .games-meta108__button {
    transition: none;
  }
}