/* Mayfairgamingbrief — informational review directory. Randomized non-semantic class names. */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  color: #1c2230;
  background: #f7f8fb;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #0f6fbf;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: #0b1626;
  line-height: 1.25;
  font-weight: 700;
}
h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 2rem 0 1rem;
}
h3 {
  font-size: 1.25rem;
  margin: 1.25rem 0 0.5rem;
}
p {
  margin: 0 0 1rem;
}
ul,
ol {
  margin: 0 0 1rem 1.25rem;
}
li {
  margin-bottom: 0.35rem;
}

.qx-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.qx-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

/* Header */
.qx-hdr {
  background: #fff;
  border-bottom: 1px solid #e5e8ef;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 2px rgba(15, 30, 60, 0.04);
}
.qx-hdr-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
  gap: 1rem;
}
.qx-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #0b1626;
}
.qx-brand:hover {
  text-decoration: none;
}
.qx-brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(11, 22, 38, 0.16);
}
.qx-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.qx-nav a {
  color: #27314a;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
}
.qx-nav a:hover {
  background: #eef3f9;
  text-decoration: none;
  color: #0f6fbf;
}
.qx-burger {
  display: none;
  background: none;
  border: 1px solid #d4dae6;
  border-radius: 6px;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}
@media (max-width: 880px) {
  .qx-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0;
    border-top: 1px solid #e5e8ef;
    margin-top: 0.5rem;
  }
  .qx-nav.qx-nav-open {
    display: flex;
  }
  .qx-burger {
    display: inline-block;
  }
  .qx-hdr-in {
    flex-wrap: wrap;
  }
}

/* Hero */
.qx-hero {
  background: linear-gradient(135deg, #0b1626 0%, #0f3a66 60%, #0f6fbf 100%);
  color: #eaf2fb;
  padding: 3.5rem 0 3rem;
}
.qx-hero h1 {
  color: #fff;
  max-width: 780px;
}
.qx-hero p.qx-lead {
  font-size: 1.1rem;
  max-width: 680px;
  color: #cbdcef;
}
.qx-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: #cce4fb;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Sections */
.qx-sec {
  padding: 3rem 0;
}
.qx-sec-alt {
  background: #fff;
  border-top: 1px solid #e5e8ef;
  border-bottom: 1px solid #e5e8ef;
}
.qx-sec-title {
  text-align: center;
  margin-bottom: 2rem;
}
.qx-sec-sub {
  text-align: center;
  color: #5a6478;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

/* Review cards */
.qx-rgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.qx-rcard {
  background: #fff;
  border: 1px solid #e5e8ef;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.qx-rcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11, 22, 38, 0.08);
}
.qx-rlogo {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1626;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 0.75rem;
}
.qx-rlogo img {
  max-height: 55px;
  width: auto;
}
.qx-rmeta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #5a6478;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.qx-rscore {
  background: #eaf3fb;
  color: #0f6fbf;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
  font-size: 0.85rem;
}
.qx-rcard p {
  color: #3a465c;
  font-size: 0.95rem;
}
.qx-rlink {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f6fbf;
  color: #fff !important;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.15s;
}
.qx-rlink:hover {
  background: #0b5896;
  text-decoration: none;
}

/* Feature info blocks */
.qx-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.qx-ibox {
  background: #fff;
  border: 1px solid #e5e8ef;
  border-radius: 10px;
  padding: 1.25rem;
}
.qx-ibox h3 {
  margin-top: 0;
  color: #0f3a66;
}
.qx-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #eaf3fb;
  color: #0f6fbf;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

/* Article pages */
.qx-art {
  background: #fff;
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid #e5e8ef;
}
.qx-art-in {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.qx-art-in h2 {
  margin-top: 2.25rem;
}
.qx-art-in h3 {
  margin-top: 1.5rem;
}
.qx-crumb {
  font-size: 0.85rem;
  color: #6a7488;
  margin-bottom: 0.5rem;
}
.qx-crumb a {
  color: #0f6fbf;
}

/* Profile / detail page */
.qx-prof-head {
  background: #0b1626;
  color: #eaf2fb;
  padding: 2.5rem 0;
}
.qx-prof-head .qx-wrap {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.qx-prof-logo {
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qx-prof-logo img {
  max-height: 80px;
}
.qx-prof-head h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}
.qx-prof-head p {
  color: #bcd1e8;
  margin-bottom: 0;
}
.qx-prof-body {
  padding: 2.5rem 0;
  background: #fff;
}
.qx-prof-body .qx-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 820px) {
  .qx-prof-body .qx-wrap {
    grid-template-columns: 1fr;
  }
}
.qx-side {
  background: #f7f8fb;
  border: 1px solid #e5e8ef;
  border-radius: 10px;
  padding: 1.25rem;
  height: fit-content;
}
.qx-side h3 {
  margin-top: 0;
  font-size: 1.05rem;
  color: #0f3a66;
}
.qx-side dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.qx-side dt {
  color: #6a7488;
}
.qx-side dd {
  color: #1c2230;
  font-weight: 600;
  margin: 0;
}
.qx-sidelink {
  display: block;
  text-align: center;
  background: #0f6fbf;
  color: #fff !important;
  padding: 0.7rem;
  border-radius: 8px;
  font-weight: 600;
}
.qx-sidelink:hover {
  background: #0b5896;
  text-decoration: none;
}

/* FAQ */
.qx-faq details {
  background: #fff;
  border: 1px solid #e5e8ef;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.qx-faq details[open] {
  box-shadow: 0 4px 12px rgba(11, 22, 38, 0.06);
}
.qx-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #0b1626;
  list-style: none;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
}
.qx-faq summary::-webkit-details-marker {
  display: none;
}
.qx-faq summary::after {
  content: "+";
  float: right;
  color: #0f6fbf;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
}
.qx-faq details[open] summary::after {
  content: "−";
}
.qx-faq p {
  margin-top: 0.75rem;
  color: #3a465c;
}

/* Footer */
.qx-ftr {
  background: #0b1626;
  color: #bcc7d8;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}
.qx-ftr-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 820px) {
  .qx-ftr-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .qx-ftr-grid {
    grid-template-columns: 1fr;
  }
}
.qx-ftr h4 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.qx-ftr-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.qx-ftr-brand h4 {
  margin-bottom: 0;
}
.qx-ftr-logo {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);
}
.qx-ftr a {
  color: #bcc7d8;
  display: block;
  padding: 0.2rem 0;
  font-size: 0.92rem;
}
.qx-ftr a:hover {
  color: #fff;
}
.qx-rg-logos {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.qx-rg-logos a {
  padding: 0;
  display: inline-block;
}
.qx-rg-logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.qx-rg-logos .qx-rg-gm {
  background: #5a3a8e;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
.qx-rg-logos .qx-rg-gmo {
  background: #222;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
.qx-ftr-disc {
  border-top: 1px solid #1f2d44;
  padding-top: 1.25rem;
  font-size: 0.82rem;
  color: #8593aa;
  text-align: center;
  line-height: 1.7;
}
.qx-18 {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 2px solid #ff5a5a;
  color: #ff5a5a;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 28px;
  text-align: center;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Age gate overlay */
.qx-age {
  position: fixed;
  inset: 0;
  background: rgba(7, 12, 22, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.qx-age.qx-on {
  display: flex;
}
.qx-age-card {
  background: #fff;
  border-radius: 14px;
  max-width: 460px;
  width: 100%;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.qx-age-card .qx-18 {
  width: 64px;
  height: 64px;
  font-size: 1.4rem;
  line-height: 60px;
  border-width: 3px;
  display: block;
  margin: 0 auto 1rem;
}
.qx-age-card h2 {
  margin-top: 0;
}
.qx-age-btns {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}
.qx-btn {
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.15s;
}
.qx-btn-pri {
  background: #0f6fbf;
  color: #fff;
}
.qx-btn-pri:hover {
  background: #0b5896;
}
.qx-btn-sec {
  background: #eef3f9;
  color: #27314a;
}
.qx-btn-sec:hover {
  background: #dde6f1;
}

/* Cookie banner & modal */
.qx-cb {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  z-index: 9000;
  display: none;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid #e5e8ef;
}
.qx-cb.qx-on {
  display: block;
}
.qx-cb h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}
.qx-cb p {
  font-size: 0.88rem;
  color: #3a465c;
  margin-bottom: 0.85rem;
}
.qx-cb-btns {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.qx-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 12, 22, 0.65);
  z-index: 9500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.qx-modal.qx-on {
  display: flex;
}
.qx-modal-card {
  background: #fff;
  border-radius: 12px;
  max-width: 520px;
  width: 100%;
  padding: 1.75rem;
  max-height: 90vh;
  overflow: auto;
}
.qx-pref {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid #eef0f5;
}
.qx-pref:last-child {
  border-bottom: none;
}
.qx-pref strong {
  display: block;
  font-size: 0.95rem;
  color: #0b1626;
}
.qx-pref span {
  font-size: 0.82rem;
  color: #5a6478;
}
.qx-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  background: #cdd5e1;
  border-radius: 12px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: background 0.15s;
}
.qx-toggle.qx-tdis {
  background: #0f6fbf;
  opacity: 0.5;
  cursor: not-allowed;
}
.qx-toggle.qx-on {
  background: #0f6fbf;
}
.qx-toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.15s;
}
.qx-toggle.qx-on::after {
  left: 21px;
}

/* Misc */
.qx-callout {
  background: #fff7e6;
  border-left: 4px solid #e8a500;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin: 1.5rem 0;
  font-size: 0.93rem;
  color: #5a4a16;
}
.qx-callout strong {
  color: #7a5e00;
}
