:root {
  --auric-red: #df1d1d;
  --auric-red-dark: #bd1111;
  --auric-ink: #151515;
  --auric-muted: #6b6b6b;
  --auric-soft: #f5f5f5;
  --auric-line: #ececec;
  --auric-pink: #f4d4d4;
  --auric-white: #ffffff;
  --auric-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.auric-age-veil,
.auric-consent-veil {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(232, 232, 232, 0.78);
  backdrop-filter: blur(6px);
}

.auric-age-veil.auric-is-visible,
.auric-consent-veil.auric-is-visible {
  display: flex;
}

.auric-age-card,
.auric-consent-card {
  width: min(520px, 100%);
  border: 2px solid var(--auric-red);
  border-radius: 26px;
  background: var(--auric-white);
  box-shadow: var(--auric-shadow);
  overflow: hidden;
}

.auric-age-card {
  padding: 28px;
}

.auric-age-brand {
  display: flex;
  gap: 18px;
  align-items: center;
}

.auric-age-mark {
  display: grid;
  place-items: center;
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border: 3px solid var(--auric-red);
  border-radius: 22px;
  background: var(--auric-red);
  color: var(--auric-white);
  font-size: 24px;
  font-weight: 900;
  transform: skew(-5deg);
}

.auric-age-brand h2,
.auric-consent-head h2 {
  margin: 0 0 6px;
  color: var(--auric-ink);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.auric-age-brand p,
.auric-consent-head p,
.auric-cookie-content p,
.auric-age-body p {
  margin: 0;
  color: var(--auric-muted);
  font-size: 15px;
  line-height: 1.45;
}

.auric-age-body {
  margin: 24px 0;
  padding: 18px;
  border-radius: 18px;
  background: var(--auric-soft);
}

.auric-age-actions,
.auric-consent-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.auric-btn,
.auric-chip-btn,
.auric-close-btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.auric-btn:hover,
.auric-chip-btn:hover,
.auric-close-btn:hover {
  transform: translateY(-1px);
}

.auric-btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 14px;
}

.auric-btn-red {
  background: var(--auric-red);
  color: var(--auric-white);
}

.auric-btn-red:hover {
  background: var(--auric-red-dark);
}

.auric-btn-dark {
  background: var(--auric-ink);
  color: var(--auric-white);
}

.auric-btn-light {
  border: 2px solid var(--auric-red);
  background: var(--auric-white);
  color: var(--auric-red);
}

.auric-cookie-panel {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 9997;
  display: none;
  width: min(1120px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 2px solid var(--auric-red);
  border-radius: 24px;
  background: var(--auric-white);
  box-shadow: var(--auric-shadow);
  transform: translateX(-50%);
}

.auric-cookie-panel.auric-is-visible {
  display: flex;
}

.auric-cookie-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.auric-cookie-icon {
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--auric-red);
  color: var(--auric-white);
  font-size: 24px;
  font-weight: 900;
}

.auric-cookie-content h3 {
  margin: 0 0 5px;
  color: var(--auric-ink);
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
}

.auric-cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.auric-chip-btn {
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--auric-red);
  border-radius: 999px;
  background: var(--auric-white);
  color: var(--auric-red);
  font-size: 13px;
}

.auric-chip-red {
  background: var(--auric-red);
  color: var(--auric-white);
}

.auric-consent-card {
  padding: 0;
}

.auric-consent-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 26px 20px;
  border-bottom: 1px solid var(--auric-line);
}

.auric-close-btn {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 2px solid var(--auric-red);
  border-radius: 50%;
  background: var(--auric-white);
  color: var(--auric-red);
  font-size: 26px;
  line-height: 1;
}

.auric-consent-list {
  display: grid;
  gap: 12px;
  padding: 22px 26px;
}

.auric-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-radius: 18px;
  background: var(--auric-soft);
  cursor: pointer;
}

.auric-switch-row span {
  display: grid;
  gap: 4px;
}

.auric-switch-row strong {
  color: var(--auric-ink);
  font-size: 16px;
  font-weight: 900;
}

.auric-switch-row small {
  color: var(--auric-muted);
  font-size: 13px;
  line-height: 1.35;
}

.auric-switch-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.auric-switch-row i {
  position: relative;
  flex: 0 0 56px;
  width: 56px;
  height: 32px;
  border-radius: 999px;
  background: #d7d7d7;
  transition: background 0.18s ease;
}

.auric-switch-row i::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--auric-white);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
  transition: transform 0.18s ease;
}

.auric-switch-row input:checked + i {
  background: var(--auric-red);
}

.auric-switch-row input:checked + i::before {
  transform: translateX(24px);
}

.auric-consent-actions {
  padding: 0 26px 26px;
}

@media (max-width: 760px) {
  .auric-cookie-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .auric-cookie-actions,
  .auric-age-actions,
  .auric-consent-actions {
    flex-direction: column;
    width: 100%;
  }

  .auric-chip-btn,
  .auric-btn {
    width: 100%;
  }

  .auric-age-brand {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Legal/content pages: privacy, terms and responsible gambling */
body.legal-content-page {
  background: linear-gradient(180deg, #f2f2f2 0%, #ffffff 52%, #f4f4f4 100%) !important;
  color: #171717;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.legal-content-page.useBodyGrid {
  grid-template-columns: minmax(16px, 1fr) minmax(0, 1120px) minmax(16px, 1fr) !important;
  grid-template-rows: auto auto auto !important;
  grid-gap: 0 !important;
}

body.legal-content-page #leftColumn,
body.legal-content-page #rightColumn,
body.legal-content-page #leftColumnScroller,
body.legal-content-page #rightColumnScroller,
body.legal-content-page #dynamicCoupons,
body.legal-content-page .os-scrollbar,
body.legal-content-page .os-scrollbar-corner {
  display: none !important;
}

body.legal-content-page > #headerBar,
body.legal-content-page > header,
body.legal-content-page > #footerBar,
body.legal-content-page > footer,
body.legal-content-page #mainContent {
  min-width: 0 !important;
  max-width: 100% !important;
}

body.legal-content-page.internalScrolling > #headerBar,
body.legal-content-page.internalScrolling > header,
body.legal-content-page.internalScrolling > #mainContent,
body.legal-content-page.internalScrolling > footer {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}

body.legal-content-page > #headerBar,
body.legal-content-page > header {
  grid-column: 2 !important;
}

body.legal-content-page #mainContent {
  grid-column: 2 !important;
  grid-row: 2 !important;
  width: 100% !important;
  margin: 24px auto 34px !important;
  padding: 0 16px !important;
  overflow: visible !important;
}

body.legal-content-page > #footerBar,
body.legal-content-page > footer {
  grid-column: 2 !important;
  grid-row: 3 !important;
  width: 100% !important;
}

body.legal-content-page .framePage.wc_genContent {
  width: 100% !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
  padding: clamp(24px, 4vw, 52px) !important;
  border: 1px solid rgba(13, 13, 13, 0.08) !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 55px rgba(13, 13, 13, 0.10) !important;
  color: #1b1b1b !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.68 !important;
  letter-spacing: 0 !important;
}

body.legal-content-page .framePage.wc_genContent *,
body.legal-content-page .framePage.wc_genContent *::before,
body.legal-content-page .framePage.wc_genContent *::after {
  box-sizing: border-box;
}

body.legal-content-page .framePage.wc_genContent h1 {
  display: block !important;
  margin: 0 0 24px !important;
  padding: 0 0 18px !important;
  border: 0 !important;
  border-bottom: 3px solid #d4221e !important;
  color: #0d0d0d !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: clamp(30px, 4vw, 46px) !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  text-transform: none !important;
}

body.legal-content-page .framePage.wc_genContent h1::before,
body.legal-content-page .framePage.wc_genContent h1::after {
  content: none !important;
  display: none !important;
}

body.legal-content-page .framePage.wc_genContent h4 {
  display: block !important;
  margin: 28px 0 12px !important;
  padding: 0 0 8px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(212, 34, 30, 0.28) !important;
  color: #d4221e !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 22px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

body.legal-content-page .framePage.wc_genContent h4::before,
body.legal-content-page .framePage.wc_genContent h4::after {
  content: none !important;
  display: none !important;
}

body.legal-content-page .seoBeforeContent,
body.legal-content-page .staticContent,
body.legal-content-page .framePanel,
body.legal-content-page .GenericContainerContent,
body.legal-content-page .panelContent {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.legal-content-page .framePage.wc_genContent p {
  margin: 0 0 16px !important;
  color: #2a2a2a !important;
  font-size: 16px !important;
  line-height: 1.68 !important;
}

body.legal-content-page .framePage.wc_genContent a,
body.legal-content-page .framePage.wc_genContent .inTextHyperlink {
  color: #b91616 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

body.legal-content-page .framePage.wc_genContent dl {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.legal-content-page .framePage.wc_genContent dl.outsideAccordion.textPanel {
  margin: 0 0 22px !important;
}

body.legal-content-page .framePage.wc_genContent dd,
body.legal-content-page .framePage.wc_genContent .noAccordion {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.legal-content-page .framePage.wc_genContent dl.accordion.legalNumbering {
  display: grid !important;
  gap: 14px !important;
  counter-reset: legal-section !important;
  text-align: left !important;
}

body.legal-content-page .framePage.wc_genContent dl.accordion.legalNumbering > dt {
  counter-increment: legal-section !important;
  margin: 10px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-left: 5px solid #d4221e !important;
  border-radius: 14px !important;
  background: #f7f7f7 !important;
  box-shadow: inset 0 0 0 1px rgba(13, 13, 13, 0.06) !important;
  color: #111 !important;
}

body.legal-content-page .framePage.wc_genContent dl.accordion.legalNumbering > dt > a {
  display: block !important;
  width: 100% !important;
  min-height: 0 !important;
  padding: 15px 18px !important;
  color: #111 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 21px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  cursor: default !important;
}

body.legal-content-page .framePage.wc_genContent dl.accordion.legalNumbering > dt > a::before {
  content: counter(legal-section) ". " !important;
  display: inline !important;
  margin: 0 8px 0 0 !important;
  color: #d4221e !important;
  font: inherit !important;
  font-weight: 900 !important;
}

body.legal-content-page .framePage.wc_genContent dl.accordion.legalNumbering > dt > a::after {
  content: none !important;
  display: none !important;
}

body.legal-content-page .framePage.wc_genContent dl.accordion.legalNumbering > dd {
  display: block !important;
  margin: 0 0 10px !important;
  padding: 2px 0 4px !important;
  border: 0 !important;
  background: transparent !important;
}

body.legal-content-page .framePage.wc_genContent ol,
body.legal-content-page .framePage.wc_genContent ul {
  margin: 0 0 18px 1.35rem !important;
  padding-left: 1.15rem !important;
}

body.legal-content-page .framePage.wc_genContent ol {
  list-style: decimal outside !important;
}

body.legal-content-page .framePage.wc_genContent ol ol {
  margin-top: 8px !important;
  list-style: lower-alpha outside !important;
}

body.legal-content-page .framePage.wc_genContent ol ol ol {
  list-style: lower-roman outside !important;
}

body.legal-content-page .framePage.wc_genContent li {
  margin: 0 0 11px !important;
  padding-left: 4px !important;
  color: #262626 !important;
  line-height: 1.65 !important;
  list-style-position: outside !important;
}

body.legal-content-page .framePage.wc_genContent li::before,
body.legal-content-page .framePage.wc_genContent dl.legalNumbering > dd > ol > li::before,
body.legal-content-page .framePage.wc_genContent dl.legalNumbering > dd > ol > li > ol > li::before {
  content: none !important;
  display: none !important;
}

body.legal-content-page .framePage.wc_genContent table {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  border-collapse: collapse !important;
  -webkit-overflow-scrolling: touch;
}

body.legal-content-page .framePage.wc_genContent strong,
body.legal-content-page .framePage.wc_genContent em {
  color: #111 !important;
}

body.legal-content-page.responsiblegambling-content-page .framePage.wc_genContent h4 {
  color: #d4221e !important;
}

@media (max-width: 900px) {
  body.legal-content-page.useBodyGrid {
    display: block !important;
    padding: 0 !important;
  }

  body.legal-content-page #mainContent {
    width: 100% !important;
    margin: 0 auto 22px !important;
    padding: 12px !important;
  }

  body.legal-content-page .framePage.wc_genContent {
    padding: 22px 16px !important;
    border-radius: 18px !important;
    font-size: 15px !important;
    line-height: 1.62 !important;
  }

  body.legal-content-page .framePage.wc_genContent h1 {
    margin-bottom: 18px !important;
    padding-bottom: 12px !important;
    font-size: 28px !important;
    line-height: 1.14 !important;
  }

  body.legal-content-page .framePage.wc_genContent h4 {
    font-size: 19px !important;
  }

  body.legal-content-page .framePage.wc_genContent p,
  body.legal-content-page .framePage.wc_genContent li {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  body.legal-content-page .framePage.wc_genContent dl.accordion.legalNumbering > dt > a {
    padding: 13px 14px !important;
    font-size: 18px !important;
  }

  body.legal-content-page .framePage.wc_genContent ol,
  body.legal-content-page .framePage.wc_genContent ul {
    margin-left: 1rem !important;
    padding-left: 1rem !important;
  }
}

@media (max-width: 520px) {
  body.legal-content-page #mainContent {
    padding: 8px !important;
  }

  body.legal-content-page .framePage.wc_genContent {
    padding: 18px 13px !important;
    border-radius: 16px !important;
  }

  body.legal-content-page .framePage.wc_genContent h1 {
    font-size: 24px !important;
  }

  body.legal-content-page .framePage.wc_genContent dl.accordion.legalNumbering {
    gap: 10px !important;
  }
}
