/* ==============================
   🎨 style.css - RTP Pragmatic
   ============================== */

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f7f7fc;
  margin: 0;
  padding: 1rem;
  color: #222;
}

#rtp-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.rtp-card {
  background: white;
  border: 2px solid #ddd;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s;
}

.rtp-card:hover {
  transform: scale(1.02);
}

.rtp-card.gacor {
  border-color: gold;
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.6);
  background: #fffbe7;
}

.slot-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.info {
  padding: 1rem;
  text-align: left;
}

.info h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #333;
}

.info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .rtp-card {
    width: 90%;
  }
  .slot-img {
    height: 160px;
  }
}
