
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100vw - var(--scrollbar-width, 0px));
  z-index: 9999;

  background-color: #000;
  overflow-x: hidden;
  box-sizing: border-box;
}

.header-inner {
  max-width: 1240px;              
  margin: 0 auto;
  padding: 0 24px;                

  height: 64px;                   
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 16px;                   
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;                      
}

.nav-link {
  color: #ffffff;
  text-decoration: none;

  font-size: 12px;                
  font-weight: 600;
  letter-spacing: 0.08em;         
  text-transform: uppercase;

  line-height: 1;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.75;
}

@media (max-width: 768px) {
  .header-inner {
    height: auto;
    padding: 12px 16px;
    flex-direction: column;
    gap: 10px;
  }

  .header-nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

html, body {
  height: 100%;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-style: italic;
  text-transform: uppercase;
}

.site-content {
  flex: 1; 
}

main {
  flex: 1; 
  background-color: #f6f7f9;
}

.article-section {
  padding-top: 120px;
}

.site-footer {
  width: 100%;
  background-color: #000;           
  padding: 24px 0;
  color: #fff;
  text-align: center;
  margin-top: 0; 
}

.footer-inner {
  max-width: 1240px;                
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-icons img {
  height: 32px;
  display: block;
  object-fit: contain;
}

.footer-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-inner {
    padding: 0 16px;
    gap: 12px;
  }

  .footer-icons {
    gap: 12px;
  }

  .footer-text {
    font-size: 11px;
  }
}

.hero-block {
  background-color: #35343c;
  background-image: url('/assets/images/home_hero_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 24px;
  padding-top: calc(64px + 40px);
  color: #fff;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.hero-block h1 {
  font-size: 48px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
}

.top-bookies-container {
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
  border-radius: 6px;
  position: relative;
}

.top-bookies-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.top-bookies-disclaimer {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-bookies-container h2 {
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.bookies-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.bookie-card {
  background-color: #fff;
  color: #000;
  border-radius: 6px;
  flex: 1;
  min-width: 220px;
  max-width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 0.5px solid #d0d0d0;
  box-sizing: border-box;
}

.bookie-logo-link {
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  cursor: pointer;
}

.bookie-logo-link:hover {
  opacity: 0.9;
}

.bookie-logo img {
  max-height: 45px;
  display: block;
}

.bookie-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bookie-rating {
  background-color: #f2eef6;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 14px;
  transform: skewX(-12deg);
}

.rating-value {
  color: #666;
  font-style: normal;
}

.rating-star {
  color: #ffc107;
  font-size: 16px;
}

.table-rating-star {
  color: #f3c226;
}

.bet-now {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  padding: 12px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  transition: opacity 0.2s ease;
  transform: skewX(-12deg);
  cursor: pointer;
  border: none;
  outline: none;
}

.bet-now span {
  display: inline-block;
  font-style: italic;
  transform: skewX(12deg);
}

.bet-now:hover {
  opacity: 0.85;
}

.bookie-bonus {
  color: #5a2d91; 
  font-weight: 600;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 8px;
}

.bookie-terms {
  font-size: 10px;
  color: #666;
  line-height: 1.2;
}

.article-section {
  background-color: #f6f7f9; 
  padding: 40px 24px;
  padding-top: 150px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.article-section.home-section {
  padding-top: 30px;
}

.article-section .container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.article-text {
  color: #555555;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
}

.article-text p {
  font-size: 16px;
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 1em;
}

.article-text h1 {
  font-size: 48px;
  color: #2d2c4e;
  font-style: italic;
  text-transform: uppercase;
  margin-top: 0.5em;
  margin-bottom: 0.75em;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

main:not(:has(.hero-block)) .article-text h1:first-child {
  margin-top: 0;
}

.article-section .article-text h1:first-child {
  margin-top: 0;
}

.article-text h2 {
  font-size: 32px;
  color: #2d2c4e;
  font-style: italic;
  text-transform: uppercase;
  margin-top: 1.75em;
  margin-bottom: 0.75em;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.article-text h3 {
  font-size: 24px;
  color: #2d2c4e;
  font-style: italic;
  text-transform: uppercase;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 700;
  line-height: 1.3;
}

.article-text h4,
.article-text h5,
.article-text h6 {
  font-size: 20px;
  color: #2d2c4e;
  font-style: italic;
  text-transform: uppercase;
  margin-top: 1.25em;
  margin-bottom: 0.5em;
  font-weight: 700;
  line-height: 1.4;
}

.ris-image {
  margin: 32px 0;
  text-align: center;
}

.ris-image-cont {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 8px;
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.ris-image-cont img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  max-width: 800px;
}

.ris-image p {
  margin-top: 12px;
  margin-bottom: 0;
  text-align: center;
}

.ris-image .dashed-link {
  color: #2d2c4e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px dashed #2d2c4e;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.ris-image .dashed-link:hover {
  opacity: 0.7;
}

.ris-image a.dashed-link {
  color: #2d2c4e;
  text-decoration: none;
}

.ris-image .dashed-link.small {
  font-size: 12px;
}

.ris-image .dashed-link.strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .ris-image-cont {
    padding: 6px;
  }
  
  .ris-image-cont img {
    max-width: 100%;
  }
}

.faq {
  background-color: #f6f7f9;
  padding: 40px 24px;
}

.faq .container {
  max-width: 1240px;
  margin: 0 auto;
}

.faq h2 {
  color: #2d2c4e;
  font-style: italic;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.faq-content {
  color: #867c8a;
  font-size: 14px;
  line-height: 1.6;
}

#backToTop {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 50px !important;
  height: 50px !important;
  background-color: #1abb54 !important;
  border-radius: 50% !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 999999 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  outline: none !important;
  transition: background-color 0.3s ease, opacity 0.3s ease !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

#backToTop.show {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#backToTop:hover {
  background-color: #159e45 !important;
}

#backToTop img {
  width: 24px !important;
  height: 24px !important;
  filter: brightness(0) invert(1) !important;
}

.faq-wrapper {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-wrapper h2 {
  margin-top: 0;
  margin-bottom: 32px;
  font-style: italic;
  text-transform: uppercase;
}

.faq-item {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: background-color 0.3s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  background-color: #f6f7f9;
}

.faq-item.active {
  background-color: #f6f7f9;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 400;
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
  font-style: normal;
}

.faq-item.active .faq-question {
  font-weight: 700;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

.faq-item.active .faq-toggle {
  background-color: #1abb54;
  transform: rotate(180deg);
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  stroke: #666;
  fill: none;
  transition: stroke 0.3s ease;
  position: relative;
  z-index: 2;
}

.faq-item.active .faq-toggle svg {
  stroke: #fff;
  fill: none;
}

.faq-item.active .faq-toggle {
  background-color: #1abb54;
  transform: rotate(180deg);
}

.faq-item.active .faq-toggle::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1abb54;
  border-radius: 50%;
  z-index: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  color: #555555;
  font-size: 16px;
  line-height: 1.6;
  padding: 0 20px 0 20px;
  font-weight: 400;
  font-style: normal;
  opacity: 0;
  visibility: hidden;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px 20px;
  opacity: 1;
  visibility: visible;
}

.bookmakers-table-wrapper {
  background-color: #f6f7f9;
  padding: 40px 12px;
}

.bookmakers-table-container {
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bookmakers-table {
  width: 100%;
  border-collapse: collapse;
}

.bookmakers-table thead {
  background-color: #3b316e;
}

.bookmakers-table th {
  padding: 16px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 0.05em;
}

.bookmakers-table th.sortable {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-right: 30px;
}

.bookmakers-table th.sortable:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.sort-arrow {
  display: none;
}

.sort-arrows-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  filter: brightness(0) invert(1);
}

.bookmakers-table th.sortable:hover .sort-arrows-icon {
  opacity: 1;
}

.sort-arrows-icon.active {
  opacity: 1;
}

.bookmakers-table tbody tr {
  border-bottom: 1px solid #e5e5e5;
}

.bookmakers-table tbody tr:last-child {
  border-bottom: none;
}

.bookmakers-table td {
  padding: 20px 16px;
  vertical-align: middle;
  text-align: center;
}

.bookmakers-table td.table-bookmaker-logo {
  vertical-align: middle;
  padding: 20px 16px;
}

.table-bookmaker-logo {
  text-align: center;
}

.table-bookmaker-logo a,
.table-bookmaker-logo .bookmaker-logo-link {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
}

.table-bookmaker-logo img {
  max-height: 40px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.table-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  margin: 0 auto;
}

.table-rating-value {
  color: #333;
}

.table-rating-star {
  color: #f3c226;
  font-size: 18px;
}

.table-bonus {
  font-weight: 700;
  color: #3f415e;
  font-size: 16px;
  font-style: normal;
  margin-bottom: 4px;
}

.table-bonus-cell {
  max-width: 250px;
  width: 250px;
}

.table-bonus-tcs {
  font-size: 12px;
  color: #999;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  word-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  display: block;
  white-space: normal;
}

.table-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.table-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

.table-feature-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.table-bet-now {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  padding: 12px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  transform: skewX(-12deg);
  transition: opacity 0.2s ease;
  cursor: pointer;
  border: none;
  outline: none;
  white-space: nowrap;
}

.table-bet-now span {
  display: inline-block;
  font-style: italic;
  transform: skewX(12deg);
}

.table-bet-now:hover {
  opacity: 0.85;
}

.timeline {
  position: relative;
  padding: 40px 0;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #1abb54;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-date {
  color: #1abb54;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.timeline-text {
  color: #2d2c4e;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: #1abb54;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #1abb54;
  z-index: 1;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 50px;
  }
  
  .timeline-content {
    width: 100%;
  }
  
  .timeline-dot {
    left: 20px;
  }
}

.pros-cons-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 40px 0;
}

.pros-cons-table td {
  width: 50%;
  vertical-align: top;
  padding: 0;
}

.pros-cons-table td:first-child {
  padding-right: 10px;
}

.pros-cons-table td:last-child {
  padding-left: 10px;
}

.pros-cons-header {
  padding: 12px 20px;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: 100%;
  box-sizing: border-box;
}

.pros-header {
  background-color: rgba(29, 185, 84, 0.1);
  color: rgb(29, 185, 84);
  border: 2px solid rgb(29, 185, 84);
}

.cons-header {
  background-color: rgba(232, 22, 22, 0.1);
  color: rgb(232, 22, 22);
  border: 2px solid rgb(232, 22, 22);
}

.pros-cons-list {
  background-color: #fff;
  border-radius: 8px;
  padding: 0;
  margin: 0;
  margin-top: 16px;
  list-style: none;
}

.pros-cons-table .pros-cons-list li {
  padding: 16px 20px;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  color: #555555;
  font-size: 16px;
  line-height: 22px;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  min-height: 54px;
  box-sizing: border-box;
}

.pros-cons-table .pros-cons-list li:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 16px;
}

.pros-cons-table .pros-cons-list li:last-child {
  border-bottom: none;
}

table.pros-cons-table .pros-cons-list.pros-list li {
  padding-left: 48px !important;
  padding-right: 20px !important;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

table.pros-cons-table .pros-cons-list.pros-list li::before {
  content: '' !important;
  position: absolute !important;
  left: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0 !important;
  background-image: url('/assets/images/like-button-icon.svg') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  filter: none !important;
  display: block !important;
  z-index: 1 !important;
}

table.pros-cons-table .pros-cons-list.cons-list li {
  padding-left: 48px !important;
  padding-right: 20px !important;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  justify-content: flex-start;
}

table.pros-cons-table .pros-cons-list.cons-list li::before {
  content: '' !important;
  position: absolute !important;
  left: 20px !important;
  right: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0 !important;
  background-image: url('/assets/images/dislike-button-icon.svg') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  filter: none !important;
  display: block !important;
  z-index: 1 !important;
}

.hero-block *:not(table.pros-cons-table *):not(.pros-cons-list *)::before,
.hero-block *:not(table.pros-cons-table *):not(.pros-cons-list *)::after,
.top-bookies-container *:not(table.pros-cons-table *):not(.pros-cons-list *)::before,
.top-bookies-container *:not(table.pros-cons-table *):not(.pros-cons-list *)::after,
.bookie-card *:not(table.pros-cons-table *):not(.pros-cons-list *)::before,
.bookie-card *:not(table.pros-cons-table *):not(.pros-cons-list *)::after {
  background-image: none !important;
}

.visit-site-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #28a745;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none !important;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  transform: skewX(-10deg);
  transition: opacity 0.2s ease;
  margin: 20px auto;
  justify-content: center;
  cursor: pointer;
  border: none;
  outline: none;
}

.visit-site-button[data-ref] {
  pointer-events: auto;
}

.visit-site-button[data-ref]:not([href]),
.visit-site-button[data-ref][href="#"],
.visit-site-button[data-ref][href=""] {
  cursor: pointer;
}

.article-text .visit-site-button {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.visit-site-button:hover {
  opacity: 0.85;
  text-decoration: none !important;
}

.visit-site-button-text {
  transform: skewX(10deg);
}

.visit-site-button-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transform: skewX(10deg);
  filter: brightness(0) invert(1);
}

.article-text ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.article-text ul li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 12px;
  color: #555555;
  font-size: 16px;
  line-height: 22px;
  min-height: 32px;
  display: block;
}

.article-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: #eff0fa;
  border-radius: 50%;
}

.article-text ul li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%233d3370' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
}

.article-text .pros-cons-table ul li::after,
.article-text .pros-cons-table ol li::after {
  display: none !important;
  content: none !important;
  background-image: none !important;
}

.pros-cons-table ul,
.pros-cons-table ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.pros-cons-table ul:not(.pros-cons-list) li,
.pros-cons-table ol:not(.pros-cons-list) li {
  position: relative !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  display: flex !important;
  align-items: center !important;
  min-height: auto !important;
  padding-top: 0 !important;
}

table.pros-cons-table .pros-cons-list.pros-list li::before {
  background-image: url('/assets/images/like-button-icon.svg') !important;
  display: block !important;
  content: '' !important;
  position: absolute !important;
  left: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 20px !important;
  height: 20px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

table.pros-cons-table .pros-cons-list.cons-list li::before {
  background-image: url('/assets/images/dislike-button-icon.svg') !important;
  display: block !important;
  content: '' !important;
  position: absolute !important;
  left: 20px !important;
  right: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 20px !important;
  height: 20px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.pros-cons-table ul:not(.pros-cons-list) li::before,
.pros-cons-table ul:not(.pros-cons-list) li::after,
.pros-cons-table ol:not(.pros-cons-list) li::before {
  display: none !important;
}

.pros-cons-table ul li::after,
.pros-cons-table ol li::after {
  display: none !important;
  content: none !important;
  background-image: none !important;
}

.article-text ol {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
  counter-reset: list-counter;
}

.article-text ol li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 12px;
  color: #555555;
  font-size: 16px;
  line-height: 22px;
  counter-increment: list-counter;
  min-height: 32px;
  display: block;
}

.article-text ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  transform: none;
  width: 32px;
  height: 32px;
  background-color: #eeeff8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b3070;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}

.article-text ol li .ris-image {
  margin: 20px 0;
  margin-left: -48px;
  width: calc(100% + 48px);
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .article-text ol li .ris-image {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
}

.article-text ol li .visit-site-button {
  margin-top: 20px;
  margin-bottom: 20px;
}

.more-info-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  vertical-align: middle;
}

.more-info-icon {
  width: 16px;
  height: 16px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  filter: brightness(0) invert(1);
}

.more-info-icon:hover {
  opacity: 1;
}

.top-bookies-disclaimer .disclaimer-link {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin-left: 4px;
}

.top-bookies-disclaimer .disclaimer-link:hover {
  opacity: 0.75;
}

.more-info-tooltip {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 15px;
  width: 320px;
  max-width: calc(100vw - 32px);
  max-height: 200px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  padding: 12px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
  transform: translateX(0);
}

@media (min-width: 769px) {
  .more-info-tooltip {
    right: auto;
    left: 100%;
    margin-left: 15px;
    margin-right: 0;
    transform: translateX(0);
  }
  
  .more-info-wrapper:hover .more-info-tooltip {
    transform: translateX(0);
  }
}

.more-info-tooltip::-webkit-scrollbar {
  width: 6px;
}

.more-info-tooltip::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.more-info-tooltip::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.more-info-tooltip::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.more-info-wrapper:hover .more-info-tooltip {
  opacity: 1;
  visibility: visible;
}

.more-info-tooltip::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 100%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #fff;
}

@media (max-width: 768px) {
  .more-info-tooltip::before {
    right: auto;
    left: 20px;
    top: -8px;
    border-top: none;
    border-bottom: 8px solid #fff;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
  }
}

.more-info-tooltip p {
  color: #333;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 8px;
  text-align: left;
}

.more-info-tooltip p .tooltip-heading {
  font-weight: 700;
  font-style: italic;
  color: #2d2c4e;
  text-transform: none;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  opacity: 0.75;
}

hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 20px 0;
  width: 100%;
  background: none;
  height: 0;
}

table:not([class]) {
  width: 100%;
  background-color: #ffffff;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0;
}

table:not([class]) td,
table:not([class]) th {
  padding: 14px 20px;
  text-align: left;
  vertical-align: top;
  background-color: #ffffff;
}

table:not([class]) th {
  background-color: #3a306d;
  color: #ffffff;
  font-weight: 600;
}

table:not([class]) tr:has(th) td {
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .article-text table:not([class]) {
    position: relative;
    left: -16px;
    width: calc(100vw - 0px);
    max-width: calc(100vw - 0px);
    margin-left: 0;
    margin-right: 0;
    display: table;
    table-layout: fixed;
  }
  
  .article-text table:not([class]) thead th {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .article-text table:not([class]) thead th:first-child {
    padding-left: 20px;
  }
  
  .article-text table:not([class]) tbody td {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .article-text table:not([class]) tbody td:first-child {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .article-text table:not([class]) {
    position: relative;
    left: -12px;
    width: calc(100vw - 0px);
    max-width: calc(100vw - 0px);
    margin-left: 0;
    margin-right: 0;
    display: table;
    table-layout: fixed;
  }
  
  .article-text table:not([class]) thead th {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .article-text table:not([class]) thead th:first-child {
    padding-left: 16px;
  }
  
  .article-text table:not([class]) tbody td {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .article-text table:not([class]) tbody td:first-child {
    padding-left: 16px;
  }
}

@media (max-width: 1024px) {
  .article-section {
    padding-top: 120px;
  }

  .hero-block {
    padding: 32px 20px;
    padding-top: calc(64px + 32px);
  }

  .article-section {
    padding: 32px 20px;
    padding-top: 120px;
  }

  .bookmakers-table-wrapper {
    padding: 32px 8px;
  }

  .faq {
    padding: 32px 20px;
  }
}

@media (max-width: 768px) {
  .article-section {
    padding-top: 80px;
  }

  .hero-block {
    padding: 24px 16px;
    padding-top: calc(80px + 24px);
  }

  .hero-block h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-intro {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .top-bookies-container {
    padding: 16px;
  }

  .top-bookies-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .top-bookies-container h2 {
    font-size: 20px;
    margin-bottom: 0;
  }

  .top-bookies-disclaimer {
    font-size: 12px;
    text-align: left;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .bookies-cards {
    flex-direction: column;
    gap: 12px;
  }

  .bookie-card {
    min-width: 100%;
    padding: 16px;
  }

  .bookie-logo img {
    max-height: 40px;
  }

  .bet-now {
    padding: 10px 24px;
    font-size: 16px;
  }

  .article-section {
    padding: 24px 16px;
    padding-top: 80px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .article-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .article-text h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-top: 0.3em;
    margin-bottom: 0.6em;
  }

  .article-text h2 {
    font-size: 24px;
    line-height: 1.25;
    margin-top: 1.5em;
    margin-bottom: 0.6em;
  }

  .article-text h3 {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 1.25em;
    margin-bottom: 0.5em;
  }

  .article-text h4,
  .article-text h5,
  .article-text h6 {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 1em;
    margin-bottom: 0.4em;
  }

  .article-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  .article-text ul li,
  .article-text ol li {
    font-size: 15px;
    line-height: 1.5;
    padding-left: 40px;
  }

  .article-text ul li::before,
  .article-text ul li::after,
  .article-text ol li::before {
    width: 28px;
    height: 28px;
  }

  .article-text ol li::before {
    font-size: 14px;
    top: 0;
    transform: none;
  }

  .article-text ol li .ris-image {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  
  .article-text ol li .ris-image-cont {
    margin: 0 auto;
  }

  .pros-cons-table {
    margin: 24px 0;
  }

  .pros-cons-table td {
    display: block;
    width: 100%;
    padding: 0;
  }

  .pros-cons-table td:first-child {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .pros-cons-table td:last-child {
    padding-left: 0;
  }

  .pros-cons-header {
    font-size: 20px;
    padding: 10px 16px;
    min-height: 48px;
  }

  .pros-cons-table .pros-cons-list li {
    font-size: 14px;
    line-height: 1.5;
    padding: 12px 16px 12px 44px;
    min-height: 48px;
  }

  .bookmakers-table-wrapper {
    padding: 24px 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bookmakers-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bookmakers-table {
    min-width: 600px;
  }

  .bookmakers-table th {
    padding: 12px 8px;
    font-size: 12px;
  }

  .bookmakers-table td {
    padding: 16px 8px;
  }

  .bookmakers-table td:first-child {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    padding: 16px 4px;
  }

  .bookmakers-table th:first-child {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    padding: 12px 4px;
  }

  .table-bookmaker-logo img {
    max-height: 28px;
    max-width: 70px;
  }

  .table-rating {
    font-size: 14px;
  }

  .table-bonus {
    font-size: 14px;
  }

  .table-bonus-cell {
    max-width: 220px;
    width: 220px;
    min-width: 220px;
  }

  .bookmakers-table th:nth-child(3) {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
  }

  .bookmakers-table td:nth-child(3) {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
  }

  .bookmakers-table th:nth-child(4) {
    width: 160px;
    min-width: 160px;
    max-width: 160px;
  }

  .bookmakers-table td:nth-child(4) {
    width: 160px;
    min-width: 160px;
    max-width: 160px;
  }

  .bookmakers-table th:nth-child(5) {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
  }

  .bookmakers-table td:nth-child(5) {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
  }

  .table-bonus-tcs {
    font-size: 11px;
  }

  .table-feature {
    font-size: 12px;
  }

  .table-bet-now {
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .visit-site-button {
    padding: 10px 20px;
    font-size: 16px;
    gap: 8px;
  }

  .faq {
    padding: 24px 16px;
  }

  .faq-wrapper {
    padding: 24px 20px;
  }

  .faq h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .faq-question {
    padding: 16px;
    font-size: 14px;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
  }

  .faq-toggle svg {
    width: 14px;
    height: 14px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 0 16px 16px 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 16px 16px;
  }

  #backToTop {
    width: 44px !important;
    height: 44px !important;
    bottom: 20px !important;
    right: 20px !important;
  }

  #backToTop img {
    width: 20px !important;
    height: 20px !important;
  }

  .more-info-tooltip {
    width: calc(100vw - 32px);
    max-width: 280px;
    left: 50%;
    right: auto;
    margin-left: 0;
    margin-right: 0;
    transform: translateX(-50%);
    top: calc(100% + 10px);
  }

  .more-info-wrapper:hover .more-info-tooltip {
    transform: translateX(-50%);
  }

  .more-info-tooltip::before {
    left: 50%;
    right: auto;
    top: -8px;
    transform: translateX(-50%);
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: none;
    border-bottom: 8px solid #fff;
  }

  .footer-links {
    gap: 16px;
    margin-bottom: 12px;
  }

  .footer-link {
    font-size: 11px;
  }

  table:not([class]) {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table:not([class]) td,
  table:not([class]) th {
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .article-section {
    padding: 20px 12px;
    padding-top: 80px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .article-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .header-inner {
    padding: 10px 12px;
  }

  .header-logo img {
    height: 14px;
  }

  .nav-link {
    font-size: 11px;
  }

  .hero-block {
    padding: 20px 12px;
    padding-top: calc(80px + 20px);
  }

  .hero-block h1 {
    font-size: 24px;
    line-height: 1.2;
  }

  .hero-intro {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .top-bookies-container {
    padding: 12px;
  }

  .top-bookies-container h2 {
    font-size: 18px;
  }

  .top-bookies-disclaimer {
    font-size: 11px;
  }

  .bookie-card {
    padding: 12px;
  }

  .bet-now {
    padding: 8px 20px;
    font-size: 14px;
  }

  .article-section {
    padding: 20px 12px;
    padding-top: 80px;
  }

  .article-text h1 {
    font-size: 24px;
  }

  .article-text h2 {
    font-size: 20px;
  }

  .article-text h3 {
    font-size: 18px;
  }

  .article-text h4,
  .article-text h5,
  .article-text h6 {
    font-size: 16px;
  }

  .article-text p {
    font-size: 14px;
  }

  .article-text ul li,
  .article-text ol li {
    font-size: 14px;
    padding-left: 36px;
  }

  .article-text ul li::before,
  .article-text ul li::after,
  .article-text ol li::before {
    width: 24px;
    height: 24px;
  }

  .article-text ol li::before {
    font-size: 12px;
    top: 0;
    transform: none;
  }

  .article-text ol li .ris-image {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  
  .article-text ol li .ris-image-cont {
    margin: 0 auto;
  }

  .pros-cons-header {
    font-size: 18px;
    padding: 8px 12px;
  }

  .pros-cons-table .pros-cons-list li {
    font-size: 13px;
    padding: 10px 12px 10px 40px;
  }

  table.pros-cons-table .pros-cons-list.pros-list li::before,
  table.pros-cons-table .pros-cons-list.cons-list li::before {
    left: 12px;
    width: 18px;
    height: 18px;
  }

  table.pros-cons-table .pros-cons-list.pros-list li,
  table.pros-cons-table .pros-cons-list.cons-list li {
    padding-left: 36px;
  }

  .bookmakers-table-wrapper {
    padding: 20px 8px;
  }

  .bookmakers-table {
    min-width: 500px;
  }

  .bookmakers-table th {
    padding: 10px 6px;
    font-size: 11px;
  }

  .bookmakers-table td {
    padding: 12px 6px;
  }

  .bookmakers-table td:first-child {
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    padding: 12px 4px;
  }

  .bookmakers-table th:first-child {
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    padding: 10px 4px;
  }

  .table-bookmaker-logo img {
    max-height: 24px;
    max-width: 60px;
  }

  .table-bonus-cell {
    max-width: 180px;
    width: 180px;
    min-width: 180px;
  }

  .bookmakers-table th:nth-child(3) {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
  }

  .bookmakers-table td:nth-child(3) {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
  }

  .bookmakers-table th:nth-child(4) {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
  }

  .bookmakers-table td:nth-child(4) {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
  }

  .bookmakers-table th:nth-child(5) {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
  }

  .bookmakers-table td:nth-child(5) {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
  }

  .table-bet-now {
    padding: 8px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .visit-site-button {
    padding: 8px 16px;
    font-size: 14px;
  }

  .faq {
    padding: 20px 12px;
  }

  .faq-wrapper {
    padding: 20px 16px;
  }

  .faq h2 {
    font-size: 20px;
  }

  .faq-question {
    padding: 14px;
    font-size: 13px;
  }

  .faq-answer {
    font-size: 13px;
    padding: 0 14px 14px 14px;
  }

  .faq-item.active .faq-answer {
    padding: 0 14px 14px 14px;
  }

  #backToTop {
    width: 40px !important;
    height: 40px !important;
    bottom: 16px !important;
    right: 16px !important;
  }

  #backToTop img {
    width: 18px !important;
    height: 18px !important;
  }

  .more-info-tooltip {
    width: calc(100vw - 24px);
    max-width: 260px;
  }

  .footer-inner {
    padding: 0 12px;
  }

  .footer-icons {
    gap: 10px;
  }

  .footer-icons img {
    height: 28px;
  }

  .footer-text {
    font-size: 10px;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-link {
    font-size: 10px;
  }

  table:not([class]) td,
  table:not([class]) th {
    padding: 8px 10px;
    font-size: 13px;
  }
}

:root{
  --purple:#2f2758;
  --row-alt:#f8f7fc;
  --border:#eef0f6;
  --text:#1f2430;
  --green:#22c55e;
  --red:#ef4444;
  --star:#fbbf24;
}

.compare-wrap{
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 10px;
  font-family: Arial, sans-serif;
}

.compare-scroll{
  overflow-x: auto;
}

.compare-table{
  width: 100% !important;
  min-width: 820px;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  table-layout: fixed;
  background: #fff !important;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.compare-table thead th{
  background: var(--purple) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 16px 12px !important;
  text-align: center !important;
  border-right: 1px solid rgba(255,255,255,0.08) !important;
}

.compare-table thead th:first-child{
  text-align: left !important;
  width: 220px !important;
}

.compare-table thead th:last-child{
  border-right: 0 !important;
}

.compare-table tbody th{
  background: var(--purple) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  padding: 16px 12px !important;
  text-align: left !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
  white-space: nowrap !important;
}

.compare-table tbody td{
  padding: 16px 12px !important;
  text-align: center !important;
  font-size: 13px !important;
  color: var(--text) !important;
  background: #fff !important;
  border-bottom: 1px solid var(--border) !important;
  vertical-align: middle !important;
}

.compare-table tbody tr:nth-child(even) td{
  background: var(--row-alt) !important;
}

.badge{
  display: inline-flex !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.badge--yes{ background: var(--green) !important; }
.badge--no{ background: var(--red) !important; }

.rating{
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-weight: 700 !important;
}

.rating .star{
  color: var(--star) !important;
  font-size: 16px !important;
}

.compare-head-logo{
  height: 22px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.logo-invert{
  filter: brightness(0) invert(1);
}

.compare-table .rating{
  color: #fbbf24 !important;
}

.compare-table .rating .star{
  color: #fbbf24 !important;
}

@media (max-width: 768px) {

  .compare-table thead th:first-child,
  .compare-table tbody th{
    width: 140px !important;
    min-width: 140px !important;
  }

  .compare-table tbody th{
    font-size: 10px !important;
    line-height: 1.2 !important;
    padding: 12px 10px !important;

    white-space: normal !important;
    word-break: break-word !important;
    hyphens: auto;
  }

  .compare-table tbody td{
    padding: 12px 8px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 480px) {

  .compare-table thead th:first-child,
  .compare-table tbody th{
    width: 120px !important;
    min-width: 120px !important;
  }

  .compare-table tbody th{
    font-size: 9px !important;
    padding: 10px 8px !important;
  }

  .compare-table tbody td{
    padding: 10px 6px !important;
    font-size: 11px !important;
  }
}

   .offers-table-section {
    padding: 0;
    margin: 18px 0 28px;
  }
  
  .offers-table-container {
    width: 100%;
  }
  
  .offers-table-disclaimer {
    background: #ffffff;
    border: 1px solid #e9edf3;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .offers-table-disclaimer__summary {
    list-style: none;
    cursor: pointer;
  
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  
    font-size: 13px;
    font-weight: 500;
    color: #2d2c4e;
  
    user-select: none;
  }
  
  .offers-table-disclaimer__summary::-webkit-details-marker {
    display: none;
  }
  .offers-table-disclaimer__summary::marker {
    display: none;
  }
  
  .offers-table-disclaimer__link {
    color: #2d2c4e;
    text-decoration: none;
    font-weight: 600;
  }
  
  .offers-table-disclaimer__link:hover {
    text-decoration: underline;
  }
  
  .offers-table-disclaimer__chevron {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  
    border-radius: 999px;
    background: #f2f4f8;
    position: relative;
  }
  
  .offers-table-disclaimer__chevron::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
  
    width: 8px;
    height: 8px;
  
    border-right: 2px solid #6d6a83;
    border-bottom: 2px solid #6d6a83;
    transform: rotate(45deg);
  }
  
  .offers-table-disclaimer[open] .offers-table-disclaimer__chevron::before {
    transform: rotate(-135deg);
  }
  
  .offers-table-disclaimer__content {
    border-top: 1px solid #eef2f7;
    padding: 12px 14px 14px;
  
    font-size: 13px;
    line-height: 1.55;
    color: #555555;
  }
  
  .offers-table-disclaimer__content p {
    margin: 0 0 10px;
  }
  
  .offers-table-disclaimer__content p:last-child {
    margin-bottom: 0;
  }
  
  .offers-table-disclaimer__heading {
    font-weight: 700;
    font-style: italic;
    color: #2d2c4e;
  }
  
  .offers-table-gap {
    height: 14px;
  }
  
  .offers-table-grid {
    background: #ffffff;
    border: 1px solid #e9edf3;
    border-radius: 10px;
    padding: 16px;
  
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  
  .offers-table-grid .bookie-card {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .offers-table-grid .bookie-logo img {
    max-height: 52px;
  }
  
  @media (max-width: 1024px) {
    .offers-table-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 640px) {
    .offers-table-grid {
      grid-template-columns: 1fr;
      padding: 12px;
    }
  }

  .offers-table-disclaimer__summary {
  font-size: 12px;
  font-weight: 400;
  color: #555555;
}

.offers-table-disclaimer__text {
  color: #555555;
}

.offers-table-disclaimer__link {
  color: #555555;
  font-weight: 400;
}

.offers-table-disclaimer__content {
  font-size: 12px;
  font-weight: 400;
  color: #555555;
  line-height: 1.5;
}

.offers-table-disclaimer__heading {
  color: #555555;
  font-weight: 600;
  font-style: normal;
}

.offers-table-disclaimer__content p {
  margin: 0 0 8px;
}
.offers-table-disclaimer__content p:last-child {
  margin-bottom: 0;
}

.offers-table-grid {
  background: transparent;
  border: none;
  padding: 0;
}

.offers-table-grid {
  border-radius: 0;
}

.offers-table-grid .bookie-card {
  border: none !important;
  background: #ffffff;
  border-radius: 10px;
}

.offers-table-disclaimer__content,
.offers-table-disclaimer__content p {
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: #555555 !important;
  font-weight: 400 !important;
}

.offers-table-disclaimer__content strong {
  font-size: 12px !important;
  font-weight: 700 !important;
  font-style: italic !important;
  color: #2d2c4e !important;
}

.offers-table-disclaimer__content a {
  color: #555555 !important;
  text-decoration: underline;
}

.offers-table-disclaimer__content {
  background: #fbfbfb !important;
}

.offers-table-grid .bookie-card .bookie-logo {
  margin-bottom: 14px;
}

.offers-table-grid .bookie-card .bookie-logo img {
  display: block;
  max-height: 52px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

   .bookie-cta-bar {
    width: 100%;
    box-sizing: border-box;
  
    background: #ffffff;
    border-radius: 10px;
  
    padding: 22px 26px;
    margin: 22px 0;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  }
  
  .bookie-cta-bar__text {
    color: #2d2c4e;
  
    font-weight: 500;
    font-style: italic;
  
    text-transform: uppercase;
    letter-spacing: -0.01em;
  
    font-size: 22px;
    line-height: 1.2;
  }
  
  .bookie-cta-bar__btn {
    flex-shrink: 0;
  
    appearance: none;
    -webkit-appearance: none;
  
    border: none;
    outline: none;
    cursor: pointer;
  
    background: #1db954;
    color: #ffffff;
  
    padding: 16px 46px;
    min-height: 54px;
  
    border-radius: 10px;
  
    font-weight: 800;
    font-style: italic;
    font-size: 20px;
  
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
  
    white-space: nowrap;
  
    transform: skewX(-10deg);
  
    transition: opacity 0.2s ease;
  }
  
  .bookie-cta-bar__btn:hover {
    opacity: 0.85;
  }
  
  .bookie-cta-bar__btn-text {
    display: inline-block;
    transform: skewX(10deg);
  }
  
  @media (max-width: 768px) {
    .bookie-cta-bar {
      flex-direction: column;
      align-items: stretch;
  
      padding: 18px;
      gap: 12px;
    }
  
    .bookie-cta-bar__text {
      font-size: 18px;
      text-align: left;
    }
  
    .bookie-cta-bar__btn {
      width: 100%;
    }
  }

