:root {
  --st-c-primary: #00d4ff;
  --st-c-secondary: #ff6b9d;
  --st-c-accent: #ffe66d;
  --st-c-ink: #0a0e27;
  --st-c-paper: #f7f7f7;
  --st-font-h: "Bebas Neue", Impact, sans-serif;
  --st-font-b: "Open Sans", system-ui, sans-serif;
}
.site-header {
  background: linear-gradient(135deg, var(--st-c-ink) 0%, #1a1f3a 100%);
  color: #fff;
  padding: 1rem 0;
  border-bottom: 3px solid var(--st-c-primary);
}
.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.site-header .brand {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.site-header .brand-name {
  font-family: var(--st-font-h);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
.site-header .brand-tagline {
  font-size: 0.85rem;
  color: var(--st-c-accent);
  opacity: 0.85;
}
.site-header nav a {
  color: #fff;
  margin-left: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.site-header nav a:hover { color: var(--st-c-primary); }
.page-main { max-width: 1080px; margin: 0 auto; padding: 2rem 1.25rem; }
.responsible-gambling {
  background: #fff8e5;
  border-left: 4px solid var(--st-c-accent);
  padding: 1rem 1.25rem;
  margin: 2rem auto;
  max-width: 1080px;
  font-size: 0.92rem;
  border-radius: 4px;
}
.responsible-gambling a { color: #000; text-decoration: underline; }
.site-footer {
  background: var(--st-c-ink);
  color: #d8d8d8;
  padding: 2rem 0;
  margin-top: 3rem;
}
.site-footer .wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
}
.site-footer nav a {
  color: var(--st-c-accent);
  margin-right: 1rem;
  text-decoration: none;
}
.site-footer .age-disclaimer { font-size: 0.85rem; opacity: 0.8; margin-top: 0.4rem; }
@media (max-width: 600px) {
  .site-header .wrap { flex-direction: column; align-items: flex-start; }
  .site-header nav a { margin: 0.4rem 0.8rem 0.4rem 0; }
}
