.slot-feature {
  position: relative;
  padding: 90px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(31, 136, 255, 0.25), transparent 35%),
    linear-gradient(135deg, #020b1f 0%, #061b3d 45%, #0b5ed7 100%);
  color: #ffffff;
}

.slot-feature::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: 38px 38px;
  opacity: 0.35;
}

.slot-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.slot-badge {
  display: inline-flex;
  padding: 9px 18px;
  border: 1px solid rgba(105, 185, 255, 0.45);
  border-radius: 999px;
  background: rgba(8, 39, 88, 0.7);
  color: #8fd3ff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.slot-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.slot-head h2 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
  margin: 0 0 18px;
  color: #ffffff;
}

.slot-head p {
  font-size: 17px;
  line-height: 1.8;
  color: #c7dcff;
  margin: 0;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.slot-card {
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05));
  border: 1px solid rgba(137, 202, 255, 0.25);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transition: 0.3s ease;
}

.slot-card:hover {
  transform: translateY(-8px);
  border-color: rgba(95, 190, 255, 0.8);
}

.slot-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #0b5ed7, #38bdf8);
  font-size: 27px;
  margin-bottom: 18px;
}

.slot-card h3 {
  font-size: 19px;
  margin: 0 0 10px;
  color: #ffffff;
}

.slot-card p {
  margin: 0;
  color: #bfd6ff;
  line-height: 1.7;
  font-size: 15px;
}

.slot-rtp-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
  padding: 32px;
  border-radius: 30px;
  background: rgba(1, 13, 38, 0.68);
  border: 1px solid rgba(90, 188, 255, 0.35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.slot-rtp-content h3 {
  font-size: 28px;
  margin: 0 0 12px;
}

.slot-rtp-content p {
  margin: 0;
  color: #c5dbff;
  line-height: 1.8;
}

.rtp-list {
  display: grid;
  gap: 18px;
}

.rtp-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  font-weight: 700;
}

.rtp-top span {
  color: #ffffff;
}

.rtp-top strong {
  color: #7dd3fc;
}

.rtp-bar {
  height: 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}

.rtp-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0b5ed7, #38bdf8);
}

.slot-cta {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.slot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.slot-btn.primary {
  background: linear-gradient(135deg, #1d8cff, #38bdf8);
  color: #00142f;
  box-shadow: 0 14px 34px rgba(56, 189, 248, 0.35);
}

.slot-btn.secondary {
  color: #ffffff;
  border: 1px solid rgba(125, 211, 252, 0.55);
  background: rgba(255,255,255,0.07);
}

.slot-btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slot-rtp-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .slot-feature {
    padding: 64px 16px;
  }

  .slot-head {
    text-align: center;
  }

  .slot-badge {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }

  .slot-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .slot-card {
    padding: 22px;
    border-radius: 20px;
  }

  .slot-rtp-box {
    padding: 22px;
    border-radius: 22px;
  }

  .slot-cta {
    flex-direction: column;
  }

  .slot-btn {
    width: 100%;
  }
}