/* Global Styles */
body {
  background-color: #0a0f1d;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}
.text {
  max-width: 1100px;
  margin: 0 auto;
	padding: 0 15px;
}

.text p,
.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6,
.text ul,
.text ol,
.text table,
.text img {
  margin-bottom: 25px;
}
.text table {
	width: 100%;
	border-collapse: collapse;
}
.text table tr td {
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, .4);
}
.text table thead {
	font-weight: bold;
}
.text img {
	display: block;
	max-width: 100%;
	height: auto;
}


	/* Header */
header {
  background-color: #1d2332;
  padding: 16px 0;
  position: relative;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.header-section {
  flex: 1;
  display: flex;
  align-items: center;
}
.header-left {
  justify-content: flex-start;
}
.header-center {
  justify-content: center;
}
.header-right {
  justify-content: flex-end;
}
.header-left img {
  width: 100px;
  height: 40px;
  object-fit: contain;
}

/* Navigation Menu (Desktop) */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.nav-menu li a {
  display: block;
  padding: 4px 16px;
  background-color: #131a2a;
  color: #fff;
  border-radius: 4px;
	font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-menu li a:hover {
  background-color: #7475e9;
  color: #fff;
}


.btn-blue, .btn-green {
  padding: 8px 24px;
  border: none;
  border-radius: 4px;
	font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-left: 10px;
}
.btn-blue {
  background-color: #007bff;
  color: #fff;
}
.btn-blue:hover {
  background-color: #0056b3;
}
.btn-green {
  background-color: #28a745;
  color: #fff;
}
.btn-green:hover {
  background-color: #1e7e34;
}

/* Hamburger Icon (Mobile) */
.hamburger {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;
}


.mobile-menu {
  display: none;
}

/* Breadcrumbs */
.breadcrumbs {
	padding-top: 20px;
	padding-bottom: 20px;
  font-size: 13px;
}
.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

/* Заголовок */
.main-title {
  font-size: 36px;
  text-align: center;
}


.tiles-section {
	padding-top: 25px;
	padding-bottom: 20px;
}
.tiles-section .tiles-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
}
.tiles-section .tiles-list li a img {
	display: block;
  width: 100%;
  height: auto;
	margin-bottom: 0;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.tiles-section .tiles-list li a:hover img {
  transform: scale(1.1);
}



.directions-section {
	padding-top: 20px;
	padding-bottom: 50px;
}
.directions-section .directions-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
  text-align: center;
}
.directions-section .directions-list li a {
  display: block;
	padding: 20px 8px;
	background: rgba(255, 255, 255, .05);
	border-radius: 8px;
  text-decoration: none;
  color: #fff;
	transition: all .3s ease;
}
.directions-section .directions-list li a:hover {
	background: rgba(255, 255, 255, .1);
}
.directions-section .directions-list li a img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto;
}
.directions-section .directions-list li a span {
  display: block;
  margin-top: 8px;
}


.highlight-text-block {
  background-color: #131a2a;
  border: 1px solid #7475e9;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 50px;
}


.faq {
	padding-top: 20px;
	padding-bottom: 50px;
}
.faq-item {
	border: 1px solid rgba(255, 255, 255, .3);
	background: rgba(255, 255, 255, .05);
	margin-bottom: 16px;
}
.faq-item__head {
	position: relative;
	padding: 16px 64px 16px 20px;
	cursor: pointer;
}
.faq-item__head h3 {
	margin: 0;
}
.faq-item__head::before,
.faq-item__head::after {
	content: '';
	position: absolute;
	top: calc(50% - 8px);
	right: 20px;
	width: 2px;
	height: 16px;
	background: #fff;
}
.faq-item__head::after {
	transform: rotate(90deg);
	transition: all .3s ease;
}
.faq-item.active .faq-item__head::before {
	opacity: 0;
}
.faq-item__body {
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}
.faq-item.active .faq-item__body {
	max-height: 8000px;
}
.faq-item__text {
	padding-left: 20px;
	padding-right: 20px;
}


/* Footer */
footer {
  background-color: #1d2332;
  padding: 20px 0;
}
.footer-row {
  max-width: 1100px;
  margin: 0 auto;
  padding: 25px 15px;
}
.footer-row1 .footer-logos-left {
  display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
  gap: 20px;
	padding-bottom: 20px;
}
.footer-row1 .footer-logos-left svg,
.footer-row1 .footer-logos-left img {
	width: auto;
	max-width: calc(20% - 20px);
  max-height: 30px;
  object-fit: contain;
}
.footer-row1 .footer-logos-left svg {
	fill: #ffffff;
}
.footer-row2 .casino-logos {
  display: flex;
  justify-content: space-between;
	align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-row2 .casino-logos img {
  flex: 1;
  max-width: calc(100% / 7 - 30px);
	height: auto;
  object-fit: contain;
}
.footer-row3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-row3 .footer-menu ul {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.footer-row3 .footer-menu ul li a {
  display: block;
  padding: 5px 10px;
  background-color: #131a2a;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.footer-row3 .footer-menu ul li a:hover {
  background-color: #7475e9;
  color: #fff;
}
.footer-row3 .footer-logo-right img {
  width: 100px;
  height: 40px;
  object-fit: contain;
}
.footer-row4 hr {
  border: 0;
  border-top: 1px solid #7475e9;
  margin-bottom: 10px;
}
.footer-row4 p {
  font-size: 14px;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .header-center,
  .header-right {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background-color: #1d2332;
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 20px;
  }
  .mobile-menu.open {
    left: 0;
  }
  .mobile-menu .close-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    float: right;
    cursor: pointer;
  }
  .mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
  }
  .mobile-buttons button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .mobile-buttons .btn-blue {
    background-color: #007bff;
    color: #fff;
  }
  .mobile-buttons .btn-green {
    background-color: #28a745;
    color: #fff;
  }
  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
  }
  .mobile-nav ul li a {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #131a2a;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .mobile-nav ul li a:hover {
    background-color: #7475e9;
    color: #fff;
  }
  .tiles-section .tiles-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .directions-section .directions-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .directions-section .directions-list li:last-child {
    grid-column: span 2;
    text-align: center;
  }
  /* Footer Mobile Adjustments */
  .footer-row2 .casino-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .footer-row3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-row3 .footer-logo-right {
    order: 1;
  }
  .footer-row3 .footer-menu {
    order: 2;
    margin-left: auto;
  }
  .footer-row3 .footer-menu ul li a {
    background: none;
    border-radius: 0;
    padding: 5px 10px;
  }
}