@charset "UTF-8";
body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  background-color: #111a1a;
  color: white;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  background-color: #1a2221;
  padding: 15px 0;
}
.site-header .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.site-header .logo {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
.site-header .logo .highlight {
  color: #fcb900;
}
.site-header .main-nav .nav-list {
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-header .main-nav .nav-list .nav-item {
  position: relative;
}
.site-header .main-nav .nav-list .nav-item a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.site-header .main-nav .nav-list .nav-item a:hover {
  color: #fff;
}
.site-header .main-nav .nav-list .nav-item.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header .main-nav .nav-list .nav-item .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
  min-width: 180px;
}
.site-header .main-nav .nav-list .nav-item .dropdown li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-size: 14px;
  white-space: nowrap;
}
.site-header .main-nav .nav-list .nav-item .dropdown li a:hover {
  background-color: #ecf3f3;
}
.site-header .main-nav .nav-list .nav-item .dropdown li a.active {
  background-color: #ecf3f3;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .site-header {
    display: none;
  }
}

.nav-item {
  position: relative;
}
.nav-item > a {
  position: relative;
  padding-right: 16px;
  display: inline-block;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.nav-item > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #ccc;
  transition: transform 0.3s ease, border-top-color 0.3s ease;
}
.nav-item > a:hover {
  color: #fff;
}
.nav-item > a:hover::after {
  border-top-color: #fff;
  transform: translateY(-50%) rotate(180deg);
}

.hero-section {
  background-color: #0F1A1A;
  padding: 60px 0;
  color: #ffffff;
}
.hero-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero-section .hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-section .hero-content p {
  max-width: 900px;
  font-size: 18px;
  line-height: 1.6;
  color: #dddddd;
}
.hero-section .hero-content p a {
  color: #ffffff;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.hero-section .hero-content p a:hover {
  color: #fcb900;
}
.hero-section .hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-section .hero-footer .hero-note {
  flex: 1;
  font-size: 14px;
  color: #888888;
  max-width: 60%;
}
.hero-section .hero-footer .hero-meta {
  text-align: right;
}
.hero-section .hero-footer .hero-meta p {
  font-size: 14px;
  color: #888888;
  margin: 2px 0;
}
.hero-section .hero-footer .hero-meta p.hero-update {
  font-weight: 500;
}
.hero-section .hero-footer .hero-meta p.hero-update span {
  color: #fcb900;
}
@media (max-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 32px;
    text-align: left;
  }
  .hero-section .hero-content p {
    font-size: 16px;
    line-height: 1.7;
  }
  .hero-section .hero-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-section .hero-footer .hero-note {
    max-width: 100%;
    font-size: 13px;
  }
  .hero-section .hero-footer .hero-meta {
    width: 100%;
    text-align: left;
  }
  .hero-section .hero-footer .hero-meta p {
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .hero-section {
    padding: 40px 0;
  }
  .hero-section .hero-section {
    padding-bottom: 0;
  }
  .hero-section .hero-update {
    display: block;
    margin-top: 10px;
    color: #ffffff !important;
    font-family: "Work Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
  }
  .hero-section .hero-content h1 {
    margin: 0;
    font-family: "Work Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 38px;
    color: #FFFFFF;
  }
  .hero-section .hero-content p {
    display: none;
  }
  .hero-section .hero-footer {
    gap: 16px;
  }
  .hero-section .hero-footer .hero-note {
    margin: 0;
    font-family: "Work Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    color: rgba(255, 255, 255, 0.5);
  }
  .hero-section .hero-footer .hero-meta p {
    font-family: "Work Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    color: rgba(255, 255, 255, 0.5);
  }
}

.casino-list {
  background-color: #0F1A1A;
  padding: 60px 0;
  /* Общий Disclaimer */
  /* Контейнер */
  /* Заголовки (5 колонок) */
  /* Карточка (5 колонок) */
  /* Повтор бейджа (можно удалить, если не используется) */
  /* Footer-кнопка */
}
.casino-list .casino-disclaimer {
  font-size: 12px;
  color: #888;
  margin: 8px 0 24px;
  line-height: 1.4;
  text-align: left;
}
@media (max-width: 992px) {
  .casino-list .casino-disclaimer {
    text-align: center;
  }
}
.casino-list .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.casino-list .casino-header {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr 1fr;
  padding: 0 20px 20px;
  color: #b5b5b5;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.casino-list .casino-item {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr 1fr 1fr;
  align-items: center;
  background-color: #1f2928;
  border-radius: 10px;
  margin-bottom: 16px;
  gap: 20px;
  padding: 0;
  overflow: visible;
  transition: background-color 0.2s ease;
  /* “Best Choice” бейдж */
  /* Лого-блок с ранком */
  /* Бонусный блок */
  /* Рейтинг (Bedøm det! + звёздочки) */
  /* Оценка + ссылка */
  /* Блок кнопок */
}
.casino-list .casino-item:hover {
  background-color: #263332;
}
.casino-list .casino-item .badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background-color: #1ae5b5;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  z-index: 10;
}
.casino-list .casino-item .logo-box {
  position: relative;
  background-color: #2f3736;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  -webkit-clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 50%, calc(100% - 5px) 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 50%, calc(100% - 5px) 100%, 0 100%);
}
.casino-list .casino-item .logo-box img {
  max-height: 100px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.casino-list .casino-item .logo-box .rank {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid #888;
  border-radius: 6px;
  padding: 2px 6px;
  font-weight: 500;
}
.casino-list .casino-item .bonus {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px dashed #4d5857;
  border-radius: 10px;
  padding: 12px 20px;
  text-align: center;
  color: #ffffff;
}
.casino-list .casino-item .bonus .top {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.casino-list .casino-item .bonus .value {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #FFBF00;
  margin: 4px 0;
}
.casino-list .casino-item .bonus .note {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
}
.casino-list .casino-item .rating {
  text-align: center;
}
.casino-list .casino-item .rating span {
  display: block;
  color: #ccc;
  font-size: 14px;
  margin-bottom: 4px;
}
.casino-list .casino-item .rating .stars {
  color: #f9c200;
  font-size: 18px;
  letter-spacing: 2px;
}
.casino-list .casino-item .score {
  text-align: center;
}
.casino-list .casino-item .score .value {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  display: block;
}
.casino-list .casino-item .score a {
  font-size: 14px;
  color: #87b4ff;
  margin-top: 4px;
  text-decoration: underline;
}
.casino-list .casino-item .score a:hover {
  text-decoration: none;
}
.casino-list .casino-item .actions {
  text-align: center;
}
.casino-list .casino-item .actions .btn {
  background-color: #5a56f2;
  border-radius: 12px;
  color: white;
  padding: 12px 20px;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 6px;
  transition: background-color 0.3s, transform 0.2s;
}
.casino-list .casino-item .actions .btn:hover {
  background-color: #4541e0;
  transform: translateY(-1px);
}
.casino-list .casino-item .actions .visit {
  display: block;
  font-size: 14px;
  color: #87b4ff;
  text-decoration: underline;
}
.casino-list .casino-item .actions .visit:hover {
  text-decoration: none;
}
.casino-list .badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background-color: #1ae5b5;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.casino-list .casino-footer {
  text-align: center;
  margin-top: 30px;
}
.casino-list .casino-footer .btn-more {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.005em;
}
.casino-list .casino-footer .btn-more:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.casino-list .casino-footer .btn-more .arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: 2px;
}
@media (max-width: 758px) {
  .casino-list .casino-list {
    overflow-x: hidden;
  }
  .casino-list .container {
    padding: 0 10px;
  }
  .casino-list .casino-header {
    display: none !important;
  }
  .casino-list .casino-item {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr 1.2fr 1fr;
    gap: 8px;
    padding: 10px;
    margin-bottom: 15px;
    width: 100% !important;
    box-sizing: border-box;
  }
  .casino-list .casino-item .logo-box {
    padding: 12px;
    min-height: 70px;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 6px;
  }
  .casino-list .casino-item .logo-box img {
    max-height: 36px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .casino-list .casino-item .logo-box .rank {
    font-size: 10px;
    padding: 2px 4px;
    top: 5px;
    left: 5px;
  }
  .casino-list .casino-item .bonus {
    padding: 8px 10px;
    border-radius: 8px;
  }
  .casino-list .casino-item .bonus .top,
  .casino-list .casino-item .bonus .note {
    font-size: 11px;
  }
  .casino-list .casino-item .bonus .value {
    font-size: 16px;
    font-weight: 600;
    margin: 2px 0;
  }
  .casino-list .casino-item .rating {
    display: none !important;
  }
  .casino-list .casino-item .score .value {
    font-size: 20px;
    margin-bottom: 4px;
  }
  .casino-list .casino-item .score a {
    display: none !important;
  }
  .casino-list .casino-item .score::after {
    content: "★★★★★";
    display: block;
    font-size: 14px;
    color: #f9c200;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 2px 0;
    border-radius: 6px;
    text-align: center;
    margin-top: 3px;
  }
  .casino-list .casino-item .actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .casino-list .casino-item .actions .btn {
    width: 110px;
    height: 44px;
    font-size: 13px;
    text-decoration: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-left: auto;
    margin-right: 10px;
  }
  .casino-list .casino-item .actions .visit {
    display: none !important;
  }
  .casino-list .casino-disclaimer {
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
    margin: 8px 0 20px;
  }
}
@media (max-width: 500px) {
  .casino-list {
    display: none;
  }
}

.license-info {
  max-width: 900px;
  margin: 40px auto;
  padding: 28px 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
}
.license-info p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  opacity: 0.8;
}
.license-info img {
  height: 80px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .license-info {
    padding: 20px 24px;
  }
  .license-info p {
    font-size: 17px;
  }
  .license-info img {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .license-info {
    padding: 16px 16px;
  }
  .license-info p {
    font-size: 15px;
  }
  .license-info img {
    height: 50px;
  }
}
@media (max-width: 360px) {
  .license-info {
    padding: 14px 12px;
  }
  .license-info p {
    font-size: 14px;
  }
  .license-info img {
    height: 45px;
  }
}

.text-section {
  background-color: #0F1A1A;
  padding: 60px 20px;
}
.text-section .container {
  max-width: 860px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.9;
}
.text-section .container p {
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
  opacity: 0.8;
}
.text-section .container h3 {
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  margin: 36px 0 18px;
  color: #ffffff;
}
.text-section .container ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.text-section .container ul li {
  margin-bottom: 24px;
  position: relative;
  padding-left: 18px;
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  opacity: 0.8;
}
.text-section .container ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-size: 18px;
  top: 0;
}
.text-section .container ul li strong {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.footer {
  background-color: #111818;
  padding: 60px 20px;
  color: #ffffff;
  /* ===== АДАПТИВ: 758px ===== */
  /* ===== АДАПТИВ: 320px ===== */
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
}
.footer .footer-left {
  max-width: 300px;
}
.footer .footer-left .footer-logo {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 30px;
}
.footer .footer-left .footer-logo span {
  color: #ffc300;
}
.footer .footer-left .footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.footer .footer-left .footer-links li {
  margin-bottom: 14px;
}
.footer .footer-left .footer-links li a {
  opacity: 80%;
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
}
.footer .footer-left .footer-links li a:hover {
  text-decoration: underline;
}
.footer .footer-left .copyright {
  font-size: 14px;
  opacity: 0.6;
}
.footer .footer-right {
  flex: 1;
  min-width: 300px;
}
.footer .footer-right .legal {
  opacity: 80%;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer .footer-right .footer-logos {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer .footer-right .footer-logos img {
  height: 40px;
}
.footer .footer-right .support {
  opacity: 80%;
  font-size: 15px;
  line-height: 1.6;
}
.footer .footer-right .support a {
  color: #6ea5ff;
  text-decoration: none;
}
.footer .footer-right .support a:hover {
  text-decoration: underline;
}
@media (max-width: 758px) {
  .footer .container {
    flex-direction: column;
    gap: 30px;
  }
  .footer .footer-left,
  .footer .footer-right {
    text-align: center;
  }
  .footer .footer-logos {
    justify-content: center;
  }
}
@media (max-width: 360px) {
  .footer {
    padding: 40px 16px;
  }
  .footer .footer-left .footer-logo {
    font-size: 16px;
  }
  .footer .footer-left .footer-links li a {
    font-size: 14px;
  }
  .footer .footer-left .copyright {
    font-size: 13px;
  }
  .footer .footer-right .legal,
  .footer .footer-right .support {
    font-size: 14px;
    text-align: left;
  }
  .footer .footer-right .footer-logos {
    gap: 12px;
  }
  .footer .footer-right .footer-logos img {
    height: 30px;
  }
}

.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #182222;
  display: none;
}
.mobile-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}
.mobile-header .logo {
  font-size: 18px;
  font-weight: 600;
  color: white;
}
.mobile-header .logo span {
  color: #ffc300;
}
.mobile-header .burger {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.mobile-header .burger span {
  width: 28px;
  height: 2px;
  background-color: white;
  display: block;
}
.mobile-header .mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
}
.mobile-header .mobile-nav.active {
  transform: translateX(0);
}
.mobile-header .mobile-nav .nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.mobile-header .mobile-nav .nav-top .logo {
  font-size: 18px;
  font-weight: 600;
  color: black;
}
.mobile-header .mobile-nav .nav-top .logo span {
  color: #ffc300;
}
.mobile-header .mobile-nav .nav-top .close-btn {
  font-size: 28px;
  color: black;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-header .mobile-nav .nav-list {
  list-style: none;
  padding: 0;
}
.mobile-header .mobile-nav .nav-list .has-dropdown {
  border-top: 1px solid #eee;
}
.mobile-header .mobile-nav .nav-list .has-dropdown .dropdown-toggle {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 16px;
  font-size: 15px;
  font-family: "Work Sans", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111;
  cursor: pointer;
}
.mobile-header .mobile-nav .nav-list .has-dropdown .submenu {
  display: none;
  padding: 0 16px 16px;
}
.mobile-header .mobile-nav .nav-list .has-dropdown .submenu li {
  font-size: 14px;
  font-family: "Work Sans", sans-serif;
  padding: 8px 0;
  color: #666;
}
.mobile-header .mobile-nav .nav-list .has-dropdown.open .submenu {
  display: block;
}
.mobile-header .mobile-nav .nav-list .has-dropdown .arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #111;
  border-bottom: 1.5px solid #111;
  transform: rotate(45deg);
  margin-left: 10px;
}
@media (max-width: 1100px) {
  .mobile-header {
    display: block;
  }
}

.casino-list-mobile {
  display: none;
  background-color: #0f1a1a;
  padding: 40px 0;
  overflow-x: hidden;
}
@media (max-width: 500px) {
  .casino-list-mobile {
    display: block;
  }
}
.casino-list-mobile .container {
  padding: 0 16px;
  max-width: 100%;
  box-sizing: border-box;
}
.casino-list-mobile .casino-card {
  background-color: #1f2928;
  border-radius: 10px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}
.casino-list-mobile .best-choice .badge {
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #1ae5b5;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}
.casino-list-mobile .card-left {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}
.casino-list-mobile .card-left .rank {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 12px;
  border: 1px solid #888;
  border-radius: 6px;
  padding: 4px 6px;
  font-weight: 500;
  z-index: 3;
}
.casino-list-mobile .card-left .logo {
  height: 50px;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 8px;
}
.casino-list-mobile .card-left hr {
  width: 100%;
  border: 0.5px solid #888;
  opacity: 0.3;
  margin: 8px 0;
}
.casino-list-mobile .card-left .score {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.casino-list-mobile .card-left .stars {
  color: #f9c200;
  font-size: 16px;
  letter-spacing: 2px;
}
.casino-list-mobile .card-right {
  flex: 2;
  text-align: center;
}
.casino-list-mobile .card-right .top {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 2px;
}
.casino-list-mobile .card-right .bonus {
  font-size: 16px;
  font-weight: bold;
  color: #87b4ff;
  margin: 0;
}
.casino-list-mobile .card-right .note {
  font-size: 13px;
  color: #ccc;
  margin: 6px 0 12px;
}
.casino-list-mobile .card-right .btn-mobile {
  display: inline-block;
  width: 133px;
  height: 50px;
  background-color: #5a56f2;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
}
.casino-list-mobile .card-right .btn-mobile:hover {
  background-color: #4541e0;
}
.casino-list-mobile .mobile-disclaimer {
  font-size: 11px;
  color: #888;
  text-align: center;
  margin-top: 12px;
}

.casino-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.casino-popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.casino-popup .popup-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 1;
}
.casino-popup .popup-content {
  position: relative;
  z-index: 2;
  max-width: 1024px;
  margin: auto;
  padding: 40px 20px;
  background: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.casino-popup .popup-content h2 {
  color: white;
  font-size: 26px;
  margin-bottom: 30px;
}
.casino-popup .popup-content .popup-slider {
  display: flex;
  gap: 10px;
  overflow: visible;
}
.casino-popup .popup-content .popup-slider .popup-card {
  z-index: 10;
  position: relative;
  flex: 1;
  background-color: #0f1a1a;
  padding: 36px 28px;
  border-radius: 16px;
  border: 2px solid transparent;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.casino-popup .popup-content .popup-slider .popup-card:hover {
  transform: translateY(-10px);
  border-color: #ffffff;
}
.casino-popup .popup-content .popup-slider .popup-card img {
  max-height: 80px;
  margin-bottom: 28px;
}
.casino-popup .popup-content .popup-slider .popup-card .top {
  color: #ccc;
  font-size: 18px;
  margin-bottom: 6px;
}
.casino-popup .popup-content .popup-slider .popup-card .amount {
  font-size: 34px;
  color: #6ea5ff;
  font-weight: 800;
}
.casino-popup .popup-content .popup-slider .popup-card .note {
  font-size: 18px;
  color: white;
  margin: 12px 0 24px;
}
.casino-popup .popup-content .popup-slider .popup-card .btn-blue {
  display: inline-block;
  background-color: #4541e0;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.casino-popup .popup-content .popup-slider .popup-card .btn-blue:hover {
  background-color: #3331cc;
}
.casino-popup .popup-content .popup-slider .popup-card .terms {
  font-size: 13px;
  color: #aaa;
  margin-top: 20px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .casino-popup .popup-content {
    padding: 24px 16px;
  }
  .casino-popup .popup-content h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .casino-popup .popup-content .popup-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .casino-popup .popup-content .popup-slider .popup-card {
    flex: 0 0 90%;
    scroll-snap-align: center;
    padding: 28px 24px;
  }
  .casino-popup .popup-content .popup-slider .popup-card img {
    max-height: 60px;
  }
  .casino-popup .popup-content .popup-slider .popup-card .top {
    font-size: 15px;
  }
  .casino-popup .popup-content .popup-slider .popup-card .amount {
    font-size: 28px;
  }
  .casino-popup .popup-content .popup-slider .popup-card .note {
    font-size: 16px;
  }
  .casino-popup .popup-content .popup-slider .popup-card .btn-blue {
    font-size: 15px;
    padding: 12px 24px;
  }
  .casino-popup .popup-content .popup-slider .popup-card .terms {
    font-size: 11px;
  }
}/*# sourceMappingURL=style.css.map */