/* Playfair Display - self-hosted */

/* regular */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}

/* semi-bold */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}


:root {
  /* Core */
  --felt-green: #0b3a2a;        /* deep felt */
  --near-black: #0b0f0c;        /* softer than pure black */
  --panel-black: rgba(0,0,0,.65);

  /* Golds */
  --gold: #d4af37;              /* classic */
--gold-bright: #ffd700;        /* true gold */
--gold-soft: rgba(255,215,0,.35);


  /* Brighteners */
--ivory: #f5f5f5;
  --teal: #2ec4b6;              /* subtle casino accent */
  --ruby: #c1121f;              /* warning / responsible gambling (very sparing) */
}


* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}




body {
  font-family: 'Montserrat', sans-serif;
  background: #DCE6F1;     /* deep midnight */
  color: #000000;
  min-height: 100vh;
  font-size: 1.03rem;
}

/* Optional subtle depth layer 
.page-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    radial-gradient(circle at 50% 20%, #0e4426 0%, #04160c 70%);
}

*/



.container {
  max-width: 980px;
  margin: 40px auto;
  padding: 30px 24px;
  background: #F2F4F8; /* very light grey */
  border-radius: 18px;
 border: 1px solid grey;
  overflow: visible;
  box-shadow: 0 0 18px rgba(255,209,102,.08);
}

.container1 {
  max-width: 980px;
  margin: 0px auto;
  padding: 0px 0px;
  background: #ffffff; /* white container */
  border-radius: 18px;
 border: none;
  overflow: visible;
  box-shadow: 0 0 18px rgba(255,209,102,.08);
}

.container2 {
  max-width: 980px;
  margin: 40px auto;
  padding: 30px 24px;
  background: #ffffff; /* white container */
  border-radius: 18px;
 border: 1px solid grey;
  overflow: visible;
  box-shadow: 0 0 18px rgba(255,209,102,.08);
}

.container3 {
  max-width: 980px;
  margin: 20px auto;
  padding: 20px 12px;
  background: #ffffff; /* white container */
  border-radius: 18px;
 border: 1px solid grey;
  overflow: visible;
  box-shadow: 0 0 18px rgba(255,209,102,.08);
}



a {
  color: #1a1a1a;
  text-decoration: none;
}



h1 {
  margin: 0 0 6px;
  font-size: 2.4rem;
  letter-spacing: 0.5px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #1f4e79;

  display: flex;              /* block-level flex */
  align-items: center;        /* vertical align */
  justify-content: center;    /* center horizontally within container */
  gap: 12px;
  text-align: center;         /* harmless; fine for wrap cases */
}


/* H2 – subtitle / section headers */
h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
   /* text-shadow: 0 0 6px var(--gold-soft);*/
  text-align: center;
    color: var(--gold-bright);
}

h2.accent-red {
  color: #1f4e79;
  /*text-shadow: 0 0 4px rgba(214,40,40,.45);*/
}

/* H3 – card titles */
h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #1f4e79;
  /*text-shadow: 0 0 6px var(--gold-soft); */
  text-align: center;
  letter-spacing: 0.5px;
}




/* Body copy */
p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;        /* ✅ critical */
  font-size: 1.02rem;
  line-height: 1.7;
  color: #000000;
  text-align: left;
   text-shadow: 0 0 0.01px rgba(0,0,0,0.6);
}

/* Prevent Chrome desktop text flash before JS init */
.geo-box {
  visibility: hidden;
}

/* Reveal geo UI once JS initialization completes */
.geo-box.is-ready {
  visibility: visible;
}



.geo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  font-size: .95rem;
  color: black;
}

.geo-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}


/* ✅ Shared flag styling */
.geo-flag,
.flag-inline {
  border: 1px solid rgba(255, 215, 0, 0.7);
  border-radius: 1px;
  box-shadow: 0 0 4px rgba(0,0,0,.6);
  background: #000;
  overflow: hidden; /* force image clipping */
}

/* ✅ Geo flag specific */
.geo-flag {
  width: 48px;
  height: 30px;
  object-fit: cover;
  display: block;
  margin-bottom: 8px;
}

/* ✅ Geo flag wrapper */
.geo-flag-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}



.geo-box select,
.geo-box button {
  background: white;
  color: black;
  border: 1px solid grey;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .9rem;
  cursor: pointer;
}

.geo-box button:hover {
  background: white;
  color: black;
}

@media (max-width: 520px) {
  body { font-size: 1.06rem; }
  .geo-box { flex-direction: column; align-items: stretch; }
  .geo-label { justify-content: center; }
  .geo-box select,
  .geo-box button { width: 100%; text-align: center; }
}

@media (max-width: 520px) {
  .geo-box {
    flex-direction: column;
    align-items: center;
  }


  .geo-box select,
  .geo-box button {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}


/* Desktop / default */
.flag-inline {
  display: inline-block;          /* ✅ critical */
  height: 32px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
  box-sizing: border-box;         /* ✅ ensures border is included */
  border-radius: 4px;
}


/* FIXED: removed global display:block that was killing footer logos */
img {
  max-width: 100%;
  height: auto;
  /* display: block removed on purpose – now flex-friendly */
}
img.flag-inline {
  height: 32px;
  width: auto;
  max-width: none;      /* ✅ overrides img rule */
}

.no-js-warning {
  max-width: 720px;
  margin: 80px auto;
  padding: 28px 24px;
  background: rgba(0,0,0,.85);
  border: 2px solid gold;
  border-radius: 16px;
  color: #f5f5f5;
  text-align: center;
}

.no-js-warning h2 {
  color: gold;
  margin-bottom: 12px;
}

.no-js-warning p {
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.lang-box {
  display: flex;
    justify-content: center;
  gap: 6px;
}

.lang-box button {
  background: lightgrey;
  border: 1px solid grey;
  color: black;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .75rem;
  cursor: pointer;
}

.lang-box button.active {
  background: white;
  color: #000;
  box-shadow: 0 0 6px rgba(255,209,102,.6);
}

.lang-box button:hover:not(.active) {
  background: white;
  color: black;
}



li {
  color: var(--ivory);
}



.geo-note {
  text-align: center;
  color: #d62828;
  font-size: 0.9rem;
}

.section-title {
  font-size: 1.5rem;
  margin-top: 32px;
  margin-bottom: 18px;
  letter-spacing: .5px;
}




.intro-image {
  float: right;
  width: 320px;        /* adjust size */
  max-width: 45%;
  margin: 0 20px 12px 0;
  height: auto;
  border-radius: 10px;
}

.content-block::after {
  content: "";
  display: block;
  clear: both;         /* prevent float leakage */
}


.intro-text p {
  margin-bottom: 14px;
}



.province-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  margin-top: 24px;
}

.province-item {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 10px;

  text-decoration: none;
  color: #1f4e79;
  font-weight: 600;
}

.province-item img {
  width: 36px;
  height: auto;
  flex-shrink: 0;
}

.province-item:hover {
  background: #f2f4f8;
}








.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  max-width: 980px;
  margin: 40px auto 0;
  padding: 16px 24px;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-copy {
  font-size: 0.85rem;
  color: #333;
  text-align: center;
  white-space: nowrap;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}


/* ✅ Mobile-friendly stacking */
@media (max-width: 640px) {
  .content-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .intro-image {
    float: none;
    margin: 0 auto 12px;
    display: block;
  }
}

@media (max-width: 640px) {

  p{
    text-align: center;
  }
  li {
    text-align: center;
  }

}





/* Mobile */
@media (max-width: 640px) {

  h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .flag-inline {
    display: inline-block;
    height: 48px;
    width: auto;
    margin-right: 0;

    border: 2px solid rgba(255, 215, 0, 0.75);
    border-radius: 3px;
    box-shadow: 0 0 4px rgba(0,0,0,.6);
    background: #000;
  }

}

@media (max-width: 640px) {
  img.flag-inline {
    height: 48px;       /* ✅ actually applies now */
  }
}

/* ===============================
   AGE GATE – CLEAN / NEUTRAL
=============================== */

/* AGE GATE: neutral system font */
.age-modal {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Age gate title */
.age-modal h3 {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
  text-shadow: none;
}

/* Question emphasis */
.age-modal strong {
  font-weight: 600;
}


#age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7); /* darken page behind modal */
}

.age-modal {
  background: #ffffff;
  color: #000000;
  padding: 26px;
  border-radius: 18px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  text-align: center;
}


.age-modal p,
.age-modal strong {
  text-align: center;
}


/* ✅ Force black title in age gate */
.age-modal h3 {
  color: #000000;
  text-shadow: none;
}

/* Headings & text */
.age-modal h3,
.age-modal p,
.age-modal strong {
  color: #000000;
}

/* Note text */
.age-modal .age-note {
  color: #333333;
}

/* Buttons */
.age-actions button {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  margin: 0 6px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
}

.age-actions button:hover {
  background: #222222;
}


#age-overlay[hidden] {
  display: none;
}


.age-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 16px;
}


#ageYes {
  background: #1e7f4f;
  color: #fff;
}

#ageNo {
  background: #b00020;   /* deep red */
  color: #ffffff;
}

.age-note {
  font-size: .85rem;
}

.age-actions button {
  min-width: 110px;
}


/* ✅ Override global paragraph alignment */
.age-modal p,
.age-modal strong {
  text-align: center;
}




.casino-cta {
  display: flex;
  justify-content: center;
}



@keyframes logoGlow {
  0%, 100% {
    box-shadow: 0 0 6px rgba(255,215,0,.35);
  }
  50% {
    box-shadow: 0 0 16px rgba(255,215,0,.75);
  }
}

.casino-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.casino-table th,
.casino-table td {
  padding: 20px 12px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255,215,0,0.15);
}

.casino-table th {
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

/* Column sizing */
.col-logo {
  width: 120px;
}

.col-logo img {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto;
}


.col-casino {
  width: 180px;
  font-weight: 600;
}

.col-company {
  max-width: 160px;        /* adjust if needed */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.col-license {
  width: 120px;
  text-align: center;
}

.col-games {
  width: 220px;
}

.col-payments {
  width: 120px;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.icon-row img {
  width: 22px;
  height: 22px;
}
.license-badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 0.85rem;
  border-radius: 6px;
  background: lightgray;
  border: 1px solid black;
  white-space: nowrap;
}


.legend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
  max-width: 600px;
  margin: 0 auto;   /* ← THIS centers it */
    
}

.legend-item {
  display: flex;
  align-items: center;
 /*justify-content: center; /* ← centers horizontally */
  gap: 6px;
}
.legend-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 600px) {
  .legend-grid {
    grid-template-columns: 1fr;
  }
}


.license-badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 0.85rem;
  border-radius: 6px;
  background: lightgray;
  border: 1px solid black;
  white-space: nowrap;
}

table.dataTable {
  width: 100% !important;
}
/* Base table background  */
table.dataTable {
  background-color: transparent !important;
  color: #000000;
}


/* Header */
table.dataTable thead th {
  background-color: #ffffff !important;
  color: #000000; /* datatable header text color */
  border-bottom: 1px solid rgba(255,215,0,0.25);
}

/* Body rows */
table.dataTable tbody tr {
  background-color: #ffffff !important; /* datatable background */
}

/* Alternating rows (DataTables striping) */
table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
  background-color: #0b1f15 !important;
}

table.dataTable.stripe tbody tr.even,
table.dataTable.display tbody tr.even {
  background-color: #08140e !important;
}
/* Hover */
table.dataTable tbody tr:hover {
  background-color: rgba(0,0,155,0.08) !important;
}

/* Selected row (if used later) */
table.dataTable tbody tr.selected {
  background-color: rgba(255,215,0,0.15) !important;
}

/* Pagination buttons */
.dataTables_wrapper .dataTables_paginate .paginate_button {
  color: #ffffff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: rgba(255,215,0,0.25) !important;
  border: 1px solid rgba(255,215,0,0.4) !important;
}
/* Center specific column headers */
.casino-table thead th.col-logo,
.casino-table thead th.col-license {
  text-align: center;
}

/* DataTables labels & info text */
.dataTables_wrapper,
.dataTables_wrapper label,
.dataTables_info {
  color: #000000 !important;   /* off-white */
}
.dataTables_filter input {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid rgba(255,215,0,.5);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  color: #f5f5f5 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  color: rgba(255,255,255,.4) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: rgba(255,215,0,.15) !important;
  color: #fff !important;
}
.dataTables_length select {
  background-color: #04160c;
  color: #000000;
  border: 1px solid rgba(255,215,0,.5);
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: rgba(255,215,0,.25) !important;
  color: #fff !important;
  border: 1px solid rgba(255,215,0,.4) !important;
}
/* ✅ FIX: style disabled pagination SPANS */
.dataTables_wrapper .dataTables_paginate span.paginate_button {
  color: #f5f5f5 !important;
}

/* Disabled (Previous / Next when inactive) */
.dataTables_wrapper .dataTables_paginate span.paginate_button.disabled {
  color: rgba(255,255,255,0.6) !important;
  cursor: default;
}

/* Current page (often a span, not a link) */
.dataTables_wrapper .dataTables_paginate span.paginate_button.current {
  background: rgba(255,215,0,.25) !important;
  color: #fff !important;
  border: 1px solid rgba(255,215,0,.4);
}
/* ===============================
   MOBILE – STACKED CASINO TABLE
=============================== */
@media (max-width: 768px) {

  /* Turn the DataTables table into stacked cards */
  #casinoTable,
  #casinoTable thead,
  #casinoTable tbody,
  #casinoTable th,
  #casinoTable td,
  #casinoTable tr {
    display: block;
    width: 100%;
  }

  /* Hide header row */
  #casinoTable thead {
    display: none;
  }

  /* Each row becomes a card */
  #casinoTable tbody tr {
    margin-bottom: 16px;
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 12px;
    background: #08140e;
    padding: 16px 12px;
  }

  /* Cells stack and are centered */
  #casinoTable tbody td {
    border: none;
    padding: 6px 0;
    text-align: center !important;
  }

  /* Logo centered */
  #casinoTable td.col-logo img {
    display: block;
    margin: 0 auto 10px;
  }

  /* Casino + company centered */
  #casinoTable td.col-casino,
  #casinoTable td.col-company {
    text-align: center;
  }

  /* License badge centered */
  #casinoTable td.col-license {
    text-align: center;
    margin-top: 4px;
  }

  /* Game + payment icons centered */
  #casinoTable td.col-games .icon-row,
  #casinoTable td.col-payments .icon-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
  }
}

@media (max-width: 768px) {

  /* Force company link to behave as centered block */
  #casinoTable td.col-company a {
    display: inline-block;
    text-align: center;
    white-space: normal;       /* remove nowrap on mobile */
    max-width: 100%;
  }
  

  /* Make Company cell behave like full-width centered content on mobile */
  #casinoTable td.col-company {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-align: center !important;
  }

  #casinoTable td.col-company a {
    display: inline-block;
    text-align: center;
    max-width: 100%;
    white-space: normal;
    margin: 0 auto;
  }
}


/* Center the DataTables search box */
.dataTables_wrapper .dataTables_filter {
  float: none !important;      /* override DataTables default */
  text-align: left !important;
  width: 100%;
  margin: 16px 0;
}

/* Move "Show entries" to the right */
.dataTables_wrapper .dataTables_length {
  float: right !important;
  text-align: right;
}

.info-jump select {
  background: white;
  border: 1px solid rgba(0,0,0,0.3);
  color: black;
  padding: 6px 10px;
  border-radius: 8px;
}

.info-jump {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 4px;   /* 🔑 tighten gap */
}

.content-block {
  padding-top: 10px;
  padding-bottom: 10px;
  background: white;
  border: 1px solid black;
}


.content-block p:last-child {
  margin-bottom: 0;
}
.content-card {
  padding: 10px 20px 10px; /* top | left-right | bottom */
}

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

.icon-active {
    filter: none;
    opacity: 1;
}

.icon-inactive {
    filter: grayscale(100%);
    opacity: 0.35;
}

.col-games img,
.col-payments img {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    vertical-align: middle;
}

.icon-active {
    filter: none;
    opacity: 1;
}

.icon-inactive {
    filter: grayscale(100%);
    opacity: 0.35;
}

.links a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #0066cc; /* or 'blue' */
    text-decoration: underline;
}

.advertising {
    border: 1px solid blue;
    border-radius: 8px;
}

