
.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;
  width: 100%;
  box-sizing: border-box;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 0;
}

.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;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .header-left {
    width: 100%;
    justify-content: center;
    gap: 0;
    flex-direction: row;
    align-items: center;
    display: flex;
    position: relative;
  }

  .header-left .nav-link {
    position: absolute;
    left: 50%;
    transform: translateX(calc(-50% - 80px));
    top: calc(100% + 12px);
    display: inline-block;
    white-space: nowrap;
    z-index: 1;
  }

  .header-logo {
    margin-bottom: 0;
  }

  .header-nav {
    width: 100%;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
  }

  .header-nav .nav-link {
    position: relative;
    left: 80px;
  }

  .header-nav::before {
    display: none;
  }
}

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;
  max-width: 100%;
  box-sizing: border-box;
}

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

body {
  display: block;
  min-height: 100vh;
}

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

.site-content {
  flex: 1; 
}

main {
  background-color: #f6f7f9;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.article-section {
  padding-top: 120px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-footer {
  width: 100%;
  max-width: 100%;
  background-color: #000;           
  padding: 24px 0;
  color: #fff;
  text-align: center;
  margin-top: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

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

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

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

.footer-icons img[src*="gamban-logo-white-rgb"] {
  height: 72px;
  width: auto;
}

.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 0;
  padding-top: calc(64px + 40px);
  color: #fff;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.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;

}

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

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

.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;
}

.review-slider-wrapper {
  margin: 32px 0;
  text-align: center;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px 1px 16px 1px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.review-slider-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.review-slider-main {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.review-slider-white-bg {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.review-slider-main .review-slider-white-bg {
  width: 100%;
}

.review-slider-main .ris-image-cont {
  border: none;
  border-radius: 4px;
  padding: 0;
  margin: 0;
  background-color: transparent;
}

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

.app-slider .review-slider-main {
  max-width: 600px;
  width: 100%;
}

.app-slider .review-slider-main .ris-image-cont {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.app-slider .review-slider-main .ris-image-cont img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.review-slider-main p {
  margin-top: 12px;
  margin-bottom: 0;
  text-align: center;
}

.review-slider-main .dashed-link {
  color: #2d2c4e;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px dashed #2d2c4e;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.review-slider-main .dashed-link:hover {
  opacity: 0.7;
}

.review-slider-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  max-width: 200px;
  position: relative;
  height: auto;
  overflow: hidden;
}

.review-thumbnail-item {
  cursor: pointer;
  transition: opacity 0.3s ease, border-color 0.3s ease;
  width: 100%;
  opacity: 0.5;
  display: none;
  flex-shrink: 0;
}

.review-thumbnail-item:hover {
  opacity: 0.8;
}

.review-thumbnail-item.active {
  opacity: 1;
  display: block;
}

.review-thumbnail-item.active .ris-image-cont {
  border: 1px solid #1db954;
  border-width: 1px;
}

.review-thumbnail-item .review-slider-white-bg {
  border: none;
  border-radius: 0;
  padding: 0;
  transition: border-color 0.3s ease;
  background-color: transparent;
}

.review-thumbnail-item .ris-image-cont {
  margin: 0 auto;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0;
  background: transparent;
  transition: border-color 0.3s ease;
}

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

@media (max-width: 768px) {
  .review-slider-wrapper {
    margin: 32px 0;
    padding: 16px 1px 16px 1px;
    width: 100%;
    max-width: 100%;
  }

  .review-slider-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
  }
  
  .review-slider-main {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  
  .review-slider-thumbnails {
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 100%;
    width: 100%;
    gap: 12px;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .review-thumbnail-item {
    max-width: 150px;
    flex: 0 0 auto;
  }
  
  .review-thumbnail-item .ris-image-cont img {
    max-width: 150px;
  }

  .app-slider .review-slider-main {
    max-width: 100%;
    width: 100%;
  }

  .app-slider .review-slider-main .ris-image-cont {
    max-width: 100%;
    width: 100%;
  }

  .app-slider .review-slider-main .ris-image-cont img {
    max-width: 100%;
    width: 100%;
  }
}

@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;
  width: 100%;
  box-sizing: border-box;
}

.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;
  display: block !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-apps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.app-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}

.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;
}

.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: 50%;
  transform: translateY(-50%);
  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;
}

.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) {
  .article-section .container {
    padding: 0 24px;
  }

  .faq .container {
    padding: 0 24px;
  }
  .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: 1024px) {
  .article-section {
    padding-top: 120px;
  }

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

  .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;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .article-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .article-text {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
  }

  .hero-block {
    padding: 24px 0;
    padding-top: calc(80px + 24px);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }

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

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

  .top-bookies-container {
    padding: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

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

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

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

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

  .bookie-card {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
  }

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

  .bet-now {
    padding: 10px 24px;
    font-size: 16px;
    white-space: nowrap;
    max-width: 100%;
  }

  .bet-now span {
    white-space: normal;
  }

  .article-section {
    padding: 24px 16px;
    padding-top: 80px;
  }

  .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;
  }

  .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;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .bookmakers-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
  }

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

  .bookmakers-table th {
    padding: 12px 8px;
    font-size: 10px;
    white-space: nowrap;
  }

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

  .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;
    word-wrap: break-word;
  }

  .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;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

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

  .visit-site-button {
    padding: 10px 20px;
    font-size: 16px;
    gap: 8px;
    max-width: 100%;
    width: auto;
    box-sizing: border-box;
  }

  .visit-site-button-text {
    white-space: normal;
    word-wrap: break-word;
  }

  .faq {
    padding: 24px 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .faq .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .faq-wrapper {
    padding: 24px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

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

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

  .faq-question span {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
  }

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

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

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

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

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

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

  .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);
    box-sizing: border-box;
    word-wrap: break-word;
  }

  .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;
    width: 100%;
    max-width: 100%;
  }

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

  .ris-image {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .ris-image-cont {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .ris-image-cont img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .article-text {
    overflow-x: hidden;
    word-wrap: break-word;
  }

  .article-text img {
    max-width: 100%;
    height: auto;
  }

  .header-inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .footer-inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .article-section {
    padding-top: 80px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .article-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .header-inner {
    padding: 10px 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .header-left {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .header-nav {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .header-logo img {
    height: 14px;
    max-width: 100%;
  }

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

  .hero-block {
    padding: 20px 0;
    padding-top: calc(80px + 20px);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
  }

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

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

  .top-bookies-container {
    padding: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

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

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

  .bookie-card {
    padding: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .bet-now {
    padding: 8px 20px;
    font-size: 14px;
    max-width: 100%;
  }

  .article-section {
    padding: 20px 12px;
    padding-top: 80px;
    width: 100%;
    max-width: 100%;
  }

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

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

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

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

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

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

  .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;
  }

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

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

  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;
    width: 100%;
    max-width: 100%;
  }

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

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

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

  .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;
    max-width: 100%;
  }

  .visit-site-button {
    padding: 8px 16px;
    font-size: 14px;
    max-width: 100%;
    width: auto;
  }

  .faq {
    padding: 20px 12px;
    width: 100%;
    max-width: 100%;
  }

  .faq-wrapper {
    padding: 20px 16px;
    width: 100%;
    max-width: 100%;
  }

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

  .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;
    height: 40px;
    bottom: 16px;
    right: 16px;
  }

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

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

  .footer-inner {
    padding: 0 12px;
    width: 100%;
    max-width: 100%;
  }

  .footer-icons {
    gap: 10px;
  }

  .footer-icons img {
    height: 28px;
    max-width: 100%;
  }

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

  .footer-links {
    gap: 12px;
  }

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

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

  .review-slider-wrapper {
    margin: 32px 0;
    padding: 16px 1px 16px 1px;
    width: 100%;
    max-width: 100%;
  }

  .review-slider-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .review-slider-main {
    width: 100%;
    max-width: 100%;
  }

  .review-slider-thumbnails {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
}