
/* ===============================
   WHY PLAY META108 PREMIUM
================================ */

.meta108-why {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(73, 184, 255, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(21, 101, 255, 0.24), transparent 36%),
    linear-gradient(135deg, #041b3d 0%, #071f49 48%, #08285c 100%);
}

.meta108-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .38;
}

.meta108-why::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -190px;
  top: 80px;
  border-radius: 50%;
  background: rgba(73, 184, 255, 0.14);
  filter: blur(85px);
}

.why-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.why-heading {
  max-width: 860px;
  margin: 0 auto 54px;
  text-align: center;
}

.why-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #7dd3fc;
  font-size: 14px;
  font-weight: 900;
  background: rgba(73, 184, 255, 0.1);
  border: 1px solid rgba(73, 184, 255, 0.22);
  box-shadow: inset 0 1px rgba(255,255,255,.08);
}

.why-heading h2 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1px;
}

.why-heading p {
  color: #c9d9f5;
  font-size: 17px;
  line-height: 1.85;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  position: relative;
  overflow: hidden;
  padding: 30px 26px;
  min-height: 285px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border: 1px solid rgba(73,184,255,.16);
  box-shadow:
    0 18px 45px rgba(0,0,0,.22),
    inset 0 1px rgba(255,255,255,.08);
  transition: .35s ease;
}

.why-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(73,184,255,.14);
  filter: blur(8px);
  transition: .35s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #49b8ff, transparent);
  opacity: .65;
}

.why-card:hover {
  transform: translateY(-7px);
  border-color: rgba(73,184,255,.38);
  box-shadow:
    0 26px 60px rgba(0,0,0,.32),
    0 0 35px rgba(21,101,255,.16);
}

.why-card:hover::before {
  transform: scale(1.22);
  background: rgba(73,184,255,.22);
}

.why-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: linear-gradient(135deg, #49b8ff, #1565ff);
  box-shadow: 0 14px 30px rgba(21,101,255,.38);
}

.why-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 13px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
}

.why-card p {
  position: relative;
  z-index: 2;
  color: #a9bfdf;
  font-size: 15px;
  line-height: 1.75;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .meta108-why {
    padding: 90px 20px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card {
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .meta108-why {
    padding: 76px 16px;
  }

  .why-heading {
    margin-bottom: 40px;
  }

  .why-heading h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .why-heading p {
    font-size: 16px;
    line-height: 1.75;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-card {
    min-height: auto;
    padding: 26px 22px;
    border-radius: 24px;
  }

  .why-icon {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .meta108-why {
    padding: 62px 14px;
  }

  .why-badge {
    font-size: 12px;
    padding: 9px 14px;
  }

  .why-heading h2 {
    font-size: 29px;
    line-height: 1.16;
  }

  .why-heading p {
    font-size: 15px;
  }

  .why-card {
    padding: 24px 20px;
  }

  .why-card h3 {
    font-size: 19px;
  }

  .why-card p {
    font-size: 14px;
  }
}


.why-card.hide {
  opacity: 0;
  transform: translateY(28px);
}

.why-card.show {
  opacity: 1;
  transform: translateY(0);
}