:root {
  --color-primary: #35b3db;
  --color-primary-hover: #2a9fc4;
  --color-primary-active: #238aad;
  --color-secondary: #000000;
  --header-dark: #1e1e1e;
  --header-black: #000000;
  --text-muted-footer: #bdbdbd;
  --font-family: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: 18px;
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
  color: #000;
}

h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
}

h2 {
  font-size: 30px;
  text-align: center;
  margin: 30px 0 20px;
}

h3 {
  font-size: 26px;
  margin: 30px 0;
}

@media (max-width: 768px) {
  h1 { font-size: 26px; }
  h2 { font-size: 24px; }
  h3 { font-size: 22px; }
}

/* Header */
.main-header {
  background: var(--header-black);
}

.header-top {
  background: var(--header-dark);
  padding: 30px 0;
}

.header-top .container {
  display: flex;
 margin-top: 12px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header-logo img {
  width: 200px;
  height: auto;
}

.search-container {
  flex-grow: 1;
  margin: 0 30px;
  position: relative;
}

.search-box {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #bdbdbd;
  outline: none;
  padding: 12px 10px 12px 55px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m25.752 24.556-5.29-5.289a9.31 9.31 0 1 0-1.195 1.195l5.29 5.29a.845.845 0 1 0 1.195-1.196ZM5.714 13.321a7.607 7.607 0 1 1 7.607 7.607 7.616 7.616 0 0 1-7.607-7.607Z' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 10px center;
  color: #fff;
  font-family: var(--font-family);
  font-size: 18px;
}

.search-box::placeholder {
  color: #bdbdbd;
}

.search-box:focus {
  border-color: #fff;
}

.search-button {
  display: none;
  border: none;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m25.752 24.556-5.29-5.289a9.31 9.31 0 1 0-1.195 1.195l5.29 5.29a.845.845 0 1 0 1.195-1.196ZM5.714 13.321a7.607 7.607 0 1 1 7.607 7.607 7.616 7.616 0 0 1-7.607-7.607Z' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.top-nav a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.18s;
}

.top-nav a:hover {
  color: #fff;
}

.sub-navbar {
  background: var(--header-black);
  padding: 15px 0;
}

.sub-navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.burger-box {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.burger-box .burger {
  display: block;
  position: relative;
  width: 28px;
  height: 26px;
}

.burger-box .burger::before,
.burger-box .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background: #fff;
  transition: all 0.3s;
}

.burger-box .burger::before {
  top: 0;
  box-shadow: 0 11px 0 #fff;
}

.burger-box .burger::after {
  bottom: 0;
}

.burger-box.active .burger::before {
  top: 12px;
  transform: rotate(45deg);
  box-shadow: none;
}

.burger-box.active .burger::after {
  bottom: 11px;
  transform: rotate(-45deg);
}

.main-nav-collapse {
  display: none;
  background: var(--header-dark);
}

.main-nav-collapse.show {
  display: block;
}

.main-nav-collapse .nav-link {
  color: #fff;
  padding: 20px 18px;
  border-bottom: 1px solid #575757;
}

@media (max-width: 1100px) {
  .header-top { padding: 10px 0; }
  .top-nav { display: none !important; }
  .burger-box { display: block; }
  .search-container { margin: 0; max-width: none; }
  .search-box { display: none; }
  .search-button { display: inline-block; }
}

body.search-modal-active::before {
  content: "";
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(30, 30, 30, 0.5);
  backdrop-filter: blur(4px);
}

body.search-modal-active #search-box {
  display: block !important;
  position: fixed;
  z-index: 99999;
  top: 160px;
  left: 10%;
  width: 80%;
  background-color: rgba(30, 30, 30, 0.9);
}

/* Main content */
#main {
  margin: 30px 0 60px;
}

.authors-box {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.authors-box .contributors > div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.authors-box .contributors span {
  font-size: 16px;
}

.authors-box .card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.card {
    border-color: white;
}
.contact-link {
  color: white !important;
}
.authors-box .card img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.authors-box .card a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

.authors-box .card a:hover {
  text-decoration: none;
}

.authors-box .date-wrap::before {
  content: "\1F552";
  margin-right: 5px;
}

.authors-box .date-wrap strong {
  font-weight: 600;
}

/* TOC pills */
.toc-nav {
  margin: 20px 0;
}

.toc {
  padding: 11px 16px;
  background-color: #36cdfc;
  border-radius: 20px;
  margin: 5px;
  display: inline-block;
  text-decoration: none !important;
  color: #000 !important;
  font-size: 16px;
  transition: opacity 0.2s;
}

.toc:hover {
  opacity: 0.85;
}

/* Content sections */
.section {
  padding: 20px 0;
}

.text-card {
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(2, 7, 41, 0.1);
  padding: 24px 20px;
  margin-bottom: 20px;
  text-align: justify;
  line-height: 1.6;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
}

/* Casino brand cards */
.grw-brand-table-box {
  margin: 1.5rem 0;
}

.brand-card {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  border: 1px solid #efe5e5;
  padding: 15px 20px;
  transition: all 0.3s ease;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}

.brand-card:hover {
  border-color: #cbc3c3;
}

.brand-card .order-number {
  order: 1;
  flex: 0 0 auto;
  margin-bottom: 30px;
  margin-right: 9px;
  font-size: 18px;
  font-weight: 500;
  padding-left: 5px;
}

.brand-card .order-number::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #bdbdbd;
  position: absolute;
  left: 0;
  top: 50px;
}

.brand-card .order-number::after {
  content: ".";
}

.brand-card .title {
  width: 65%;
  order: 2;
  flex: 1 1 auto;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 700;
}

.brand-card > .rating-review-box {
  order: 3;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.brand-card > .rating-review-box.no-review {
  width: 15%;
  justify-content: flex-end;
}

.brand-card > .rating-review-box .rating-box strong {
  font-size: 18px;
  font-weight: 600;
}

.brand-card > .rating-review-box .rating-box span {
  font-size: 14px;
}

.brand-card > .logo,
.brand-card > .dynamic-field-box,
.brand-card > .buttons {
  order: 5;
  flex: 1 0 25%;
}

.brand-card > .logo {
  flex: 1 0 19%;
  margin-right: 30px;
}

.brand-card > .logo img {
  width: 240px;
  min-width: 210px;
  aspect-ratio: 2;
  border-radius: 6px;
  object-fit: cover;
  background-color: #0f1b2a;
}

.brand-card > .dynamic-field-box {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  gap: 10px;
  margin-right: 30px;
  overflow: auto;
  flex: 1 0 18%;
  border-radius: 6px;
  background: #f8f8f8;
  padding: 10px;
}

.brand-card > .dynamic-field-box .value {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.brand-card > .dynamic-field-box .label {
  font-size: 16px;
  text-align: center;
}

.brand-card > .buttons {
  display: flex;
  flex-direction: column;
  width: 22%;
  align-self: center;
  flex: 1 0 22%;
}

.brand-card > .buttons a.site {
  background: var(--color-primary);
  padding: 20px 15px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  transition: background 0.2s;
}

.brand-card > .buttons a.site:hover {
  background: var(--color-primary-hover);
}

@media (max-width: 1100px) {
  .brand-card .buttons {
    margin-top: 20px;
    flex: 1 0 50%;
    flex-direction: row;
    width: 50%;
    gap: 10px;
  }
  .brand-card .buttons a { width: 100%; }
  .brand-card .dynamic-field-box { flex: 1 0 30%; margin-right: 0; }
}

@media (max-width: 768px) {
  .brand-card { padding-top: 33px; }
  .brand-card .order-number::before { display: none; }
  .brand-card .order-number,
  .brand-card .title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    width: 100%;
  }
  .brand-card > .rating-review-box {
    flex: 1 0 100%;
    justify-content: center;
    width: 100%;
  }
  .brand-card > .logo {
    flex: 1 0 100%;
    margin: 0 0 20px;
    text-align: center;
  }
  .brand-card > .logo img {
    width: 360px;
    max-width: 100%;
    height: auto;
  }
  .brand-card .dynamic-field-box { flex: 1 0 100%; padding: 15px; }
  .brand-card .buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    gap: 15px;
  }
}

/* Tables */
.comparison-table {
  width: 100%;
  border-radius: 30px;
  border-style: hidden;
  box-shadow: 0 0 0 1px #666;
  margin: 20px 0;
}

.comparison-table th {
  border: 1px solid;
  text-align: center;
  padding: 10px;
  background-color: #05536c;
  color: #fff;
}

.comparison-table td {
  padding: 10px;
  background-color: #eaeaff;
  text-align: center;
}

.comparison-table tr:first-child th:first-child { border-top-left-radius: 30px; }
.comparison-table tr:first-child th:last-child { border-top-right-radius: 30px; }
.comparison-table tr:last-child td:first-child { border-bottom-left-radius: 30px; }
.comparison-table tr:last-child td:last-child { border-bottom-right-radius: 30px; }

.table-responsive-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

/* FAQ */
.faq-item {
  background: #fff;
  padding: 20px 20px 20px 60px;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 5px 10px 5px rgba(235, 235, 235, 0.75);
}

.faq-item .faq-icon {
  color: var(--color-primary);
  position: absolute;
  left: 20px;
  top: 24px;
  font-size: 18px;
}

.faq-item .faq-icon::after {
  content: "";
  border: solid 2px var(--color-primary);
  border-radius: 100%;
  width: 32px;
  height: 32px;
  position: absolute;
  left: -7px;
  top: -7px;
}

.faq-item h3 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 15px;
}

.faq-item p {
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 0;
  margin-left: -40px;
}

/* Author box */
.author-card {
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  margin: 0 auto;
}

.author-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.author-header img {
  border-radius: 50%;
  max-width: 80px;
  margin-right: 24px;
}

.author-name .name {
  font-size: 20px;
  font-weight: 600;
}

.author-name .role {
  color: var(--color-primary);
  font-size: 14px;
}

.author-footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d9d9d9;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.author-footer .social-link:hover {
  background: var(--color-primary);
}

/* Footer */
.site-footer {
  background: #000;
  color: #fff;
  padding-bottom: 30px;
}

.footer-top {
  background: var(--header-dark);
  padding: 50px 0 43px;
}

.footer-title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-title-box img {
  max-height: 50px;
  width: 200px;
  object-fit: contain;
}

.footer-title {
  font-size: 24px;
  font-weight: 700;
}

.footer-badges {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-top: 1px solid #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
  margin-top: 28px;
  padding: 33px 0;
}

.footer-badges img {
  max-width: 160px;
  max-height: 80px;
  padding: 0 8px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.footer-badges a:hover img {
  filter: grayscale(0%);
}

.footer-description {
  color: var(--text-muted-footer);
  text-align: center;
  font-size: 17px;
  margin: 40px 0 30px;
}
a {
    color: black !important;
}
section#casinos {
    display: none;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
  margin: 0 0 30px;
  padding: 0 15px;
}

.footer-menu a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
}

.footer-menu a:hover {
  color: var(--color-primary) !important;
  text-decoration: underline;
}

/* Sticky banner */
#sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #0f1b2a;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.banner-img {
  max-height: 100px;
  max-width: 200px;
}

.banner-img img {
  border-radius: 11px;
  box-shadow: 3px 3px 11px rgba(255, 255, 255, 0.5);
  max-height: 80px;
}

.banner-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
}

.banner-btn {
  background: linear-gradient(135deg, #32d2a8, #4fa3ff);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.banner-btn:hover {
  opacity: 0.9;
  color: #fff;
}

.banner-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  position: absolute;
  right: 6px;
  top: 6px;
}

@media (min-width: 701px) {
  #sticky-banner { display: none; }
}

@media (max-width: 600px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
    padding-top: 30px;
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding-bottom: 120px;
  }
}
.text-center {
    text-align: left !important;
}