/* ============================================================
   No Deposit Bonus Code — shared stylesheet
   THEME: Coupon / promo voucher
   White + bright red #E11D2A + sunshine yellow #FFD400
   ============================================================ */

:root {
  --red: #E11D2A;
  --red-dark: #B21420;
  --yellow: #FFD400;
  --yellow-soft: #FFF3B0;
  --ink: #1A1A1A;
  --paper: #FFFFFF;
  --paper-2: #FFFBEC;
  --muted: #6A6A6A;
  --line: #E6E6E6;
  --radius: 12px;
  --dash: 3px;
  --shadow: 0 10px 30px rgba(225, 29, 42, 0.12);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.08);
  --maxw: 1140px;
  --font: "Helvetica Neue", Helvetica, Arial, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ---------------- Coupon perforation helpers ---------------- */
.dashed-box {
  border: var(--dash) dashed var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--red);
  color: #fff;
  border-bottom: 4px dashed var(--yellow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
}

/* Logo lockup — compact coupon chip */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.3px;
  color: #fff;
  text-transform: uppercase;
}
.logo:hover { text-decoration: none; }
.logo .logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--yellow);
  color: var(--red);
  border-radius: 8px;
  font-size: 18px;
  box-shadow: inset 0 0 0 2px var(--red);
}
.logo .logo-a { color: #fff; }
.logo .logo-dot { color: var(--yellow); padding: 0 1px; }
.logo .logo-b {
  color: var(--red);
  background: var(--yellow);
  padding: 1px 7px;
  border-radius: 6px;
}

/* Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: var(--yellow);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--red);
  border-radius: 3px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 2px dashed transparent;
}
.site-nav a:hover {
  text-decoration: none;
  border-color: var(--yellow);
}
.site-nav a.is-active {
  background: var(--yellow);
  color: var(--red);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(circle at 12% 20%, var(--yellow-soft) 0 14px, transparent 15px),
    radial-gradient(circle at 88% 80%, var(--yellow-soft) 0 14px, transparent 15px),
    repeating-linear-gradient(135deg, #fff 0 28px, var(--paper-2) 28px 56px);
  padding: 64px 0 72px;
  border-bottom: var(--dash) dashed var(--ink);
}
.hero-coupon {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: var(--dash) dashed var(--red);
  border-radius: 18px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
/* perforation notches on the sides of the hero coupon */
.hero-coupon::before,
.hero-coupon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  background: var(--paper-2);
  border: var(--dash) dashed var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}
.hero-coupon::before { left: -16px; }
.hero-coupon::after { right: -16px; }

.eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 2px solid var(--ink);
}
.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.1;
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -1px;
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 28px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 15px 32px;
  border-radius: 10px;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 5px 0 var(--ink);
}
.btn-primary:hover { box-shadow: 0 7px 0 var(--ink); }
.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 5px 0 var(--ink);
}
.btn-yellow:hover { box-shadow: 0 7px 0 var(--ink); }

/* ============================================================
   SECTIONS / GENERIC
   ============================================================ */
.section { padding: 60px 0; }
.section-alt { background: var(--paper-2); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.section-head h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: -.5px;
}
.section-head h2 .scissor { color: var(--red); }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }

/* scissor cut-line divider */
.cutline {
  position: relative;
  text-align: center;
  border-top: var(--dash) dashed var(--ink);
  margin: 8px 0 32px;
}
.cutline span {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  padding: 0 12px;
  font-size: 22px;
}
.section-alt .cutline span { background: var(--paper-2); }

/* ============================================================
   PARTNERS — scratch-card style tiles
   ============================================================ */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.partner-card {
  position: relative;
  text-align: center;
  padding: 30px 24px 26px;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, var(--yellow) 0 12px, #ffdf3d 12px 24px);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .15s ease;
}
.partner-card:hover { transform: translateY(-4px); }
.partner-card .scratch {
  background: #fff;
  border: 2px dashed var(--ink);
  border-radius: 10px;
  padding: 22px 16px 18px;
}
.partner-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  z-index: 2;
}
.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 26px;
  border: 3px solid var(--ink);
}
.partner-card h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
}
.partner-card .perk {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 18px;
  min-height: 44px;
}
.partner-card .btn {
  font-size: 14px;
  padding: 11px 22px;
  border-width: 2px;
  box-shadow: 0 4px 0 var(--ink);
}

/* ============================================================
   RESPONSIBLE GAMING
   ============================================================ */
.rg-block {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: var(--dash) dashed var(--ink);
  border-radius: var(--radius);
  padding: 36px 34px;
  position: relative;
}
.rg-block .rg-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.rg-block p { color: #333; font-size: 16px; margin: 0; }

/* ============================================================
   BONUSES — tear-off coupon cards
   ============================================================ */
.page-head {
  background: var(--red);
  color: #fff;
  padding: 54px 0;
  text-align: center;
  border-bottom: 4px dashed var(--yellow);
}
.page-head h1 {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 900;
  margin: 0 0 10px;
  letter-spacing: -1px;
}
.page-head p { font-size: 18px; margin: 0; opacity: .95; }
.page-head .tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 2px solid #fff;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* a coupon = top voucher panel + perforated tear line + bottom code stub */
.coupon {
  position: relative;
  background: #fff;
  border: var(--dash) dashed var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
  display: flex;
  flex-direction: column;
}
.coupon:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.coupon-top {
  padding: 26px 22px 22px;
  text-align: center;
  background:
    radial-gradient(circle at 0 100%, transparent 0 13px, #fff 14px),
    radial-gradient(circle at 100% 100%, transparent 0 13px, #fff 14px),
    var(--yellow-soft);
}
.coupon .spins {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  border: 2px solid var(--ink);
}
.coupon h3 {
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -.5px;
}
.coupon .sub {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  min-height: 42px;
}

/* perforation tear line between voucher and stub */
.coupon-perf {
  position: relative;
  border-top: 2px dashed var(--ink);
  height: 0;
}
.coupon-perf::before,
.coupon-perf::after {
  content: "";
  position: absolute;
  top: -15px;
  width: 28px;
  height: 28px;
  background: var(--paper-2);
  border: var(--dash) dashed var(--ink);
  border-radius: 50%;
}
.section-alt .coupon-perf::before,
.section-alt .coupon-perf::after { background: var(--paper-2); }
.coupon-perf::before { left: -16px; }
.coupon-perf::after { right: -16px; }

.coupon-bottom {
  padding: 20px 22px 24px;
  text-align: center;
  margin-top: auto;
}
.code-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 6px;
}
.code-box {
  display: block;
  font-family: "Courier New", monospace;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--ink);
  background: #fff;
  border: 2px dotted var(--red);
  border-radius: 8px;
  padding: 12px 10px;
  margin-bottom: 16px;
  word-break: break-all;
}
.coupon .btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 13px 18px;
  border-width: 2px;
  box-shadow: 0 4px 0 var(--ink);
}

/* ============================================================
   ARTICLE (About / Terms)
   ============================================================ */
.article {
  max-width: 820px;
  margin: 0 auto;
}
.article-card {
  background: #fff;
  border: var(--dash) dashed var(--ink);
  border-radius: var(--radius);
  padding: 40px 38px;
  box-shadow: var(--shadow-sm);
}
.article-card .lead {
  font-size: 19px;
  color: #333;
  margin: 0 0 8px;
}
.article-card h2 {
  font-size: 24px;
  font-weight: 900;
  margin: 32px 0 12px;
  padding-left: 14px;
  border-left: 6px solid var(--yellow);
  letter-spacing: -.3px;
}
.article-card h2:first-of-type { margin-top: 24px; }
.article-card p { color: #333; font-size: 16px; margin: 0 0 14px; }
.article-card ul {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.article-card ul li {
  position: relative;
  padding: 10px 14px 10px 42px;
  margin-bottom: 10px;
  background: var(--paper-2);
  border: 2px dashed var(--line);
  border-radius: 10px;
  font-size: 16px;
  color: #333;
}
.article-card ul li::before {
  content: "🎟";
  position: absolute;
  left: 12px;
  top: 9px;
  font-size: 18px;
}
.article-card ul li strong { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 40px 0 28px;
  border-top: 6px dashed var(--yellow);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-logo {
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -.3px;
}
.footer-logo .logo-dot { color: var(--yellow); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 4px 12px;
  border-right: 1px dashed #555;
}
.footer-nav li:last-child a { border-right: none; }
.footer-nav a:hover { color: var(--yellow); text-decoration: none; }
.footer-copy {
  color: #c9c9c9;
  font-size: 14px;
  margin: 0;
}
.footer-18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 2px dashed var(--yellow);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: var(--dash) dashed var(--red);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.cookie-banner .btn {
  font-size: 14px;
  padding: 10px 22px;
  border-width: 2px;
  box-shadow: 0 4px 0 var(--ink);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .partner-grid,
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--red-dark);
    border-bottom: 4px dashed var(--yellow);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .site-nav.is-open { max-height: 320px; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
  }
  .site-nav a {
    padding: 12px 14px;
    border-radius: 8px;
    border: 2px dashed transparent;
  }
  .hero-coupon { padding: 36px 22px; }
  .hero-coupon::before,
  .hero-coupon::after { display: none; }
}

@media (max-width: 560px) {
  .partner-grid,
  .bonus-grid { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .article-card,
  .rg-block { padding: 28px 20px; }
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   PROD-2017 — casino logos (partners + bonus cards) & bonus sub-nav
   Logos sit on a WHITE chip so they stay visible on the yellow/red theme
   ============================================================ */
/* Home partner cards: replace the red initials square with a white logo chip */
.partner-logo-img {
  width: 100%;
  height: 84px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 10px 18px;
  /* reset the red-square defaults from .partner-logo */
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.partner-logo-img img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

/* Casino logo chip inside coupon cards (white bg for visibility) */
.coupon .casino-logo {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 64px;
  margin: 0 auto 14px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 8px 14px;
}
.coupon .casino-logo img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
}

/* Bonus category buttons on /bonuses */
.bonus-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 22px 0 2px;
}
.bonus-cats .btn { border-color: #fff; }

/* Back link on bonus sub-pages (sits in the red page-head) */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  margin-bottom: 12px;
}
.back-link:hover { text-decoration: none; color: var(--yellow); }