/* === COLOR PALETTE ===
   Black: #000
   White: #fff
   Gold:  #d4af37
======================= */

/* GENERAL BODY + TEXT */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #000;
  text-align: center;
  color: #fff;
}

h2 {
  margin-top: 30px;
  font-size: 28px;
  color: #d4af37;
}

h3 {
  margin: 20px 0 10px;
  font-size: 22px;
  color: #d4af37;
}

/* HEADER */
.site-header {
  background-color: #000;
  padding: 60px 10px;
  text-align: center;
  border-bottom: 1px solid #333;
}

.site-header .site-logo {
  height: 60px;
  display: block;
  margin: 0 auto 10px;
}

.site-header h1 {
  margin: 0;
  font-size: 24px;
  color: #fff;
}

.site-header p {
  margin-top: 5px;
  font-size: 14px;
  color: #ccc;
}

/* HEADER BADGES */
.header-badges {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.header-badges span {
  background: #111;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.header-badges span i {
  color: #d4af37;
}

.header-badges span:hover {
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
  background-color: #1a1a1a;
}

/* 18+ DISCLAIMER */
.age-disclaimer {
  background: linear-gradient(
    to right,
    rgba(212, 175, 55, 0.08),
    #111 40%,
    #111 60%,
    rgba(212, 175, 55, 0.08)
  );
  padding: 30px 10px;
  text-align: center;
  color: #fff;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.05) inset;
}

.age-img {
  max-width: 80px;
}

.disclaimer-text {
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
}

/* REGULATORS */
.regulators {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 10px 20px;
}

.regulators a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 60px;
  padding: 5px;
}

.regulators img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.regulators a:hover img {
  transform: scale(1.05);
}

/* CARDS */
.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
}

.card {
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.08);
  width: 300px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  color: #fff;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d4af37;
  color: #000;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: bold;
}

.logo {
  max-height: 50px;
  margin: 10px auto;
}

.rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}

.rating i {
  color: #d4af37;
  font-size: 18px;
  margin: 0 2px;
}

.rating span {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  margin-top: 5px;
}

.bonus {
  background: #222;
  border: 1px solid #d4af37;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
  margin: 10px 0;
  width: 90%;
  color: #d4af37;
}

.warning {
  font-size: 12px;
  background: #222;
  padding: 6px;
  border-radius: 4px;
  margin: 10px 0;
  color: #bbb;
}

.features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.features li {
  margin: 8px 0;
  font-size: 15px;
  color: #fff;
}

.features i {
  margin-right: 8px;
  color: #d4af37;
  min-width: 20px;
  text-align: center;
}

.commission {
  font-size: 12px;
  margin-top: 10px;
  color: #ccc;
}

.commission a {
  color: #d4af37;
  text-decoration: none;
}

.payments {
  margin: 15px 0;
}

.payments i {
  font-size: 26px;
  margin: 0 8px;
  color: #ccc;
  transition: color 0.3s ease;
}

.payments i:hover {
  color: #d4af37;
}

.visit-btn {
  background: #d4af37;
  color: #000;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.visit-btn:hover {
  background: #b9962c;
}

.terms {
  font-size: 11px;
  margin-top: 12px;
  color: #888;
}

/* MOBILE VISIBILITY (just swaps card layouts) */
.mobile-cards { display: none; }

@media (max-width: 768px) {
  .desktop-cards { display: none; }
  .mobile-cards  { display: flex; flex-direction: column; align-items: center; }
}

/* RESPONSIBLE GAMBLING SECTION */
.responsible-gambling {
  background: #111;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  color: #fff;
}

.responsible-gambling h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #d4af37;
}

.responsible-gambling p {
  margin: 10px 0;
  line-height: 1.6;
  font-size: 15px;
}

.responsible-gambling ul { margin: 15px 0 25px; padding-left: 20px; }
.responsible-gambling ul li { margin-bottom: 10px; color: #fff; }

/* FOOTER */
.site-footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
}

.site-footer h4 { color: #d4af37; margin-bottom: 10px; }
.site-footer p { margin: 5px 0; line-height: 1.4; }

.footer-about, .footer-contact, .footer-socials { flex: 1 1 200px; padding: 10px; }

.footer-socials a { color: #d4af37; margin-right: 10px; font-size: 20px; transition: color 0.3s ease; }
.footer-socials a:hover { color: #fff; }

.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  color: #aaa;
  font-size: 13px;
}

/* ======= MOBILE (<=768px) – consolidated ======= */
@media (max-width: 768px) {
  .site-header { padding: 40px 10px; }
  .site-header h1 { font-size: 20px; }
  .site-header p { font-size: 13px; margin-top: 4px; }

  .header-badges {
    display: grid; grid-template-columns: repeat(2, auto);
    justify-content: center; gap: 8px 10px; margin-top: 12px;
  }
  .header-badges span { font-size: 11px; padding: 4px 10px; }
  .header-badges span i { font-size: 12px; }

  .age-disclaimer { padding: 20px 10px; }
  .age-img { max-width: 60px; }

  .regulators.regulators-desktop { display: none !important; }
  .regulators.regulators-mobile {
    display: grid !important; grid-template-columns: repeat(3, 1fr);
    gap: 8px; padding: 8px; justify-items: center; align-items: center;
  }
  .regulators.regulators-mobile a { width: 55px; height: 28px; padding: 0; }

  .cards-container { padding: 30px 10px; }
  .card { width: 90%; }

  .responsible-gambling { padding: 30px 15px; text-align: center; }
  .responsible-gambling ul { padding-left: 10px; }

  .site-footer {
    flex-direction: column; text-align: center; padding: 20px 10px; gap: 2px;
  }
  .footer-about, .footer-contact, .footer-socials { width: 100%; padding: 0; margin: 0 auto; }
  .site-footer h4 { margin-bottom: 6px; }
  .site-footer p { margin: 4px 0; font-size: 13px; line-height: 1.4; }
  .footer-copy { font-size: 11px; margin-top: 10px; }
}

/* ======= POP-UP MODALS (Region + Age) – themed to site ======= */
:root{
  --gold:#d4af37;
  --panel:#111;
  --panel-border:#333;
  --text:#fff;
  --muted:#ccc;
}

.gate-overlay{
  position:fixed; inset:0; display:none;      /* shown via JS */
  align-items:center; justify-content:center;
  background:rgba(0,0,0,.7);
  z-index:9999;
}

.gate-modal{
  width:min(540px,92vw);
  background:var(--panel);
  color:var(--text) !important;
  border:1px solid var(--panel-border);
  border-radius:16px;
  padding:28px 24px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.45);
  font-family: Arial, sans-serif;
}
.gate-modal h1, .gate-modal h2, .gate-modal p, .gate-modal label,
.gate-modal span, .gate-modal a { color: var(--text) !important; }

.gate-title{ color: var(--gold) !important; margin:.25rem 0 .5rem; font-size:1.35rem; }
.gate-sub{ color: var(--muted) !important; margin:-2px 0 16px; }

.gate-icon{
  width:44px; height:44px; margin:0 auto 8px; border-radius:50%;
  display:grid; place-items:center; font-weight:700;
  background: rgba(212,175,55,.18); color: var(--gold);
}

.gate-check{ display:flex; gap:.6rem; align-items:flex-start; justify-content:center; margin:10px 0 18px; text-align:left; }
.gate-check input{ width:18px; height:18px; transform:translateY(3px); accent-color: var(--gold); }

.gate-btn{ width:100%; padding:12px 16px; border-radius:12px; border:0; font-weight:700; cursor:pointer; margin-top:10px; }
.gate-btn.primary{ background: var(--gold); color:#000 !important; }
.gate-btn.primary[disabled]{ opacity:.55; cursor:not-allowed; }
.gate-btn.ghost{ background:#1a1a1a; color:#fff !important; border:1px solid var(--panel-border); }
.gate-btn.ghost:hover{ background:#222; }

.gate-footer a{ color: var(--gold) !important; text-decoration: underline; }
body.gate-locked{ overflow:hidden; }

@media (max-height:520px){ .gate-modal{ max-height:92vh; overflow:auto; } }
