/* casino block */
.feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
@media(max-width: 780px) {
  .feats { grid-template-columns: 1fr; }
}
.feat {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  background: var(--bg-2);
}
.feat h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--gold);
}
.feat p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}

.provs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.prov {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #cdc2a4;
  background: var(--bg-2);
}
