@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url(../fonts-library/Roboto-Bold.woff2) format("woff2"), url(../fonts-library/Roboto-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url(../fonts-library/Roboto-Medium.woff2) format("woff2"), url(../fonts-library/Roboto-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url(../fonts-library/Roboto-Regular.woff2) format("woff2"), url(../fonts-library/Roboto-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f6fa;
}

.pageBody {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: #be2edd;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff2453;
}

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

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
  color: #444;
}

h3 {
  font-size: 1.5rem;
  color: #555;
}

p {
  margin-bottom: 1rem;
}

section {
  margin-bottom: 3rem;
}

section img{
  display: block;
  margin: 0 auto 1rem auto;
  border-radius: 8px;
}

.contentToCenter{
  display: flex;
  justify-content: center;
}

ul.items-text {
  list-style: none;
  padding-left: 8px;
  margin-bottom: 1rem;
}

ul.items-text li {
  position: relative;
  padding-left: 24px;
}

ul.items-text li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #B82DD6;
  border-radius: 99px;
}

ul.items-text li:not(:last-child) {
  margin-bottom: 8px;
}

ol.items-text {
  list-style: none;
  padding-left: 8px;
  counter-reset: myCount;
  margin-bottom: 1rem;
}

ol.items-text li {
  position: relative;
  padding-left: 24px;
}

ol.items-text li:before {
  content: counter(myCount) ".";
  counter-increment: myCount;
  font-weight: bold;
  color: #B82DD6;
  position: absolute;
  top: 0;
  left: 0;
}

ol.items-text li:not(:last-child) {
  margin-bottom: 8px;
}

.mainHeader {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.mainHeader .pageBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
}

.siteEmblem {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.brandHolder {
  height: 40px;
  width: auto;
}

.mainNavBar {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: right;
}

.primaryMenu {
  list-style: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.primaryMenu li {
  margin-left: 20px;
  position: relative;
}

.primaryMenu li a {
  color: #151515;
  font-weight: 500;
  padding: 10px 0;
  display: block;
  position: relative;
}

.primaryMenu li a.currentItem, .primaryMenu li a:hover {
  color: #be2edd;
}

.primaryMenu li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #be2edd;
  bottom: 0;
  left: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.primaryMenu li a.currentItem:after, .primaryMenu li a:hover:after {
  width: 100%;
}

.menuHamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menuHamburger span {
  height: 3px;
  width: 100%;
  background-color: #151515;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.heroBlock {
  background-image: url(../illustrations-set/hot-hot-fruit.webp);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.heroBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.heroBlock .pageBody {
  position: relative;
  z-index: 1;
}

.heroBlock h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.coreContent {
  padding: 0;
}

.introductoryText {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.detailsBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 3rem;
}

.gameLeftPanel, .gameRightPanel {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.gameStats {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gameStats tr:nth-child(odd) {
  background-color: #f8f9fa;
}

.gameStats td {
  padding: 12px 15px;
  border-bottom: 1px solid #e9ecef;
}

.gameStats tr:last-child td {
  border-bottom: none;
}

.slotIcons {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
}

.iconGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.itemSymbol {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.symbolIcon {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.symbolIcon img {
  max-width: 150px;
  border-radius: 8px;
}

.winSymbols {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
}

.winBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 1rem;
}

.highPay, .smallWin {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.highPay img, .smallWin img {
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.specialFeatures {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.featuresLayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.itemFeature {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.itemFeature img {
  width: 100%;
  border-radius: 8px;
  margin-top: 1rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.styleFeel {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
}

.designGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 2rem;
}

.aestheticItem {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.aestheticItem:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.aestheticItem h3 {
  text-align: center;
  margin-bottom: 15px;
  color: #444;
}

.advantagesList {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
}

.tableProsCons {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.tableProsCons th {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
  background-color: #f8f9fa;
}

.tableProsCons th img {
  width: 40px;
  height: 40px;
  vertical-align: middle;
}

.tableProsCons td {
  padding: 15px 20px;
  border-bottom: 1px solid #e9ecef;
  vertical-align: top;
}

.tableProsCons tr:last-child td {
  border-bottom: none;
}

.tableProsCons td:first-child {
  border-right: 1px solid #e9ecef;
  color: #28a745;
}

.tableProsCons td:last-child {
  color: #dc3545;
}

.casinoListBlock {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
}

.casinoDirectory {
  margin-top: 30px;
}

.itemCasino {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  background-color: #f8f9fa;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.itemCasino:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.leftCasino {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.casinoBrandImg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 135px;
  flex: 0 0 135px;
  text-align: center;
}

.casinoBrandImg img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.infoCasino {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 15px;
}

.infoCasino h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.casinoScore {
  color: gold;
}

.centerCasino {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rightCasino {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btnBlockCasino {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.startGameBtn, .btnSeeReview {
  display: block;
  padding: 10px 15px;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btnSeeReview {
  background-color: #f8f9fa;
  color: #555;
  border: 1px solid #e9ecef;
}

.startGameBtn {
  background-color: #2ecc71;
  color: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(46, 204, 113, 0.3);
  box-shadow: 0 2px 5px rgba(46, 204, 113, 0.3);
}

.btnSeeReview:hover {
  background-color: #e9ecef;
  color: #333;
}

.startGameBtn:hover {
  background-color: #27ae60;
  -webkit-box-shadow: 0 5px 15px rgba(46, 204, 113, 0.5);
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.5);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.userFeedback {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
}

.userFeedback h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #444;
}

.feedbackList {
  margin-bottom: 40px;
}

.itemComment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.itemComment.actionReply {
  margin-left: 70px;
  margin-bottom: 30px;
}

.userAvatar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  margin-right: 20px;
}

.userAvatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
  object-fit: cover;
}

.textComment {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.userName {
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}

.feedbackText {
  margin-bottom: 10px;
  line-height: 1.6;
}

.commentInfo {
  font-size: 0.9rem;
  color: #777;
}

.postedDate, .commentResponse {
  margin-right: 10px;
  color: #777;
}

.commentResponse:hover {
  text-decoration: underline;
  color: #be2edd;
}

.commentFormShell {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin-top: 20px;
}

.commentFormShell h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #444;
}

.userFeedbackForm {
  width: 100%;
}

.inputGroup {
  margin-bottom: 15px;
}

.formLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.formLine .inputGroup {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 0;
}

.userFeedbackForm input, .userFeedbackForm textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #fff;
  font-family: inherit;
  font-size: 1rem;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.userFeedbackForm input:focus, .userFeedbackForm textarea:focus {
  outline: 0;
  border-color: #be2edd;
}

.inputGroup.checkboxField {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
}

.inputGroup.checkboxField input {
  width: auto;
  margin-top: 4px;
}

.inputGroup.checkboxField label {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

.formSubmit {
  display: inline-block;
  padding: 12px 25px;
  background-color: #be2edd;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.formSubmit:hover {
  background-color: #ff2453;
  color: #fff;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(190, 46, 221, 0.3);
  box-shadow: 0 5px 15px rgba(190, 46, 221, 0.3);
}

@media (max-width:480px) {
  .formSubmit{
    width: 100%;
    text-align: center;
  }
}

.siteBottom {
  background-color: #000;
  color: #fff;
  padding-top: 40px;
}

.topFooter {
  padding-bottom: 30px;
}

.columnsFooter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.columnFooter {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.columnFooter h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.logosFooter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

.itemLogo img {
  max-height: 50px;
  width: auto;
}

.bottomFooter {
  background-color: #111;
  padding: 15px 0;
}

.bottomFooter .pageBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navFooter ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.navFooter li {
  margin-left: 20px;
}

.navFooter a {
  color: #ccc;
  font-size: 0.9rem;
}

.navFooter a:hover {
  color: #fff;
}

.toTopButton {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  display: none;
}

.toTopButton a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #be2edd;
  color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 10px rgba(190, 46, 221, 0.5);
  box-shadow: 0 2px 10px rgba(190, 46, 221, 0.5);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.toTopButton a:hover {
  background-color: #ff2453;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 5px 15px rgba(255, 36, 83, 0.5);
  box-shadow: 0 5px 15px rgba(255, 36, 83, 0.5);
}

.toTopButton.show {
  display: block;
}

.imgBlock {
  margin-bottom: 1rem;
}

section a:not([class]) {
  text-decoration: underline;
}

.tableOfContents {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1001;
  width: 320px;
  max-width: 90vw;
  background: #fff;
  -webkit-box-shadow: 2px 0 16px rgba(0, 0, 0, 0.12);
  box-shadow: 2px 0 16px rgba(0, 0, 0, 0.12);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transition: -webkit-transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55), -webkit-transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  pointer-events: none;
}

.tableOfContents.open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  pointer-events: all;
}

.tocPanel {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 0 0 32px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.tocTitleBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 12px 24px;
  border-bottom: 1px solid #eee;
}

.tocLabel {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: #be2edd;
  letter-spacing: 0.04em;
}

.closeTOC {
  font-size: 2rem;
  color: #be2edd;
  text-decoration: none;
  background: 0 0;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0 8px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.closeTOC:hover {
  color: #222;
}

.tocLinks {
  padding: 16px 24px 0 24px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.tocListContainer, .subTocList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.itemTOC {
  margin-bottom: 10px;
}

.tocAnchor {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0;
  border-radius: 3px;
  -webkit-transition: background 0.15s, color 0.15s;
  transition: background 0.15s, color 0.15s;
}

.tocAnchor:focus, .tocAnchor:hover {
  background: #f8e5ff;
  color: #be2edd;
}

.subTocList {
  margin-left: 18px;
  margin-top: 3px;
}

.tocChildItem .tocAnchor {
  font-size: 0.98rem;
  font-weight: 400;
  padding-left: 8px;
}

.tocExpand {
  position: fixed;
  top: 50%;
  left: 0;
  -webkit-transform: rotate(180deg) translateY(50%);
  -ms-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
  z-index: 82;
  background: #be2edd;
  color: #fff;
  border-radius: 5px 0 0 5px;
  -webkit-box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.15);
  padding: 10px 6px;
  font-size: 0.7rem;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: background 0.18s;
  transition: background 0.18s;
  cursor: pointer;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  letter-spacing: 1px;
  border: none;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tocExpand .tocChevron {
  font-size: 1.2em;
  margin-bottom: 8px;
  font-weight: 700;
  display: inline-block;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.tocExpand .labelToc {
  font-size: 0.9em;
  text-transform: uppercase;
  display: block;
}

.tocExpand:focus, .tocExpand:hover {
  background: #a016c4;
}

section:not(.showOnInit) {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

section.section-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.reply-notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f0f0f0;
  padding: 10px 15px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.reply-notice p {
  margin: 0;
}

.cancel-reply {
  color: #be2edd;
  font-size: 0.9rem;
}

.cancel-reply:hover {
  text-decoration: underline;
}

.comment-success {
  background-color: #d4edda;
  color: #155724;
  padding: 10px 15px;
  border-radius: 4px;
  margin-top: 15px;
}

.comment-success p {
  margin: 0;
}

body.toc-open {
  overflow: hidden;
}

section.heroBlock {
  margin-bottom: 2rem;
}

.legalNotice p {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .heroBlock h1 {
    font-size: 3rem;
  }
  .infoCasino {
    text-align: left;
  }
  .featuresLayout, .columnsFooter, .detailsBlock, .iconGrid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .itemFeature, .columnFooter, .gameLeftPanel, .gameRightPanel, .itemSymbol {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .itemCasino, .designGrid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .centerCasino, .leftCasino, .rightCasino {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding: 10px 0;
    text-align: center;
  }
  .infoCasino {
    padding-left: 0;
    margin-top: 10px;
  }
  .centerCasino {
    margin: 15px 0;
  }
  .btnBlockCasino {
    max-width: 300px;
    margin: 0 auto;
  }
  .itemComment.actionReply {
    margin-left: 50px;
  }
}
@media (max-width: 800px) {
  .tableOfContents {
    width: 90vw;
    max-width: 98vw;
  }
  .tocExpand {
    padding: 8px 4px;
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .menuHamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mainNavBar {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #fff;
    z-index: 99;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  .mainNavBar.currentItem {
    left: 0;
  }
  .primaryMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
  }
  .primaryMenu li {
    margin: 0;
    border-bottom: 1px solid #eee;
  }
  .primaryMenu li a {
    padding: 15px 0;
  }
  .heroBlock h1 {
    font-size: 2.5rem;
  }
  .winBlock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .logosFooter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  .bottomFooter .pageBody {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .legalNotice {
    margin-bottom: 15px;
  }
  .navFooter ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .navFooter li {
    margin: 5px 10px;
  }
  .tableProsCons td, .tableProsCons th {
    padding: 10px;
  }
  .aestheticItem {
    margin-bottom: 20px;
  }
  .formLine {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .itemComment.actionReply {
    margin-left: 30px;
  }
  .userAvatar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    margin-right: 15px;
  }
  .userAvatar img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767.98px) {
  section.heroBlock {
    margin-bottom: 1rem;
  }
}
@media (max-width: 500px) {
  .tocTitleBar, .tocLinks {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 480px) {
  .heroBlock {
    padding: 60px 0;
  }
  .heroBlock h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  .specialFeatures, .slotIcons, .winSymbols {
    padding: 15px;
  }
  .toTopButton {
    right: 15px;
    bottom: 15px;
  }
  .styleFeel, .advantagesList, .casinoListBlock {
    padding: 15px;
  }
  .itemCasino {
    padding: 15px 10px;
  }
  .userFeedback {
    padding: 15px;
  }
  .commentFormShell {
    padding: 20px;
  }
  .itemComment.actionReply {
    margin-left: 20px;
  }
}