/* Bristolgamingbrief — vanilla static stylesheet
   Notes for static hosting:
   - Enforce HTTPS, HSTS, X-Frame-Options: DENY, X-Content-Type-Options: nosniff
   - Referrer-Policy: strict-origin-when-cross-origin
   - Permissions-Policy: camera=(), microphone=(), geolocation=()
   - Add a strict Content-Security-Policy via hosting headers
*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family:
    "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", serif;
  background:
    radial-gradient(1200px 800px at 10% -10%, #1a1730 0%, transparent 60%),
    radial-gradient(1000px 700px at 100% 0%, #0f1a2e 0%, transparent 55%),
    #080a17;
  color: #ece4cf;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #e9c987;
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover {
  color: #f7e3ad;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid #f0c674;
  outline-offset: 3px;
  border-radius: 6px;
}

/* layout container */
.qra-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* sticky nav */
.xqv-91 {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8, 10, 23, 0.72);
  border-bottom: 1px solid rgba(233, 201, 135, 0.12);
}
.xqv-91 .nv-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.nv-brnd {
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #f5e2a8, #c8a45a 60%, #8a6624);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nv-brnd img {
  width: 34px;
  height: 34px;
  display: block;
}
.nv-lst {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nv-lst a {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #cfc5a8;
  font-weight: 500;
}
.nv-lst a:hover {
  color: #f7e3ad;
}
.nv-lst a.cur {
  color: #f0c674;
}
.nv-tg {
  display: none;
  background: transparent;
  border: 1px solid rgba(233, 201, 135, 0.25);
  color: #e9c987;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
}

/* hero */
.m0rph-k {
  position: relative;
  padding: 88px 0 64px;
  overflow: hidden;
}
.m0rph-k::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(240, 198, 116, 0.18),
    transparent 70%
  );
  filter: blur(20px);
  animation: flot 14s ease-in-out infinite;
}
.m0rph-k::after {
  content: "";
  position: absolute;
  inset: auto auto -30% -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(120, 90, 200, 0.22),
    transparent 70%
  );
  filter: blur(30px);
  animation: flot 18s ease-in-out infinite reverse;
}
@keyframes flot {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(20px);
  }
}
.plixu7 {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.plixu7 .knote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(233, 201, 135, 0.3);
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e9c987;
  background: rgba(20, 18, 40, 0.4);
}
.plixu7 h1 {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.05;
  margin: 22px 0 22px;
  background: linear-gradient(180deg, #f7ecc8 0%, #d7b370 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plixu7 p.led {
  font-size: 19px;
  color: #c8c0a5;
  max-width: 46ch;
}
.plixu7 .ctas {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* buttons */
.brnzz {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #f0c674, #b88a3e);
  color: #1a1408;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(184, 138, 62, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}
.brnzz:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 36px rgba(184, 138, 62, 0.35);
}
.brnzz.ghst {
  background: transparent;
  border: 1px solid rgba(233, 201, 135, 0.35);
  color: #e9c987;
  box-shadow: none;
}
.brnzz.ghst:hover {
  background: rgba(233, 201, 135, 0.08);
}

/* hero floating panel */
.flp-9 {
  position: relative;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(30, 28, 55, 0.85),
    rgba(16, 18, 38, 0.7)
  );
  border: 1px solid rgba(233, 201, 135, 0.16);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    inset 0 0 60px rgba(233, 201, 135, 0.04);
  animation: hov 6s ease-in-out infinite;
}
@keyframes hov {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.flp-9 h3 {
  font-family: "Cinzel", serif;
  color: #f0d999;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.flp-9 ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.flp-9 li {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #d8ceb0;
}
.flp-9 li span:last-child {
  color: #f0c674;
  font-weight: 600;
}

/* section */
.zzn-core {
  padding: 96px 0;
  position: relative;
}
.zzn-core h2 {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  max-width: 22ch;
  background: linear-gradient(180deg, #f7ecc8, #d7b370);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.zzn-core .lede {
  margin-top: 18px;
  color: #bfb59a;
  max-width: 60ch;
  font-size: 17px;
}
.zzn-core .kik {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a18b54;
  margin-bottom: 14px;
}

/* offer cards grid */
.qra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.qra-card {
  position: relative;
  padding: 28px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(28, 26, 52, 0.85),
    rgba(14, 16, 34, 0.85)
  );
  border: 1px solid rgba(233, 201, 135, 0.12);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.qra-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px 200px at 20% -10%,
    rgba(240, 198, 116, 0.14),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.qra-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 198, 116, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.qra-card:hover::before {
  opacity: 1;
}
.qra-card .rnk {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #f0c674;
  padding: 4px 12px;
  border: 1px solid rgba(240, 198, 116, 0.35);
  border-radius: 999px;
  margin-bottom: 18px;
}
.qra-card h3 {
  font-family: "Cinzel", serif;
  font-size: 24px;
  color: #f4e4b8;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.qra-card .sub {
  color: #a89e83;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  margin-bottom: 18px;
}
.qra-card .bod {
  color: #cfc4a4;
  font-size: 16px;
  margin-bottom: 22px;
}
.qra-card .meta {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  font-family: "Inter", sans-serif;
  font-size: 13px;
}
.qra-card .meta div {
  display: flex;
  justify-content: space-between;
  color: #c4b994;
}
.qra-card .meta div span:last-child {
  color: #f0c674;
  font-weight: 600;
}
.qra-card .nineplus {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #b8915a;
  letter-spacing: 0.12em;
  margin-top: 14px;
  text-transform: uppercase;
}

/* brand mark (text logo placeholders for offers) */
.brd-mrk {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1c1a36, #0f1126);
  border: 1px solid rgba(233, 201, 135, 0.14);
  font-family: "Cinzel", serif;
  font-size: 22px;
  letter-spacing: 0.22em;
  color: #f0d999;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.brd-mrk::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  animation: shn 5s ease-in-out infinite;
}
@keyframes shn {
  0%,
  80% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* comparison table */
.cmp-tb {
  margin-top: 48px;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(233, 201, 135, 0.12);
}
.cmp-tb table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  font-family: "Inter", sans-serif;
}
.cmp-tb th,
.cmp-tb td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(233, 201, 135, 0.08);
  font-size: 14px;
  color: #d4c9a8;
}
.cmp-tb th {
  background: rgba(20, 18, 40, 0.6);
  font-weight: 600;
  color: #a18b54;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}
.cmp-tb tr:last-child td {
  border-bottom: none;
}
.cmp-tb tr:hover td {
  background: rgba(240, 198, 116, 0.04);
}

/* numbered methodology */
.num-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.num-cd {
  padding: 28px;
  border-radius: 18px;
  background: rgba(20, 18, 40, 0.55);
  border: 1px solid rgba(233, 201, 135, 0.1);
  position: relative;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}
.num-cd:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 198, 116, 0.3);
}
.num-cd .nu {
  font-family: "Cinzel", serif;
  font-size: 42px;
  background: linear-gradient(180deg, #f0c674, #7a5825);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 10px;
}
.num-cd h4 {
  font-family: "Cinzel", serif;
  color: #f4e4b8;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.num-cd p {
  font-size: 15px;
  color: #bfb59a;
}

/* stat strip */
.stt-rw {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 48px;
}
.stt-c {
  text-align: center;
  padding: 28px 18px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(28, 26, 52, 0.7),
    rgba(14, 16, 34, 0.7)
  );
  border: 1px solid rgba(233, 201, 135, 0.1);
}
.stt-c .nm {
  font-family: "Cinzel", serif;
  font-size: 36px;
  color: #f0c674;
  display: block;
  margin-bottom: 6px;
}
.stt-c .lb {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a89e83;
}

/* callout box (responsible use) */
.cal-bx {
  margin-top: 48px;
  padding: 36px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(102, 67, 28, 0.18),
    rgba(40, 28, 12, 0.22)
  );
  border: 1px solid rgba(240, 198, 116, 0.25);
}
.cal-bx h3 {
  font-family: "Cinzel", serif;
  color: #f0d999;
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
.cal-bx p {
  color: #d8ceb0;
  font-size: 16px;
}

/* prose pages */
.prz {
  max-width: 780px;
}
.prz h2 {
  margin-top: 48px;
  margin-bottom: 14px;
}
.prz h3 {
  font-family: "Cinzel", serif;
  color: #f4e4b8;
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.prz p,
.prz li {
  color: #cfc4a4;
  font-size: 17px;
  margin-bottom: 14px;
}
.prz ul,
.prz ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.prz a {
  border-bottom: 1px dotted rgba(240, 198, 116, 0.5);
}

/* footer */
.ftr-9 {
  margin-top: 80px;
  padding: 72px 0 36px;
  border-top: 1px solid rgba(233, 201, 135, 0.12);
  background: rgba(6, 8, 18, 0.7);
}
.ftr-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.ftr-grid h4 {
  font-family: "Cinzel", serif;
  color: #f0d999;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ftr-grid h4 img {
  width: 32px;
  height: 32px;
  display: block;
}
.ftr-grid ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.ftr-grid a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #bfb59a;
}
.ftr-grid p {
  font-size: 14px;
  color: #a89e83;
  margin-bottom: 12px;
}
.ftr-logos {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.ftr-logos a {
  flex: 1;
  min-width: 140px;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(28, 26, 52, 0.7),
    rgba(14, 16, 34, 0.7)
  );
  border: 1px solid rgba(233, 201, 135, 0.12);
  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: #f0d999;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.ftr-logos a:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 198, 116, 0.4);
}
.ftr-base {
  padding-top: 28px;
  border-top: 1px solid rgba(233, 201, 135, 0.08);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #8a8068;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

/* age modal */
.age-mdl {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4, 5, 12, 0.92);
  backdrop-filter: blur(10px);
  padding: 24px;
}
.age-mdl.opn {
  display: flex;
  animation: fdin 0.4s ease;
}
@keyframes fdin {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.age-mdl .age-cn {
  max-width: 520px;
  padding: 48px 36px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(180deg, #1b1936, #0d0f24);
  border: 1px solid rgba(240, 198, 116, 0.3);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    inset 0 0 80px rgba(240, 198, 116, 0.04);
}
.age-mdl h2 {
  font-family: "Cinzel", serif;
  font-size: 34px;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #f7ecc8, #d7b370);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.age-mdl p {
  color: #cfc4a4;
  margin-bottom: 30px;
  font-size: 17px;
}
.age-mdl .age-bts {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* cookie banner */
.ck-bnr {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 8000;
  display: none;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(20, 18, 40, 0.96),
    rgba(10, 12, 28, 0.96)
  );
  border: 1px solid rgba(233, 201, 135, 0.18);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  font-family: "Inter", sans-serif;
}
.ck-bnr.opn {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  animation: fdin 0.4s ease;
}
.ck-bnr p {
  color: #cfc4a4;
  font-size: 14px;
  flex: 1;
  min-width: 240px;
}
.ck-bnr p a {
  text-decoration: underline;
}
.ck-bnr .ck-bts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ck-bnr button {
  padding: 10px 18px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  border: none;
}
.ck-bnr button.acc {
  background: linear-gradient(135deg, #f0c674, #b88a3e);
  color: #1a1408;
}
.ck-bnr button.mng {
  background: transparent;
  color: #e9c987;
  border: 1px solid rgba(233, 201, 135, 0.35);
}
.ck-bnr button.dec {
  background: rgba(255, 255, 255, 0.06);
  color: #cfc4a4;
}

/* scroll reveal (safe fallback: content is visible even if JS fails) */
.rvl {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.rvl.vis {
  opacity: 1;
  transform: none;
}

/* responsive */
@media (max-width: 880px) {
  .plixu7 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nv-lst {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 14px 0;
    background: rgba(8, 10, 23, 0.98);
    border-bottom: 1px solid rgba(233, 201, 135, 0.12);
  }
  .nv-lst.opn {
    display: flex;
  }
  .nv-lst li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
  .nv-tg {
    display: inline-flex;
  }
  .xqv-91 .nv-bx {
    position: relative;
  }
  .ftr-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .zzn-core {
    padding: 64px 0;
  }
  .m0rph-k {
    padding: 56px 0 40px;
  }
}

/* utility */
.npls {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #b8915a;
  border: 1px solid rgba(184, 145, 90, 0.4);
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  margin-right: 8px;
}
.tagrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.tagrow span {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(240, 198, 116, 0.08);
  color: #e9c987;
  letter-spacing: 0.06em;
}

/* fonts: load via <link> in <head> */

/* Real logo images inside footer & support blocks */
.ftr-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 14px 18px;
  background: #f4ecd6;
  border: 1px solid rgba(233, 201, 135, 0.25);
}
.ftr-logos a:hover {
  background: #fff4d8;
}
.ftr-logos img {
  max-height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}
.ftr-logos .txt-lg {
  font-family: "Cinzel", serif;
  font-size: 18px;
  letter-spacing: 0.22em;
  color: #1a1408;
  font-weight: 600;
}

/* Offer brand mark with image */
.brd-mrk.brd-img {
  height: 110px;
  padding: 14px;
  background: linear-gradient(135deg, #13122a, #0a0c1f);
}
.brd-mrk.brd-img img {
  max-height: 78px;
  width: auto;
  object-fit: contain;
}
.brd-mrk.brd-dark {
  background: #000;
}
