html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
address,
big,
blockquote,
cite,
code,
del,
dfn,
em,
img,
ins,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
input,
fieldset,
legend,
caption,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
main,
nav,
output,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: none;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

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

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

ol,
ul,
nav,
menu {
  list-style: none;
}

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

img {
  vertical-align: bottom;
}

a,
button {
  cursor: pointer;
  margin: 0;
  padding: 0;
}

a:hover,
button:hover {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th,
td {
  vertical-align: middle;
}

iframe {
  width: 100%;
}
.author-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    margin-top: 40px;
    border: 1px solid gray;
    background-color: #f9f9f9;
    border-radius: 8px;
    font-family: sans-serif;
}

.author-photo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ccc;
}

.author-info {
    flex: 1;
}

.author-name {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: bold;
}

.author-bio {
    margin: 0;
    font-size: 16px;
    color: #1D3557;
    line-height: 1.4;
}

.footer_menu {
    margin: 0 0 30px 0;
    text-align: center;
}
.footer_nav {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer_nav li a {
  text-decoration: none;
}



/* Roboto */
@font-face {
  font-family: "Roboto";
  src: local("Roboto-Regular"), url("../fonts/roboto-regular.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: local("Roboto-Italic"), url("../fonts/roboto-italic.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: local("Roboto-Medium"), url("../fonts/roboto-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: local("Roboto-MediumItalic"), url("../fonts/roboto-500italic.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: local("Roboto-BoldItalic"), url("../fonts/roboto-700italic.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: local("Roboto-Bold"), url("../fonts/roboto-700.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
  font-style: normal;
}

/* =========================== all */
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  color: #1D3557;
  background: #fcf4e7;
  line-height: 1.5;
}

.body_scroll {
  overflow: hidden;
}

/* heading */
.h1,
.h2,
.h3,
.h4 {
  font-weight: 700;
  color: #1D3557;
}

.author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.author_img img {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 100%;
  object-fit: cover;
}

.author_name,
.author-update {
  font-weight: 700;
}

.h1 {
  font-size: 42px;
  line-height: 40px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .h1 {
    font-size: 36px;
  }
}

.h2 {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px;
}

.h3 {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 15px;
  margin-top: 40px;
}

.h4 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}

.heading_bg {
  border-radius: 5px;
  background: #A0A340;
  color: #fff;
  padding: 0 5px;
}

.section {
  margin-bottom: 40px;
}

/* content */
a,
p,
ol:not([class]) li,
ul:not([class]) li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

p {
  margin-bottom: 30px;
}

.text p:last-child {
  margin-bottom: 0;
}

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

a:not([class]):hover {
  color: rgb(203, 67, 50);
}

b,
strong {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

/* list */
ol:not([class]),
ul:not([class]) {
  margin-bottom: 15px;
}

ol:not([class]) li,
ul:not([class]) li {
  display: table;
  position: relative;
  font-weight: 600;
  padding-left: 36px;
}

ol:not([class]) li::before,
ul:not([class]) li::before {
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 5px;
}

ol:not([class]) li:not(:last-child),
ul:not([class]) li:not(:last-child) {
  margin-bottom: 8px;
}

table ol:not([class]) li,
table ul:not([class]) li,
.table ol:not([class]) li,
.table ul:not([class]) li {
  display: block;
}

ol:not([class]) {
  counter-reset: number;
}

ol:not([class]) li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  text-align: center;
  line-height: 24px;
  background: #58A6FF;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

ul:not([class]) li::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--check-black");
}

.list-check li {
  position: relative;
  font-size: 15px;
  line-height: 23px;
  padding-left: 23px;
}
.menu__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
  position: relative;
}
blockquote {
    margin: 0 0 30px 0;
    padding: 15px 10px;
    background-color: #f9f9f9;
    border-left: 4px solid #f47c23;
    font-style: italic;
    font-size: 16px;
    color: #333;
    border-radius: 4px;
}

.list-check li::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: center center/cover no-repeat;
  background-image: url("../img/check.svg");
  left: 0;
  top: 3.5px;
}

.breadcrumbs ul li::before {
  display: none;
}

/* img */
img {
  display: block;
  margin: 0 auto;
}

.img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
  padding: 5px;
}

.figure {
  margin-bottom: 15px;
}

/* transition */
* {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* btn */
.btn {
  display: block;
  height: 43px;
  line-height: 43px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0 auto;
}

.btn_review {
  display: block;
  line-height: 43px;
  text-align: center;
  font-size: 14px;
}

.btn_review:hover {
  color: #023E8A;
}

.btn-arrow {
  position: relative;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  padding-right: 18px;
}

.btn-arrow::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--play-icon");
  right: 0;
  top: calc(50% - 5px);
}

.btn_play {
  width: 150px;
  background: #0077B6;
  padding: 0 5px;
}

.btn_play:hover {
  background: #023E8A;
}

.btn_visit {
  background: #0077B6;
  width: 220px;
}

.btn_visit:hover {
  background: #023E8A;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fcf4e7;
  z-index: 1000;
  min-width: 200px;
  padding: 8px 5px;
  color: #000;
  font-weight: 600;
  font-size: 14px;
}

.menu__link {
  color: #000;
  text-decoration: none;
  padding: 8px 5px;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
}

.has-submenu:hover .submenu {
  display: block;
}

.menu__item {
  position: relative;
}

@media screen and (max-width: 450px) {
  .btn_mob {
    width: 100%;
  }
}

/* flexbox */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* gridbox */
.gridbox {
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* rating */
.rating {
  width: 80px;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border-radius: 5px;
  border: 1px solid #E1E1E1;
  padding: 8px 10px;
}

.rating-star img {
  width: 14px;
  height: 14px;
}

.rating-total {
  font-size: 12px;
  font-weight: 400;
  line-height: 23px;
}

.rating-total-b {
  font-size: 15px;
  font-weight: 700;
  line-height: 23px;
}

/* block */
.overly {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* scroll */
.scroll {
  overflow: auto;
  -ms-scroll-chaining: none;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: thin;
  scrollbar-color: #DCDFE9 transparent;
}

.scroll::-webkit-scrollbar {
  width: 4px;
  height: 50%;
}

.scroll::-webkit-scrollbar-track {
  background-color: transparent;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: #DCDFE9;
  border-radius: 5px;
  min-height: 50%;
  min-width: 4px;
}

.scroll::-webkit-scrollbar-thumb:hover {
  background-color: #DCDFE9;
}

.scroll::-webkit-scrollbar-thumb:active {
  background-color: #DCDFE9;
}

/* table */
.table_scroll {
  margin-bottom: 20px;
}

.table_scroll .table {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .table_scroll {
    width: calc(100% + 20px);
    margin-right: -20px;
  }

  .table_scroll .table {
    width: auto;
  }
}

.table {
  border-radius: 5px;
  border: 1px solid #E1E1E1;
  border-collapse: separate;
  overflow: hidden;
  margin-bottom: 30px;
}

.table tr:not(:last-child) td {
  border-bottom: 1px solid #E1E1E1;
}

.table th,
.table td {
  vertical-align: middle;
  line-height: normal;
  text-align: left;
  padding: 12px 15px;
}

.table th:not(:last-child),
.table td:not(:last-child) {
  border-right: 1px solid #E1E1E1;
}

.table th {
  background: #DDE6F1;
  font: 14px 'aleobold', sans-serif;
  font-weight: 700;
  color: #1D3557;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.table td {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
}

.table a {
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  text-decoration: none;
  color: rgb(233, 102, 86);
  white-space: nowrap;
}

.table a:hover {
  text-decoration: underline;
}

.table-characteristics td {
  width: 1%;
}

.table-characteristics b {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.table-characteristics b::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 12px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--arrow-vertical");
  top: calc(50% - 6px);
  left: 0;
}

button {
  display: inline-block;
  cursor: pointer;
  font-family: "Roboto";
}

/* container */
.container {
  max-width: 990px;
  padding: 0 20px;
  margin: 0 auto;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  main {
    padding-bottom: 64px;
  }
}

/* header */
.header {
  position: relative;
  z-index: 101;
  background-color: #f47c23;
  border-bottom: 3px solid #b1b1b1;
  padding: 5px 0;
  margin-bottom: 50px;
}

.header .container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.logo_img {
  width: 150px;
}

/* menu */
@media screen and (min-width: 992px) {
  .navigation {
    overflow: visible;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 992px) {
  .navigation {
    position: fixed;
    top: 88px;
    bottom: 0;
    right: 0;
    background: #fff;
    width: 0;
    padding: 25px 0;
  }

  .navigation.open {
    width: 360px;
    padding: 25px 20px;
  }
}

@media screen and (max-width: 450px) {
  .navigation.open {
    width: 100%;
  }
}

.menu-link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #100F0F;
  text-transform: capitalize;
}

.menu-btn svg {
  fill: #100F0F;
  width: 11px;
  min-width: 11px;
  height: 6px;
}

@media screen and (min-width: 992px) {
  /* .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
  } */

  .menu-arr {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
  }

  .menu-arr:last-child .downmenu {
    left: auto;
    right: 0;
  }

  .menu-arr:hover .menu-link {
    color: #A0A340;
  }

  .menu-arr:hover .menu-btn svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    fill: #A0A340;
  }

  .menu-arr:hover .downmenu {
    max-height: 1000px;
    overflow: visible;
  }

  .menu-arr:hover .submenu {
    -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
  }

  .menu-link:hover {
    color: #A0A340;
  }
}

@media screen and (min-width: 1190px) {
  .menu-arr:last-child .downmenu {
    left: calc(50% - 150px);
    right: auto;
  }
}

@media screen and (max-width: 992px) {

  .menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-left: auto;
  }

  .menu-arr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .menu-arr.open .downmenu {
    max-height: 1000px;
    overflow: visible;
    padding-top: 20px;
  }

  .menu-arr.open .menu-btn svg {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .menu__item:not(:last-child) {
    border-bottom: 1px solid #C7C7C7;
  }
}

.downmenu {
  max-height: 0;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .downmenu {
    position: absolute;
    left: calc(50% - 150px);
    z-index: 1;
    top: 20px;
    padding-top: 13px;
    -webkit-transition: padding 0.7s;
    -o-transition: padding 0.7s;
    transition: padding 0.7s;
  }
}


 @media (max-width: 768px) {
  .menu__list {
    flex-direction: column;
  }
}

@media screen and (max-width: 992px) {
  .downmenu {
    min-width: 100%;
    padding-top: 0;
  }
  .submenu.open {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fcf4e7;
    z-index: 999;
        color: #1D3557;
    padding: 10px 15px;
  }

  .menu.active {
    display: block;
  }

  .menu__item {
    padding: 8px 0;
    border-bottom: none;
  }

  .menu__link {
    font-size: 14px;
    line-height: 20px;
    padding: 6px 0;
    display: block;
    color: #000;
  }

  .submenu a {
    font-size: 13px;
    padding: 5px 0;
    color: #000;
  }
}

.submenu__item:not(:last-child) {
  margin-bottom: 10px;
}

.submenu-link {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  color: #100F0F;
}

.submenu-link:hover {
  text-decoration: underline;
}

@media screen and (min-width: 992px) {
  .submenu {
    width: 300px;
    background: #fff;
    border-radius: 5px;
    padding: 20px;
  }
}

/* hamburger */
.hamburger {
  position: relative;
  width: 24px;
  height: 20px;
  text-align: center;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1.5px;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  background: #DDE6F1;
}

.hamburger-inner {
  background: #000;
  display: block;
  top: calc(50% - 1px);
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
  background: #000;
  right: 0;
}

.hamburger-inner::before {
  width: 14px;
  top: 6px;
}

.hamburger-inner::after {
  width: 19px;
  bottom: 6px;
}

.hamburger.is_active .hamburger-inner {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger.is_active .hamburger-inner::before,
.hamburger.is_active .hamburger-inner::after {
  width: 24px;
}

.hamburger.is_active .hamburger-inner::before {
  opacity: 0;
}

.hamburger.is_active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger:hover {
  opacity: 0.7;
}

@media screen and (min-width: 992px) {
  .hamburger {
    display: none;
  }
}

/* promo */
.promo .promo-casino-review {
  padding: 50px 0 40px;
  background-image: url("../img/bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: -5px -200px;
  box-shadow: 0px 35px 80px 70px rgba(246, 234, 213);
}

.promo .promo-casino-review p:last-child {
  margin-bottom: 0;
}

.promo-casino-review {
  background-image: none;
}

@media screen and (max-width: 768px) {
  .promo .promo-casino-review {
    padding-bottom: 35px;
    background-position: -30px -7px;
  }
}

/* offer */
.offer {
  counter-reset: number;
  margin-bottom: 50px;
}

.offer-th {
  background: #DDE6F1;
  font: 14px 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  text-transform: uppercase;
  color: #1D3557;
  padding: 12px 10px;
}

.offer-th:first-child {
  border-radius: 5px 0 0 5px;
  padding-left: 10px;
}

.offer-th:last-child {
  border-radius: 0 5px 5px 0;
  padding-right: 10px;
}

.offer-head .offer-bonus,
.offer-head .offer-characteristics {
  text-align: left;
}

.offer__item {
  border-bottom: 1px solid #E1E1E1;
}

.offer-td {
  padding: 15px 10px;
}

.offer-td:first-child {
  padding-left: 0;
}

.offer-td:last-child {
  padding-right: 0;
}

.offer .img {
  position: relative;
  width: 140px;
  height: 100px;
  margin-bottom: 8px;
}

.offer .img::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  width: 22px;
  height: 22px;
  border-radius: 100%;
  background: #58A6FF;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  top: 4px;
  left: 4px;
}

.offer-logo {
  text-align: center;
}

.offer-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: #000;
  text-transform: capitalize;
}

.offer-name:hover {
  text-decoration: underline;
}

.offer .bonus {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #000;
  padding-left: 25px;
  margin-bottom: 0;
}

.offer .bonus::before {
  position: absolute;
  content: "";
  width: 17px;
  height: 20px;
  background: center center/cover no-repeat;
  background-image: url("../img/gift.svg");
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .offer__item:first-child .offer-td {
    padding-top: 20px;
  }

  .offer-logo {
    width: 150px;
    min-width: 150px;
  }

  .offer-bonus {
    max-width: 260px;
  }

  .offer-rating {
    width: 100px;
    min-width: 100px;
  }
}

@media screen and (max-width: 768px) {
  .offer {
    display: block;
  }

  .offer thead {
    display: none;
  }

  .offer tbody,
  .offer__item,
  .offer-td {
    display: block;
  }

  .offer__item {
    padding-bottom: 20px;
  }

  .offer__item:not(:last-child) {
    margin-bottom: 20px;
  }

  .offer-td {
    padding: 0;
  }

  .offer-td:not(:last-child) {
    padding-bottom: 15px;
  }

  .offer .img {
    width: 320px;
    height: 140px;
    margin: 0 auto;
    margin-bottom: 12px;
  }

  .offer .rating,
  .offer .btn_play {
    width: 100%;
  }

  .offer-name {
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  .offer .img {
    width: 100%;
  }
}

/* faq */
.faq__item:not(:last-child) {
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.faq-heading {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #100F0F;
  padding-left: 34px;
  margin-bottom: 15px;
}

.faq-heading::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 26px;
  background: center center/cover no-repeat;
  background-image: url("/img/question.png");
  left: 0;
  top: 0;
}

@media screen and (max-width: 768px) {
  .faq__item:not(:last-child) {
    padding-bottom: 20px;
  }

  .faq-heading {
    margin-bottom: 20px;
  }
}

/* footer */
.footer {
  background-color: #f47c23;
  border-top: 3px solid #b1b1b1;
  color: #fff;
}

.footer_top {
  gap: 20px 30px;
  padding: 40px 0;
}

.footer_bottom {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  gap: 20px 30px;
  padding-bottom: 20px;
}

.footer-navigation {
  gap: 20px 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-navigation__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 215px;
}

.footer-heading {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 15px;
}

.footer-list__item {
  line-height: 22px;
}

.footer-list__item:not(:last-child) {
  margin-bottom: 10px;
}

.footer-list-link {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: #1B1919;
}

.footer-list-link:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------------------------------------------------------*/

.copy {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1D3557;
  text-align: center;
  padding: 20px 0;
}

.breadcrumbs ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 14px;
  margin-bottom: 20px;
}

.breadcrumbs ul li {
  padding-left: 0px;
}

.breadcrumbs ul li::after {
  content: "›";
  margin: 0 8px;
  color: #A0A340;
}

.breadcrumbs ul li:last-child::after {
  content: none;
}

.breadcrumbs a {
  color: #A0A340;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}


.casino-intro {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.casino-logo img {
  width: 200px;
  height: auto;
  border: 1px solid #f4c542;
  border-radius: 12px;
}

.casino-title-header {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* text-align: center; */
}

.casino-title-header .h1 {
  font-size: 28px;
  margin: 0;
  color: #002b45;
}

.casino-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.casino-rating .stars {
  display: flex;
  gap: 4px;
}

.casino-rating .rating-label {
  font-weight: 600;
  color: #008069;
}

.casino-action-col {
  flex-basis: 100%;
  margin-top: 8px;
}

.casino-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 20px;

}

.feature-card {
  border: 1px solid #f4c542;
  border-radius: 12px;
  padding: 16px 20px;
  background: #fff8e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  padding-left: 56px;
  min-height: 84px;
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-license::before {
  background-image: url('/img/license.svg');
}

.icon-bonus::before {
  background-image: url('/img/gift.svg');
}

.icon-payment::before {
  background-image: url('/img/payment.svg');
}

.icon-platforms::before {
  background-image: url('/img/devices.svg');
}

.icon-flag::before {
  background-image: url('/img/greece.svg');
}

.icon-clock::before {
  background-image: url('/img/clock.svg');
}

.feature-title {
  font-weight: bold;
  font-size: 15px;
  color: #003049;
}

.feature-value {
  font-size: 14px;
  color: #212529;
}




.rating-score-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}

.rating-item {
  width: 100%;
}

.rating-label {
  display: block;
  font-weight: bold;
  color: #003049;
  margin-bottom: 6px;
  font-size: 16px;
}

.rating-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  padding: 0px 10px;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.05);
}

.rating-stars {
  flex: 1;
  height: 5px;
  background: #dee2e6;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 12px;
  position: relative;
}

.stars-filled {
  height: 100%;
  background: linear-gradient(90deg, #f4c542, #f0b000);
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
}

.rating-number {
  font-weight: 600;
  color: #212529;
  white-space: nowrap;
}





@media (max-width: 768px) {
  .casino-summary-box {
    flex-direction: column;
    align-items: stretch;
  }

  .casino-action-col {
    flex: 1 1 100%;
    align-items: center;
  }

  .btn-highlight {
    max-width: 300px;
  }

}























@media screen and (max-width: 768px) {
  .casino-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .casino-summary-cta {
    flex-direction: column;
  }

  .casino-cta .btn-gold {
    width: 100%;
    text-align: center;
  }
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  padding: 6px 12px;
  width: fit-content;
}

.casino-rating .stars img {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.rating-label {
  font-weight: 600;
  font-size: 14px;
  color: #2a8172;
}

.casino-rating-wrapper {
  margin-top: 20px;
}

.welcome-bonus-box {
  background: linear-gradient(135deg, #ffeaa7, #fab1a0);
  border: 2px solid #e17055;
  border-radius: 12px;
  padding: 24px;
  margin: 40px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bonus-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.bonus-text {
  flex: 1 1 60%;
}

.bonus-title {
  font-size: 18px;
  font-weight: bold;
  color: #d63031;
  display: block;
  margin-bottom: 10px;
}

.bonus-offer {
  font-size: 22px;
  font-weight: bold;
  color: #2d3436;
  display: block;
  margin-bottom: 10px;
}

.bonus-cta {
  flex: 1 1 30%;
  text-align: center;
}

.btn.btn-bonus {
  background-color: #d63031;
  color: #fff;
  padding: 0px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn.btn-bonus:hover {
  background-color: #e74c3c;
}

@media (max-width: 768px) {
  .bonus-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .bonus-cta {
    width: 100%;
  }
}










@media screen and (max-width: 890px) {
  .footer-navigation__item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 150px;
  }
}

@media screen and (max-width: 768px) {

  .footer_top,
  .footer_bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer_top {
    padding-bottom: 30px;
  }

  .footer-navigation {
    min-width: 100%;
  }

  .footer-logo {
    margin: 16px 0;
  }
}

@media screen and (max-width: 450px) {
  .footer-navigation__item {
    min-width: 100%;
    text-align: center;
  }
}

.reliable {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}

.reliable img {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .reliable {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }

  .casino-logo img {
    width: 100%;
  }
}