/* KATEGORI GAME SLOT ONLINE */
.slot-category-section {
  position: relative;
  padding: 90px 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 174, 255, 0.22), transparent 35%),
    linear-gradient(135deg, #020b1f 0%, #06183d 45%, #003f88 100%);
  overflow: hidden;
}

.slot-category-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
  pointer-events: none;
}

.slot-category-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.slot-category-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.slot-category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 9px 18px;
  border: 1px solid rgba(58, 190, 255, 0.55);
  border-radius: 999px;
  background: rgba(0, 123, 255, 0.14);
  color: #7ddcff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.slot-category-heading h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
}

.slot-category-heading p {
  margin: 0;
  color: #c8dcff;
  font-size: 17px;
  line-height: 1.8;
}

.slot-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.slot-category-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(72, 191, 255, 0.24);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(13, 48, 105, 0.88), rgba(4, 17, 45, 0.96));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: 0.35s ease;
}

.slot-category-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(0, 204, 255, 0.35), transparent 45%);
  opacity: 0;
  transition: 0.35s ease;
}

.slot-category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(91, 209, 255, 0.72);
  box-shadow: 0 24px 60px rgba(0, 153, 255, 0.25);
}

.slot-category-card:hover::before {
  opacity: 1;
}

.slot-category-icon,
.slot-category-card h3,
.slot-category-card p,
.slot-category-link {
  position: relative;
  z-index: 2;
}

.slot-category-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #005bea, #00c6ff);
  box-shadow: 0 12px 30px rgba(0, 198, 255, 0.35);
  font-size: 30px;
}

.slot-category-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

.slot-category-card p {
  margin: 0 0 24px;
  color: #bcd3f7;
  font-size: 15.5px;
  line-height: 1.75;
}

.slot-category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #008cff, #00d4ff);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 174, 255, 0.35);
  transition: 0.3s ease;
}

.slot-category-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 212, 255, 0.45);
}

/* TABLET */
@media (max-width: 991px) {
  .slot-category-section {
    padding: 74px 18px;
  }

  .slot-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .slot-category-section {
    padding: 60px 16px;
  }

  .slot-category-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .slot-category-heading p {
    font-size: 15.5px;
  }

  .slot-category-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .slot-category-card {
    padding: 24px;
    border-radius: 22px;
  }

  .slot-category-icon {
    width: 56px;
    height: 56px;
    font-size: 27px;
  }

  .slot-category-card h3 {
    font-size: 20px;
  }

  .slot-category-link {
    width: 100%;
  }
}