@charset "UTF-8";

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

h4 {
  font-size: 22px;
  font-weight: 600;
  margin: 12px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #0b4d31;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  display: block;
  overflow: auto;
}

table tr td,
table tr th {
  border: 1px solid #333;
  padding: 15px;
}

table tr th {
  background-color: #169B62;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

table tr td:hover {
  background-color: #e3e3e3;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(11, 77, 49, 0.25);
  padding: 16px 0;
  background: linear-gradient(135deg, #0b4d31, #169B62);
}

.header .container .logo a {
  display: inline-block;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  line-height: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.header .container {
  display: flex;
  align-items: center;
}

.header .container .logo {
  flex: 0 0 80px;
}

.header .container h1 {
  flex: 1;
  font-size: 28px;
  margin: 0;
  color: #fff;
}

/* Subheader navigation */
.subnav {
  background: #0b4d31;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 10px rgba(11, 77, 49, 0.18);
}

.subnav .container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.subnav a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  opacity: 0.92;
  padding: 2px 0;
}

.subnav a:hover {
  opacity: 1;
  color: #ffd479;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 50px 0;
}

.main .content p {
  margin: 15px 0;
}

.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}

.main .content .hero-banner {
  margin: 0 0 20px;
}

.main .content .hero-banner img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  padding: 44px 0 24px;
  background: #0b4d31;
  color: #fff;
}

.footer .container {
  display: block;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  text-align: left;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer__col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
}

.footer__col a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14px;
}

.footer__col a:hover { color: #ffd479; text-decoration: underline; }

.footer__brand img {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  margin: 0;
}

.footer__brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 12px 0 0;
  max-width: 260px;
  font-weight: 400;
}

.footer__18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffd479;
  color: #ffd479;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-weight: 800;
  font-size: 13px;
  margin-top: 2px;
}

.footer__copy {
  text-align: center;
  margin: 14px 0 0;
  font-size: 13px;
}

.footer p {
  font-size: 14px;
  font-weight: 300;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.footer a:hover { color: #ffd479; }

.footer__nav a {
  color: #fff;
  font-weight: 600;
}

.footer__disclaimer {
  max-width: 860px;
  text-align: center;
  font-size: 12px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.82);
  margin: 22px auto 0;
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}

@media (max-width: 460px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer__nav a {
  font-size: 14px;
}

.table-responsive {
  overflow-x: auto;
  margin: 20px 0;
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
    margin: 15px 0;
  }

  h3 {
    font-size: 20px;
    margin: 10px 0;
  }

  .container {
    max-width: 100%;
  }

  .main .content img {
    max-width: 100%;
  }
}

/* ---------- EEAT / awards visual layer ---------- */
.main .content { color: #1d2421; }

.main .content h2 {
  text-align: left;
  font-size: 28px;
  padding-left: 14px;
  border-left: 5px solid #169B62;
  margin: 38px 0 14px;
}

.main .content h3 { color: #0b4d31; }

.main .content a {
  color: #0b6b43;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.main .content a:hover { color: #FF883E; }

.lead { font-size: 18px; }

/* Hero banner (home) */
.hero {
  border-radius: 18px;
  overflow: hidden;
  margin: 0 0 28px;
  box-shadow: 0 12px 32px rgba(11, 77, 49, 0.18);
}

.main .content .hero img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #0b4d31;
}

.badge {
  display: inline-block;
  background: rgba(22, 155, 98, 0.1);
  color: #0b4d31;
  border: 1px solid rgba(22, 155, 98, 0.35);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  background: #FF883E;
  color: #fff;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 136, 62, 0.35);
}

.btn:hover { background: #ff7a26; color: #fff; }

.btn--ghost {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: none;
}

.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* Trust strip */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 26px;
  padding: 0;
}

.trust li {
  list-style: none;
  background: #f3f8f5;
  border: 1px solid #e1ebe5;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #0b4d31;
}

/* Card grid (award categories, etc.) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.cards li {
  list-style: none;
  background: #fff;
  border: 1px solid #e6eee9;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  line-height: 150%;
}

.cards li strong { color: #0b4d31; }

/* Callout note (e.g. responsible gambling / 18+) */
.note {
  background: #fff7f0;
  border: 1px solid #ffd9bd;
  border-left: 5px solid #FF883E;
  border-radius: 10px;
  padding: 14px 18px;
  margin: 22px 0;
  font-size: 15px;
}

.note strong { color: #b5530f; }

/* People / jury panel */
.people {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.person {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e6eee9;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  list-style: none;
}

.person .avatar {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, #0b4d31, #169B62);
}

.person .person__name {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 2px;
}

.person .role {
  color: #0b6b43;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
}

.person p { margin: 0; font-size: 14px; line-height: 150%; }

/* Reviewer byline */
.byline {
  clear: both;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f3f8f5;
  border: 1px solid #e1ebe5;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  margin: 0 0 18px;
}

.byline .avatar {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(135deg, #0b4d31, #169B62);
}
/* ---------- Pro home layout ---------- */
.home .container { max-width: 1100px; }
.home .main { padding-top: 36px; }
.home .main .content { max-width: 100%; }

.prose { max-width: 100%; }
.center { text-align: center; }
.home .main .content .prose h2 { text-align: left; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0; }
.cta-row--center { justify-content: center; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.stats li {
  list-style: none;
  text-align: center;
  background: #f3f8f5;
  border: 1px solid #e1ebe5;
  border-radius: 14px;
  padding: 20px 12px;
}
.stats .num { display: block; font-size: 32px; font-weight: 800; color: #0b4d31; line-height: 1.1; }
.stats .lbl { font-size: 13px; color: #41594f; font-weight: 600; }

/* Category icons inside .cards */
.cards li .ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4d31, #169B62);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 10px;
}
.cards li .ttl { display: block; color: #0b4d31; font-weight: 700; margin-bottom: 4px; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  counter-reset: step;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}
.steps li {
  list-style: none;
  background: #fff;
  border: 1px solid #e6eee9;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4d31, #169B62);
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}
.steps li strong { display: block; color: #0b4d31; margin-bottom: 4px; }

/* Split image + text band */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  background: #f3f8f5;
  border: 1px solid #e1ebe5;
  border-radius: 16px;
  padding: 24px;
  margin: 30px 0;
}
.main .content .split img { border-radius: 12px; width: 100%; max-width: 100%; height: auto; margin: 0; display: block; }
.split h2 { margin-top: 0; }

/* Seal CTA band */
.seal-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  background: linear-gradient(135deg, #0b4d31, #169B62);
  color: #fff;
  border-radius: 16px;
  padding: 30px;
  margin: 30px 0;
  text-align: center;
  box-shadow: 0 12px 30px rgba(11, 77, 49, 0.2);
}
.main .content .seal-cta img { width: 130px; max-width: 130px; height: auto; margin: 0; display: block; }
.seal-cta .seal-cta__body { max-width: 460px; }
.seal-cta h2 { color: #fff; border: 0; padding: 0; text-align: center; margin-top: 0; }
.seal-cta p { color: rgba(255, 255, 255, 0.92); margin: 8px 0 16px; }

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: 13px; color: #5a6b63; margin: 0 0 18px; }
.crumbs a { color: #0b6b43; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span[aria-hidden] { margin: 0 7px; color: #9bb0a6; }

/* ---------- Contact location ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.contact-card {
  background: #f3f8f5;
  border: 1px solid #e1ebe5;
  border-radius: 12px;
  padding: 18px;
}
.contact-card h3 { margin: 0 0 8px; font-size: 17px; color: #0b4d31; }
.contact-card address { font-style: normal; line-height: 1.65; color: #1d2421; }
.contact-card p { margin: 6px 0; }

.map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e1ebe5;
  margin: 20px 0;
  line-height: 0;
}
.main .content .map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  margin: 0;
  display: block;
  max-width: 100%;
}

/* ---------- Mobile header / nav tuning ---------- */
@media (max-width: 768px) {
  .header { padding: 12px 0; }
  .header .container .logo { flex: 0 0 50px; }
  .header .container .logo a { padding: 5px; }
  .header .container h1 { font-size: 18px; line-height: 1.25; }
  .subnav .container { gap: 4px 16px; padding-top: 10px; padding-bottom: 10px; }
  .subnav a { font-size: 13px; }
  .main { padding: 28px 0; }
  .stats .num { font-size: 26px; }
  .seal-cta { padding: 22px; gap: 16px; }
}
