* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #fffef2;
  --text: #0a0a0a;
  --muted: #333;
  --yellow: #ffdd00;
  --red: #ff3366;
  --black: #0a0a0a;
  --border: 4px solid #0a0a0a;
}

body {
  font-family: "Arial Black", "Arial", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.4;
  min-height: 100vh;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: -1px;
  z-index: -1;
  background-image: url("images/bg-vault.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(6px);
}

/* Age popup */
.popup-age {
  position: fixed;
  inset: 0;
  background: rgba(255, 221, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.popup-age[hidden] { display: none; }
.popup-age-box {
  background: #fff;
  padding: 48px;
  max-width: 440px;
  text-align: center;
  border: var(--border);
  box-shadow: 12px 12px 0 #0a0a0a;
}
.popup-age-box h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.popup-age-box p { margin-bottom: 24px; font-weight: 700; }
.popup-age-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-main {
  background: var(--black);
  color: var(--yellow);
  border: var(--border);
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
}
.btn-alt {
  background: #fff;
  color: var(--black);
  border: var(--border);
  padding: 14px 26px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  color: #fff;
  z-index: 9998;
  padding: 20px 24px;
  border-top: var(--border);
}
.cookie-bar[hidden] { display: none; }
.cookie-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.cookie-bar p { flex: 1 1 300px; font-weight: 700; }
.cookie-bar a { color: var(--yellow); }
.cookie-bar-btns { display: flex; gap: 12px; flex-shrink: 0; }
.btn-alt-link {
  display: inline-block;
  padding: 12px 20px;
  border: 3px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

/* Masthead – centred */
.masthead {
  background: var(--yellow);
  border-bottom: var(--border);
}
.masthead-centre {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.masthead-logo img { display: block; height: 36px; width: auto; }
.masthead-strap { font-size: 0.9rem; margin: 0; font-weight: 700; opacity: 0.95; }
.masthead-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
}
.masthead-menu a {
  color: var(--black);
  text-decoration: none;
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
}
.masthead-menu a:hover { text-decoration: underline; }
.masthead-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.pill-18 {
  background: var(--black);
  color: var(--yellow);
  padding: 8px 14px;
  font-weight: 900;
  font-size: 0.9rem;
  border: 2px solid var(--black);
}
.legal-logo-wrap {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: #fff;
  border: 3px solid var(--black);
}
.legal-logo-wrap img {
  height: 26px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}
.legal-logo-wrap .regulator-name {
  margin-left: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.masthead-ukgc {
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  border-top: 2px solid var(--black);
}

/* Main */
main { max-width: 1100px; margin: 0 auto; padding: 40px 20px 60px; }
.hero-block {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px 20px;
  border: var(--border);
  background: #fff;
  box-shadow: 10px 10px 0 var(--black);
}
.hero-block h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

.offer-grid-section h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-align: center;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  list-style: none;
}
.offer-tile {
  background: #fff;
  border: var(--border);
  padding: 24px;
  position: relative;
  box-shadow: 8px 8px 0 var(--black);
}
.offer-tile-logo-wrap {
  background: #f5f5f5;
  border: 3px solid var(--black);
  padding: 16px;
  margin-bottom: 16px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-tile-logo-wrap img {
  max-height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.offer-tile h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.offer-bonus { font-size: 1.1rem; font-weight: 900; margin-bottom: 6px; }
.offer-wager, .tile-disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 700;
}
.promo-cta {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  border: 3px solid var(--black);
  margin-top: 8px;
}
.promo-cta:hover { background: #ff0044; }
.tcs-line {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 700;
}
.circle-rating-wrap {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  --score: 5;
}
.circle-rating {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(var(--yellow) 0% calc(var(--score) / 10 * 100%), #e5e5e5 calc(var(--score) / 10 * 100%));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--black);
}
.circle-rating::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: var(--bg);
  border-radius: 50%;
}
.circle-rating-value {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  font-weight: 900;
}

.info-section {
  margin-top: 40px;
  padding: 24px;
  border: var(--border);
  background: #fff;
  box-shadow: 6px 6px 0 var(--black);
}
.info-section h2 {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.info-section p { font-weight: 700; color: var(--muted); margin-bottom: 8px; }
.info-section a { color: var(--red); text-decoration: underline; font-weight: 900; }
.info-section.info-feature {
  background: #fffef2;
  border: 3px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
}

/* Footer */
.legal-bar {
  background: var(--black);
  color: #fff;
  padding: 32px 20px;
  margin-top: 48px;
  border-top: var(--border);
}
.legal-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.legal-bar-links {
  margin-bottom: 24px;
  order: 1;
}
.legal-bar-links a { color: var(--yellow); margin: 0 12px; text-decoration: none; font-weight: 900; }
.legal-bar-links a:hover { text-decoration: underline; }
.legal-bar-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  order: 2;
}
.legal-bar .pill-18 {
  background: #fff;
  color: var(--black);
  padding: 8px 14px;
  border: 2px solid #fff;
}
.legal-bar .legal-logo-wrap {
  background: #333;
  border: 3px solid #fff;
  padding: 8px 12px;
}
.legal-bar .legal-logo-wrap img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 100px;
  min-width: 60px;
  object-fit: contain;
  vertical-align: middle;
}
.legal-bar-ukgc { font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; order: 3; }
.legal-bar-copy { font-size: 0.85rem; opacity: 0.9; order: 4; }

/* Page content */
.page-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.page-content h1 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.page-content h2 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
  text-transform: uppercase;
}
.page-content p, .page-content ul { margin-bottom: 12px; font-weight: 700; color: var(--muted); }
.page-content a { color: var(--red); text-decoration: underline; font-weight: 900; }
.contact-form { margin: 24px 0; max-width: 400px; }
.contact-form label { display: block; margin-top: 12px; margin-bottom: 4px; font-weight: 900; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; border: 3px solid var(--black); font-family: inherit; font-size: 1rem; }
.contact-form button { margin-top: 16px; }
