/* ============================================================
   BONUSMAILS — Industrial / Brutalist Steel theme
   Shared stylesheet for all pages
   ============================================================ */

:root {
  --concrete: #E7E5E1;
  --concrete-dark: #D6D3CC;
  --steel: #23272E;
  --steel-light: #2E343D;
  --steel-line: #14171C;
  --orange: #FF6A00;
  --orange-dark: #E45D00;
  --ink: #14171C;
  --paper: #F4F2EE;
  --white: #FFFFFF;
  --hazard-a: #1a1d22;
  --hazard-b: #FF6A00;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo Narrow', 'Oswald', 'Arial Narrow', sans-serif;
  background: var(--concrete);
  color: var(--ink);
  line-height: 1.55;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo, .nav a, .btn, .eyebrow, .badge {
  font-family: 'Oswald', 'Archivo Narrow', 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 700; line-height: 0.98; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; line-height: 1.02; }
h3 { font-size: 1.5rem; font-weight: 600; }

a { color: inherit; }

img, svg { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* hazard stripe utility */
.hazard {
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--hazard-a) 0 22px,
    var(--hazard-b) 22px 44px
  );
  border-top: 3px solid var(--steel-line);
  border-bottom: 3px solid var(--steel-line);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--steel);
  border-bottom: 5px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--steel-line);
}

.logo-text b { color: var(--orange); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 16px;
  border: 2px solid transparent;
  transition: background .12s, color .12s, border-color .12s;
}

.nav a:hover,
.nav a.active {
  background: var(--orange);
  color: var(--ink);
  border-color: var(--ink);
}

.hamburger {
  display: none;
  width: 50px;
  height: 50px;
  background: var(--orange);
  border: 3px solid var(--ink);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: 3px 3px 0 var(--steel-line);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--ink);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--steel);
  color: var(--white);
  padding: 80px 0 90px;
  position: relative;
  border-bottom: 5px solid var(--ink);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -60px;
  width: 360px;
  height: 360px;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 18px,
    rgba(255,106,0,.12) 18px 36px
  );
  transform: rotate(8deg);
  pointer-events: none;
}

.eyebrow {
  display: inline-block;
  background: var(--orange);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--steel-line);
  margin-bottom: 28px;
}

.hero h1 { max-width: 14ch; margin-bottom: 24px; }
.hero h1 .hl { color: var(--orange); }

.hero p {
  max-width: 56ch;
  font-size: 1.2rem;
  color: #C9CDD3;
  margin-bottom: 36px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--ink);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 16px 34px;
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--steel-line);
  transition: transform .1s, box-shadow .1s, background .1s;
  cursor: pointer;
}

.btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 var(--steel-line);
  background: var(--orange-dark);
}

.btn.ghost {
  background: transparent;
  color: var(--white);
  box-shadow: 7px 7px 0 var(--orange);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 78px 0; }
.section.dark { background: var(--steel); color: var(--white); border-top: 5px solid var(--ink); border-bottom: 5px solid var(--ink); }
.section.concrete { background: var(--concrete); }

.section-head { margin-bottom: 44px; max-width: 60ch; }
.section-head h2 { position: relative; display: inline-block; padding-bottom: 10px; }
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 90px; height: 7px;
  background: var(--orange);
}
.section-head p { margin-top: 18px; font-size: 1.15rem; opacity: .9; }

/* ============================================================
   PARTNERS — stamped metal plates
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.plate {
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--steel-line);
  display: flex;
  flex-direction: column;
  position: relative;
}

.plate-top {
  background: var(--steel);
  color: var(--white);
  padding: 22px 22px 18px;
  border-bottom: 4px solid var(--ink);
  display: flex;
  align-items: center;
  gap: 16px;
}

.plate-initials {
  width: 56px; height: 56px;
  flex: 0 0 56px;
  background: var(--orange);
  color: var(--ink);
  border: 3px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}

.plate-name { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.5rem; text-transform: uppercase; }

.badge {
  position: absolute;
  top: -14px; right: -10px;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--steel-line);
  transform: rotate(3deg);
}

.plate-body { padding: 24px 22px; flex: 1; display: flex; flex-direction: column; }
.plate-perk { font-size: 1.1rem; margin-bottom: 20px; flex: 1; }
.plate .btn { width: 100%; text-align: center; font-size: 1rem; padding: 13px 18px; box-shadow: 5px 5px 0 var(--steel-line); }

/* ============================================================
   RESPONSIBLE GAMING / PROSE
   ============================================================ */
.prose-block {
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--steel-line);
  padding: 40px 44px;
}
.prose-block p { font-size: 1.12rem; }

/* ============================================================
   ARTICLE PAGES
   ============================================================ */
.page-head {
  background: var(--steel);
  color: var(--white);
  padding: 64px 0;
  border-bottom: 5px solid var(--ink);
  position: relative;
}
.page-head .eyebrow { margin-bottom: 18px; }

.article { padding: 64px 0 90px; }
.article-wrap { max-width: 860px; }
.article .lead { font-size: 1.28rem; margin-bottom: 40px; font-weight: 500; }

.article h2 {
  margin: 46px 0 18px;
  padding-left: 18px;
  border-left: 8px solid var(--orange);
}
.article p { margin-bottom: 18px; font-size: 1.1rem; }

.steel-list { list-style: none; margin: 0 0 24px; display: grid; gap: 14px; }
.steel-list li {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--steel-line);
  padding: 16px 18px 16px 50px;
  position: relative;
  font-size: 1.08rem;
}
.steel-list li::before {
  content: "■";
  position: absolute;
  left: 16px; top: 15px;
  color: var(--orange);
  font-size: 1.1rem;
}
.steel-list li b { font-family: 'Oswald', sans-serif; text-transform: uppercase; color: var(--ink); }

/* ============================================================
   BONUSES — shipping labels / stamped plates
   ============================================================ */
.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.label {
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 9px 9px 0 var(--steel-line);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.label::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10px;
  background: repeating-linear-gradient(-45deg, var(--ink) 0 14px, var(--orange) 14px 28px);
}

.label-head { padding: 30px 26px 16px; display: flex; gap: 18px; align-items: flex-start; }
.label-num {
  flex: 0 0 54px;
  width: 54px; height: 54px;
  background: var(--steel);
  color: var(--white);
  border: 3px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}
.label-title { font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 1.4rem; line-height: 1.05; }
.label-sub { font-size: 1.02rem; color: #444; margin-top: 6px; }

.label-body { padding: 0 26px 26px; margin-top: auto; }

.code-stamp {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--steel);
  color: var(--white);
  border: 3px solid var(--ink);
  padding: 12px 16px;
  margin-bottom: 18px;
  font-family: 'Oswald', monospace;
}
.code-stamp .tag { font-size: 0.78rem; color: var(--orange); text-transform: uppercase; letter-spacing: .08em; }
.code-stamp .val { font-weight: 700; font-size: 1.15rem; letter-spacing: .06em; word-break: break-all; }
.label .btn { width: 100%; text-align: center; box-shadow: 5px 5px 0 var(--steel-line); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--concrete);
  padding: 50px 0 34px;
  border-top: 6px solid var(--orange);
}
.footer-inner { display: flex; flex-direction: column; gap: 22px; align-items: center; text-align: center; }
.footer-logo { font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 1.6rem; color: var(--white); }
.footer-logo b { color: var(--orange); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 4px; justify-content: center; }
.footer-nav a {
  color: var(--concrete);
  text-decoration: none;
  padding: 8px 14px;
  border: 2px solid #3a3f47;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.footer-nav a:hover { border-color: var(--orange); color: var(--orange); }
.footer-copy { font-size: 0.98rem; color: #9aa0a8; }
.footer-copy .age { color: var(--orange); font-weight: 700; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--steel);
  color: var(--white);
  border-top: 5px solid var(--orange);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  z-index: 100;
  box-shadow: 0 -6px 0 var(--steel-line);
}
.cookie.hidden { display: none; }
.cookie p { font-size: 1.02rem; }
.cookie .btn { padding: 11px 26px; font-size: 1rem; box-shadow: 5px 5px 0 var(--steel-line); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .cards { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hamburger { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--steel);
    border-bottom: 5px solid var(--ink);
    padding: 8px 0;
  }
  .nav.open { display: flex; }
  .nav a {
    width: 100%;
    border: 0;
    border-bottom: 2px solid var(--steel-line);
    padding: 16px 24px;
    font-size: 1.15rem;
  }
  .nav a:hover, .nav a.active { border-color: var(--ink); }
  .hero { padding: 56px 0 64px; }
  .section { padding: 56px 0; }
  .prose-block { padding: 28px 22px; }
  .article h2 { margin-top: 36px; }
}

/* ============================================================
   PROD-2017 — casino logos (partners + bonus cards) & bonus sub-nav
   ============================================================ */
/* Home partner plates: logo chip + name + Visit Site (no perk text) */
.cards { grid-template-columns: repeat(4, 1fr); }
.plate.partner .plate-top { flex-direction: column; align-items: stretch; gap: 14px; }
.plate.partner .plate-name { font-size: 1.3rem; text-align: center; }

/* White logo chip — visible on the dark steel plate-top and on light cards */
.plate-logo,
.label-logo {
  display: grid;
  place-items: center;
  background: #E2E5E9;
  border: 3px solid var(--ink);
  padding: 10px 14px;
  width: 200px;
  max-width: 100%;
  height: 84px;
  margin: 0 auto;
}
.label-logo { flex: 0 0 auto; }
.plate-logo img,
.label-logo img {
  max-height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Bonus label cards: logo chip beside the casino name/offer */
.label-head { align-items: center; }
.label-logo { width: 150px; height: 70px; padding: 8px 12px; }
.label-logo img { max-height: 34px; }

/* Bonus category buttons on /bonuses + sub-page head copy + back link */
.page-head-sub { margin-top: 16px; font-size: 1.15rem; color: #C9CDD3; max-width: 56ch; }
.bonus-cats { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 26px; }
.back-link {
  display: inline-block;
  color: var(--orange);
  font-family: 'Oswald', 'Archivo Narrow', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  margin-bottom: 18px;
}
.back-link:hover { color: var(--white); }

@media (max-width: 1080px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 880px) {
  .cards { grid-template-columns: 1fr; }
  .label-logo { width: 130px; height: 64px; }
}