html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
button {
  border: none;
  cursor: pointer;
  background: transparent;
}

* {
  --bg: #fff;
  --shadow: rgba(0, 0, 0, 0.5);
  --bg-secondary: #1f2435;
  --bg-active: #fff7d4;
  --text: #212529;
  --title: #1c2d44;
  --breadcrumbs: #f0f4fc;
  --border-line: #d9dbdf;
  --light: #bcc4d8;
  --text-cart: #6a6a6a;
  --line: #73ac05;
  --active: #e5f523;
  --btn-first: #cfb220;
  --link: #007bff;
  --cart-button: #ff500f;
  --play-button: #fe8d1d;
  --olive: olive;

  --border-l: 4em;
  --border-m: 2em;
  --border-s: 1em;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
}
b {
  font-weight: 600;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
a {
  color: var(--link);
}
h1,
h2,
h3 {
  color: var(--title);
  font-weight: 700;
  position: relative;
}
.sub_title {
  font-size: 34px; 
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}
 
h3 {
  background: linear-gradient(-135deg, var(--bg) 25px, var(--text) 0);
  font-size: 18px;
  line-height: 30px;
  min-width: 340px;
  padding: 0 70px 0 20px;
  color: var(--bg);
  display: inline-block;
  margin-bottom: 20px;
}
#breadcrumbs {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}
#breadcrumbs a {
  color: var(--cart-button);
}
.breadcrumb-container {
  padding: 15px 0;
  box-sizing: border-box;
  background: var(--breadcrumbs);
}
h1 {
  font-size: 40px;
  line-height: 40px;
  margin: 35px 0 20px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--line);
}
  
.header {
  background: var(--bg-secondary);
  left: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 200;
}

@media (max-width: 62em) {
  .header {
    align-items: center;
    display: flex;
    min-height: 56px;
    width: 100%;
  }
}

.header.mobile-menu-active {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

.header__container {
  align-items: baseline;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 15px;
}

@media (max-width: 62em) {
  .header__container {
    width: 100%;
  }
}

.header__mobile-toggle,
.header__search-mobile {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  padding: 15px;
}

@media (max-width: 62em) {
  .header__mobile-toggle,
  .header__search-mobile {
    display: block;
  }
}

.header__mobile-toggle.is-active,
.header__mobile-toggle:hover,
.header__search-mobile.is-active,
.header__search-mobile:hover {
  color: var(--active);
}

@media (max-width: 62em) {
  .header__search-mobile {
    display: flex;
  }

  .header__mobile-toggle {
    order: 2;
  }
}

.header__search-mobile {
  color: var(--bg);
  font-size: 17px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 62em) {
  .header__search-mobile {
    order: 1;
  }
}

.header__logo {
  align-items: center;
  display: block;
  justify-content: center;
}

@media (max-width: 62em) {
  .header__logo {
    max-width: 180px;
    order: 1;
  }
}

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

.header__mobile-actions {
  align-items: center;
  display: flex;
}

@media (max-width: 62em) {
  .header__mobile-actions {
    order: 2;
  }
}
.header__subcategory {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.header__menu {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header__menu.active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  z-index: 300;
  box-shadow: 0 4px 8px var(--shadow);
  animation: menuFadeIn 0.3s ease;
}

@keyframes menuFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 62em) {
  .header__menu {
    display: none;
  }
  .header__main-menu {
    flex-direction: column;
    height: 100vh;
    text-align: center;
  }
}

.header__main-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__actions {
  align-items: center;
  display: flex;
}

@media (max-width: 62em) {
  .header__actions {
    display: none;
  }
}

.header__actions .header__link--disabled,
.header__actions a,
.header__actions button {
  background-color: inherit;
  border: none;
  border-radius: 4px;
  color: var(--active);
  cursor: pointer;
  padding: 8px 4px;
  text-decoration: none;
  white-space: nowrap;
}

.header__actions .header__link--disabled:focus,
.header__actions .header__link--disabled:hover,
.header__actions a:focus,
.header__actions a:hover,
.header__actions button:focus,
.header__actions button:hover {
  color: var(--active);
}

.header__actions .header__link--disabled span,
.header__actions a span,
.header__actions button span {
  font-size: 16px;
  text-transform: uppercase;
}

@media (max-width: 75em) and (min-width: 62em) {
  .header__actions .header__link--disabled:before,
  .header__actions a:before,
  .header__actions button:before {
    color: var(--active);
    content: "BLOG";
    font-size: 16px;
    text-transform: uppercase;
  }

  .header__actions .header__link--disabled span,
  .header__actions a span,
  .header__actions button span {
    display: none;
  }
}

.header__list {
  padding: 0;
}

.header__link {
  color: var(--bg);
  cursor: pointer;
  display: block; 
  font-size: 14px;
  padding: 12px 4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

@media (max-width: 75em) and (min-width: 62em) {
  .header__link {
    padding: 24px 8px;
  }
}

.header__link.is-active,
.header__link:hover {
  color: var(--active);
}

.header__submenus {
  margin-left: 50px;
  max-width: 720px;
  opacity: 0;
  padding: 15px;
  position: relative;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  width: auto;
  z-index: 2;
}

.header__submenus.is-visible {
  opacity: 1;
  visibility: visible;
}

.header__submenu {
  display: none;
  padding: 10px;
}

.header__submenu.is-visible {
  display: block;
}

.header__submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__submenu li {
  margin: 8px 0;
}

.header__submenu li .header__link--disabled,
.header__submenu li a {
  color: var(--bg);
  font-size: 17px;
  padding: 6px 15px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__submenu li .header__link--disabled:hover,
.header__submenu li a:hover {
  color: var(--active);
  transform: translateX(5px);
}

.header__search {
  cursor: pointer;
  padding: 10px;
  transition: color 0.2s ease;
}

.header__search:hover {
  color: var(--active);
}

.header__megamenu {
  background-color: var(--bg-secondary);
  display: flex;
  height: 0;
  justify-content: center;
  left: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: auto;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
  width: 100%;
  z-index: 101;
}

.header__megamenu.is-active {
  height: auto;
  min-height: 300px;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.header__megamenu-content {
  height: 100%;
  margin: 0 auto;
  max-width: 1440px;
  padding: 30px 15px;
  position: relative;
  width: 100%;
}

.mobile-menu {
  background: #1f2435;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  height: calc(100vh - 56px);
  left: 0;
  overflow-y: auto;
  position: fixed;
  top: 56px;
  width: 100%;
  z-index: 99;
}

.mobile-menu.is-active {
  display: block;
}

.mobile-menu__nav {
  padding: 10px 0;
}

.mobile-menu__list,
.mobile-menu__subcategories,
.mobile-menu__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__item {
  border-bottom: 1px solid #fffeff;
}

.mobile-menu__item,
.mobile-menu__subcategory,
.mobile-menu__submenu-item {
  position: relative;
}

.mobile-menu__item.has-submenu > .mobile-menu__item-text,
.mobile-menu__item.has-submenu > .mobile-menu__submenu-text,
.mobile-menu__subcategory.has-submenu > .mobile-menu__item-text,
.mobile-menu__subcategory.has-submenu > .mobile-menu__submenu-text,
.mobile-menu__submenu-item.has-submenu > .mobile-menu__item-text,
.mobile-menu__submenu-item.has-submenu > .mobile-menu__submenu-text {
  padding-right: 50px;
  position: relative;
}

.mobile-menu__toggle {
  cursor: pointer;
  display: block;
  height: 16px;
  position: relative;
  transition: transform 0.3s ease;
  width: 16px;
}

.mobile-menu__toggle-wrapper {
  align-items: center;
  border-radius: 100%;
  display: flex;
  height: 40px;
  justify-content: center;
  margin-right: -12px;
  width: 40px;
}

.mobile-menu__toggle:after,
.mobile-menu__toggle:before {
  background-color: #fff;
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease;
  width: 7px;
}

.mobile-menu__toggle:before {
  left: 2px;
  transform: rotate(45deg);
}

.mobile-menu__toggle:after {
  right: 2px;
  transform: rotate(-45deg);
}

.mobile-menu__toggle.is-active {
  transform: rotate(180deg);
}

.mobile-menu__toggle.is-active:after,
.mobile-menu__toggle.is-active:before {
  background-color: #e5f523;
}

.mobile-menu__item-text,
.mobile-menu__submenu-text {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 17px;
  font-weight: 500;
  gap: 14px;
  padding: 15px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mobile-menu__item-text.is-active,
.mobile-menu__item-text:hover,
.mobile-menu__submenu-text.is-active,
.mobile-menu__submenu-text:hover {
  background-color: hsla(0, 0%, 100%, 0.03);
  color: #e5f523;
}

.mobile-menu__item-text {
  text-transform: uppercase;
}

.mobile-menu__submenu-text {
  font-weight: 300;
}

.mobile-menu .header__link--disabled.mobile-menu__item-text,
.mobile-menu .header__link--disabled.mobile-menu__submenu-text,
.mobile-menu a.mobile-menu__item-text,
.mobile-menu a.mobile-menu__submenu-text {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.mobile-menu__submenu {
  background: #282f45;
  display: none;
}

.mobile-menu__submenu.is-active {
  display: block;
}

.mobile-menu__subcategories {
  background: #323a55;
  display: none;
  padding-left: 15px;
}

.mobile-menu__subcategories.is-active {
  display: block;
}

.mobile-menu__subcategory .header__link--disabled,
.mobile-menu__subcategory a {
  color: var(--bg);
  display: block;
  font-size: 17px;
  padding: 12px 15px 12px 20px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu__subcategory .header__link--disabled:hover,
.mobile-menu__subcategory a:hover {
  color: var(--active);
  transform: translateX(5px);
}

.mobile-menu__search {
  background: var(--bg-secondary);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  left: 0;
  padding: 15px;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 110;
}

.mobile-menu__search.is-active {
  display: block;
}

.mobile-menu__search form {
  position: relative;
}

.mobile-menu__search form input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--bg-secondary);
  border: none;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  color: var(--bg);
  font-size: 17px;
  padding: 12px 40px 12px 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.mobile-menu__search form input::-moz-placeholder {
  color: hsla(0, 0%, 100%, 0.5);
  opacity: 1;
}

.mobile-menu__search form input::placeholder {
  color: hsla(0, 0%, 100%, 0.5);
  opacity: 1;
}

.mobile-menu__search form input:focus {
  background: inherit;
  border-bottom: 1px solid var(--bg);
  color: var(--bg);
  outline: none;
}

.mobile-menu__search form input:focus-visible {
  outline: none;
}

.mobile-menu__search form input:-webkit-autofill,
.mobile-menu__search form input:-webkit-autofill:focus,
.mobile-menu__search form input:-webkit-autofill:hover {
  -webkit-text-fill-color: var(--bg);
  -webkit-box-shadow: inset 0 0 0 1000px var(--bg-secondary);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.mobile-menu__search form button {
  background: none;
  border: none;
  color: hsla(0, 0%, 100%, 0.5);
  cursor: pointer;
  left: 10px;
  padding: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu__search form button:hover {
  color: var(--active);
}

.mobile-menu__search form button:focus {
  outline: none;
}

.mobile-menu__search form button i {
  align-items: center;
  color: var(--bg);
  display: flex;
  font-size: 17px;
  justify-content: center;
}

.mobile-menu__blog-button {
  display: flex;
  text-align: center;
}

.mobile-menu__blog-button .header__link--disabled,
.mobile-menu__blog-button a {
  background-color: transparent;
  display: inline-block;
  padding: 10px 15px;
}

.mobile-menu__blog-button .header__link--disabled span,
.mobile-menu__blog-button a span {
  color: var(--active);
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.mobile-toggle__bar {
  background: var(--bg);
  display: block;
  height: 2px;
  margin: 5px 0;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 24px;
}

.mobile-toggle__bar:first-child {
  margin-top: 0;
}

.mobile-toggle__bar:last-child {
  margin-bottom: 0;
}

.is-active .mobile-toggle__bar:first-child {
  transform: translateY(7px) rotate(45deg);
}

.is-active .mobile-toggle__bar:nth-child(2) {
  opacity: 0;
}

.is-active .mobile-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.megamenu__section {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1440px;
  min-height: 300px;
  opacity: 0;
  pointer-events: none;
  position: relative;
  transform: translateY(8px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  visibility: hidden;
  width: 100%;
  will-change: transform, opacity;
}

.megamenu__section.is-active {
  height: auto;
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear;
  visibility: visible;
}

.megamenu__wrapper {
  align-items: flex-start;
  display: flex;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 15px;
  position: relative;
  width: 100%;
}

.megamenu__primary {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  max-height: none;
  min-width: 200px;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.megamenu__primary ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

.megamenu__secondary {
  min-width: 200px;
  padding-left: 40px;
  position: relative;
}

.megamenu__secondary .secondary-content {
  background-color: var(--bg-secondary);
  border-radius: 4px;
  left: 0;
  min-width: 200px;
  opacity: 0;
  padding-left: 40px;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-10px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  visibility: hidden;
  white-space: nowrap;
  z-index: 102;
}

.megamenu__secondary .secondary-content.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear;
  visibility: visible;
}

.megamenu__secondary .secondary-content ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

.megamenu__item {
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.megamenu__item.is-active .megamenu__item-text {
  color: var(--active);
}

.megamenu__item.is-active
  .megamenu__item-text.has-submenu
  .megamenu__toggle-line {
  background-color: var(--active);
  width: 45px;
}

.megamenu__item.is-active
  .megamenu__item-text.has-submenu
  .megamenu__toggle-line:after {
  transform: translate(5px, -50%);
}

.megamenu__item-text {
  color: var(--bg);
  display: block;
  font-size: 17px;
  padding: 8px 15px;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.megamenu__item-text.has-submenu {
  align-items: center;
  display: flex;
  position: relative;
}

.megamenu__item-text.has-submenu .megamenu__toggle-line {
  background-color: transparent;
  border-radius: 4px;
  display: inline-block;
  height: 2px;
  margin-left: 8px;
  position: relative;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  vertical-align: middle;
  width: 0;
}

.megamenu__item-text.has-submenu .megamenu__toggle-line:after {
  color: inherit;
  content: ">";
  font-size: 17px;
  left: 100%;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.megamenu__item:hover .megamenu__item-text {
  color: var(--active);
}

.megamenu__item:hover .has-submenu .megamenu__toggle-line {
  background-color: var(--active);
  width: 45px;
}

.megamenu__item:hover .has-submenu .megamenu__toggle-line:after {
  transform: translate(5px, -50%);
}
.header__list:hover ~ .header__menu-container,
.header__list:focus ~ .header__menu-container {
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  min-height: 200px !important;
  transition: opacity 0.3s, visibility 0.3s, height 0.3s;
}
.megamenu__subitem {
  padding: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.megamenu__subitem-link {
  color: var(--bg);
  display: block;
  font-size: 17px;
  padding: 6px 15px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.megamenu__subitem-link:hover {
  color: var(--active);
  transform: translateX(5px);
}

.megamenu__search {
  margin: 0 auto;
  padding-bottom: 15px;
  padding-left: 15px;
  width: 100%;
}

.megamenu__search-trending {
  padding-bottom: 15px;
  padding-top: 15px;
}

.megamenu__search-trending-title {
  color: var(--bg);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 15px;
}

.megamenu__search-trending-link {
  color: hsla(0, 0%, 100%, 0.7);
  display: block;
  font-size: 17px;
  padding: 5px 0;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.megamenu__search-trending-link:hover {
  color: #e5f523;
  text-decoration: none;
  transform: translateX(5px);
}

.megamenu__search-trending-columns {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 75em) {
  .megamenu__search-trending-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 62em) {
  .megamenu__search-trending-columns {
    grid-template-columns: 1fr;
  }
}

.megamenu__search-trending-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.megamenu__search-trending-item {
  margin-bottom: 10px;
}

.megamenu__search-trending-item:last-child {
  margin-bottom: 0;
}

.megamenu__search-trending-link {
  align-items: center;
  display: flex;
  gap: 10px;
}

.megamenu__links-icon {
  height: 100%;
  max-height: 20px;
  max-width: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.search-container {
  margin: 0 auto;
  max-width: 600px;
  padding: 20px;
  width: 100%;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-wrapper .megamenu__search-button {
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  left: 15px;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.search-wrapper .megamenu__search-button:hover .search__icon {
  color: var(--active);
}

.search-wrapper .search__icon {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 17px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-input {
  background: hsla(0, 0%, 100%, 0.1);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 6px;
  color: var(--bg);
  padding: 12px 20px 12px 50px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.search-input:focus {
  background: hsla(0, 0%, 100%, 0.15);
  outline: none;
  transform: translateY(-1px);
}

.search-input::-moz-placeholder {
  color: hsla(0, 0%, 100%, 0.5);
  padding-left: 5px;
}

.search-input::placeholder {
  color: hsla(0, 0%, 100%, 0.5);
  padding-left: 5px;
}

.search-results {
  margin-top: 20px;
  min-height: 200px;
}
.header {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, #0f0f0f 0%, #1b1b1b 100%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.header__container { 
  padding: 15px ; 
}

.header__logo img {
  display: block;
  height: 32px;
  transition: transform 0.3s ease;
}
.header__logo:hover img {
  transform: scale(1.05);
}

.header__mobile-actions {
  display: none;
  align-items: center;
  gap: 15px;
}

.header__mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-toggle__bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background: #f5c518;
  transition: all 0.3s ease;
}

.header__main-menu {
  display: flex;
  list-style: none;
  gap: 25px;
}
.header__link {
  position: relative;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.header__link:hover {
  color: #f5c518;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #f5c518;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.header__link:hover::after {
  width: 100%;
}

.header__menu-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.98);
  padding: 25px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s ease;
}
.header__list:hover .header__menu-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__menu-container-inner {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.header__subcategory {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__subcategory li {
  margin-bottom: 8px;
}
.header__subcategory-span {
  color: #ccc;
  font-size: 14px;
  transition: color 0.3s ease;
}
.header__subcategory a:hover .header__subcategory-span {
  color: #f5c518;
}

.header__submenu {
  display: none;
}
.header__list[data-category]:hover ~ .header__menu-container .header__subcategory,
.header__list[data-category]:hover ~ .header__menu-container .header__submenu {
  display: block;
}

.header__submenu ul {
  list-style: none;
  padding: 0;
}
.header__submenu ul li {
  margin-bottom: 6px;
}
.header__submenu .header__link {
  color: #bbb;
  font-size: 14px;
  text-transform: none;
}
.header__submenu .header__link:hover {
  color: #f5c518;
}

@media (max-width: 1024px) {
  .header__main-menu {
    display: none;
  }
  .header__mobile-actions {
    display: flex;
  }
  .header__menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: #181818 !important;
    flex-direction: column;
    padding: 80px 20px;
    transition: left 0.3s ease;
  }
  .header__menu.active {
    left: 0;
  }
  .header__main-menu {
    flex-direction: column;
    gap: 20px;
  }
  .header__container{
    flex-direction: row;
  }
  .header__link {
    font-size: 16px;
  }
}

.sub-menu {
  display: none;
}

.sub-menu.active {
  display: block;
}

.search-input {
  background: transparent;
  font-size: 17px;
  width: 100%;
}

.search-input:focus {
  background: transparent;
  border-color: var(--active);
  transform: none;
}

.admin-bar .header {
  top: 32px;
}

.info_autor {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
}
.autor_img {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 4px 1px var(--shadow);
}
.autor_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.info_start .info_autor p {
  font-size: 14px;
  margin: 0;
}
.info_autor a {
  color: var(--link);
}
.info_start p {
  margin: 0 0 20px;
} 

.started_header {
  background-color: var(--bg-secondary);
  border-bottom: 3px solid var(--bg);
  border-radius: var(--border-l);
  color: var(--bg);
  display: grid;
  font-weight: 700;
  grid-template-columns: 2.5em 1.5fr repeat(5, 1fr);
  grid-gap: 0.5em 2em;
  padding: 15px;
  place-items: center;
  position: relative;
  text-align: center;
  z-index: 2;
  margin-top: 20px;
}
.started_item {
  display: block;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 1em;
  transition: all 0.3s linear;
  border-radius: var(--border-s);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  color: var(--text-cart);
  margin-bottom: 20px;
}
.started_item:hover {
  background: #65614d;
}
 .started_rank{
  display: none !important; 
 }
 
.started_rank {
  color: var(--btn-first);
  font-size: 2.1875em;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card_item {
  display: grid;
  grid-template-columns: 2.5em 1.5fr repeat(5, 1fr);
  grid-gap: 0.5em 2em;
  align-items: center;
  padding-bottom: 10px;
  color: var(--title);
  position: relative;
}
.card_item > div {
  position: relative;
  height: 100%;
}
 
.started_items > a:first-child {
  background-color: var(--bg-active);
  border: 2px solid var(--active);
}

.started_logo img {
  max-width: 270px;
  display: block;
  width: 100%;
  margin: 0 auto;
}
.started_logo {
  text-align: center;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.started_deposit {
  display: flex;
  align-items: center;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}
.started_deposit li {
  background: var(--bg);
  width: 45px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-sizing: border-box;
}
.started_deposit img {
  display: block;
  width: 100%;
  max-width: 70px;
}
.breadcrumb-container {
  width: 100%;
  background: linear-gradient(90deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 20px 0;
  border-bottom: 2px solid #f5c518;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

.breadcrumb-container .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

#breadcrumbs {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#breadcrumbs li {
  display: flex;
  align-items: center;
  color: #aaa;
  transition: all 0.3s ease;
}

#breadcrumbs a {
  color: #f5c518;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}
#breadcrumbs a:hover {
  color: #fff;
  transform: translateY(-2px);
}
#breadcrumbs a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #f5c518;
  transition: width 0.3s ease;
}
#breadcrumbs a:hover::after {
  width: 100%;
}

#breadcrumbs li:nth-child(2) {
  color: #777;
  font-size: 18px;
}

.breadcrumb_last {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(245, 197, 24, 0.4);
}

@media (max-width: 768px) {
  .breadcrumb-container {
    padding: 15px 0;
  }
  #breadcrumbs {
    font-size: 14px;
    gap: 6px;
    flex-wrap: wrap;
  }
  #breadcrumbs li:nth-child(2) {
    font-size: 16px;
  }
}

.started_bonus {
  text-align: center;
  display: flex;
  flex-direction: column;
  color: var(--title);
}
.bonus_num {
  font-size: 50px;
  color: var(--line);
  font-weight: 600;
  line-height: 1;
  margin: 10px 0;
}
.started_payout {
  position: relative;
  color: var(--title);
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.card_item .started_deposit li {
  width: max-content;
  height: auto;
}
.gambling-operator__speed-meter {
  background-image: url(../images/speed-meter.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 25px;
  position: relative;
  width: 45px;
}
.gambling-operator__speed-meter:before {
  background-image: url(../images/speed-needle.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -5px;
  content: "";
  height: 14px;
  left: 9px;
  position: absolute;
  transform-origin: 14px 7px;
  width: 20px;
}
.started_payout_90 .gambling-operator__speed-meter:before {
  transform: rotate(var(--rotation, 90deg));
}
.started_payout_120 .gambling-operator__speed-meter:before {
  transform: rotate(var(--rotation, 120deg));
}
.started_payout_180 .gambling-operator__speed-meter:before {
  transform: rotate(var(--rotation, 180deg));
}
.started_products img {
  width: 40px;
  display: block;
}
.gambling-operator__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}
.started_products {
  display: flex;
  gap: 15px;
  height: auto !important;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--title);
  padding: 10px;
  align-items: flex-end;
}
.started_button p {
  display: inline-block;
  text-decoration: underline;
}
.fantom_btn {
  background-color: var(--cart-button);
  border-bottom: 3px solid var(--active);
  border-radius: var(--border-m);
  color: #fff;
  display: block;
  font-size: 1.125em;
  font-weight: 700;
  padding: 0.5em;
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  width: 90%;
  transition: all 0.3s linear;
}
.started_items > a:hover .fantom_btn {
  background-color: var(--bg-secondary);
  color: var(--bg);
  border-bottom-color: var(--active);
}
.info_start {
  background: radial-gradient(circle at top left, #1b1b1b, #0f0f0f 80%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.info_start::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(245, 197, 24, 0.1);
  filter: blur(100px);
  border-radius: 50%;
  animation: floatGlow 8s ease-in-out infinite alternate;
}
.info_start::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(100px);
  border-radius: 50%;
  animation: floatGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 30px);
  }
}

.info_start .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.info_start h1 {
  font-size: 38px;
  font-weight: 700;
  color: #f5c518;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 20px;
  animation: fadeGlow 2s ease-in-out infinite alternate;
}
@keyframes fadeGlow {
  0% {
    text-shadow: 0 0 10px rgba(245, 197, 24, 0.5);
  }
  100% {
    text-shadow: 0 0 25px rgba(245, 197, 24, 0.8);
  }
}

.info_start .line {
  width: 100px;
  height: 3px;
  background: #f5c518;
  margin: 0 auto 40px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.info_start .line::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  left: -40%;
  animation: shimmer 2s linear infinite;
}
@keyframes shimmer {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}

.info_autor {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

.autor_img img { 
  border: 2px solid #f5c518;
  box-shadow: 0 0 10px rgba(245, 197, 24, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.autor_img img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(245, 197, 24, 0.8);
}

.info_autor p {
  margin: 3px 0;
  font-size: 15px;
  color: #bbb;
}
.info_autor a {
  color: #f5c518;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.info_autor a:hover {
  color: #fff;
}

.date_publick {
  font-size: 14px;
  color: #888;
}
.date_update {
  color: #f5c518;
  font-weight: 500;
}

.info_start p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  animation: fadeInUp 2s ease forwards;
  opacity: 0;
}
.info_start p:nth-of-type(1) {
  animation-delay: 0.5s;
}
.info_start p:nth-of-type(2) {
  animation-delay: 0.7s;
}

@media (max-width: 768px) {
  .info_start {
    padding: 60px 0;
  }
  .info_start h1 {
    font-size: 28px;
  }
  .info_autor {
    flex-direction: column;
    align-items: flex-start;
  }
  .info_start p {
    font-size: 15px;
  }
}

.started_items > a:first-child .fantom_btn {
  background-color: var(--bg-secondary);
  border-bottom-color: var(--bg);
  transition: all 0.3s linear;
}
.started_items > a:first-child:hover .fantom_btn {
  background-color: var(--bg);
  color: var(--btn-first);
}
.started_button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.started_item > p {
  padding-top: 1em;
  text-align: center;
  border-top: 1px solid var(--border-line);
}
.full_btn {
  align-items: center;
  background-color: var(--bg-secondary);
  border-radius: var(--border-l);
  color: var(--bg);
  display: flex;
  font-size: 1em;
  font-weight: 700;
  justify-content: center;
  padding: 0.5em;
  text-align: center;
  gap: 6px;
  margin: 30px 0;
}
.full_btn::before {
  background-image: url(../images/icon-double-chevron-down.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 1em;
  width: 1em;
}
.full_btn::after {
  background-image: url(../images/icon-double-chevron-down.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 1em;
  width: 1em;
}
.emphasized-box {
  background-color: var(--border-line);
  font-size: 16px;
  line-height: 24px;
  margin: 15px 0;
  overflow: hidden;
  padding: 15px 150px;
  position: relative;
  box-sizing: border-box;
  text-align: center;
  max-width: 1100px;
  width: 100%;
  margin: 30px auto;
}
.emphasized-box:before {
  bottom: -10px;
  content: url(../images/emphasis-left.png);
  left: -145px;
  position: absolute;
}
.emphasized-box:after {
  bottom: -10px;
  content: url(../images/emphasis-right.png);
  position: absolute;
  right: -238px;
}
 
.container > p,
.criteria_section p,
.important_section p,
.last_block p {
  margin-bottom: 20px;
}
.greenBullet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 580px;
  gap: 10px;
  font-weight: 600;
  margin: 0 auto 40px;
}
.checklist_box h2 {
  text-transform: uppercase;
  border-bottom: 2px solid var(--line);
  clear: both;
  display: table;
  font-size: 19px;
  margin: 10px auto 20px;
  padding: 7px 0;
  text-align: center;
  width: auto;
}
.checklist_box h2::before {
  border-bottom: 3px solid var(--line);
  bottom: -4px;
  content: "";
  left: 37.5%;
  position: absolute;
  right: auto;
  width: 25%;
}
 
.reviews_section img {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.expandable-list-container {
  background-color: var(--breadcrumbs);
  border-bottom: 3px solid var(--line);
  padding: 10px;
}
.expandable-list-container ul {
  align-items: flex-start;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 auto;
  padding: 0 0 0 40px;
}
.reviews_different {
  padding: 60px 20px;
  background: #1a1a1a;
  color: #f0f0f0;
  border-radius: 16px;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.7);
  animation: fadeIn 1s ease forwards;
}

.reviews_different .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.reviews_different .sub_title {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6a00;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease forwards;
}

.reviews_different h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff9800;
  margin-top: 20px;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease forwards;
}
 
.reviews_different p {
  line-height: 1.8;
  font-size: 1rem;
  color: #ddd;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: 0.2s;
}

.reviews_different a {
  color: #ff6a00;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.reviews_different a:hover {
  color: #ee0979;
}
 
.reviews_different .centerList {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.reviews_different ul.splitTwo {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
  padding: 0;
}

.reviews_different ul li {
  background: #292929;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 500;
  color: #fff;
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews_different ul li:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.7);
}
 
.reviews_different ul li:nth-child(1) { animation-delay: 0.1s; }
.reviews_different ul li:nth-child(2) { animation-delay: 0.2s; }
.reviews_different ul li:nth-child(3) { animation-delay: 0.3s; }
.reviews_different ul li:nth-child(4) { animation-delay: 0.4s; }
 
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
 
@media (max-width: 768px) {
  .reviews_different ul li {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.expandable-list-container ul li::marker {
  color: var(--line);
}
.expandable-list-container ul li a {
  color: var(--link);
}

/* Add styles */
.regular {
  gap: 12px;
  transition: all 0.3s linear;
  max-height: 170px;
  overflow: hidden;
}
.show.regular {
  max-height: 10000px;
}

/* -------- */
.list_btn {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  line-height: 48px;
  max-width: 162px;
  box-sizing: border-box;
  width: 100%;
  align-items: center;
  background: linear-gradient(180deg, var(--bg) 50%, var(--border-line) 0);
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  margin: 20px auto;
  flex-direction: row;
  transition: all 0.3s linear;
}
.list_btn:hover {
  background: var(--bg-secondary);
  color: var(--bg);
}
.expandable-list-container {
  margin-bottom: 40px;
}
.form_box {
  background: var(--bg-secondary);
  width: 90%;
  max-width: 800px;
  box-sizing: border-box;
  margin: 0 auto 30px;
  border-radius: var(--border-m);
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1.3fr;
}
.form_content {
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form_content h5 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
  color: var(--bg);
}
.form_content h5 span {
  color: var(--active);
  font-size: 0.9em;
  display: block;
}
.sub-form__description {
  color: var(--bg);
  font-size: 12px;
  margin: 0 0 20px;
}
.form_item label {
  color: var(--bg);
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  text-align: left;
}
.form_item input {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--bg);
  border-radius: var(--border-s);
  box-sizing: border-box;
}
.form_group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.custom-checkbox-wrapper input {
  cursor: pointer;
}
.custom-checkbox-wrapper {
  color: var(--bg);
  font-size: 14px;
}
.custom-checkbox-wrapper a {
  color: var(--active);
}
.btn_submit {
  align-items: center;
  background-color: var(--btn-first);
  border: none;
  border-radius: var(--border-s);
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-weight: 600;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  position: relative;
  transition: 2s linear all;
  width: 100% !important;
  margin-top: 20px;
}
.btn_submit:hover {
  background: var(--active);
}
 
.footer {
  background-color: var(--bg-secondary);
  border-top: 10px solid var(--cart-button);
  position: relative;
  padding: 50px 0 20px;
}
.footer_nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.footer_nav a {
  color: var(--bg);
  padding: 10px 20px;
  box-sizing: border-box;
  display: block;
  border-bottom: 1px solid var(--cart-button);
  transition: all 0.3s linear;
}
.footer_nav a:hover {
  color: var(--line);
}
.footer_center {
  max-width: 500px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 40px;
}
.footer_center img {
  display: block;
  width: 100%;
}
.footer_center ul {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.footer_center ul img {
  width: 20px;
}
.footer_discription {
  max-width: 1000px;
  margin: 0 auto 50px;
}
.footer_discription h4 {
  font-weight: 700;
  color: var(--bg);
}
.footer_discription p {
  color: var(--bg);
  font-size: 0.9rem;
  margin: 0;
}
.footer_logos p {
  color: var(--bg);
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer_logos ul {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}
footer a {
  transition: all 0.3s linear;
}
footer a:hover {
  opacity: 0.7;
}
.footer_bottom {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.copy {
  text-align: center;
  color: var(--bg);
  font-size: 14px;
  margin-top: 30px;
}
.title_mob {
  display: none;
}
.header__menu-container {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
} 
.footer {
  background: #0b0b0b;
  color: #eee;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, #00ffd5 0%, #ff00ff 30%, #00aaff 60%, #ffdd00 100%);
  opacity: 0.05;
  animation: rotateBg 30s linear infinite;
  z-index: 0;
}

@keyframes rotateBg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
 
.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 1;
}

 
.footer_nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer_nav li a {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.4s ease;
}

.footer_nav li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00ffd5;
  transition: width 0.4s ease;
}

.footer_nav li a:hover {
  color: #00ffd5;
}

.footer_nav li a:hover::after {
  width: 100%;
}
 
.footer_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.footer_center img {
  width: 150px;
  transition: transform 0.5s ease;
}

.footer_center img:hover {
  transform: rotate(-12deg) scale(1.15);
}

.footer_center ul {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 18px;
}

.footer_center ul li a img {
  width: 28px;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer_center ul li a img:hover {
  filter: grayscale(0%);
  transform: scale(1.4) rotate(-20deg);
}
 
.footer_discription {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  position: relative;
}

.footer_discription::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #00ffd5;
  border-radius: 2px;
}

.footer_discription h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #00ffd5;
}
 
.footer_logos p {
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer_logos ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.footer_logos ul li img {
  width: 80px;
  opacity: 0.7;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 8px #00ffd5);
}

.footer_logos ul li img:hover {
  transform: scale(1.2) rotate(-5deg);
  opacity: 1;
}

.footer_bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.footer_bottom img {
  transition: all 0.3s ease;
}

.footer_bottom img:hover {
  transform: scale(1.3) rotate(15deg);
  filter: drop-shadow(0 0 10px #ff00ff);
} 
.footer .copy {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 40px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
 
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

.footer .container > * {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.footer .container > *:nth-child(1) { animation-delay: 0.2s; }
.footer .container > *:nth-child(2) { animation-delay: 0.4s; }
.footer .container > *:nth-child(3) { animation-delay: 0.6s; }
.footer .container > *:nth-child(4) { animation-delay: 0.8s; }

/* =================== */
/* Адаптив */
/* =================== */
@media(max-width: 768px) {
  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer_center ul {
    justify-content: center;
  }
}

.header__menu-container.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.header__subcategory {
  flex-direction: column;
  gap: 20px;
  padding-left: 18%;
  padding-top: 30px;
}
.header__subcategory a {
  color: var(--bg);
}
.header__subcategory a:hover {
  color: var(--active);
}
.header__subcategory.active {
  display: flex;
}
.header__subcategory {
  display: none;
}
.header__menu-container {
  background: var(--bg-secondary);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100;
}
header {
  position: relative;
}

@media (max-width: 992px) {
  .header__main-menu {
    display: flex;
    flex-direction: column;
  }
  .header__menu-container {
    position: static;
  }
}

/* start */
.main_screen {
  background: url(../images/home-banner-971x446.webp) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3.4em 25px;
}
.main_screen h1 {
  font-size: 70px;
  color: var(--bg);
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 30px;
  position: static;
  border: none;
  text-transform: uppercase;
}
.main_screen p {
  color: var(--bg);
  margin-bottom: 20px;
}
.trust_box__content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--bg);
  text-transform: uppercase;
  font-weight: 17px;
}
.trust_box__content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.line_block {
  padding: 20px 0;
  background: var(--bg-secondary);
  color: var(--bg);
}
.trending_now__heading {
  text-transform: uppercase;
  font-weight: 500;
}
.trending_now__content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.trending_now__links a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--bg);
  font-size: 14px;
}
.trending_now__links img {
  width: 20px;
  filter: invert(1);
  display: block;
}
.trending_now__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.screen_contain {
  max-width: 800px;
}
.slotsbox__image {
  background-color: var(--border-line);
  overflow: hidden;
  position: relative;
  text-align: center;
  height: 100%;
}
.slotsbox__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}
.gambling_categoty_item {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid var(--light);
  border-radius: 10px;
  margin: 0 auto 30px;
  overflow: hidden;
}
.gambling_categoty_item > div:not(.slotsbox__image) {
  padding: 25px 35px;
}
.gambling_categoty_item h3 {
  color: var(--text);
  padding: 0;
  background: transparent;
}
.rounded-corners-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 21px 0 40px;
}
.rounded-corners-cta__wrapper {
  border-radius: 10px;
  height: 248px;
  overflow: hidden;
  width: 32%;
}
.rounded-corners-cta__primary-image-container {
  height: 130px;
  overflow: hidden;
  width: 100%;
}
.rounded-corners-cta__primary-image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.rounded-corners-cta__description {
  align-items: center;
  border-bottom: 1px solid var(--border-line);
  border-left: 1px solid var(--border-line);
  border-radius: 0 0 10px 10px;
  border-right: 1px solid var(--border-line);
  color: var(--title);
  display: flex;
  font-size: 20px;
  gap: 10px;
  height: 77px;
  box-sizing: border-box;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.howtobox {
  grid-column-gap: 25px;
  display: grid;
  grid-template-areas:
    "num title"
    "photo title"
    "photo textcontent";
  grid-template-columns: 2fr 5fr;
  margin-bottom: 40px;
  padding: 0 25px 0 0;
  border: 1px solid var(--border-line);
  border-radius: 10px;
  overflow: hidden;
}
.sing_up_block {
  margin: 40px 0;
}
.howtobox__num {
  grid-area: num;
  height: 0;
}
.howtobox__num .step-number {
  background-color: var(--link);
  border-radius: 10px 0;
  bottom: 0;
  color: var(--bg);
  display: block;
  font-size: 20px;
  font-weight: 700;
  height: 40px;
  padding-top: 8px;
  position: relative;
  right: 0;
  text-align: center;
  width: 40px;
}
.howtobox__header {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  grid-area: title;
  line-height: 27px;
  padding: 25px 20px 20px;
}
.howtobox__image {
  display: flex;
  grid-area: photo;
  padding-bottom: 15px;
  background: var(--breadcrumbs);
}
.howtobox__image img {
  height: 150px;
  margin: auto;
  width: 150px;
}
.howtobox__content {
  padding: 0 20px 20px;
}
.howtobox__content li {
  list-style: disc;
  margin: 0 0 10px 20px;
}
.site_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.recent-blogs-link a {
  margin: 30px auto;
  text-align: center;
}

/* card_item */

.title_fix_card {
  background: var(--border-line);
}
.item_cart_bonus {
  font-weight: 700;
  font-size: 14px;
  padding: 20px 15px;
  text-align: center;
}
.item_cart_bonus span {
  color: var(--line);
}
.flag span {
  color: var(--cart-button);
  width: 20px;
  height: 20px;
  display: flex;
  font-weight: 700;
  line-height: 0;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding-bottom: 2px;
  box-sizing: border-box;
  overflow: hidden;
  border: 2px solid var(--cart-button);
}
.flag {
  display: flex;
  align-items: center;
  gap: 10px;
}
.title_fix_card_group {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.logo_card img {
  display: block;
  height: 70px;
}
.logo_card {
  padding: 0 7%;
  background: var(--bg-secondary);
}
.button_play_now {
  background: var(--play-button);
  border-radius: 22px;
  box-shadow: 0 3px var(--cart-button);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  height: 44px;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 190px;
  transition: all 0.3s linear;
}
.button_play_now:hover {
  background: var(--cart-button);
}
.review-ratingbox__starrating {
  align-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 10px;
}
.star-rating {
  display: inline-block;
  height: 47px;
  margin: auto;
  position: relative;
  width: 15.3em;
}
.star-rating__overlay {
  background: url(../images/review-star-icon.png);
  background-position: 0;
  background-size: 49px;
  height: 98.5%;
  left: 0;
  position: absolute;
  top: 0;
}
.star-rating__underlay {
  filter: grayscale(1);
  width: 100%;
}
.star-rating__overlay {
  z-index: 1;
}
.review_cart {
  align-items: center;
  border: 2px solid var(--border-line);
  border-radius: 20px;
  display: flex;
  padding: 20px;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}
.review_logo {
  margin-bottom: 20px;
  display: block;
  max-width: 150px;
}
.review_logo img {
  display: block;
  width: 100%;
}
.info_content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.review_cart{
  order: -1;
}
.review_cart p {
  font-weight: 700;
}

.review-table-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 20px auto;
  max-width: 90%;
}
table {
  width: 100%;
}

th {
  background-color: var(--bg-secondary);
  border-right: 5px solid var(--line);
  color: var(--bg);
  padding: 15px 0;
  width: auto;
}
.review-table-container td {
  border: 1px solid var(--border-line);
  font-size: 12px;
  font-weight: 700; 
  padding-left: 8px;
  text-align: left;
}
td {
  border: 1px solid var(--border-line);
  font-size: 12px;
  font-weight: 700; 
  padding-left: 8px;
  vertical-align: middle;
  text-align: left;
}
.primary {
  margin-bottom: 40px;
}
table.primary tbody tr:nth-child(odd) {
  background: var(--breadcrumbs);
}
.primary thead,
.primary tbody {
  width: 100%;
  display: table;
  text-align: center;
}
.primary td {
  width: 24%;
  padding: 10px;
  box-sizing: border-box;
  box-sizing: border-box;
  text-wrap: auto;
}
.primary td {
  text-align: center;
  font-weight: 800;
  font-size: 14px;
}
td .review-table-button a {
  color: #fff;
  display: inline-block;
  font-weight: 300;
  height: 100%;
  box-sizing: border-box;
  padding-top: 5px;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}
td .review-table-button {
  background-color: var(--line);
  border-radius: 18px;
  box-shadow: 0 2px #557227;
  display: inline-block;
  height: 30px;
  margin: 5px auto auto;
  text-align: center;
  width: 100%;
}
.review-proscons { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  box-sizing: border-box;
  margin: 40px auto 40px;
}
.review-proscons__pros {
  display: flex;
  flex-direction: column;
  margin: 20px;
  border: 1px solid var(--border-line);
  padding: 20px;
}
.review-proscons__pros .pros-title {
  align-self: center;
  color: var(--line);
  display: flex; 
  align-content: center;
  justify-content: center;
  margin: 20px;
  width: 100%;
  align-items: center;
}
.review-proscons .prosconsListItem {
  margin: 10px 10px 10px 0;
}
.review-proscons__cons .cons-title {
  align-self: center;  
  color: #a84848;
  display: flex;
  align-content: center;
  justify-content: center; 
  align-items: center;
  margin: 20px;
  width: 100%;
}
.review-proscons__cons {
  display: flex;
  flex-direction: column;
  margin: 20px;
  border: 1px solid var(--border-line);
  padding: 20px;
}
/* Псевдоэлементы для prosconsListItem */
.prosItem.prosconsListItem::before {
  content: "✔";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--line);
  color: var(--bg);
  font-size: 16px;
  margin-right: 8px;
}
.consItem.prosconsListItem::before {
  content: "✔";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cart-button);
  color: var(--bg);
  font-size: 16px;
  margin-right: 8px;
}
.emphasized-box--green {
  background-color: var(--border-line);
  font-size: 18px;
  line-height: 24px;
  margin: 15px 0;
  box-sizing: border-box;
  overflow: hidden;
  padding: 15px 40px;
  position: relative;
  text-align: center;
  width: 100%;
}
.emphasized-box--green:before {
  bottom: -10px;
  content: url(../images/emphasis-left-green.png);
  left: -238px;
  position: absolute;
}
.emphasized-box--green:after {
  bottom: -10px;
  content: url(../images/emphasis-right-green.png);
  position: absolute;
  right: -238px;
}
.emphasized-box--green .titleText {
  display: block;
  font-weight: 700;
  padding: 0 0 10px;
}
table.primary {
  display: block;
  margin: 30px 0;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
}
th {  
  color: #fff;
  padding: 15px 0;
  width: 225px;

}
table.primary thead tr {
  background: var(--bg-secondary);
  border: 1px solid var(--border-line);
  color: var(--bg);
  font-size: 1em;
  font-size: 0.75em;
  padding: 2px;
  min-height: 30px;
  white-space: nowrap;
  width: 0.1%;
}
.casino_img img {
  display: block;
  max-width: 900px;
  margin: 20px auto 40px;
  width: 100%;
}
.slot_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}
.wrapper_card p {
  margin-bottom: 20px;
}
.list_d li {
  list-style: disc;
  margin: 0 0 10px 20px;
}
.list_d li::marker {
  color: var(--line);
}
.title_slot {
  font-weight: 800;
  color: var(--line);
  font-size: 1.2rem;
}
.slot_img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: 0 1px 7px var(--border-line);
  overflow: hidden;
  min-width: 150px;
}
.slot_img img {
  max-width: 1000px;
  max-height: 1000px;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.slot_content {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}
.ram_action img {
  display: block;
  width: 160px;
  margin-bottom: 20px;
}
.review-toc__links a {
  display: inline-block;
  margin-left: 10px;
  text-decoration: underline;
}
.ram_action {
  box-sizing: border-box;
  background: var(--breadcrumbs);
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 30px 0 40px;
  padding: 20px 10px 0;
  text-align: center;
  position: relative;
  border-radius: var(--border-s);
  width: 100%;
} 
.back-to-top-area {
  background: var(--border-line);
  border: 1px solid var(--light);
  border-radius: 50px 0 0 50px;
  border-right: 0;
  bottom: 40px;
  right: 0;
  cursor: pointer;
  display: block;
  height: 100px;
  line-height: 1.4;
  padding-bottom: 0;
  position: fixed;
  width: 64px;
  z-index: 9999;
  display: none;
}
#back_to_top_button {
  display: flex;
  padding: 12px 0;
  padding: 20px 0 0 10px;
  flex-direction: column;
  align-items: center;
}
.back-to-top-area span {
  display: block;
  text-align: right;
  font-size: 12px;
}
.below-fold .back-to-top-area a {
  align-items: center;
  color: var(--bg-secondary);
  display: inline-flex;
  flex-direction: column;
  font-size: 12px;
  height: 100%;
  justify-content: center;
  padding-left: 8px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  width: 100%;
}
.table_block {
  background: #121212; 
  padding: 50px 20px;
  border-radius: 30px;
  max-width: 1200px;
  margin: 40px auto;
  color: #e0e0e0;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;
}
.table_block:hover {
  transform: translateY(-5px);
}
 
.review-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
  font-size: 14px;
  color: #bbb;
}

.review-toc__title {
  font-weight: 700;
  color: #ffb100;
  margin-right: 12px;
}

.review-toc__links a {
  margin-right: 12px;
  margin-bottom: 10px;
  color: #1ec1f4;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 8px;
  background: #161e34;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.review-toc__links a:hover {
  color: #fff;
  background: linear-gradient(90deg, #ff3f3f, #ff9500);
  box-shadow: 0 0 10px #ff9500, 0 0 20px #ff3f3f;
}
 
.review-table-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.review-table-left,
.review-table-right {
  flex: 1 1 300px;
  background: #1f1f1f;
  border-radius: 25px;
  padding: 25px 20px;
  box-shadow: 0 10px 30px rgba(255, 149, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-table-left:hover,
.review-table-right:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(255, 149, 0, 0.5), 0 0 20px #ff3f3f;
}

.review-table-left th,
.review-table-right th {
  text-align: left;
  font-weight: 700;
  color: #ff9500;
  padding: 10px 10px;
  border: 1px solid #fff;
}

.review-table-left td,
.review-table-right td {
  padding: 10px 5px;
  color: #ccc;
}

.review-table-left a,
.review-table-right a {
  color: #1ec1f4;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.review-table-left a:hover,
.review-table-right a:hover {
  color: #ff9500;
}
 
.review-table-bonus {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.review-table-bonustext {
  font-weight: 700;
  color: #ff3f3f;
  font-size: 16px;
}

.review-table-button a {
  background: linear-gradient(135deg, #ff3f3f, #ff9500);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255, 149, 0, 0.5);
  transition: all 0.3s ease, transform 0.3s ease;
}

.review-table-button a:hover {
  transform: scale(1.05) rotate(-2deg);
  background: linear-gradient(135deg, #ff9500, #ff3f3f);
  box-shadow: 0 10px 25px rgba(255, 149, 0, 0.7);
}
 
.review-proscons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.review-proscons__pros,
.review-proscons__cons {
  flex: 1 1 300px;
  background: #1f1f1f;
  border-radius: 25px;
  padding: 25px 20px;
  box-shadow: 0 10px 30px rgba(0, 255, 153, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-proscons__pros:hover,
.review-proscons__cons:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 255, 153, 0.5), 0 0 20px #ff3f3f;
}
 
.pros-title span {
  font-weight: 700;
  color: #00ff99;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cons-title span {
  font-weight: 700;
  color: #ff3f3f;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
 
.prosItem,
.consItem {
  display: flex;
  align-items: center;
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
  position: relative;
  padding-left: 35px;
}
 
.prosItem::before,
.consItem::before {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
}

.prosItem::before {
  background-image: url('./assets/images/check-icon.svg'); 
}

.consItem::before {
  background-image: url('./assets/images/cross-icon.svg');  
}
 
@keyframes glowPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 5px #00ff99; }
  50% { transform: scale(1.2); box-shadow: 0 0 15px #00ff99; }
}

.prosItem::before {
  animation: glowPulse 1.5s infinite;
}
 
@media(max-width: 992px) {
  .review-table-container,
  .review-proscons {
    flex-direction: column;
  }

  .review-toc {
    flex-direction: column;
    gap: 10px;
  }

  .review-toc__links a {
    margin: 0 5px 5px 0;
  }
}

/* slot */
.nav_right {
  background: var(--breadcrumbs);
  border: 1px solid #cfd6eb;
  border-radius: 10px;
  padding: 47px;
  box-sizing: border-box;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.102);
}
.nav_right .sub_title {
  border: none;
}
.nav_right .sub_title::before,
.nav_right .sub_title::after {
  content: none;
}
.links__list li a {
  color: var(--link);
  line-height: 1.5;
}
.links__list li::before {
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 15px;
  margin: 0 5px -2px 0;
  width: 10px;
}
.grid_section {
  display: grid;
  grid-template-columns: auto 500px;
  gap: 10%;
  margin: 0 0 40px;
}
.date_publick {
  color: var(--text-cart);
}
.title_operators__heading {
  color: var(--bg);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.02px;
  text-transform: uppercase;
}
.slot_section {
  background: var(--link);
  padding: 42px 0 100px;
}
.slot_section > div {
  max-width: 1200px;
}
.slot_top_title a {
  color: var(--bg);
  font-weight: 800;
  text-decoration: underline;
}
.slot_top_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 2em;
}
.operator_details {
  padding: 23px;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  text-align: center;
  background: var(--bg);
  max-width: 332px;
  border-radius: 10px;
}
.topfive_operators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.star_rating {
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.911' height='17.986' viewBox='0 0 20.911 19.986'%3E%3Cg id='Group_141' data-name='Group 141' transform='translate(0 0)'%3E%3Cpath id='Path_543' data-name='Path 543' d='M6.84,7.1,0,7.628l5.223,4.447L3.612,18.744l5.844-3.593L15.3,18.744l-1.612-6.668,5.223-4.447L12.072,7.1,9.456.758Z' transform='translate(0 -0.758)' fill='%23FF6B0F'/%3E%3Cpath id='Path_544' data-name='Path 544' d='M503.4,15.15l5.844,3.593-1.612-6.668,5.223-4.447-6.84-.528L503.4.758Z' transform='translate(-493.94 -0.758)' fill='%23FF6B0F'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  height: 24px;
  width: 24px;
}
.details_star {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.87rem;
}
.logo_img {
  display: block;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
  margin-top: 12px;
  max-width: 300px;
  overflow: hidden;
  width: 90%;
}
.logo_img img {
  max-width: 1000px;
  max-height: 1000px;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.operator_details p {
  font-size: 18px;
  font-weight: 600;
}
.operator_details .welcome_bonus {
  text-transform: uppercase;
}

.operators__button {
  background-color: var(--cart-button);
  border-bottom: none;
  border-radius: 10px;
  color: var(--bg);
  display: block;
  font-size: 18px;
  box-sizing: border-box;
  font-weight: 700;
  margin-bottom: 19px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  text-transform: uppercase;
  margin-top: 20px;
}
.operator_reviewlink {
  font-size: 14px;
  text-decoration: underline;
  font-weight: 300;
  color: var(--text);
}
.our_blogItitle {
  background-color: var(--bg-secondary);
  border-bottom: 5px solid var(--cart-button);
  border-radius: 10px 10px 0 0;
  font-weight: 700;
  height: 60px;
  display: flex;
  align-items: center;
  align-items: center;
}
.our_blogItitle h3 {
  color: var(--bg);
  margin: 0;
  font-size: 22px;
  box-sizing: border-box;
  font-weight: 500;
  background: transparent;
}
.blog-feed-sidebar__post-container h4 {
  color: var(--title);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 14px;
  text-decoration: underline;
}
.blog-feed-sidebar__post__image {
  border-radius: 5px;
  height: 70px;
  width: 125px;
  overflow: hidden;
}
.blog-feed-sidebar__post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.blog-feed-sidebar__post__keepreading {
  color: var(--line);
  display: block;
  font-size: 13px;
  text-decoration: underline;
}
.gr_item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-feed-sidebar__post-container {
  background-color: var(--breadcrumbs);
  border: 1px solid var(--border-line);
  border-radius: 0 0 10px 10px;
}
.blog-feed-sidebar__post {
  padding: 10px;
  border-bottom: 1px solid var(--border-line);
  display: block;
  box-sizing: border-box;
}
.right_info_box {
  max-width: 370px;
}
.simple-operator-cta__logo-link {
  display: block;
  width: 90%;
  margin: 0 auto;
}
.simple-operator-cta__logo-link img {
  display: block;
  width: 100%;
}
.grid_boxes {
  display: grid;
  grid-template-columns: 65% 30%;
  gap: 5%;
  justify-content: space-between;
  position: relative;
  padding: 50px 0;
}
h2 {
  font-size: 38px;
  line-height: 46px;
  margin: 20px 0 15px;
}
.wp-block-table {
  margin-bottom: 30px;
}
.wp-block-table.is-style-gsorg-centered-text-table table tr td {
  border: 1px solid var(--light);
  border-top: 0;
  padding: 20px 12px;
  box-sizing: border-box;
  color: #a18282;
  text-align: center;
  position: relative;
}
.wp-block-table.is-style-gsorg-centered-text-table table tr:nth-child(2n) {
  background-color: var(--breadcrumbs);
}
.slotsbox {
  display: grid;
  grid-template-areas:
    "title title title"
    "photo description info";
  grid-template-columns: 220px 2fr 1fr;
  border: 1px solid var(--light);
  border-radius: 10px;
  margin: 0 auto 30px;
  overflow: hidden;
}

.slotsbox_img {
  background-color: var(--breadcrumbs);
  grid-area: photo;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.slotsbox_img img {
  max-width: 1000px;
  width: 100%;
  display: block;
  max-height: 1000px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slotsbox_info {
  border-bottom: 0;
  margin: 25px 35px;
  padding-right: 20px;
  grid-area: description;
}
.slotsbox_more_info {
  grid-area: info;
  padding: 45px 25px 25px 0;
}
.slotsbox__button {
  background-color: var(--bg);
  border: 1px solid var(--title);
  border-radius: 7px;
  color: var(--title);
  display: flex;
  font-size: 15px;
  align-items: center;
  font-weight: 700;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  width: -moz-fit-content;
  transition: all 0.3s linear;
  width: fit-content;
}
.slotsbox__button:hover {
  background-color: var(--title);
  color: var(--bg);
}
.slotsbox {
  display: grid;
  grid-template-areas:
    "title title title"
    "photo description info";
  grid-template-columns: 220px 2fr 1fr;
}
.left_top_block p {
  margin-bottom: 20px;
}
.slotsbox_info h3 {
  background: none;
  color: var(--title);
  padding: 0;
}
.slotsbox_info p {
  margin-bottom: 20px;
}
.slotsbox__additional_info {
  font-weight: 600;
  margin: 0 0 15px;
}
.slotsbox__additional_info span {
  font-weight: 400;
  display: block;
}
.slot_cart_group {
  grid-row-gap: 10px;
  background-color: var(--breadcrumbs);
  border: 1px solid var(--light);
  border-radius: 20px;
  grid-template-areas:
    "photo"
    "title"
    "text-content";
  margin: 20px auto 20px;
  padding: 30px 20px 30px 70px;
  position: relative;
  width: 90%;
  box-sizing: border-box;
  margin-left: auto;
}
 
.icon_background img {
  width: 70px;
  display: block;
}
.text_slot_cart {
  grid-area: title;
}
.text_slot_cart h3 {
  color: var(--title);
  background: transparent;
  padding: 0;
}
.online_slot_game {
  margin-top: 60px;
}
.is-style-gsorg-fixed-horizontal-table table tr td {
  text-align: center;
}
.wp-block-table.is-style-gsorg-fixed-horizontal-table
  table
  tr
  td:first-of-type {
  background-color: #f5f7fa;
}
.types_slot p {
  margin-bottom: 20px;
}
.real_slot {
  margin-top: 70px;
}
.info-box {
  grid-column-gap: 30px;
  grid-row-gap: 10px;
  border: 1px solid #adbdd4;
  border-top: 7px solid var(--title);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 5px 25px rgba(28, 45, 68, 0.102);
  display: grid;
  grid-template-areas:
    "photo title"
    "photo box-content";
  margin: 0 auto 25px;
  max-width: 945px;
  padding: 25px;
}
.info-box__title {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}
.slot_list_popular li {
  padding: 20px;
  background-color: var(--breadcrumbs);
  border: 1px solid var(--light);
  border-radius: 20px;
  margin: 20px auto;
}
.slot_list_popular h3 {
  color: var(--title);
  padding: 0;
  background: transparent;
  margin-bottom: 10px;
}
.popular_provider {
  margin-top: 70px;
}
.testimonials__wrapper {
  border: 1px solid #bbc4d8;
  border-radius: 10px;
  padding: 45px 12px 25px;
  position: relative;
  display: flex;
  flex-direction: column !important;
  box-sizing: border-box;
  
}
.testimonials__img {
  height: 67px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 67px;
  overflow: hidden;
  position: absolute;
  transform: translateX(-50%);
}
.testimonials__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}
.testimonials__wrapper--answer:before {
  background: url(./assets/images/icon-arrow-down.svg);
  background-repeat: no-repeat;
  content: "";
  display: block;
  filter: invert(85%) sepia(85%) saturate(1605%) hue-rotate(198deg)
    brightness(97%) contrast(89%);
  height: 18px;
  left: 50%;
  position: absolute;
  top: 0;
  top: -58px;
  transform: translateX(-50%);
  width: 16px;
}
.testimonials__wrapper--answer {
  background-color: var(--breadcrumbs);
  border-color: var(--link);
  margin-top: 20px;
}
.testimonials__wrapper {
  padding: 26px 58px 35px;
  width: 90%;
}
.testimonials__single {
  margin-bottom: 42px;
  margin-left: 34px;
}
.slot_questions {
  margin-top: 70px;
}
.slot_questions > p {
  margin-bottom: 20px;
}
.testimonials__wrapper--answer {
  margin-left: 46px;
}
.recent-blogs-posts .recent-blog {
  border: 1px solid var(--light);
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  flex-shrink: 0;
  gap: 10px;
  max-width: 500px;
  padding-bottom: 30px;
  text-decoration: none;
  width: 32%;
  box-sizing: border-box;
}
.recent-blogs-posts .recent-blog__image {
  max-height: 344px;
}
.recent-blogs-posts .recent-blog__category {
  border-radius: 5px;
  color: var(--bg);
  font-size: 12px;
  font-weight: 400;
  font-weight: 700;
  margin-left: 25px;
  padding: 2px 10px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--olive);
}
.recent-blogs-posts .recent-blog__title h4 a {
  color: var(--title);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}
.recent-blog__title  a{
  padding-left: 20px;
  color: var(--bg) !important;
}
.recent-blog__author img {
  border-radius: 50px;
  margin-right: 10px;
}
.recent-blogs-posts .recent-blog__date {
  color: var(--bg-active);
  font-size: 14px;
  font-weight: 400;
  margin-left: 25px;
}
.recent-blogs-posts .recent-blog__author {
  color: var(--link);
  font-size: 14px;
  font-weight: 400;
  margin-left: 25px;
  display: flex;
  align-items: center;
  text-decoration: underline;
}

.recent-blogs-posts {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
}
.recent-blog__image img {
  max-width: 1000px;
  max-height: 1000px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.recent_blogs_link a {
  margin: 30px auto;
  text-align: center;
}
.explore_slot {
  margin-top: 70px;
}
.left_info_box p {
  margin: 0 0 20px;
}
.wp-block-list a {
  list-style: upper-alpha;
}
.wp-block-list li {
  list-style: disc;
  margin: 0 0 10px 20px;
}
.group_btn {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.reels_block h3 {
  padding: 0;
  background: transparent;
  color: var(--line);
}
.bottom-author-block {
  background-color: var(--breadcrumbs);
  border: 1px solid #bbc4d8;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0;
  padding: 25px 15px 10px;
}
.author__avatar {
  align-self: start;
  height: 140px;
  margin: 0 50px 0 auto;
  width: 140px;
  overflow: hidden;
  position: relative;
  clip-path: circle(50%);
}
.author__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all .3s linear;
}
.bottom-author-block:hover img{
  transform: scale(1.1);
}
.author__name {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.author__name a {
  text-decoration: underline;
}
.author__bio {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.author__title {
  font-weight: 700;
  margin: 0 0 20px;
  font-size: 24px;
}
.author-name {
  padding-right: 10px;
  border-right: 1px solid var(--light);
  margin-right: 10px;
}
.autor_grid {
  display: grid;
  grid-template-columns: 140px auto;
  gap: 40px;
}
.author__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.avt_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.simple-oeprator-cta__widget-content {
  padding: 29px 32px;
}
.simple-operator-cta__widget-heading {
  background: var(--bg-secondary);
  border-bottom: 5px solid var(--cart-button);
  color: var(--bg);
  display: block;
  font-size: 30px;
  padding: 20px 15px;
  text-align: center;
}
.simple-operator-cta {
  background: var(--breadcrumbs);
  border: 1px solid var(--border-line);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
}
.simple-operator-cta__bonus-text {
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
}
.simple-operator-cta__bonus-text .dollar-value {
  color: #0fff00;
  font-size: 28px;
  font-weight: 700;
}
.simple-operator-cta__bonus-heading {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.info-box__content p {
  margin: 0;
}
.simple-operator-cta__bonus {
  text-align: center;
}
.info-box {
  gap: 20px;
}
.simple-operator-cta__reviewlink {
  color: var(--title);
  text-decoration: underline;
  font-weight: 300;
  text-align: center;
  display: block;
  width: max-content;
  margin: 0 auto;
}
.grid_container {
  position: relative;
}
.page-sidebar__widget {
  position: sticky;
  top: 100px;
  height: max-content;
}
.our_blog {
  margin: 0 0 100px;
}
 
.get_started {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  color: #fff;
  padding: 60px 0; 
  overflow: hidden;
}

.get_started .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.get_started p {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffffff7f;
}

/* Заголовки таблицы */
.started_header {
  display: grid;
  grid-template-columns: 50px 2fr 2fr 1fr 1fr 2fr 1fr;
  gap: 10px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #ffcc00;
}

.title_mob {
  display: none;
}
 
.started_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.started_item {
  background: #1e1e1e;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.started_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 204, 0, 0.5);
}
 
.box_cart_started {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card_item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-decoration: none;
  color: inherit;
}
 
.started_rank {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffcc00;
}

.started_logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.started_logo img {
  border-radius: 50%;
  border: 2px solid #ffcc00;
  transition: transform 0.3s ease;
}

.started_logo img:hover {
  transform: scale(1.1) rotate(-5deg);
}

.started_logo p {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #00ff00;
}
 
.started_deposit {
  display: flex;
  gap: 10px;
}

.started_deposit li img {
  width: 35px; 
  transition: transform 0.3s ease;
}

.started_deposit li img:hover {
  transform: scale(1.2);
} 
.started_bonus {
  background: #ffcc00;
  color: #1a1a1a !important;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  animation: pulse 2s infinite;
}
.started_bonus p{
  color: #000 !important;
}
.get_started .bonus_num {
  font-size: 2.5rem;
  margin: 0;
  font-weight: bold;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
 
.started_payout {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gambling-operator__speed-meter {
  width: 60px;
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(to right, #00ff00, #ffcc00, #ff0000);
  animation: loading 2s infinite linear;
}

@keyframes loading {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}
 
.text_block_items {
  background: radial-gradient(circle at top left, #121212, #0a0a0a 70%);
  padding: 80px 20px;
  color: #e0e0e0;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}
 
.text_block_items::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0,255,204,0.3), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: pulseGlow 5s infinite ease-in-out;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
 
.text_block_items .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
} 
 
.text_block_items .sub_title {
  font-size: 32px;
  font-weight: 800;
  color: #00ffc3;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 10px rgba(0,255,204,0.7);
}

.text_block_items .sub_title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, #ff005c, #ffb100);
  border-radius: 2px;
}
 
.text_block_items p {
  font-size: 16px;
  margin-bottom: 18px;
  color: #c9c9c9;
  transition: color 0.3s ease;
}
.text_block_items p:hover {
  color: #fff;
}
 
.text_block_items ul.greenBullet {
  list-style: none;
  margin: 25px 0;
  padding: 0;
}

.text_block_items ul.greenBullet li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #e0e0e0;
}

.text_block_items ul.greenBullet li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ff99;
  font-weight: bold;
  font-size: 18px;
  text-shadow: 0 0 8px rgba(0,255,153,0.6);
}
 
.text_block_items h3 {
  margin-top: 40px;
  color: #ffb100;
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 0 6px rgba(255,177,0,0.7);
}
 
.text_block_items p:last-of-type {
  font-style: italic;
  border-left: 4px solid #ff3f3f;
  padding-left: 15px;
  margin-top: 15px;
  color: #fff;
  background: rgba(255, 63, 63, 0.05);
  border-radius: 6px;
}
 
@media (max-width: 768px) {
  .text_block_items {
    padding: 60px 15px;
  }
  .text_block_items .sub_title {
    font-size: 26px;
  }
}

.started_products {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gambling-operator__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
  gap: 5px;
  color: #dbe6c4;
}

.gambling-operator__product img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.gambling-operator__product:hover img {
  transform: scale(1.3) rotate(10deg);
}

/* Кнопка */
.started_button .fantom_btn {
  background: linear-gradient(45deg, #ffcc00, #ff9900);
  padding: 10px 20px;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.started_button .fantom_btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ffcc00;
}
.bonus_section {
  background: linear-gradient(135deg, #0b0b0f 0%, #111116 100%);
  color: #eaeaea;
  padding: 80px 25px;
  position: relative;
  overflow: hidden;
}

.bonus_section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 0, 120, 0.3), transparent 70%);
  filter: blur(60px);
  animation: bonusGlow 6s ease-in-out infinite;
}
.bonus_section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 255, 204, 0.25), transparent 70%);
  filter: blur(60px);
  animation: bonusGlow 8s ease-in-out infinite;
}
@keyframes bonusGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}
 
.bonus_section .container {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
} 
.bonus_section .sub_title {
  font-size: 36px;
  font-weight: 800;
  color: #00ffc8;
  text-shadow: 0 0 15px rgba(0, 255, 200, 0.7);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.bonus_section .sub_title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 90%;
  height: 3px;
  background: linear-gradient(90deg, #ff007a, #ffb100);
  border-radius: 3px;
}
 
.bonus_section p {
  font-size: 16px;
  color: #c9c9c9;
  margin-bottom: 18px;
  line-height: 1.7;
  transition: color 0.3s ease;
}
.bonus_section p:hover {
  color: #ffffff;
}
 
.bonus_section h3 {
  color: #ffb347;
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
  text-shadow: 0 0 6px rgba(255, 179, 71, 0.7);
}

.bonus_section h3::before {
  content: "🎁";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
}
 
.bonus_section a {
  color: #00ffc8;
  text-decoration: none;
  transition: 0.3s;
}
.bonus_section a:hover {
  color: #ff007a;
  text-shadow: 0 0 10px rgba(255, 0, 122, 0.6);
}
 
.bonus_section ul.list_d {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.bonus_section ul.list_d li {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #00ffc8;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.bonus_section ul.list_d li::before {
  content: "⭐";
  margin-right: 6px;
  color: #ffb100;
}

.bonus_section ul.list_d li:hover {
  background: rgba(0, 255, 200, 0.08);
  transform: translateY(-3px);
  border-left-color: #ff007a;
}
 
.emphasized-box--green {
  background: linear-gradient(135deg, rgba(0,255,153,0.15), rgba(0,255,153,0.05));
  border: 1px solid rgba(0,255,153,0.4);
  border-left: 5px solid #00ffc3;
  padding: 20px 25px;
  border-radius: 10px;
  color: #e7ffe7;
  margin-top: 35px;
  box-shadow: 0 0 25px rgba(0,255,153,0.1);
}

.emphasized-box--green .titleText {
  display: block;
  color: #00ffc8;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}
 
@media (max-width: 768px) {
  .bonus_section {
    padding: 60px 15px;
  }
  .bonus_section .sub_title {
    font-size: 28px;
  }
  .bonus_section ul.list_d {
    grid-template-columns: 1fr;
  }
}

.btn_read_review {
  display: inline-block;
  margin-top: 10px;
  color: #ffcc00;
  text-decoration: underline;
  transition: color 0.3s ease;
  display: none;
}

.btn_read_review:hover {
  color: #ffffff;
}
 
.full_btn {
  display: block;
  text-align: center;
  margin: 40px auto 0;
  padding: 15px 40px;
  border-radius: 10px;
  background: linear-gradient(45deg, #ff9900, #ffcc00);
  font-weight: bold;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.full_btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #ffcc00;
}

.started_header{
  display: none;
}
@media (max-width: 768px) {
  .started_header {
    display: none;
  }
  .title_mob {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffcc00;
    margin-bottom: 20px;
  }
}

.hover_content {
  background-color: var(--breadcrumbs);
  border: 1px solid var(--light);
  border-radius: 6px;
  display: flex;
  font-size: 12px;
  gap: 8px;
  line-height: 18px;
  margin: 12px 0;
  padding: 8px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s linear;
  margin-bottom: 40px;
}
.hover_content > span {
  font-size: 12px;
  font-weight: 700;
  display: block;
  width: max-content;
  min-width: fit-content;
}
.hover_content:hover {
  background: var(--bg-secondary);
  color: var(--bg);
}
.hover_item {
  display: none;
  margin: 0;
}
.hover_content:hover .hover_item {
  display: block;
}
.online_casino__title h3 {
  background: none var(--title);
  border-radius: 10px 10px 0 0;
  color: var(--bg);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 16px;
  min-height: 55px;
  margin: 0;
  box-sizing: border-box;
  padding: 12px 10px 10px;
  text-align: center;
  width: 100%;
}
.online_casino__info {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  text-align: center;
}
.casino__info_left {
  margin: 0 auto;
  width: 197px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.casino__info_left p {
  margin: 30px 0 0;
}
.casino__info_left img {
  display: block;
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
}
.operator-star-rating__overlay,
.operator-star-rating__underlay {
  background: url(../images/review-star-icon.png);
  background-position: 0;
  background-size: 23px;
  height: 98.8%;
  left: 0;
  position: absolute;
  top: 0;
}
.operator-star-rating__overlay {
  z-index: 1;
}
.operator-star-rating__underlay {
  filter: grayscale(1);
  width: 100%;
}
.operator-star-rating {
  display: inline-block;
  height: 20px;
  margin: auto;
  position: relative;
  width: 116px;
}
.operatorCard__bonus {
  color: var(--link);
  display: table;
  font-size: 20px;
  font-weight: 700;
  margin: 17px auto 10px;
  text-align: center;
}
.operatorCard__action {
  padding-right: 40px;
}
.operatorCard__bonus span {
  color: var(--title);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}
.operatorCard__bonus span.welcome-text {
  color: #f5c518;
  display: table;
  font-size: 16px;
  font-weight: 700;
  margin: 0 auto;
}
.read_review {
  font-size: 15px;
  text-decoration: underline;
  color: var(--link);
}
.operatorCard__middleBar {
  background-color: var(--breadcrumbs);
  border-bottom: 1px solid var(--border-line);
  border-top: 1px solid var(--border-line);
  display: grid;
  gap: 7px;
  grid-template-columns: 1fr;
  padding: 9px 24px;
  grid-column-gap: 33px;
  align-items: baseline;
  grid-template-columns: 1.1fr minmax(70px, 0.5fr) 1.3fr;
  justify-items: center;
}
.operatorCard__ss img {
  display: block;
  object-fit: cover;
}
.casino__info_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 340px;
}
.operatorCard__middleBar > div > span:first-child {
  font-size: 14px;
  font-weight: 700;
  display: block;
  color: var(--title);
}
.operatorCard__middleBar .more {
  font-size: 14px;
  color: var(--link);
  text-decoration: underline;
  cursor: pointer;
  display: block;
  position: relative;
}
.operatorCard__middleBar span.more-options {
  background: #3e5184;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.071);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 30px;
  width: 320px;
  box-sizing: border-box;
  opacity: 0;
  padding: 19px;
  position: absolute;
  top: 20px;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  z-index: 10;
}
.operatorCard__middleBar span.more:hover .more-options {
  opacity: 1;
  visibility: visible;
}
.online_casino_item {
  border: 1px solid var(--border-line);
  border-radius: 10px;
  margin: 30px 0;
}
.operatorCard__content {
  padding: 20px 30px;
}
.operatorCard__extraDetails-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.operatorCard__extraDetails-wrapper li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  line-height: 1.2;
  font-size: 15px;
  color: #222;
}

.operatorCard__extraDetails-wrapper li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08) inset;
}

.operatorCard__extraDetails-wrapper .pros li i.icon-checkmark-fill {
  background: var(--line);
}
.operatorCard__extraDetails-wrapper .pros li i.icon-checkmark-fill::after {
  content: "✓";
  line-height: 1;
}
.operatorCard__extraDetails-wrapper .cons li i.icon-crossmark-fill {
  background: var(--cart-button);
}
.operatorCard__extraDetails-wrapper .cons li i.icon-crossmark-fill::after {
  content: "✕";
  line-height: 1;
}
.tips_playing h3 {
  background: none;
  padding: 0;
  color: var(--title);
}
.operatorCard__extraDetails-wrapper li:hover i {
  transform: translateY(-50%) scale(1.06);
  transition: transform 120ms ease;
}
.operatorCard__moreDetails {
  padding: 0 30px 20px;
}
@media (max-width: 520px) {
  .operatorCard__extraDetails-wrapper {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.blog_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.blog_img {
  display: block;
}
.blog_img img {
  display: block;
  width: 100%;
}
.blog_item_body {
  padding: 30px 20px;
}
.blog_item {
  border: 1px solid var(--border-line);
  border-radius: 10px;
  overflow: hidden;
}
.recent {
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
  padding: 5px 10px;
  text-transform: uppercase;
  width: fit-content;
  background: var(--btn-first);
}
.recent_blog__title a {
  color: var(--title);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 14px;
  display: inline-block;
}
.recent-blog__date {
  font-size: 13px;
  margin-bottom: 14px;
}
.recent_blog__author img {
  border-radius: 50%;
}
.recent_blog__author {
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  gap: 10px;
}
.responsible_block {
  margin-top: 40px;
}
.spin_today h4 {
  color: var(--line);
  display: block;
  font-size: 1.3em;
  margin: 20px auto 10px;
}
.list_spin {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.list_spin a {
  background: transparent none;
  border-color: var(--title);
  border-width: 1px;
  border-style: solid;
  color: currentColor;
  padding-top: 18px;
  padding-right: 18px;
  padding-bottom: 18px;
  font-weight: 600;
  padding-left: 18px;
  border-radius: 10px;
  transition: all 0.3s linear;
  display: block;
}
.list_spin a:hover {
  background-color: var(--title);
  color: var(--bg);
}
.wp-block-list {
  padding-left: 20px;
}
 
.group_aytor {
  position: relative;
  padding-right: 40px;
}
.group_aytor > .autor_img:last-child {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: -1;
  transform: translateY(-50%) scale(0.8);
}
.topfive_operators_3columns {
  grid-template-columns: repeat(3, 1fr);
}
.online_casino__info_columns {
  padding: 20px 0;
  align-items: center;
}
.screen_contain h1:after {
  content: none;
}
.trending_now__links {
  gap: 10px 20px;
}
.table_block td {
  text-align: center;
  text-decoration: underline;
}
.black_list_item {
  display: flex;
  flex-direction: column; 
  gap: 30px;
  align-items: center;
  border: 1px solid var(--border-line);
  border-radius: 10px;
  margin: 0 auto 30px;
}
.black_list_item img {
  display: block;
  width: 100%;
  height: auto;
}
.black_list_item h3,
.top_tip_item h3 {
  padding: 0;
  background: transparent;
  color: var(--title);
}
.slotsbox__additional-info span {
  display: block;
}
.slotsbox__additional-info {
  padding-bottom: 100px;
}
.slotsbox__additional-info-label {
  font-weight: 700;
}
.top_tip_item {
  margin: 20px auto;
  padding: 20px 20px 20px 40px;
  background-color: var(--breadcrumbs);
  border: 1px solid var(--light);
  border-radius: 20px;
}
.top_tip {
  margin: 40px 0;
}
.bonus_num span {
  font-size: 20px;
}
.btn_read_review {
  position: absolute;
  top: 60%;
  right: 40px;
  text-decoration: underline;
  color: var(--text);
  z-index: 10;
  transition: all .3s linear;
}
.btn_read_review:hover{
  color: var(--link);
}
.box_cart_started {
  position: relative;
}
.started_button{
  padding-bottom: 20px;
max-width: 200px;
width: 100%;
} 
.info_block {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: #f0f0f0;
  line-height: 1.7;
  border-radius: 16px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.info_block:hover {
  transform: translateY(-5px);
}

 
.info_block .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

 
.info_block p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 16px;
  text-align: justify;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

 
.info_block .emphasized-box {
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  padding: 25px 30px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
 
.info_block .emphasized-box.box-heading b {
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
}
 
.info_block .emphasized-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  transform: rotate(45deg);
  pointer-events: none;
}

.vip_section {
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  color: #f5f5f5;
  padding: 80px 20px;
  border-top: 2px solid #c6a664;
  border-bottom: 2px solid #c6a664;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(198, 166, 100, 0.1);
}

.vip_section::before {
  content: "★ VIP ★";
  position: absolute;
  top: 10%;
  right: -5%;
  font-size: 10rem;
  color: rgba(255, 215, 0, 0.05);
  transform: rotate(-25deg);
  pointer-events: none;
}

.vip_section .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vip_section .sub_title {
  font-size: 2.6rem;
  color: #ffd700;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.vip_section .sub_title::after {
  content: "👑";
  position: absolute;
  right: -40px;
  top: -10px;
  font-size: 2rem;
  color: #ffd700;
  animation: crownPulse 2s infinite alternate;
}

@keyframes crownPulse {
  from {
    transform: scale(1);
    opacity: 0.8;
  }
  to {
    transform: scale(1.2);
    opacity: 1;
  }
}

.vip_section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d8d8d8;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #c6a664;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip_section p:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(198, 166, 100, 0.2);
}

.vip_section p::before {
  content: "💰";
  margin-right: 10px;
  font-size: 1.3rem;
  color: #ffd700;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .info_block {
    padding: 40px 15px;
  }
  .info_block p {
    font-size: 1rem;
  }
  .info_block .emphasized-box {
    padding: 20px 25px;
    font-size: 1rem;
  }
} 
.form_section {
  padding: 80px 20px;
  background: #111; 
  color: #f0f0f0;
}

.form_section .container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.form_box {
  display: flex;
  align-items: center;
  background: #1e1e1e;
  justify-content: center;
  border-radius: 20px;
  padding: 40px;
  gap: 40px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.6);
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.form_box img {
   display: none;
}

@keyframes floatImage {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-15px); }
}
 
.criteria_section {
  background: #161515;
  color: #f0f0f0;
  padding: 80px 20px; 
}

.criteria_section .container {
  max-width: 1100px;
  margin: 0 auto;
} 
.responsible_slot {
  background-color: #1a1a1a;  
  color: #eee;
  padding: 40px 30px;
  border-radius: 15px;
  max-width: 900px;
  width: 100%;
 
  box-sizing: border-box;
  margin: 50px auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7); 
}

.responsible_slot h2 {
  color: #ff4c00;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 76, 0, 0.6);
  animation: fadeInUp 1s ease forwards;
}

.responsible_slot p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
}

.responsible_slot a {
  color: #ff9500;
  text-decoration: underline;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.responsible_slot a:hover {
  color: #ff4c00;
  text-shadow: 0 0 8px rgba(255, 76, 0, 0.8);
}

.responsible_slot ul.wp-block-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.responsible_slot ul.wp-block-list li {
  background-color: #2a2a2a;
  padding: 12px 20px;
  border-radius: 10px;
  width: 100%;
  list-style: none;
  max-width: 500px;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.responsible_slot ul.wp-block-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 76, 0, 0.5);
}

.responsible_slot ul.wp-block-list li a {
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
}

.responsible_slot ul.wp-block-list li a:hover {
  color: #ff9500;
  text-shadow: 0 0 8px rgba(255, 149, 0, 0.8);
}
 
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
 
@media (max-width: 768px) {
  .responsible_slot {
    padding: 30px 15px;
  }

  .responsible_slot h2 {
    font-size: 1.6rem;
  }
.responsible_slot ul.wp-block-list li{
  margin-left: 0;
}
  .responsible_slot ul.wp-block-list li {
    max-width: 90%;
  }
}

 
.criteria_top h2.sub_title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff6a00;
  text-align: center;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.criteria_top p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
}

/* Each block */
.criteria_section h3 {
  font-size: 1.6rem;
  color: #ff6a00;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.criteria_section h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  margin-top: 5px;
  border-radius: 2px;
}

/* Paragraphs */
.criteria_section p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 25px;
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

 
.centerList ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
  margin: 40px auto;
  padding: 0;
  list-style: none;
}
 
.important_section {
  background: #0f0f0f;
  color: #f0f0f0;
  padding: 80px 20px;
}

.important_section .container {
  max-width: 1000px;
  margin: 0 auto;
}

 
.important_section h2.sub_title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff6a00;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.important_section h2.sub_title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  margin: 10px auto 0;
  border-radius: 3px;
}

 
.important_section p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 25px;
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

 
.important_section h3 {
  font-size: 1.5rem;
  color: #ff6a00;
  margin-top: 40px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.important_section h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  margin-top: 5px;
  border-radius: 2px;
}

/* FadeIn Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
} 
.important_section p,
.important_section h3,
.important_section h2.sub_title {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.important_section p.visible,
.important_section h3.visible,
.important_section h2.sub_title.visible {
  opacity: 1;
  transform: translateY(0);
}
 
.important_section a {
  color: #ff6a00;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.important_section a:hover {
  color: #ee0979;
} 
.sub_title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff6a00; /* основной градиентный оттенок */
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

 /
.sub_title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  margin: 10px auto 0;
  border-radius: 3px;
}
 
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

 
.sub_title.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
} 
@media (max-width: 768px) {
  .important_section p {
    text-align: left;
  }

  .important_section h2.sub_title {
    font-size: 1.8rem;
  }

  .important_section h3 {
    font-size: 1.3rem;
  }
}

.centerList ul li {
  flex: 1 1 200px;
  background: #1e1e1e;
  border-left: 4px solid #ff6a00;
  padding: 15px 20px;
  border-radius: 12px;
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.centerList ul li::before {
  content: '✔';
  color: #00ff88;
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
}
 
.criteria_section .block_1,
.criteria_section .block_2,
.criteria_section .block_4,
.criteria_section .block_5,
.criteria_section .block_6,
.criteria_section .block_7 {
  margin-bottom: 60px;
}
 
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
 
 
.criteria_section a {
  color: #ff6a00;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.criteria_section a:hover {
  color: #ee0979;
}
 
@media (max-width: 768px) {
  .criteria_top p, .criteria_section p {
    text-align: left;
  }

  .centerList ul {
    flex-direction: column;
    align-items: center;
  }

  .centerList ul li {
    flex:1;
    max-width: 300px;
    width: 100%;
    box-sizing: border-box;
  }
}

.form_content h5 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6a00;
  margin-bottom: 15px;
}

.form_content h5 span {
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form_content .sub-form__description {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 25px;
}

.form_group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form_item {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form_item label {
  font-size: 0.9rem;
  color: #bbb;
}

.form_item input {
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #444;
  background: #222;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form_item input:focus {
  border-color: #ff6a00;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
  outline: none;
}

.custom-checkbox-wrapper {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #ccc;
}

.custom-checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #ff6a00;
  cursor: pointer;
}

.custom-checkbox-wrapper a {
  color: #ff6a00;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.custom-checkbox-wrapper a:hover {
  color: #ee0979;
}

/* Кнопка */
.btn_submit {
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  border: none;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(255,106,0,0.6);
}

.btn_submit:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255,106,0,0.8);
}
 
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
 
.comparing_slot {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #e0e0e0;
  padding: 50px 20px;  
}

.comparing_slot h2 {
  font-size: 2rem;
  color: #ff9800; 
  margin-bottom: 20px;
}

.comparing_slot p {
  font-size: 1rem;
  color: #cfcfcf;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* === Table Styling === */
.comparing_slot table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(29, 185, 84, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(29, 255, 135, 0.1);
}

.comparing_slot th,
.comparing_slot td {
  padding: 15px 12px;
  text-align: center;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(29, 255, 135, 0.2);
}

.comparing_slot th {
  background: linear-gradient(90deg, #1db954, #00ff88);
  color: #0a0a0a;
  font-weight: 700;
  text-shadow: 0 0 3px #0a0a0a;
}

.comparing_slot td {
  color: #9ea510;
  transition: all 0.3s ease;
}
 
.comparing_slot tbody tr:hover {
  background: rgba(29, 255, 135, 0.08);
  transform: scale(1.02);
  box-shadow: 0 0 12px rgba(29, 255, 135, 0.2);
}
 
.comparing_slot tbody tr:nth-child(odd) {
  background: rgba(29, 185, 84, 0.02);
}
 
.comparing_slot thead th:first-child {
  border-top-left-radius: 12px;
}

.comparing_slot thead th:last-child {
  border-top-right-radius: 12px;
}

.comparing_slot tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.comparing_slot tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}
 
@media (max-width: 1024px) {
  .comparing_slot th,
  .comparing_slot td {
    padding: 12px 8px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
 

  .comparing_slot thead tr {
    display: none;
  }

  .comparing_slot tbody tr {
    margin-bottom: 20px;
    background: rgba(29, 255, 135, 0.05);
    border-radius: 12px;
    padding: 10px;
  }

  .comparing_slot td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .comparing_slot td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 45%;
    padding-right: 10px;
    font-weight: 700;
    color: #1db954;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .form_box {
    flex-direction: column;
    padding: 30px;
  }
  .form_box img {
    max-width: 250px;
  }
}

.checklist {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  color: #f0f0f0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.checklist .container {
  display: flex;
  justify-content: center;
}

.checklist_box {
  text-align: center;
  width: 100%;
}

.checklist_box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ff6a00;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease forwards;
}
 
.checklist_box ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.checklist_box ul li {
  background: #1e1e1e;
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  flex: 1 1 200px;
  max-width: 250px;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.5s forwards;
} 
.checklist_box ul li:nth-child(1) { animation-delay: 0.1s; }
.checklist_box ul li:nth-child(2) { animation-delay: 0.2s; }
.checklist_box ul li:nth-child(3) { animation-delay: 0.3s; }
.checklist_box ul li:nth-child(4) { animation-delay: 0.4s; }
.checklist_box ul li:nth-child(5) { animation-delay: 0.5s; }
.checklist_box ul li:nth-child(6) { animation-delay: 0.6s; }

.checklist_box ul li:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.6);
}
 
.checklist_box ul.splitTwo li::before {
  content: '✔';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #00ff99;
  font-weight: bold;
  font-size: 1.2rem;
}
 
.reviews_section {
  padding: 60px 20px;
  background: #121212;  
  color: #f0f0f0;  
  box-shadow: 0 10px 40px rgba(0,0,0,0.7);
}

.reviews_section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
} 
.online_slot_game {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #e0e0e0;
  padding: 60px 20px;  
}

.online_slot_game h2 {
  font-size: 2rem;
  color: #ffb100; 
  margin-bottom: 20px;
}
.blog_container {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  color: #333333;
}

.blog_container h2 {
  font-size: 2rem;
  color: #ff5c00;
  text-align: center;
  margin-bottom: 40px; 
}
.responsible_block {
  background: #222121;
  padding: 50px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
  color: #333333;
  max-width: 900px;
  margin: 40px auto;
}

.responsible_block h2 {
  font-size: 2rem;
  color: #ff5c00;
  text-align: center;
  margin-bottom: 25px; 
}

.responsible_block p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #aaaaaa;
}

.responsible_block p a {
  color: #ff5c00;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.responsible_block p a:hover {
  color: #ff7f33;
  text-decoration: underline;
}

.responsible_block ul.wp-block-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.responsible_block ul.wp-block-list li {
  background: #f9f9f9;
  border-left: 4px solid #ff5c00;
  padding: 12px 18px;
  margin-bottom: 12px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.responsible_block ul.wp-block-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(255,92,0,0.2);
}

.responsible_block ul.wp-block-list li a {
  color: #ff5c00;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.responsible_block ul.wp-block-list li a:hover {
  color: #ff7f33;
  text-decoration: underline;
}
 
@media (max-width: 768px) {
  .responsible_block {
    padding: 30px 15px;
  }

  .responsible_block h2 {
    font-size: 1.7rem;
  }
}

.blog_items {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog_item {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.blog_img img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}

.blog_img img:hover {
  transform: scale(1.05);
}

.blog_item_body {
  padding: 20px;
}

.blog_item_body .recent {
  display: inline-block;
  background: #ff5c00;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.recent_blog__title h4 {
  font-size: 1.1rem;
  margin: 10px 0;
}

.recent_blog__title h4 a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent_blog__title h4 a:hover {
  color: #ff5c00;
}

.recent-blog__date {
  font-size: 0.8rem;
  color: #888888;
  margin-bottom: 10px;
}

.recent_blog__author {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #555555;
  text-decoration: none;
}

.recent_blog__author img {
  border-radius: 50%;
  margin-right: 8px;
}

.slotsbox__button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background: #ff5c00;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.slotsbox__button:hover {
  background: #ff7f33;
  box-shadow: 0 5px 15px rgba(255,92,0,0.4); 
}

.spin_today {
  background: #1a1a1a;
  color: #fff;
  padding: 50px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  max-width: 900px;
  margin: 40px auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.2s;
}

.spin_today h2 {
  font-size: 2rem;
  text-align: center;
  color: #ff6a00; /* яркий оранжевый */
  margin-bottom: 20px;
  text-shadow: 0 0 8px #ff6a00;
}

.spin_today p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #ccc;
}

.spin_today h4 {
  font-size: 1.5rem;
  color: #ff6a00;
  margin-top: 30px;
}

.spin_today ul.list_spin {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.spin_today ul.list_spin li {
  flex: 1 1 calc(50% - 10px);
}

.spin_today ul.list_spin li a {
  display: block;
  background: linear-gradient(145deg, #ff6a00, #ff8c33);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 15px rgba(255,106,0,0.5);
  transition: all 0.4s ease;
}

.spin_today ul.list_spin li a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(255,140,51,0.6);
  background: linear-gradient(145deg, #ff8c33, #ffa04d);
}

.bottom-author-block {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  max-width: 900px;
  margin: 50px auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.4s;
}

.bottom-author-block .author__title {
  font-size: 2rem;
  text-align: center;
  color: #ff6a00;
  margin-bottom: 25px;
  text-shadow: 0 0 8px #ff6a00;
}

.bottom-author-block .autor_grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.bottom-author-block .author__avatar {
  flex: 0 0 100px;
}

.bottom-author-block .author__avatar img {
  width: 100%;
  border-radius: 50%;
  border: 3px solid #ff6a00;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.bottom-author-block .author__avatar img:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(255,106,0,0.6);
}

.bottom-author-block .author__name a {
  color: #ff6a00;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bottom-author-block .author__name a:hover {
  color: #ff8c33;
  text-decoration: underline;
}

.bottom-author-block .author-title {
  font-size: 0.9rem;
  color: #aaa;
  margin-left: 5px;
}

.bottom-author-block .author__social-media a img {
  transition: transform 0.3s ease;
}

.bottom-author-block .author__social-media a img:hover {
  transform: scale(1.2);
}

.bottom-author-block .author__description p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  margin-top: 10px;
}

.bottom-author-block .author__buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bottom-author-block .author__buttons .slotsbox__button {
  background: linear-gradient(145deg, #ff6a00, #ff8c33);
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.bottom-author-block .author__buttons .slotsbox__button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(255,140,51,0.5);
  background: linear-gradient(145deg, #ff8c33, #ffa04d);
}

/* Responsive */
@media (max-width: 768px) {
  .spin_today ul.list_spin li {
    flex: 1 1 100%;
  }

  .bottom-author-block .autor_grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bottom-author-block .author__buttons {
    justify-content: center;
  }
}
.our_blog {
  display: none;
}
.author__avatar{
  display: none;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .blog_items {
    flex-direction: column;
    align-items: center;
  }

  .blog_item {
    width: 90%;
  }
}

.online_slot_game p {
  font-size: 1rem;
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 20px;
}

.online_slot_game a {
  color: #00ff88;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.online_slot_game a:hover {
  color: #1db954;
}
.page-sidebar__widget {
  max-width: 350px;
  margin: 30px auto;
}

.simple-operator-cta {
  background: #1a1a1a;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  padding: 20px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.simple-operator-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255,140,51,0.6);
}

/* Heading */
.simple-operator-cta__widget-heading {
  font-size: 1.3rem;
  color: #ff6a00;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
  text-shadow: 0 0 6px #ff6a00;
}

/* Logo */
.simple-operator-cta__logo-link img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.simple-operator-cta__logo-link img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255,106,0,0.6);
}

/* Bonus */
.simple-operator-cta__bonus {
  background: linear-gradient(145deg, #ff6a00, #ff8c33);
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 6px 15px rgba(255,106,0,0.5);
  transition: all 0.3s ease;
}

.simple-operator-cta__bonus:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255,140,51,0.6);
}

.simple-operator-cta__bonus-text {
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  color: #fff;
}

.simple-operator-cta__bonus-heading {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  margin-top: 5px;
  opacity: 0.8;
}

/* Play Now Button */
.operators__button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(145deg, #ff6a00, #ff8c33);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 10px;
  box-shadow: 0 6px 15px rgba(255,106,0,0.5);
  transition: all 0.3s ease;
}

.operators__button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(255,140,51,0.6);
  background: linear-gradient(145deg, #ff8c33, #ffa04d);
}

/* Read Review Link */
.simple-operator-cta__reviewlink {
  display: block;
  margin-top: 8px;
  color: #ff6a00;
  font-size: 0.9rem;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.simple-operator-cta__reviewlink:hover {
  color: #ffa04d;
}

/* Responsive */
@media (max-width: 480px) {
  .page-sidebar__widget {
    max-width: 100%;
    padding: 0 15px;
  }
}

.tips_playing {
  background: linear-gradient(135deg, #0b0b0b, #1c1c1c);
  color: #e0e0e0;
  padding: 60px 20px; 
}

.tips_playing h2 {
  font-size: 2rem;
  color: #ff5c00; 
  margin-bottom: 20px;
}

.tips_playing h3 {
  font-size: 1.5rem;
  color: #1db954; 
  margin-top: 25px;
  margin-bottom: 15px;
}

.tips_playing p {
  font-size: 1rem;
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tips_playing a {
  color: #1db954;
  text-decoration: underline;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.tips_playing a:hover {
  color: #00ff88; 
}
 
.tips_playing h3::before {
  content: '';
  display: block;
  width: 50px;
  height: 3px; 
  margin-bottom: 10px;
  border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tips_playing {
    padding: 40px 15px;
  }

  .tips_playing h2 {
    font-size: 1.75rem;
  }

  .tips_playing h3 {
    font-size: 1.3rem;
  }

  .tips_playing p {
    font-size: 0.95rem;
  }
}

.slot_cart_box {
  display: flex;
  flex-wrap: wrap; 
  margin-top: 40px;
}

.slot_cart_group {
  background: rgba(29, 185, 84, 0.05);
  border: 1px solid rgba(29, 255, 135, 0.2);
  border-radius: 12px; 
  display: flex;
  padding: 20px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot_cart_group:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(29, 255, 135, 0.3);
}

.icon_background {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1db954, #00ff88);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(29, 255, 135, 0.5);
  transition: transform 0.3s ease;
}

.slot_cart_group:hover .icon_background {
  transform: scale(1.1);
}

.icon_background img {
  width: 50%;
  height: auto;
}

.text_slot_cart h3 {
  font-size: 1.25rem;
  color: #00ff88;
  margin-bottom: 10px; 
} 
.table_block {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.table_block h2 {
  font-size: 2rem;
  color: #ff6a00;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 5px #ff6a00;
}

.table_block p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 25px;
}

.table_block a {
  color: #ff6a00;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.table_block a:hover {
  color: #ffa04d;
}
.blackList_block {
  background: #121212;
  color: #f1f1f1;
  padding: 50px 20px;
  border-radius: 15px;
  max-width: 1200px;
  margin: 50px auto;
}

.blackList_block h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff4c00;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ff4c00;
}

.blackList_block p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.blackList_block a {
  color: #ff9b4c;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.blackList_block a:hover {
  color: #ff4c00;
}
 
.black_list_slotsbox {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.black_list_item {
  background: #1c1c1c;
  border-radius: 15px;
  overflow: hidden;
  width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.black_list_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255,76,0,0.5);
}

.slotsbox__image img.slotsbox__thumbnail {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 2px solid #ff4c00;
  transition: transform 0.3s ease;
}

.black_list_item:hover .slotsbox__image img.slotsbox__thumbnail {
  transform: scale(1.05);
}

.slotsbox__description {
  padding: 20px;
}

.slotsbox__description-heading {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ff6a00 !important;
  text-align: center;
}
.top_tip {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.top_tip h2 {
  font-size: 2rem;
  text-align: center;
  color: #ff4c00;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255,76,0,0.5);
}

.top_tip p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #333;
}

.top_tip a {
  color: #ff6a00;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.top_tip a:hover {
  color: #ff4c00;
}
 
.top_tip_items {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}

.top_tip_item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 25px 20px;
  box-sizing: border-box;
  width: 320px;
  min-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.top_tip_item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 25px rgba(255,76,0,0.3);
}
 
.top_tip_item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-wrap: auto;
  color: #ff4c00;
  position: relative;
}

.top_tip_item h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #ff9b4c;
  border-radius: 2px;
  margin-top: 5px;
  transition: width 0.3s ease;
}

.top_tip_item:hover h3::after {
  width: 100%;
}
 
.top_tip_item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}
 
@media (max-width: 1024px) {
  .top_tip_items {
    flex-direction: column;
    align-items: center;
  }
  .top_tip_item {
    width: 90%;
  }
}

.slotsbox__description p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e0e0e0;
}
 
.slotsbox__additional-info {
  padding: 15px 20px 20px;
  background: #222;
  border-top: 1px solid #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slotsbox__additional-info-label {
  font-weight: 600;
  color: #ff7b33;
}

.slotsbox__additional-info a {
  color: #ff9b4c;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.slotsbox__additional-info a:hover {
  color: #ff4c00;
} 
@media (max-width: 1024px) {
  .black_list_slotsbox {
    flex-direction: column;
    align-items: center;
  }
  .black_list_item {
    width: 90%;
  }
}

.table_block table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px;
  text-align: center;
}

.table_block td {
  background: #1a1a1a;
  color: #fff;
  padding: 15px 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.table_block td a {
  color: #ffd18c;
  text-decoration: none;
  font-weight: 600;
}

.table_block td a:hover {
  color: #ff6a00;
  text-decoration: underline;
}

.table_block td:hover {
  background: linear-gradient(135deg, #ff6a00, #ff8c33);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255,106,0,0.5);
} 
 

.text_slot_cart p {
  color: #d0ffd6;
  font-size: 0.95rem;
  line-height: 1.6;
}
 
@media (max-width: 1024px) {
  .slot_cart_box {
    gap: 15px;
  }

  .slot_cart_group {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon_background {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .slot_cart_group {
    padding: 15px;
  }

  .text_slot_cart h3 {
    font-size: 1.1rem;
  }

  .text_slot_cart p {
    font-size: 0.9rem;
  }
}

.reviews_section .sub_title {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6a00;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease forwards;
}

.reviews_section img {
  width: 100%;
  border-radius: 12px;
  margin: 20px 0;
  object-fit: cover;
  animation: fadeIn 1s ease forwards;
}
 
.expandable-list-container {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  box-sizing: border-box;
  transition: max-height 0.6s ease;
  position: relative;
}

.expandable-list-container.collapsed {
  max-height: 300px; 
}

.expandable-list-container ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.expandable-list-container ul li {
  background: #1e1e1e;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 12px;
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  width: 90% !important;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expandable-list-container ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.expandable-list-container ul li:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.7);
}
 
.title_fix_card {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
 
  margin: 10px auto;
  overflow: hidden;
}

.title_fix_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
 
.title_fix_card_group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}
 
.logo_card img {
  width: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.logo_card img:hover {
  transform: scale(1.05);
}
 
.item_cart_bonus {
  background: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  flex: 1 1 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item_cart_bonus:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.item_cart_bonus p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.item_cart_bonus span {
  font-weight: 700;
  color: #00aaff;
} 
.flag {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.flag img {
  width: 30px;
  border-radius: 5px;
}

.flag span {
  font-weight: 600;
  color: #ff5555;
}

.flag:hover {
  transform: translateY(-2px);
}
 
.button_play_now {
  background: linear-gradient(135deg, #00aaff, #0066ff);
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.button_play_now:hover {
  background: linear-gradient(135deg, #0066ff, #00ffff);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
 
@media(max-width: 500px) {
  .title_fix_card_group {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .logo_card img {
    margin-bottom: 10px;
  }

  .button_play_now {
    width: 100%;
  }
}

.expandable-list-container ul li:nth-child(1) { animation-delay: 0.05s; }
.expandable-list-container ul li:nth-child(2) { animation-delay: 0.1s; }
.expandable-list-container ul li:nth-child(3) { animation-delay: 0.15s; }
 

.list_btn {
  display:  block;
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  color: #fff;
  text-align: center;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  max-width: 300px;
  margin: 0 auto;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.list_btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(238, 9, 121, 0.7);
}
.banking_section {
  background: #0d0d0d;
  color: #f1f1f1;
  padding: 80px 20px;
  position: relative;
}

.banking_section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.banking_section .sub_title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 40px;
  color: #ffd700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.banking_section .sub_title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #ffd700, #b8860b);
  border-radius: 2px;
}
 
.banking_section h3 {
  font-size: 1.6rem;
  color: #ffde70;
  margin: 50px 0 20px;
  border-left: 4px solid #ffd700;
  padding-left: 10px;
}
 
.banking_section p {
  color: #d6d6d6;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 15px 20px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.banking_section p:hover {
  background: rgba(255, 255, 255, 0.07);
}
 
.banking_section table.primary {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0 50px;
  border-radius: 10px; 
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.1);
}

.banking_section thead {
  background: linear-gradient(90deg, #c9a635, #f1d273);
  color: #111;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.95rem;
}

.banking_section th,
.banking_section td {
  padding: 14px 18px;
  text-align: left;
}

.banking_section tbody tr {
  background: #161616;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}

.banking_section tbody tr:nth-child(even) {
  background: #1b1b1b;
}

.banking_section tbody tr:hover {
  background: rgba(255, 215, 0, 0.08);
}
.primary th{
  width: 24%;
}
.banking_section td {
      color: #a18282;
  font-size: 0.95rem;
}

 
.banking_section table.primary a {
  color: #ff8300;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed #ffd700;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.banking_section table.primary a:hover {
  color: #ffffff;
  border-color: #ffffff;
}
 
.banking_section table.primary td:first-child::before {
  content: "💳 ";
  font-size: 1rem;
  color: #ffd700;
}
 
.banking_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.05), transparent 70%);
  pointer-events: none;
}
 
.casino_section {
  background: radial-gradient(circle at top, #0d0d0d 40%, #000 100%);
  color: #f5f5f5;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.casino_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08), transparent 70%);
  pointer-events: none;
}

.casino_section .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
 
.casino_section .sub_title {
  font-size: 2.5rem;
  text-align: center;
  color: #ffd700;
  margin-bottom: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.casino_section .sub_title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 15px auto 0;
  background: linear-gradient(90deg, #ffd700, #00ffaa);
  border-radius: 2px;
}
 
.casino_section .casino_img {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.casino_section .casino_img img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
  border: 2px solid rgba(255, 215, 0, 0.25);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.casino_section .casino_img img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 45px rgba(255, 215, 0, 0.3);
}
 
.casino_section p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 25px;
  border-left: 4px solid #ffd700;
  border-radius: 12px;
  color: #e0e0e0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.casino_section p:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(5px);
} 
.slot_section_block {
  background: radial-gradient(circle at top, #111 0%, #000 100%);
  color: #eee;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.slot_section_block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('./assets/images/bg-pattern-dark.webp') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.slot_section_block .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
 /* === Free Slot Container === */
.free_slot {
  background: #0f0f0f;
  border-radius: 15px;
  padding: 25px 20px;
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.2s;
}

/* === Fade-in Animation === */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Info Box Styles === */
.info-box-container {
  position: relative;
  margin-bottom: 20px;
}

.info-box-border-top {
  height: 5px;
  background: linear-gradient(90deg, #ff4c00, #ff9500);
  border-radius: 3px 3px 0 0;
  margin-bottom: 15px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #1c1c1c;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 76, 0, 0.5);
}

.info-box__icon img {
  width: 72px;
  height: 72px;
  transition: transform 0.3s ease;
}

.info-box:hover .info-box__icon img {
  transform: rotate(15deg) scale(1.1);
}
/* === Popular Provider Block === */
.popular_provider {
  background-color: #111;
  border-radius: 15px;
  padding: 30px 25px;
  max-width: 900px;
  margin: 40px auto;
  color: #eee;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 0.8s ease forwards;
}

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popular_provider h2 {
  color: #ff4c00;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 76, 0, 0.6);
}

.popular_provider p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 30px auto;
}

.slot_list_popular {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.slot_questions {
  background-color: #111;
  color: #eee;
  padding: 40px 25px;
  border-radius: 15px;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.slot_questions h2 {
  text-align: center;
  color: #ff4c00;
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 76, 0, 0.6);
  animation: fadeInUp 0.8s ease forwards;
}

.slot_questions p { 
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}
 
.testimonials__container {
  display: flex;
  flex-direction: column; 
}
 
.testimonials__single {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.testimonials__single:nth-child(1) { animation-delay: 0.1s; }
.testimonials__single:nth-child(2) { animation-delay: 0.3s; }
.testimonials__single:nth-child(3) { animation-delay: 0.5s; }
.testimonials__single:nth-child(4) { animation-delay: 0.7s; }

.testimonials__single:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 12px 25px rgba(255, 76, 0, 0.4);
}
 
.testimonials__wrapper {
  display: flex;
  gap: 15px;
  box-sizing: border-box;
  align-items: flex-start;
}

.testimonials__img {
  border-radius: 50%;
  width: 67px;
  height: 67px;
  object-fit: cover;
  border: 2px solid #ff4c00;
  box-shadow: 0 0 10px rgba(255, 76, 0, 0.5);
  animation: fadeInScale 0.8s ease forwards;
} 
.read_more {
  background-color: #111;  
  padding: 40px 20px;
  border-radius: 15px;
  max-width: 1200px;
  margin: 40px auto;
  color: #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.read_more h2 {
  text-align: center;
  color: #ff4c00;
  font-size: 2rem;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(255, 76, 0, 0.6);
  animation: fadeInUp 0.8s ease forwards;
}

.recent-blogs-block {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.recent-blog {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.recent-blog:nth-child(1) { animation-delay: 0.1s; }
.recent-blog:nth-child(2) { animation-delay: 0.3s; }
.recent-blog:nth-child(3) { animation-delay: 0.5s; }

.recent-blog:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 76, 0, 0.5);
}

.recent-blog__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.recent-blog__image img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.recent-blog__category {
  color: #ff9500;
  font-weight: bold;
  margin: 10px 15px 5px 15px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.recent-blog__title h4 {
  margin: 5px 15px;
  font-size: 1.1rem;
}

.recent-blog__title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-blog__title a:hover {
  color: #ff9500;
}

.recent-blog__date {
  color: #aaa;
  font-size: 0.8rem;
  margin: 0 15px 10px 15px;
}

.recent-blog__author {
  display: flex;
  align-items: center;
  margin: 0 15px 15px 15px;
  font-size: 0.85rem;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-blog__author img {
  border-radius: 50%;
  margin-right: 8px;
}

.recent-blog__author:hover {
  color: #ff9500;
}

.recent_blogs_link {
  text-align: center;
  margin-top: 25px;
}

.recent_blogs_link .slotsbox__button {
  background-color: #ff4c00;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.recent_blogs_link .slotsbox__button:hover {
  background-color: #ff9500;
  transform: scale(1.05);
}
 
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
 
@media (max-width: 768px) {
  .recent-blogs-block {
    flex-direction: column;
    align-items: center;
  }

  .recent-blog {
    width: 90%;
  }
}


.testimonials__text p{
  color: #fff7d4 !important;
}
.testimonials__title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ff9500;
  margin-bottom: 5px;
  text-shadow: 0 0 6px rgba(255, 149, 0, 0.5);
}

/* Answer content */
.testimonials__wrapper--answer {
  background-color: #222;
  padding: 15px 20px;
  border-radius: 10px;
  flex-direction: column;
  gap: 10px;
  border-left: 4px solid #ff9500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials__wrapper--answer:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 149, 0, 0.4);
}
 
.testimonials__text p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
 
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
 
@media (min-width: 768px) {
  .testimonials__wrapper {
    flex-direction: row;  
  }
  .testimonials__wrapper--answer {
    flex-direction: row; 
    padding-left: 50px;
    text-align: left;
  } 
}
p.testimonials__title{
  color: #bbc4d8 !important;
  padding-left: 40px;
  margin: 0;
}
.slot_list_popular li {
  background: #1a1a1a;
  border-left: 5px solid #ff4c00;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.slot_list_popular li:nth-child(1) {
  animation-delay: 0.2s;
}
.slot_list_popular li:nth-child(2) {
  animation-delay: 0.4s;
}
.slot_list_popular li:nth-child(3) {
  animation-delay: 0.6s;
}

.slot_list_popular li:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(255, 76, 0, 0.5);
  border-color: #ff9500;
}

.slot_list_popular h3 {
  font-size: 1.3rem;
  color: #ff9500;
  margin-bottom: 8px;
  text-shadow: 0 0 6px rgba(255, 149, 0, 0.7);
}

.slot_list_popular p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
}
 
@media (min-width: 768px) {
  .slot_list_popular {
    flex-direction: row;
    justify-content: space-between;
  }

  .slot_list_popular li {
    flex: 1 1 30%;
  }
}

.info-box__title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff4c00;
  margin-bottom: 8px;
  text-shadow: 0 0 5px rgba(255, 76, 0, 0.6);
}

.info-box__content p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
}
 
.free_slot .slotsbox__button {
  display: inline-block;
  padding: 12px 25px;
  background: #ff4c00;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.free_slot .slotsbox__button:hover {
  background: #ff6a00;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 76, 0, 0.5);
}
 
@media (max-width: 600px) {
  .info-box {
    flex-direction: column;
    text-align: center;
  }
}

.slot_carts_items {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
} 
.slotsbox {
  background: #1c1c1c;
  border-radius: 15px;
  overflow: hidden;
  box-sizing: border-box;
  width: 45%;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* === Hover Animation === */
.slotsbox:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(255, 76, 0, 0.5);
}
 
.slotsbox_img img {
  width: 100%; 
  display: block;
  transition: transform 0.3s ease;
}

.slotsbox:hover .slotsbox_img img {
  transform: scale(1.05);
}
 
.slotsbox_info {
  padding: 20px;
}

.slotsbox_info h3 {
  font-size: 1.3rem;
  color: #ff4c00;
  margin-bottom: 10px;
  text-shadow: 0 0 6px rgba(255, 76, 0, 0.5);
}

.slotsbox_info p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
  margin-bottom: 15px;
}
 
.slotsbox__button {
  display: inline-block;
  padding: 10px 20px;
  background: #ff4c00;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.slotsbox__button:hover {
  background: #ff6a00;
  transform: scale(1.05);
}
 
.slotsbox_more_info {
  padding: 15px 20px 20px 20px;
  background: #2a2a2a;
  border-top: 1px solid #333;
}

.slotsbox__additional {
  list-style: none;
  margin: 0;
  padding: 0;
}

.slotsbox__additional_info {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #ccc;
}

.slotsbox__additional_info_label {
  font-weight: bold;
  color: #ff4c00;
  margin-right: 5px;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .slot_carts_items {
    flex-direction: column;
    padding: 0;
    align-items: center;
  }
  .slotsbox {
    width: 100%;
  }
}

.slot_section_block h3 {
  font-size: 2rem;
  color: #00ffe0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  margin-bottom: 20px;
}

.slot_section_block h3::before {
  content: "🎰";
  position: absolute;
  left: -45px;
  top: 0;
  font-size: 1.6rem;
  color: #ff007a;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px #ff007a; }
  to { text-shadow: 0 0 25px #00ffe0, 0 0 45px #00ffe0; }
}
 
.slot_section_block p {
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #d7d7d7;
}
 
.slot_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.slot_item {
  background: linear-gradient(145deg, rgba(40,40,40,0.9), rgba(15,15,15,0.95));
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 255, 224, 0.15);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.slot_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(0, 255, 224, 0.5);
}

.title_slot {
  font-size: 1.1rem;
  background: linear-gradient(to right, #00ffe0, #ff007a);
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  border-bottom: 2px solid #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title_slot::after {
  content: "★";
  font-size: 1.2rem;
  color: gold;
  text-shadow: 0 0 10px gold;
}
 
.slot_content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.slot_img img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #00ffe0;
  transition: all 0.3s ease;
}

.slot_img img:hover {
  transform: scale(1.05);
  border-color: #ff007a;
  box-shadow: 0 0 20px rgba(255, 0, 122, 0.6);
}
 
.sl_2, .sl_3, .sl_4, .sl_5 {
  margin-top: 70px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 50px;
}

.casino_img {
  margin: 25px 0;
}

.casino_img img {
  width: 100%;
  border-radius: 15px;
  border: 3px solid rgba(0, 255, 224, 0.5);
  transition: transform 0.3s ease;
} 
.bool_section {
  background: radial-gradient(circle at top, #0a0a0a 0%, #000 100%);
  color: #e0e0e0;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.bool_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('./assets/images/bg-sports-dark.webp') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.bool_section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
 
.bool_section .sub_title {
  color: #00ffe0;
  font-size: 2.4rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 40px;
  position: relative;
}

.bool_section .sub_title::after {
  content: "🏆";
  display: block;
  font-size: 2.2rem;
  margin: 15px auto 0;
  color: #ff007a;
  text-shadow: 0 0 15px #ff007a, 0 0 30px #00ffe0;
  animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.2); opacity: 1; }
}
 
.bool_section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d7d7d7;
  margin-bottom: 18px;
}

.bool_section a {
  color: #00ffe0;
  text-decoration: none;
  border-bottom: 1px dotted #00ffe0;
  transition: 0.3s;
}

.bool_section a:hover {
  color: #ff007a;
  border-color: #ff007a;
}
 
.item_book_1, .item_book_2, .item_book_3 {
  background: linear-gradient(145deg, rgba(30,30,30,0.9), rgba(10,10,10,0.95));
  border-radius: 15px;
  padding: 40px 30px;
  margin-top: 60px;
  box-shadow: 0 0 25px rgba(0, 255, 224, 0.15);
  transition: all 0.4s ease;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.item_book_1:hover,
.item_book_2:hover,
.item_book_3:hover {
  transform: translateY(-8px);
  border-left: 4px solid #00ffe0;
  box-shadow: 0 0 35px rgba(0, 255, 224, 0.45);
}
 
.bool_section h3 {
  font-size: 1.7rem;
  color: #ff007a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  position: relative;
}

.bool_section h3::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "⚡";
  color: #00ffe0;
  font-size: 1.6rem;
  animation: iconGlow 2s infinite ease-in-out;
}

@keyframes iconGlow {
  0%, 100% { text-shadow: 0 0 10px #00ffe0; }
  50% { text-shadow: 0 0 25px #ff007a, 0 0 45px #00ffe0; }
}
 
.bool_section .container::after {
  content: "";
  display: block;
  width: 220px;
  height: 4px;
  margin: 60px auto 0;
  background: linear-gradient(90deg, #00ffe0, #ff007a);
  border-radius: 8px;
  animation: neonPulse 2s infinite ease-in-out;
}

@keyframes neonPulse {
  0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1); }
}
  
@media (max-width: 768px) {
  .bool_section .sub_title {
    font-size: 1.8rem;
  }
  .bool_section h3 {
    font-size: 1.4rem;
  }
  .item_book_1, .item_book_2, .item_book_3 {
    padding: 25px 20px;
  }
}

.casino_img img:hover {
  transform: scale(1.04);
}
 
.slot_section_block .container::after {
  content: "";
  display: block;
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, #ff007a, #00ffe0);
  margin: 50px auto 0;
  border-radius: 10px;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scaleX(0.9); }
  50% { opacity: 1; transform: scaleX(1); }
}

.casino_section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 170, 0.1), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
 
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.casino_section .sub_title,
.casino_section p,
.casino_section .casino_img {
  animation: fadeUp 0.8s ease both;
}

.casino_section p:nth-of-type(2) {
  animation-delay: 0.3s;
}
.mobile_section {
  background: radial-gradient(circle at bottom right, #060606 0%, #000 100%);
  color: #f2f2f2;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.mobile_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('./assets/images/bg-mobile-dark.webp') center/cover no-repeat;
  opacity: 0.07;
  z-index: 0;
}

.mobile_section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0,255,224,0.25), transparent 70%);
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
  z-index: 1;
  filter: blur(90px);
  animation: moveGlow 10s infinite alternate ease-in-out;
}

@keyframes moveGlow {
  from { transform: translate(0,0); opacity: 0.6; }
  to { transform: translate(-40px, -30px); opacity: 1; }
}

.mobile_section .container {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
}
 /* === Security Section Dark Neon Theme === */
.security_section {
  background: radial-gradient(circle at top right, #0b0b0b, #111111);
  color: #e0e0e0;
  padding: 80px 20px;
  border-top: 2px solid #1db954;
  border-bottom: 2px solid #1db954;
  position: relative;
  overflow: hidden;
}

.security_section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(29,185,84,0.1), transparent 70%);
  animation: pulseGlow 6s infinite alternate;
  z-index: 0;
}

@keyframes pulseGlow {
  from { opacity: 0.3; transform: scale(1); }
  to { opacity: 0.8; transform: scale(1.2); }
}

.security_section .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

 /* === Form Information Section Dark Neon Theme === */
.form_information {
  background: linear-gradient(135deg, #0a0a0a, #141414);
  color: #e0e0e0;
  padding: 80px 20px;
  border-top: 2px solid #1db954;
  border-bottom: 2px solid #1db954;
  position: relative;
  overflow: hidden;
}

.form_information::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at center, rgba(29,185,84,0.08), transparent 70%);
  animation: pulseGlow 7s infinite alternate;
  z-index: 0;
}

@keyframes pulseGlow {
  from { opacity: 0.3; transform: scale(1); }
  to { opacity: 0.8; transform: scale(1.15); }
}

.form_information .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

 

.form_information p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #cccccc;
}

.form_information .casino_img {
  text-align: center;
  margin: 30px 0;
}

.form_information .casino_img img {
  max-width: 100%;
  border-radius: 15px;
  border: 2px solid #1db954;
  box-shadow: 0 0 18px rgba(29,185,84,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form_information .casino_img img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 28px rgba(29, 255, 135, 0.7);
}
 
.finel_section {
  background: linear-gradient(135deg, #0a0a0a, #141414);
  color: #e0e0e0;
  padding: 80px 20px;
  border-top: 2px solid #1db954;
  border-bottom: 2px solid #1db954;
  position: relative;
  overflow: hidden;
}

.finel_section::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, rgba(29,185,84,0.08), transparent 70%);
  animation: pulseGlow 7s infinite alternate;
  z-index: 0;
}

@keyframes pulseGlow {
  from { opacity: 0.3; transform: scale(1); }
  to { opacity: 0.8; transform: scale(1.15); }
}

.finel_section .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

 

.finel_section p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #cccccc;
}

.finel_section .ram_action {
  background: rgba(29, 185, 84, 0.05);
  border-left: 4px solid #1db954;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 0 12px rgba(29, 185, 84, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.finel_section .ram_action:hover {
  background: rgba(29, 255, 135, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 0 28px rgba(29, 255, 135, 0.5);
}

.finel_section .ram_action img {
  max-width: 120px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 2px solid #1db954;
  box-shadow: 0 0 12px rgba(29,185,84,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.finel_section .ram_action img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 28px rgba(29, 255, 135, 0.7);
}

.finel_section .ram_action p {
  margin: 10px 0;
  color: #e0e0e0;
}

.finel_section .ram_action a {
  color: #1db954;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.finel_section .ram_action a:hover {
  color: #2cff87;
  text-shadow: 0 0 6px #2cff87;
}


.form_information .list_d {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form_information .list_d li {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #1db954;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 1.05rem;

  list-style: none;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(29,185,84,0.2);
}

.form_information .list_d li:hover {
  background: rgba(29,185,84,0.12);
  transform: translateX(5px);
  box-shadow: 0 0 18px rgba(29,185,84,0.5);
}

.form_information a {
  color: #1db954;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.form_information a:hover {
  color: #2cff87;
  text-shadow: 0 0 6px #2cff87;
}


.security_section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #cccccc;
}

.security_section .list_d {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.security_section .list_d li {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #1db954;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(29,185,84,0.2);
  position: relative;
}

.security_section .list_d li:hover {
  background: rgba(29,185,84,0.12);
  transform: translateX(5px);
  box-shadow: 0 0 18px rgba(29,185,84,0.5);
}

.security_section .list_d li::before {
  content: "023"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #1db954;
  font-size: 1.2rem;
}

.security_section a {
  color: #1db954;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.security_section a:hover {
  color: #2cff87;
  text-shadow: 0 0 6px #2cff87;
}

.mobile_section .sub_title {
  color: #00ffe0;
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 40px;
  position: relative;
}

.mobile_section .sub_title::before {
  content: "📱";
  display: block;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ff007a;
  text-shadow: 0 0 15px #ff007a, 0 0 30px #00ffe0;
  animation: pulseIcon 2s ease-in-out infinite alternate;
}

@keyframes pulseIcon {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 1; }
}
 
.mobile_section p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #d6d6d6;
  background: rgba(20, 20, 20, 0.6);
  border-left: 3px solid #00ffe0;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 25px;
  box-shadow: 0 0 25px rgba(0, 255, 224, 0.08);
  transition: all 0.4s ease;
}

.mobile_section p:hover {
  transform: translateY(-6px);
  background: rgba(30, 30, 30, 0.8);
  box-shadow: 0 0 30px rgba(0, 255, 224, 0.25);
  border-left-color: #ff007a;
}
 
.mobile_section .container::after {
  content: "";
  display: block;
  width: 160px;
  height: 3px;
  margin: 50px auto 0;
  background: linear-gradient(90deg, #00ffe0, #ff007a);
  border-radius: 8px;
  animation: neonSlide 2.5s infinite ease-in-out;
}
.slot_section {
  background: linear-gradient(135deg, #0a0a0a, #141414);
  color: #e0e0e0;
  padding: 60px 20px;
}

.slot_section .slot_top_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

 

.slot_section .slot_top_title a {
  color: #2cff87;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.slot_section .slot_top_title a:hover {
  color: #1db954;
  text-shadow: 0 0 6px #2cff87;
}

.topfive_operators {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.operator_details {
  background: rgba(29, 185, 84, 0.05);
  border-radius: 15px;
  padding: 20px;
  width: 220px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #1db954;
  box-shadow: 0 0 15px rgba(29, 185, 84, 0.2);
}

.operator_details:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 28px rgba(29, 255, 135, 0.6);
  background: rgba(29, 255, 135, 0.08);
}

.operator_details .details_star {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #ffd700;
}

.operator_details .star_rating {
  width: 80px;
  height: 16px;
  background: linear-gradient(90deg, #ffd700 50%, #555 50%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.operator_details .star_rating::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: #ffd700;
}

.operator_details .logo_img img {
 
  margin-bottom: 15px;
  border-radius: 12px;
  border: 2px solid #1db954;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.operator_details .logo_img img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #1db954;
}

.operator_details .welcome_bonus {
  font-weight: bold;
  color: #fe8d1d;
  margin-bottom: 5px;
}

.operator_details p {
  font-size: 0.95rem;
  color: #e0e0e0;
  margin-bottom: 12px;
}

.operator_details .operators__button {
  display: inline-block;
  padding: 10px 18px;
  margin-bottom: 8px;
  border-radius: 10px;
  box-sizing: border-box;
  background: #00aaff;
  color: #0a0a0a;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px #1db954;
}

.operator_details .operators__button:hover {
  background: #2cff87;
  box-shadow: 0 0 20px #2cff87;
}

.operator_details .operator_reviewlink {
  color: #2cff87;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.operator_details .operator_reviewlink:hover {
  text-decoration: underline;
  text-shadow: 0 0 5px #2cff87;
} 
.left_top_block {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #e0e0e0;
  padding: 60px 20px;
}

.left_top_block h2 {
  font-size: 2.2rem;
  color: #ff9800; 
  margin-bottom: 20px;
}

.left_top_block p {
  line-height: 1.65;
  font-size: 1rem;
  color: #cfcfcf;
  margin-bottom: 25px;
}

.hover_content {
  background: rgba(29, 185, 84, 0.05);
  border-left: 4px solid #1db954;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 30px;
  position: relative;
  color: #d0ffd6;
}

.hover_content img.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  filter: brightness(0) invert(1);
}

.hover_content span {
  font-weight: 700;
  color: #1db954;
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 4px #2cff87;
}

.hover_content .hover_item {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #bfffc0;
}
 
.online_casinos_items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.online_casino_item {
  background: rgba(29, 185, 84, 0.03);
  border-radius: 15px;
  border: 2px solid #1db954;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(29, 255, 135, 0.15);
}

.online_casino_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 28px rgba(29, 255, 135, 0.5);
  background: rgba(29, 255, 135, 0.05);
}

/* === Titles & Logos === */
.online_casino__title h3 {
  font-size: 1.5rem;
  color: #1db954; 
  margin-bottom: 15px;
}

.casino__info_left p {
  font-weight: 600;
  margin-bottom: 8px;
  color: #cfcfcf;
}

.logo_cagino img {
  max-width: 130px;
  border-radius: 10px;
  border: 2px solid #1db954;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo_cagino img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #1db954;
}
 
.operator-star-rating {
  position: relative;
  width: 80px;
  height: 16px;
  margin: 10px 0;
  background: #333;
  border-radius: 4px;
  overflow: hidden;
}

.operator-star-rating__overlay {
  background: #ffd700;
  height: 100%;
}

.operator-star-rating__underlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}
 
.operatorCard__bonus {
  font-weight: 700;
  font-size: 1rem;
  color: #1db954;
  margin-bottom: 10px;
}

.operatorCard__bonus span {
  font-weight: 400;
  color: #bfffc0;
}

.welcome-text {
  display: block;
  font-size: 0.85rem;
  margin-top: 3px;
  color: #2cff87;
}

.operators__button {
  display: inline-block;
  padding: 10px 18px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #1db954;
  color: #0a0a0a;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px #1db954;
}

.operators__button:hover {
  background: #2cff87;
  box-shadow: 0 0 20px #2cff87;
}

.read_review {
  color: #2cff87;
  font-size: 0.85rem;
  text-decoration: none;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.read_review:hover {
  text-decoration: underline;
  text-shadow: 0 0 5px #2cff87;
}
 
.slot_questions {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  max-width: 1000px;
  margin: 40px auto;
}

.slot_questions h2 {
  font-size: 2rem;
  color: #ff6a00;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 0 5px #ff6a00;
}

.slot_questions p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

.slot_questions a {
  color: #ff6a00;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.slot_questions a:hover {
  color: #ffa04d;
}

/* === Slot Cart Box === */
.slot_cart_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.slot_cart_group {
  background: #1a1a1a;
  border-radius: 15px;
  color: #fff;
  display: flex;
  padding: 20px; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot_cart_group:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255,106,0,0.5);
}
 
.icon_background {
  background: linear-gradient(145deg, #ff6a00, #ff8c33);
  border-radius: 12px;
  padding: 15px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.icon_background img {
  width: 50px;
  height: 50px;
}

.slot_cart_group:hover .icon_background {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255,140,51,0.6);
}
 
.text_slot_cart h3 {
  font-size: 1.2rem;
  color: #ff6a00;
  margin-bottom: 10px;
}

.text_slot_cart p {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.6;
}

.text_slot_cart a {
  color: #ffd18c;
  text-decoration: underline;
}

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

/* Responsive */
@media (max-width: 768px) {
  .slot_cart_group {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .icon_background {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.operatorCard__ss img.inner {
  width: 100%;
  border-radius: 12px;
  border: 2px solid #1db954;
  margin-top: 15px;
  box-shadow: 0 0 15px rgba(29, 255, 135, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.operatorCard__ss img.inner:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px #1db954;
}
 
.operatorCard__middleBar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 15px 0;
  font-size: 0.9rem;
  color: #212121;
}

.operatorCard__middleBar span {
  font-weight: 600;
  color: #1db954;
}
 
.operatorCard__moreDetails ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
  font-size: 0.9rem;
}

.operatorCard__moreDetails ul.pros li {
  color: #bfffc0;
}

.operatorCard__moreDetails ul.cons li {
  color: #ff6b6b;
}

.operatorCard__moreDetails li i {
  margin-right: 6px;
}
.sing_up_block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #eee;
  background-color: #121212; 
}

.sing_up_block h2 {
  font-size: 2.2rem;
  color: #ff6f00;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(255, 111, 0, 0.6);
  animation: fadeInUp 1s ease forwards;
}

.sing_up_block p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #ccc;
  text-align: center;
}
 
.howtoboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
 
.howtobox {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  border-radius: 20px;
  padding: 25px; 
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.howtobox:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 111, 0, 0.4);
}

/* === Step Number Circle === */
.howtobox__num {
  width: 50px;
  height: 50px;
  background-color: #ff6f00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  font-weight: bold;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(255, 111, 0, 0.6);
}

/* === Step Header === */
.howtobox__header {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ff9500;
  text-shadow: 0 0 5px rgba(255, 149, 0, 0.4);
}

/* === Step Image === */
.howtobox__image img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.howtobox:hover .howtobox__image img {
  transform: scale(1.1);
  filter: brightness(1.2);
}
 
.howtobox__content {
  font-size: 0.95rem;
  color: #ddd;
  text-align: left;
  line-height: 1.6;
}

.howtobox__content ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.howtobox__content ul li {
  margin-bottom: 8px;
  color: #ccc;
}
 
.howtobox:nth-child(1) { animation-delay: 0.2s; }
.howtobox:nth-child(2) { animation-delay: 0.4s; }
.howtobox:nth-child(3) { animation-delay: 0.6s; }
.howtobox:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
 
@media (max-width: 1024px) {
  .howtoboxes {
    justify-content: center;
  }
}
 }

.operatorCard__content p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #d0ffd6;
}
 
@media (max-width: 1024px) {
  .online_casinos_items {
    gap: 30px;
  }
}

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

@media (max-width: 500px) {
  .logo_cagino img {
    max-width: 100px;
  }
  .operators__button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .topfive_operators {
    gap: 20px;
  }
  .operator_details {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .slot_section .slot_top_title {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .operator_details {
    width: 90%;
  }
}

@keyframes neonSlide {
  0%, 100% { transform: scaleX(0.6); opacity: 0.6; }
  50% { transform: scaleX(1); opacity: 1; }
}
 
@media (max-width: 768px) {
  .mobile_section .sub_title {
    font-size: 1.8rem;
  }
  .mobile_section p {
    font-size: 1rem;
    padding: 15px 20px;
  }
}
 
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
 
@media (max-width: 768px) {
  .expandable-list-container ul li {
 
    max-width: 90%;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
 
.gambling_categoty {
  background-color: #1a1a1a;  
  color: #eee;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 15px;
}

.gambling_categoty h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #ff4c00;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 76, 0, 0.6);
  animation: fadeInUp 1s ease forwards;
}

.gambling_categoty p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
 
.gambling_categoty_items {
  display: grid; 
  gap: 30px;
}
.block_how {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
  color: #eee;
}

.block_how h2 {
  font-size: 2rem;
  color: #ff6f00;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 111, 0, 0.6);
  animation: fadeInUp 1s ease forwards;
}

.block_how p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #000;
}

.block_how ul.wp-block-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
} 
.trust_block {
  padding: 50px 20px; 
  margin: 0 auto; 
  color: #eee;
      background: #1a1a1a;
}

.trust_block h2 {
  font-size: 2rem;
  color: #ff6f00;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 0 0 8px rgba(255, 111, 0, 0.6);
  animation: fadeInUp 1s ease forwards;
}

.trust_block p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #ccc;
}

.trust_block a {
  color: #ff9500;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.trust_block a:hover {
  color: #ff6f00;
}

.trust_block ul.wp-block-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.trust_block ul.wp-block-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1rem;
  list-style: none;
  line-height: 1.6;
  color: #ddd;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
}

.trust_block ul.wp-block-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6f00;
  font-weight: bold;
}
 
.trust_block ul.wp-block-list li:nth-child(2) { animation-delay: 0.4s; }
.trust_block ul.wp-block-list li:nth-child(3) { animation-delay: 0.6s; }
.trust_block ul.wp-block-list li:nth-child(4) { animation-delay: 0.8s; }
.trust_block ul.wp-block-list li:nth-child(5) { animation-delay: 1s; }
  
.rounded-corners-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px 60px 20px;
      background: #1a1a1a;
}

.rounded-corners-cta__wrapper {
  flex: 1 1 200px;
  max-width: 220px;
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(255, 111, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.rounded-corners-cta__wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 111, 0, 0.5);
}

.rounded-corners-cta__primary-image-container {
  overflow: hidden;
  border-bottom: 2px solid #ff6f00;
}

.rounded-corners-cta__primary-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.rounded-corners-cta__wrapper:hover .rounded-corners-cta__primary-image {
  transform: scale(1.05);
}

.rounded-corners-cta__description {
  padding: 12px 10px;
  font-weight: bold;
  color: #ff9500;
  background: rgba(0,0,0,0.2);
  transition: background 0.3s ease, color 0.3s ease;
}

.rounded-corners-cta__wrapper:hover .rounded-corners-cta__description {
  background: rgba(255, 111, 0, 0.2);
  color: #fff;
}
 
.rounded-corners-cta__wrapper:nth-child(1) { animation-delay: 0.2s; }
.rounded-corners-cta__wrapper:nth-child(2) { animation-delay: 0.4s; }
.rounded-corners-cta__wrapper:nth-child(3) { animation-delay: 0.6s; }
.rounded-corners-cta__wrapper:nth-child(4) { animation-delay: 0.8s; }
.rounded-corners-cta__wrapper:nth-child(5) { animation-delay: 1s; }
 
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Responsive === */
@media (max-width: 768px) {
  .rounded-corners-cta {
    flex-direction: column;
    align-items: center;
  }
  .rounded-corners-cta__wrapper {
    max-width: 90%;
  }
}

.block_how ul.wp-block-list li {
  position: relative;
  background-color: rgba(255, 111, 0, 0.05);
  border-left: 4px solid #ff6f00;
  padding: 15px 20px;
  margin-bottom: 15px;
  list-style: none;
  margin-left: 0;
  border-radius: 8px;
  color: rgba(0,0,0,0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
}

.block_how ul.wp-block-list li:nth-child(2) { animation-delay: 0.4s; }
.block_how ul.wp-block-list li:nth-child(3) { animation-delay: 0.6s; }
.block_how ul.wp-block-list li:nth-child(4) { animation-delay: 0.8s; }

.block_how ul.wp-block-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 111, 0, 0.3);
}

.block_how ul.wp-block-list li strong {
  color: #ff9500;
  font-size: 1.05rem;
}

.block_how a.slotsbox__button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 25px;
  background: linear-gradient(90deg, #ff6f00, #ff9500);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
}

.block_how a.slotsbox__button:hover {
  background: linear-gradient(90deg, #ff9500, #ff6f00);
  box-shadow: 0 8px 20px rgba(255, 111, 0, 0.7);
  transform: translateY(-3px);
}
 
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
 
.block_how p a {
  color: #ff9500;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.block_how p a:hover {
  color: #ff6f00;
}
 
@media (max-width: 768px) {
  .block_how h2 {
    font-size: 1.6rem;
  }

  .block_how ul.wp-block-list li {
    font-size: 0.95rem;
    padding: 12px 15px;
  }
}

.gambling_categoty_item {
  background-color: #2a2a2a;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease forwards;
}

.gambling_categoty_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(255, 76, 0, 0.5);
}

.gambling_categoty_item .slotsbox__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gambling_categoty_item:hover .slotsbox__image img {
  transform: scale(1.05);
}

.gambling_categoty_item h3 {
  font-size: 1.3rem;
  color: #ff9500;
  margin: 15px 20px 10px 20px;
  text-shadow: 0 0 6px rgba(255, 149, 0, 0.6);
}

.gambling_categoty_item p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 20px 15px 20px;
  color: #ddd;
}

.gambling_categoty_item .slotsbox__button {
  display: inline-block;
  margin: 0 20px 20px 20px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #ff4c00, #ff9500);
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.gambling_categoty_item .slotsbox__button:hover {
  background: linear-gradient(90deg, #ff9500, #ff4c00);
  box-shadow: 0 8px 20px rgba(255, 76, 0, 0.7);
  transform: translateY(-3px);
}
 
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
 
@media (max-width: 768px) {
  .gambling_categoty_items {
    grid-template-columns: 1fr;
  }
  .gambling_categoty h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .checklist_box h2 {
    font-size: 1.8rem;
  }
  .checklist_box ul li {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 1199px) {
  .card_item {
    gap: 16px;
  }
  .card_item > div:not(:first-child)::before {
    left: -8px;
  }
  h1 {
    font-size: 30px;
  }
  .started_header li {
    font-size: 14px;
  }
  .bonus_num {
    font-size: 40px;
  }
  .logo_card {
    padding: 0 10px;
  }
  .nav_right {
    padding: 20px;
  }
  .grid_boxes {
    display: block;
  }
  .right_info_box {
    display: none;
  }
  .main_screen h1 {
    font-size: 50px;
  }
  .item_cart_bonus {
    text-align: center;
    max-width: 187px;
    width: 100%;
    box-sizing: border-box;
  }
  .title_fix_card_group {
    gap: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .card_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .card_item > div {
    box-sizing: border-box;
  }
  .started_button {
    width: 100%;
    margin-top: 30px;
  }
  .started_rank {
    display: none;
  }
  .card_item > div:not(:first-child)::before {
    content: none;
  }
  .started_header {
    display: none;
  }
  .started_container > span {
    background-color: var(--bg-secondary);
    border-bottom: 3px solid var(--bg);
    border-radius: var(--border-l);
    color: var(--bg);
    display: block;

    font-weight: 700;
    grid-template-columns: 2.5em 1.5fr repeat(5, 1fr);
    grid-gap: 0.5em 2em;
    padding: 15px;
    place-items: center;
    position: relative;
    text-align: center;
    z-index: 2;
    margin-top: 20px;
  }
  .form_content {
    padding: 40px 20px;
  }
  .form_content h5 {
    font-size: 26px;
  }
  .review-table-container {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 30px auto;
  }
  h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 920px) {
  .primary thead,
  .primary tbody {
    display: block;
    width: 900px;
  }
}
@media screen and (max-width: 992px) {
  .emphasized-box {
    padding: 15px 50px;
  }
  .expandable-list-container ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .sub_title {
    font-size: 28px;
  }
  .recent-blogs-posts {
    width: 900px;
  }
  .recent-blogs-block {
    overflow-x: auto;
  }
  .form_box {
    position: relative;
    display: block;
    margin-top: 130px;
    padding-top: 100px;
  }
  .main_screen {
    padding: 4em 0;
  }
  .form_box > img {
    position: absolute;
    top: -100px;
    left: 50%;
    width: 300px;
    transform: translateX(-50%);
  }
  .form_content h5 {
    text-align: center;
  }
  .sub-form__description {
    text-align: center;
  }
  .custom-checkbox-wrapper {
    justify-content: center;
    display: flex;
    margin-top: 10px;
  }
  .slot_img {
    min-width: 100px;
    width: 100px;
    height: 100px;
  }
  .topfive_operators {
    grid-template-columns: 1fr 1fr;
  }
  .grid_section {
    grid-template-columns: 1fr 1fr;
  }
  .operatorCard__ss {
    display: none;
  }
  .main_screen h1 {
    font-size: 40px;
  }
  .flag {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .regular > li:nth-child(2n) {
    display: none;
  }
  .expandable-list-container ul {
    grid-template-columns: 1fr 1fr;
  }
  .greenBullet {
    grid-template-columns: 1fr;
  }
  .important_section, .criteria_section{
    padding: 0 0 50px !important
  }
  .wp-block-table.is-style-regular{
    width: 100%;
  }
  .slot_cart_box{
    gap: 0;
  }
  .footer_center {
    display: flex;
    flex-direction: column;
  }
  .footer_logos ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .footer_logos ul img {
    display: block;
    width: 100%;
  }
  .footer_logos ul{
    display: flex;
    flex-wrap: wrap;
  }
  .criteria_section h3{
    box-sizing: border-box;
    font-size: 22px;
  }
  .criteria_section{ 
    box-sizing: border-box;
  }
  .grid_section {
    display: flex;
    flex-direction: column;
  }
  .topfive_operators {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .operator_details {
    max-width: 400px;
    width: 100%;
  }
  .slotsbox {
    flex-direction: column;
    display: flex;
  }
  .slotsbox_img {
    height: 280px;
  }
  h3 {
    width: 100%;
    padding: 5px 60px 5px 10px;
    display: inline-block;
    font-weight: 500;
    box-sizing: border-box;
  }
  .operatorCard__content{
    padding: 0;
  }
  .slot_section_block h3::before{
    left: 0;
    top: -30px;
  }
  .responsible_block ul.wp-block-list li{
    margin-left: 0;
  }
  .slot_questions, .top_tip{
    padding-left: 0;
    padding-right: 0;
  }
  .gambling_categoty_item {
    display: flex;
    flex-direction: column;
  }
  .security_section .list_d li, .form_information .list_d li{
    margin-left: 0;
  }
  .howtobox__header {
    text-align: center;
    padding-left: 40px;
  }
  .rounded-corners-cta__wrapper {
    width: 300px;
  }
  .howtobox {
    display: flex;
    flex-direction: column;
  }
  .gambling_categoty_item > div:not(.slotsbox__image) a {
    margin: 0 auto;
  }
  .gambling_categoty_item > div:not(.slotsbox__image) {
    padding: 20px;
  }
  .author__avatar {
    width: 80px;
    height: 80px;
  }
  .slotsbox_more_info {
    padding: 20px;
  }
  .main_screen h1 {
    font-size: 32px;
  }
  .icon_background img {
    width: 40px;
    display: block;
  }
  .slotsbox_info {
    margin: 20px;
    padding: 0;
  }
  .icon_background {
    width: 60px;
    padding: 10px;
    height: 60px;
    margin-top: 30px;
    left: -30px;
  }
  .testimonials__img {
    width: 60px;
    height: 60px;
  }
  .testimonials__wrapper--answer {
    margin-left: 10px;
  }
  .testimonials__wrapper {
    padding: 40px 20px 30px;
  }
  .slot_cart_group {
    box-sizing: border-box;
    padding-left: 30px;
    margin-left: 0;
    width: 100%;
    margin-top: 40px;
    padding-top: 40px;
  }
   .real_slot .wp-block-table{
    display: none;
   }
  .testimonials__single,
  .testimonials__wrapper--answer {
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .operatorCard__middleBar span.more-options {
    width: 250px;
  }
  .slotsbox__button{
    margin: 0;
  }
  .testimonials__container{
    gap: 0;
  }
  .testimonials__img {
    top: -20px;
  }
  .wp-block-table {
    overflow-x: auto;
    width: 1000px;
  }
  .autor_grid {
    grid-template-columns: 80px auto;
    gap: 20px;
  }
  .sub_title {
    font-size: 25px;
  }
  .started_payout {
    display: none;
  }
  .item_cart_bonus,
  .flag {
    display: none;
  }
  .title_fix_card_group {
    position: relative;
  }
  .title_fix_card_group::before {
    content: "";
    display: block;
    width: 2px;
    height: 80%;
    position: absolute;
    top: 10%;
    left: 50%;
    background: var(--breadcrumbs);
  }
  .sites_block{
    display: none;
  }
  .info_content {
    display: flex;
    flex-direction: column;
  }
  .review-proscons {
    display: flex;
    flex-direction: column;
  }
  .slot_items {
    grid-template-columns: 1fr;
  }
  .ram_action img {
    width: 100px;
  }
  .form_group {
    grid-template-columns: 1fr;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .back-to-top-area {
    height: 60px;
    width: 50px;
  }
  .back-to-top-area span {
    display: none;
  }
  .form_box { 
    margin: 0 0 40px;
    width: 100%;
    padding: 30px 10px;
  }
  .review-table-left th,
  .review-table-right th {
    width: 150px;
  }
  h3{
    min-width: 100%;
  }
  .reviews_different{
    padding: 40px 10px;
    width: 95%;
    box-sizing: border-box;
  }
  .form_content{
    padding: 0;
  }
  .left_info_box {
    overflow-x: hidden;
    width: 100%;
  }
  .info-box {
    padding: 20px;
  }
  .info-box__icon img {
    width: 50px;
    display: block;
  }
  .star-rating__overlay {
    background-size: 30px;
  }
  .star-rating {
    height: 30px;
    width: 150px;
  }
 .comparing_slot{
  display: none;
 }
  .online_casino__info {
    padding: 20px 0;
  }
  .online_casino__info {
    align-items: center;
    gap: 30px;
  }
  .black_list_item {
    display: flex;
    flex-direction: column;
  }
  .slotsbox__image {
    width: 100%;
    background: var(--border-line);
  }
  .slotsbox__description {
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--border-line);
  }
  .slotsbox__additional-info {
    padding: 0 20px 20px;
    margin-right: auto;
  }
  .top_tip_item {
    padding: 20px;
  }
  .bottom-author-block {
    position: relative;
    padding-top: 60px;
    margin-top: 40px;
  }
  .autor_grid {
    display: block;
  }
  .slotsbox__image img {
    max-width: 250px;
    margin: 0 auto;
  }
  .author__avatar {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .author__title {
    margin: 0;
  }
}
@media screen and (max-width: 575px) {
  .operatorCard__action {
    padding: 0;
  }
  .online_casino__info {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
  }
  .operatorCard__middleBar {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .blog_items {
    display: flex;
    flex-direction: column;
  }
  .list_spin a {
    padding: 10px;
  }
  .list_spin {
    gap: 10px;
  }
  .review-table-bonus {
    padding-bottom: 10px;
  }
  .title_fix_card{
    padding: 10px;
  }
  .title_fix_card_group {
    display: grid;
    padding: 10px 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .logo_card img {
    height: auto;
    width: 100%;
  }
  .button_play_now {
    width: 100%;
  }
  .table_block{
    padding: 30px 0;
  }
  .vip_section .sub_title::after{
    right: -10px;
  }
  .review-table-left, .review-table-right, .review-proscons__pros, .review-proscons__cons{
    flex: 1;
  }
}
