.slot-popular {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a1f44, #0d2f6b);
  text-align: center;
}


.container-popular {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: #4fd1ff;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #cbd5e1;
  font-size: 15px;
  margin-bottom: 40px;
}

/* GRID */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}



.slot-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  transition: 0.3s;
}

.slot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}


/* IMAGE */
.slot-img {
  width: 100%;
  display: block;
}



/* OVERLAY */
.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 68, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}

.slot-card:hover .slot-overlay {
  opacity: 1;
}

/* BUTTON */
.btn-main {
  padding: 12px 24px;
  background: linear-gradient(135deg, #1da1f2, #4fd1ff);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(79, 209, 255, 0.5);
  transition: 0.3s;
}

.btn-main:hover {
  transform: scale(1.05);
}



/* CONTENT */
.slot-content {
  padding: 15px;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .slot-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 22px;
  }

  .btn-main {
    font-size: 13px;
    padding: 10px 18px;
  }
}






.slot-popular .title {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, #4da6ff, #00e0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slot-popular .subtitle {
  margin-top: 10px;
  color: #cfd8ff;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.game-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0, 170, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(0,170,255,0.5);
}

.game-card img {
  width: 100%;
  display: block;
}

.game-info {
  padding: 15px;
}

.game-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.game-info span {
  font-size: 14px;
  color: #00e0ff;
}

.btn-play {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: linear-gradient(90deg, #007bff, #00e0ff);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-play:hover {
  box-shadow: 0 0 10px #00e0ff;
}

.cta {
  margin-top: 40px;
}

.btn-all {
  padding: 12px 25px;
  background: linear-gradient(90deg, #0047ab, #00cfff);
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.btn-all:hover {
  box-shadow: 0 0 15px #00cfff;
}