* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",Arial,sans-serif;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -.2px;
  background-color: rgb(249 249 249);
}

body, a, div, h1, h2, h3, header, footer, li, table, tr, td, th, tbody {
  margin: 0;
  padding: 0;
}

header {
  position: relative;
  z-index: 1000;
  gap: 40px;
  top: 0;
  left: 0;
  right: 0;
  justify-content: center;
  padding: 3px 10px;
  background-color: #fff;
  text-align: center;
  color: black;
  border-bottom: 1px solid #d6d6d6;
}

header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  margin: 0 auto;
}
.buttons {
  display: flex;
  gap: 20px;
}

.buttons > a:first-of-type {
  border: 1px solid #000;
  background: #444;
}

.buttons > a {
  white-space: nowrap;
  text-transform: uppercase;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 5px;
  background-color: #dc4405;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
}

.table_container {
  overflow: auto;
}

.content_container {
  display: flex;
  margin-top: 30px;
  justify-content: space-evenly;
  align-items: center;
}

.content {
  background-color: #eef0f3;
  box-shadow: 1px 1px 2px 2px #f2f0f0;
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #1769ff;
  position: sticky;
}

.content_menu {
  padding: 0px;
  margin: 0px;
  color: #999;
  line-height: 25px;
  padding-left: 20px;
}

.content_menu li::marker {
  color: #1769ff;
}

.content_menu li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 15px;
}

.content_title {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 20px;
}

.main {
  background-color: rgb(249 249 249);
  width: 85%;
  border: 1px solid rgba(23,105,255, 0.5);
  padding: 20px;
  border-radius: 42px;
  overflow: hidden;
  margin: 15px auto;
}

.application {
  margin-top: 0px !important;
  margin-bottom: 15px;
}

.games_grid {
  display: grid;
  margin-bottom: 15px;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.game {
  grid-column: span 1;
  border-radius: 6px;
  border: 1px solid #ebbe7d;
  overflow: hidden;
  -webkit-box-shadow: 10px 10px 66px -10px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 10px 10px 66px -10px rgba(0, 0, 0, 0.55);
  box-shadow: 10px 10px 66px -10px rgba(0, 0, 0, 0.55);
}

.game_img img {
  object-fit: cover;
  width: -webkit-fill-available;
  height: 215px;
  transition-delay: .1s;
  border-radius: 0px;
}

.game_img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.game_title {
  z-index: 1;
  font-size: 13px !important;
  color: #000 !important;
  height: auto !important;
  margin-top: 0px !important;
  margin-bottom: 0;
  padding: 6px;
  background: none;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.games_overlay {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .4);
  transition: .2s;
  height: 100%;
  display: flex;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}

.game:hover .games_overlay { opacity: 1;   backdrop-filter: blur(4px);
}

.game:hover .game_img img {
   transform: scale(1.2); 
  
   transition: all .2s ease-in-out;
}

.btn-svg svg {
  fill: #fff;
  width: 40px;
  height: 40px;
}

.btn {
  text-align: center;
  cursor: pointer;
  transition: .2s;
  padding: 10px 20px;
  position: relative;
  text-decoration: none;
  font-weight: 700;
}

.btn-svg {
  width: 70px;
  height: 70px;
  border-radius: 50% !important;
  border: 3px solid #fff!important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff19;
}

.providers {
  width: 60%;
}

footer {
  margin-top: 30px;
  background-color: black;
  padding: 32px 0;
}

.footer_container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
  gap: 30px;
}

footer > div > div {
  width: 85%;
  margin: 0 auto;
  color: #fff;
}

footer p {
  color: #fff;
  text-align: center;
}

footer a {
  color: #fff;
  text-decoration: none;
}

.footer_icons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  margin: 0 10px;
}

.footer_icon {
  opacity: 0.65;
  height: 40px;
}

.BGA {
  width: 160px;
  height: 20px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-evenly;
}

.footer_text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.logo_container {
  display: flex;
  align-items: center;
  height: 80px;
}

.logo_container > a {
  display: flex;
  height: 48px;
  text-decoration: none;
}

.center_image {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 30px;
  width: 60%;
}

section:first-of-type {
  padding: 0px;
}

.text_container .table_container {
  position: relative;
  right: 15%;
}

h1 {
  color: rgb(0 89 228);
  text-align: center;
}

p {
  color: #000;
}

h2, h3, h4 {
  color: rgb(0 89 228);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -1.2px;
}

main a {
  color: rgb(23,105,255) ;
}

table {
  width: 100%; 
  border-collapse: separate;
  border-spacing: 10px 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  margin: 30px 0;
}
@media (max-width: 768px) {
  table {
      max-width: 100%;
      overflow-x: auto;
      display: block;
  }
}

td {
  border: none; 
  padding: 8px; 
    white-space: normal; 
word-wrap: break-word; 
  border-radius: 10px 10px 10px 10px; 
}
tr {
  background-color: rgb(204 228 255);
  border: 2px solid var(--color-light);
}
th {
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px 10px 10px 10px; 
  padding: 10px 0;
}
@media (max-width: 1280px) {
  .table-wrapper {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .table-wrapper {
    width: 100%;
  }
  .footer__top-box img {
      max-width: 35px;
  }
}


strong {
}

td > p {
  margin: 0;
}

li {
  color: #000;
}

.image_container {
  align-items: center;
  justify-content: space-between;
  display: flex;
  margin-top: 30px;
  gap: 30px;
}

.container {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}


.questions-title {
  font-weight: 700;
  font-size: 24px;
  color: white;
  margin-top: 60px;
  margin-bottom: 30px;
}

.dropdown {
  min-width: 15em;
  position: relative;
  margin-top: 16px;
}

.select {
  background: #eef0f3;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px #eef0f3 solid;
  border-radius: 0.5em;
  padding: 12px 16px;
  cursor: pointer;
}

.selected {
  font-size: 18px;
  font-weight: 500;
}

.caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid black;
  transition: 0.3s;
}

.caret-rotate {
  transform: rotate(180deg);
}

.homepage {
  width: 100%;
}
.highlight-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
}
.security-badge {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  display: inline-block;
  font-size: 0.9em;
  margin: 5px;
}

.promo-card {
  background: white;
  padding: 20px;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-left: 4px solid #e74c3c;
}
.code-highlight {
  background: #f8f9fa;
  padding: 8px 12px;
  border-radius: 5px;
  font-family: monospace;
  font-weight: bold;
  color: #e74c3c;
  display: inline-block;
  margin: 5px 0;
}

.menu {
  list-style: none;
  border: 1px #eef0f3 solid;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
  color: #9fa5b5;
  top: 3em;
  width: 100%;
  opacity: 0;
  display: none;
  transition: 0.2s;
  z-index: 1;
  margin-top: 16px;
}

.menu li {
  padding: 12px 16px;
  border-radius: 0.5em;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.content_menu a {
  text-decoration: none;
}

.menu-open {
  display: block;
  padding-left: 0;
  opacity: 1;
  color: #fff;
  background-color: #eef0f3;
  opacity: 0.8;
}

.dropdown__element {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.dropdown--last {
  margin-bottom: 93px;
}

footer > div {
  text-align: center;
}

.logo_container > a > span {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.text_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text_container table {
  min-width: 250px;
}

@keyframes zoom {
  0%, 100% {
    transform: scale(1,1);
  } 50% {
    transform: scale(1.2,1.2);
  }
}

@media (max-width: 1200px) {
  .games_grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .game_img img {
    height: 150px;
  }

  .text_container .table_container {
    right: 0%;
  }
}

@media (max-width: 1024px) {
  .dropdown {
    width: auto;
    margin-left: 0;
  }

  .text_container {
    flex-direction: column;
  }

  .footer_container {
    flex-direction: column;
  }

  .text_container div:first-of-type {
    align-self: flex-start;
  }

  .links, .footer_icons {
    flex-direction: row;
    justify-content: space-between;
  }

  .games_grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .providers {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }

  .homepage {
    width: 100%;
  }

  .content_container {
    flex-direction: column;
    gap: 30px;
  }
}


@media (max-width: 720px) {
  header > div {
    flex-direction: column;
  }

  .center_image {
    width: 100%;
  }

  .image_container {
    flex-direction: column;
  }

  .dropdown {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .select {
    gap: 10px;
  }

  .menu li, .selected {
    font-size: 13px;
  }

  .games_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  main, header > div {
    width: 100%;
  }

  .footer_icons {
    gap: 20px ;
  }

  .footer_icons {
    flex-direction: column;
  }
}

@media (max-width: 450px) {
  .game_img img {
    height: 100px;
  }
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; } .table-scroll table { width: 100%; }

.jackpot-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 20px; 
  margin: 25px 0; 
  padding: 0;
}

.jackpot-card { 
  background: #e4e4e4; 
  border: 2px solid #dee2e6;
  border-radius: 12px; 
  padding: 25px 20px; 
  text-align: center; 
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.jackpot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #007bff;
}

.jackpot-amount { 
  font-size: 26px; 
  font-weight: bold; 
  color: #007bff; 
  margin-bottom: 8px;
  text-shadow: 0 1px 2px rgba(0, 123, 255, 0.2);
}

.jackpot-label { 
  font-size: 14px;
  color: #495057; 
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .jackpot-grid {
      grid-template-columns: 1fr;
      gap: 15px;
  }
  
  .jackpot-card {
      padding: 20px 15px;
  }
  
  .jackpot-amount {
      font-size: 22px;
  }
}
.cta-box .btn {
  display: block;
  width: 100%;
  background: #3498fe;
  border-color: #3498fe;
  box-shadow: 0px 0px 16px 0px #3498fe inset;
  text-align: center;
  border-radius: 100px;
  text-decoration: none;
  line-height: 16px;
  padding: 15px;
  margin-top: 50px;
  margin-bottom: 50px;
  color: #ffffff;
}
.full-width {
  width: 80%;
  text-align: center;
}
.security-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.security-category {
  flex: 1;
  min-width: calc(50% - 8px);
}

.security-category-content {
  border: 2px solid #5d66a6;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(136, 136, 136, .6);
}

.security-category-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5; }

.security-category-content strong {
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .security-category {
      min-width: 100%;
  }
}
.faq {
  margin-top: 30px;
  width: 100%;
}

.faq-container {
  margin-top: 20px;
  width: 100%;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

.faq-question {
  padding: 15px;
  margin: 0;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #0c6a64;
}

.faq-question.active::after {
  content: '-';
}

.faq-answer {
  padding: 15px;
  background;
  width: 100%;
  box-sizing: border-box;
  display: none;
}

.faq-answer.active {
  display: block;
}

.author-block {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #cecece;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
}

.author-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-info p {
  margin: 0;
}

@media (max-width: 480px) {
  .author-block {
      flex-direction: column;
      text-align: center;
      gap: 10px;
  }
}


footer {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  margin-top: 50px;
  padding: 40px 0 20px 0;
}

.footer_container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.footer_section {
  flex: 1;
}

.footer_section h4 {
  color: #60a5fa;
  margin-bottom: 20px;
  font-size: 1.1em;
  font-weight: 600;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.links a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9em;
}

.links a:hover {
  color: #60a5fa;
}

.footer_icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cert_badge {
  background: rgba(255,255,255,0.2);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85em;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.3s ease;
}

.cert_badge:hover {
  background: rgba(255,255,255,0.3);
}

.footer_bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 20px;
  text-align: center;
}

.footer_bottom p {
  margin: 6px 0;
  font-size: 0.85em;
  opacity: 0.9;
}

.disclaimer {
  font-weight: 600;
  color: #fbbf24;
}

@media (max-width: 768px) {
  footer {
    padding: 30px 0 15px 0;
  }
  
  .footer_content {
    flex-direction: column;
    gap: 25px;
  }
  
  .footer_section h4 {
    font-size: 1em;
    margin-bottom: 15px;
  }
  
  .links a {
    font-size: 0.85em;
  }
  
  .footer_icons {
    justify-content: center;
  }
  
  .cert_badge {
    padding: 6px 10px;
    font-size: 0.8em;
  }
  
  .footer_bottom p {
    font-size: 0.8em;
  }
}