body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: white;
  margin: 0;
  padding: 0;
}

a {
  color: #1e90ff;
  text-decoration: underline;
}

/* 🔝 Regulation Logos (Top of Page) */
.compliance-bar {
  background: #000;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.compliance-bar img {
  height: 40px;
  object-fit: contain;
  filter: brightness(1.1);
}

.top-warning {
  background: #ff0000;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

.top-warning img {
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

header {
  text-align: center;
  padding: 30px 20px;
}

.logo img {
  max-width: 250px;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px;
}

.nav-bar {
  margin: 20px 0;
}

.nav-bar button {
  background: #333;
  color: white;
  border: none;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.casino-card {
  background-color: #222;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.casino-card .info {
  flex: 1 1 300px;
}

.casino-card .info h2 {
  margin: 0;
  font-size: 1.8em;
}

.stars {
  margin: 5px 0;
  font-size: 1.1em;
}

.bonus {
  font-size: 1.2em;
  margin: 10px 0;
  font-weight: bold;
  color: #ffc107;
}

.payment-methods {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.payment-methods img {
  height: 24px;
  margin-right: 5px;
  vertical-align: middle;
}

.cta-button {
  padding: 12px 20px;
  background: white;
  color: black;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #ccc;
}

.terms {
  font-size: 0.75em;
  color: #bbb;
  margin-top: 10px;
  max-width: 500px;
}

.regulations {
  background: #474747;
  color: #eee;
  padding: 30px;
  text-align: center;
}

.regulations h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.regulations ul {
  list-style: none;
  padding-left: 0;
}

.regulations li {
  margin: 10px 0;
  font-size: 0.95em;
}

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  margin-bottom: 10px;
}

footer {
  background: #000;
  color: #aaa;
  padding: 20px;
  font-size: 0.8em;
  text-align: center;
}
