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: #2f1f35;
  --bg-active: #fff7d4;
  --text: #212529;
  --title: #580277;
  --breadcrumbs: #f0f4fc;
  --border-line: #d9dbdf;
  --light: #bcc4d8;
  --text-cart: #6a6a6a;
  --line: #73ac05;
  --active: #e5f523;
  --btn-first: #cfb220;
  --link: #aa00ff;
  --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; 
  position: relative;
  margin-bottom: 20px;
}
 
 
.reviews_different {
  background: linear-gradient(135deg, #1e1e2f, #2b2b3d);
  color: #f0f0f5;
  padding: 60px 20px; 
}

.reviews_different .container {
  max-width: 900px;
  margin: 0 auto;
}
  
.reviews_different .sub_title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b, #ff416c);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  animation: gradientMove 6s ease infinite;
}
 
.reviews_different h3 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  color: #fff;
  text-transform: uppercase;
}

.reviews_different h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 8px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  animation: lineGlow 2s ease-in-out infinite alternate;
}
 
.reviews_different p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #d0d0e0;
}
 
.reviews_different a {
  color: #ff416c;
  text-decoration: none;
  transition: all 0.3s ease;
}

.reviews_different a:hover {
  color: #ff4b2b;
  text-decoration: underline;
}
 
.centerList {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.centerList ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 15px;
}

.centerList li {
  background: #2b2b3d;
  padding: 15px 20px;
  border-radius: 12px;
  box-sizing: border-box;
  padding-left: 40px !important;
  position: relative;
  font-weight: 600;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.centerList li::before {
  content: '✔';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff416c;
}

.centerList li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 65, 108, 0.4);
}
 
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes lineGlow {
  0% { box-shadow: 0 0 5px #ff416c, 0 0 10px #ff4b2b; }
  50% { box-shadow: 0 0 10px #ff416c, 0 0 20px #ff4b2b; }
  100% { box-shadow: 0 0 5px #ff416c, 0 0 10px #ff4b2b; }
}

#breadcrumbs {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}
#breadcrumbs a {
  color: var(--cart-button);
}
.breadcrumb-container {
  padding: 15px 0;
  background: var(--breadcrumbs);
}
h1 {
  font-size: 40px;
  line-height: 40px;
  margin: 35px 0 20px;
  padding-bottom: 4px; 
}
  
.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: row-reverse;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 15px;
}

@media (max-width: 62em) {
  .header__container {
    width: 100%;
  }
}
.breadcrumb-container {
  background: radial-gradient(circle at top left, #0c0c0f, #1a1a1f 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
}

#breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0; 
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#breadcrumbs li {
  color: #ccc;
  font-size: 14px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

#breadcrumbs a {
  color: #00ffd0;
  text-decoration: none;
  text-shadow: 0 0 5px rgba(0, 255, 208, 0.5);
  transition: all 0.3s ease;
}

#breadcrumbs a:hover {
  color: #ffea00;
  text-shadow: 0 0 10px #ffea00, 0 0 20px #ffea00;
}

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

#breadcrumbs li:nth-child(2) {
  color: #555;
  font-weight: bold;
  text-shadow: none;
}

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

.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 16px;
  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: 24px 12px;
  text-decoration: none; 
  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);
  display: block; 
  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;
}

.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;
  display: none;
  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: var(--bg-active);
}
 
.started_items {
  margin-top: -2em;
}
.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%;
}
.card_item > div:not(:first-child)::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -1em;
  background: var(--border-line);
}
.started_items > a:first-child {
  background-color: var(--bg-active);
  border: 2px solid var(--active);
}

.started_logo img {
  max-width: 110px;
  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;
  justify-content: center;
  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;
}
.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);
}
.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;
} 
.checklist {
  padding: 60px 20px; 
  color: #333;
}
 
.checklist .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
 
.checklist .checklist_box {
  background-color: #fff; 
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.checklist .checklist_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
 
.checklist .checklist_box h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
 
.checklist .checklist_box h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #28a745; 
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}
 
.checklist .checklist_box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
} 
.checklist .checklist_box ul li {
  position: relative;
  padding-left: 35px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}
 
.checklist .checklist_box ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  color: #28a745;
  line-height: 1.2;
}
 
.checklist .checklist_box ul li:hover {
  color: #28a745;
}

.emphasized-box:after {
  bottom: -10px;
  content: url(../images/emphasis-right.png);
  position: absolute;
  right: -238px;
}
ul.checkBullet li:before {
  border-color: #fff;
  border-radius: 50%;
  color: var(--line);
  border-style: solid;
  border-width: 0.5px 2px;
  box-shadow: 0 2px 5px var(--bg);
  content: "";
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml,<svg id="Layer_1" style="enable-background:new 0 0 612 792;" version="1.1" viewBox="0 0 612 792" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style type="text/css">.st0{clip-path:url(%23SVGID_2_);fill:none;stroke:%2341AD49;stroke-width:45;}.st1{fill:%2341AD49;}</style><g><g><defs><rect height="512" id="SVGID_1_" width="512" x="50" y="140"/></defs><clipPath id="SVGID_2_"><use style="overflow:visible;" xlink:href="%23SVGID_1_"/></clipPath><path class="st0" d="M306,629.5c128.8,0,233.5-104.7,233.5-233.5S434.8,162.5,306,162.5S72.5,267.2,72.5,396 S177.2,629.5,306,629.5L306,629.5z"/></g><polygon class="st1" points="421.4,271 241.9,450.5 174.9,383.5 122,436.4 241.9,556.2 257.3,540.8 257.4,540.8 474.3,323.9 421.4,271 "/></g></svg>')
    no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  font-size: 20px;
  margin-left: -10px;
  margin-right: 5px;
  vertical-align: middle;
}
.container > p,
.criteria_section p,
.important_section p,
.last_block p {
  margin-bottom: 20px;
}
.last_block{
  max-width: 900px;
  margin: 0 auto;
}
.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; 
  clear: both;
  display: table;
  font-size: 19px;
  margin: 10px auto 20px;
  padding: 7px 0;
  text-align: center;
  width: auto;
}
 
.checklist_box h2 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(90deg, #28a745, #1ec2a1, #28a745);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.15);
  letter-spacing: 2px;
  margin-bottom: 30px;
}
 
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.reviews_section { 
  color: #333;
}

.reviews_section .sub_title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1e3a8a;
  position: relative;
}

.reviews_section .sub_title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #28a745;
  margin: 8px auto 0;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.reviews_section img {
  display: block;
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.reviews_section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.expandable-list-container {
  margin-top: 20px;
}

.expandable-list-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 0 !important;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px 15px;
}

.expandable-list-container ul li {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  list-style: none !important;
}

.expandable-list-container ul li a {
  text-decoration: none;
  color: #1e3a8a;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.expandable-list-container ul li:hover {
  background: #28a745;
  transform: translateY(-3px);
}

.expandable-list-container ul li:hover a {
  color: #fff;
}

.list_btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: #1e3a8a;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.list_btn:hover {
  background: #28a745;
  transform: scale(1.05);
}
 
.reviews_section img {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.expandable-list-container {
  background-color: var(--light);
  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;
}
.expandable-list-container ul li {
  list-style: disc;
  background: var(--bg-secondary);
}
.expandable-list-container ul li::marker {
  color: var(--line);
}
.expandable-list-container ul li a {
  color: var(--bg);
}
 
.regular {
  gap: 12px;
  transition: all 0.3s linear;
  max-height: 200px;
  overflow: hidden;
}
.show.regular {
  max-height: 10000px;
}
 
.footer {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  padding: 60px 20px 40px; 
}
  
.footer .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  flex-direction: column-reverse;
  max-width: 1200px;
  margin: 0 auto;
}
 
.footer_nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_nav li {
  margin-bottom: 12px;
}

.footer_nav li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

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

.footer_nav li a:hover::after {
  width: 100%;
}

.footer_nav li a:hover {
  color: #ff416c;
  letter-spacing: 1px;
}
 
.footer_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer_center img {
  max-width: 140px;
  filter: brightness(1.2);
}

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

.footer_center ul li a img {
  width: 36px;
  height: 36px;
  transition: transform 0.4s, filter 0.4s;
}

.footer_center ul li a img:hover {
  transform: scale(1.3) rotate(10deg);
  filter: brightness(1.5);
}
 
.footer_discription {
  grid-column: span 3;
  background: #1f1f1f;
  padding: 25px 30px;
  border-radius: 12px;
  margin-top: 30px;
}

.footer_discription h4 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #ff416c;
  text-transform: uppercase;
  position: relative;
}

.footer_discription h4::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 2px;
  background: #ff416c;
  bottom: -5px;
  left: 0;
  border-radius: 2px;
}

.footer_discription p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}
 
.footer_logos {
  grid-column: span 3;
  text-align: center;
  margin-top: 40px;
}

.footer_logos p {
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

.footer_logos ul {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.footer_logos ul li img {
  max-height: 40px;
  transition: transform 0.3s, filter 0.3s;
}

.footer_logos ul li img:hover {
  transform: scale(1.2) rotate(-5deg);
  filter: brightness(1.5);
}
 
.footer_bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer_bottom img {
  transition: transform 0.4s, filter 0.4s;
}

.footer_bottom img:hover {
  transform: scale(1.2) rotate(3deg);
  filter: brightness(1.4);
}
 
.footer .copy {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #888;
}

.footer .copy b {
  color: #fff;
}
 
.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
} 
.footer_discription { order: 3; flex: 1 1 100%; margin-top: 40px; }
.footer_logos { order: 4; flex: 1 1 100%; margin-top: 40px; }
.footer_bottom { order: 5; flex: 1 1 100%; margin-top: 20px; }
 
@media (max-width: 900px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
  }
  .footer_nav, .footer_center, .footer_discription, .footer_logos, .footer_bottom {
    flex: 1 1 100%;
    text-align: center;
  }
}

.list_btn {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  line-height: 48px;
  max-width: 162px;
  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%;
  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;
}

.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;
  }
}
 
.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;
    -webkit-text-fill-color: #0c0079;
}
.rounded-corners-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 21px 0 40px;
  box-sizing: border-box;
}
.rounded-corners-cta__wrapper {
  border-radius: 10px; 
  overflow: hidden; 
  max-width: 300px;
}
.rounded-corners-cta__primary-image-container {
  height: 171px;
  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";
  background: var(--border-line);
  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;
}
 
 
.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;
  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 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.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: 225px;
}
.review-table-container td {
  border: 1px solid var(--border-line);
  font-size: 12px;
  font-weight: 700;
  height: 46px;
  padding-left: 8px;
  text-align: left;
}
td {
  border: 1px solid var(--border-line);
  font-size: 12px;
  font-weight: 700;
  height: 46px;
  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;
}
.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%;
  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: 110px;
}
.review-proscons {
  border: 1px solid var(--border-line);
  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;
  background-color: #dbe6c4;
  border: 1px solid var(--line);
  color: var(--line);
  display: flex;
  height: 44px;
  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;
  background-color: #f0c8c8;
  border: 1px solid #a84848;
  color: #a84848;
  display: flex;
  align-content: center;
  justify-content: center;
  height: 44px;
  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;
} 
.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 {
  background-color: var(--bg-secondary);
  border-right: 5px solid var(--bg-secondary);
  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%;
}
 
.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;
  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;
  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 , .slot_list_popular h3{
  background: none;
  color: var(--title);
  padding: 0;
  margin-top: 0;
      -webkit-text-fill-color: var(--title);
}

.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 {
  background: var(--link);
  border-radius: 50px;
 
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
 
  padding: 20px;
  position: relative;
 
}
.icon_background img {
  width: 70px;
  display: block;
}
.text_slot_cart {
  grid-area: title;
}
.text_slot_cart h3 {
  color: var(--bg-secondary) !important; 
  padding: 0;
  margin: 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;
  box-sizing: border-box;
}
.testimonials__img {
  height: 67px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 67px;
  overflow: hidden;
  position: absolute;
  border: 2px solid var(--bg-secondary);
  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 {
  padding-left: 20px;
}
.recent-blog__author img {
  border-radius: 50px;
  margin-right: 10px;
}
.recent-blogs-posts .recent-blog__date {
  color: var(--text);
  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: var(--link);
  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;
}
 
.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;
  color: #fff;
}
.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 0;
  width: 297px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.casino__info_left p {
   font-size: 22px;
   text-transform: uppercase;
   font-weight: 700;
}
.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: var(--text);
  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;
  margin: 0 auto;
  max-width: 340px;
}
.slot_cart_box {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin: 50px 0;
}

.slot_cart_group {
  background: linear-gradient(135deg, #5b5fc7, #8c7ed1);
  color: #fff;
  border-radius: 20px;
  width: 45%;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;  
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.slot_cart_group:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icon_background {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 15px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.slot_cart_group:hover .icon_background {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

.icon_background img {
  width: 60px;
  height: auto;
}

.text_slot_cart h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #000 ;
  opacity: 1 !important;
}

.text_slot_cart p {
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0ff;
}

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

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

@media screen and (max-width: 1024px) {
  .slot_cart_group {
    width: 45%;
  }
}

@media screen and (max-width: 768px) {
  .slot_cart_group {
    width: 90%;
    flex-direction: row;
    gap: 15px;
  }
}

.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;
}
.list_btn {
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, #1e3a8a, #28a745);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.reviews_different {
  padding: 60px 0; 
  color: #222;
}

.reviews_different .sub_title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  color: #1e3a8a;
}

.reviews_different .sub_title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #28a745;
  margin: 10px auto 0;
  border-radius: 2px;
}

.reviews_different h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e3a8a;
  margin-top: 40px;
  margin-bottom: 15px;
  position: relative;
}

.reviews_different h3::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 24px;
  background: #28a745;
  border-radius: 3px;
}

.reviews_different p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.reviews_different a {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.reviews_different a:hover {
  color: #28a745;
  text-decoration: underline;
}

.reviews_different .centerList {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.reviews_different .splitTwo {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px 50px;
  padding: 0;
} 
.form_section {
  background: linear-gradient(135deg, #1e1e2f, #2b2b3d);
  color: #f0f0f5;
  padding: 80px 20px; 
}

.form_section .container {
  max-width: 900px;
  margin: 0 auto;
}
.online_casinos_items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin: 40px 0;
}

.online_casino_item {
  background: linear-gradient(145deg, #5b5fc7, #8c7ed1);
  color: #f8f8f8;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  animation: fadeInUp 0.6s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.online_casino_item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.online_casino__title h3 {
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px 16px 0 0;
}

.online_casino__info {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  gap: 12px;
}

.logo_cagino img {
  width: 190px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
}

.operator-star-rating {
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  margin-top: 5px;
  overflow: hidden;
  position: relative;
}

.operator-star-rating__overlay {
  background: #ffd700;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.operatorCard__action {
  margin-top: 10px;
  padding: 0 !important;
}

.operatorCard__bonus {
  font-size: 15px;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  padding: 7px 12px;
  border-radius: 12px;
  display: inline-block;
}

.operators__button {
  display: inline-block;
  background: #6ab1ff;
  color: #fff;
  padding: 7px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}

.operators__button:hover {
  background: #84c1ff;
  transform: scale(1.03);
}

.read_review {
  margin-left: 10px;
  color: #ffd880;
  text-decoration: underline;
  font-size: 13px;
}

.operatorCard__ss img.inner {
  width: 100%;
  border-radius: 12px;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.operatorCard__ss img.inner:hover {
  transform: scale(1.03);
}

.operatorCard__middleBar {
  padding: 10px 20px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(0,0,0,0.08);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-radius: 0 0 16px 16px;
}

.more-options {
  display: none;
  font-style: italic;
  color: #d0d0ff;
}

.more:hover .more-options {
  display: inline;
}

.operatorCard__content p {
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #f0f0f0;
}

.operatorCard__extraDetails-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.pros li, .cons li {
  margin-bottom: 5px;
  list-style: none;
  font-size: 13px;
}

.pros li i {
  color: #a6ffb3;
  margin-right: 6px;
}

.cons li i {
  color: #ff7f7f;
  margin-right: 6px;
}
 
@media screen and (max-width: 768px) {
  .online_casino_item {
    width: 90%;
  }
}
 
.form_box {
  display: flex;
  flex-wrap: wrap;
  background: #2b2b3d;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); 
  transition: transform 0.3s ease;
}

.form_box:hover {
  transform: translateY(-5px);
}
.slot_carts_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 60px 0;
  padding: 10px;
}

.slotsbox {
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

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

.slotsbox_img img {
  width: 100%;
  height: auto;
  border-bottom: 4px solid #e63946;
  transition: transform 0.5s ease;
}

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

.slotsbox_info {
  padding: 20px;
  color: #1d3557;
  flex-grow: 1;
}

.slotsbox_info h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
}

.slotsbox_info p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.slotsbox__button {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(90deg, #457b9d, #1d3557);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(29, 53, 87, 0.2);
}

.slotsbox__button:hover {
  background: linear-gradient(90deg, #1d3557, #e63946);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.3);
}

.slotsbox_more_info {
  background: #f1faee;
  border-top: 1px solid #e0e0e0;
  padding: 15px 20px;
  font-size: 0.9rem;
}

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

.slotsbox__additional_info {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.slotsbox__additional_info_label {
  font-weight: 600;
  color: #1d3557;
}

.form_box img {
  flex: 1 1 40%;
  object-fit: cover;
  width: 100%;
  max-height: 100%;
  max-width: 400px;

}
.gambling_categoty_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  background: #fff; 
  border-radius: 16px;
}

.gambling_categoty_item {
  background: #f9f9f9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gambling_categoty_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.slotsbox__image {
  overflow: hidden;
  position: relative;
}

.slotsbox__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-bottom: 1px solid #eaeaea;
}

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

.gambling_categoty_item h3 {
  font-size: 20px;
  margin: 18px 20px 10px;
  color: #222;
  font-weight: 600;
  line-height: 1.4;
}

.gambling_categoty_item p {
  margin: 0 20px 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}
.rounded-corners-cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.rounded-corners-cta__wrapper {
  background: #fafafa;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rounded-corners-cta__wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.rounded-corners-cta__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #222;
  padding: 20px;
  transition: color 0.3s ease;
}

.rounded-corners-cta__primary-image-container {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.rounded-corners-cta__primary-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

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

.rounded-corners-cta__description {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  transition: color 0.3s ease;
}

.rounded-corners-cta__wrapper:hover .rounded-corners-cta__description {
  color: #007aff;
}

.slotsbox__button {
  display: inline-block;
 
  padding: 10px 20px;
  background: linear-gradient(90deg, #ff7a00, #ffae00);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  text-align: center;
}

.slotsbox__button:hover {
  background: linear-gradient(90deg, #ff9b00, #ffc300);
  transform: scale(1.05);
}

.form_content {
  flex: 1 1 60%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
.form_content h5 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.form_content h5 span {
  color: #ff416c;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.sub-form__description {
  font-size: 16px;
  color: #d0d0e0;
  margin-bottom: 30px;
}
 
.form_group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form_item {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.form_item label {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.form_item input {
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 15px;
  background: #1e1e2f;
  color: #fff;
  transition: all 0.3s ease;
}

.form_item input:focus {
  box-shadow: 0 0 10px rgba(255, 65, 108, 0.6);
  background: #2b2b3d;
}
 
.custom-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 25px;
}

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

.custom-checkbox-wrapper a {
  color: #ff416c;
  text-decoration: none;
}

.custom-checkbox-wrapper a:hover {
  text-decoration: underline;
}
 
.btn_submit {
  padding: 15px 30px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn_submit:hover {
  background: linear-gradient(90deg, #ff4b2b, #ff416c);
  box-shadow: 0 10px 25px rgba(255, 65, 108, 0.6);
  transform: translateY(-3px);
}
h3 {
  position: relative;
  font-size: 28px;
  font-weight: 700;
  color: #460452;
  margin: 40px 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

 h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  border-radius: 2px;
  transition: width 0.4s ease;
}

  h3:hover::after {
  width: 100%;
}

 h3:hover {
  transform: translateY(-3px);
} 
@media (max-width: 768px) {
  .form_box {
    flex-direction: column;
  }

  .form_box img,
  .form_content {
    flex: 1 1 100%;
  }

  .form_group {
    flex-direction: column;
  }

  .form_item {
    flex: 1 1 100%;
  }
}

.reviews_different .splitTwo li {
  position: relative;
  padding-left: 25px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  padding-left: 30px;
  color: #222;
}
.reviews_different li{
background: #fff;
}
 

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

.list_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.list_btn:hover::before {
  left: 200%;
}

.list_btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.list_btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.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 { 
  padding: 0;
  color: var(--title);
}
.blog_container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.blog_container h2 {
  font-size: 32px;
  font-weight: 700;
  color: #4a3fbd;
  margin-bottom: 40px;
  position: relative;
}

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

.blog_item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  position: relative;
}

.blog_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}
.spin_today {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 30px;
  background: linear-gradient(135deg, #4a3fbd, #6f5bdc);
  border-radius: 25px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15); 
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spin_today:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.spin_today h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.spin_today p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e1e1f0;
}

.spin_today h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0 15px;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.25);
}

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

.list_spin li {
  flex: 1 1 150px;
  max-width: 200px;
}

.list_spin li a {
  display: block;
  text-align: center;
  padding: 12px 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.list_spin li a:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  color: #f0f0ff;
}
 
@media screen and (max-width: 768px) {
  .spin_today {
    padding: 30px 20px;
  }
  .list_spin {
    flex-direction: column;
    gap: 12px;
  }
  .list_spin li {
    max-width: 100%;
  }
}
.bottom-author-block {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px 25px;
  background: #f8f9ff;
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08); 
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-author-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.author__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #4a3fbd;
}

.autor_grid {
  display: flex;
  gap: 20px; 
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.author__avatar {
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  width: 100px;
  height: 100px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.author__avatar img.inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avt_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.author__name {
  font-size: 18px;
  font-weight: 600;
  color: #2c2c2c;
}

.author__name .author-title {
  font-size: 14px;
  color: #777;
  margin-left: 8px;
}

.author__social-media a {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.author__social-media a:hover {
  transform: scale(1.2);
  opacity: 0.85;
}

.author__description p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.author__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.author__buttons a.slotsbox__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 25px;
  background: linear-gradient(135deg, #6f5bdc, #4a3fbd);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.author__buttons a.slotsbox__button:hover {
  background: linear-gradient(135deg, #4a3fbd, #6f5bdc);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.our_blog{
  display: none !important;
}
@media screen and (max-width: 768px) {
  .autor_grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .avt_top {
    flex-direction: column;
    gap: 5px;
  }

  .author__buttons {
    justify-content: center;
  }
}

.blog_img img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

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

.blog_item_body {
  padding: 20px;
  text-align: left;
}

.blog_item_body .recent {
  display: inline-block;
  background: #8c7ed1;
  color: #fff;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}

.recent_blog__title h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}

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

.recent_blog__title h4 a:hover {
  color: #6f5bdc;
}

.recent-blog__date {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
  display: block;
}

.recent_blog__author {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #4a3fbd;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.recent_blog__author:hover {
  color: #6f5bdc;
}

.slotsbox__button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #4a3fbd, #8c7ed1);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.slotsbox__button:hover {
  background: linear-gradient(135deg, #6f5bdc, #b9a7f0);
  transform: translateY(-3px);
}

@media screen and (max-width: 1024px) {
  .blog_items {
    justify-content: space-around;
  }
}

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

.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;
}
.table_block{
  display: none;
}
.list_d { 
  padding: 0;
  margin: 20px 0; 
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.list_d li {
  position: relative;
  padding: 15px 20px 15px 50px;
  margin-bottom: 12px;
  background: #111;
  list-style: none;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  font-size: 16px;
  cursor: default;
  transition: transform 0.3s, background 0.3s;
}

.list_d li::before {
  content: "🎁"; 
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform 0.3s;
}

.list_d li:hover {
  transform: translateX(5px);
  background: linear-gradient(90deg, #00ff99, #00bfae);
  color: #111;
}

.list_d li:hover::before {
  transform: translateY(-50%) scale(1.3) rotate(15deg);
}
 
@media (max-width: 500px) {
  .list_d li {
    padding: 15px 20px 15px 40px;
    font-size: 14px;
  }
  .list_d li::before {
    left: 15px;
    font-size: 18px;
  }
}

.greenBullet.regular li b{
  margin-right: auto !important;
}
.greenBullet.regular {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 800px;
  background: #1a1a1a;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  overflow: hidden; 
}

.greenBullet.regular li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  transition: background 0.3s, transform 0.3s;
  position: relative;
}

.greenBullet.regular li:last-child {
  border-bottom: none;
}

.greenBullet.regular li::before {
  content: "✔";
  color: #00ff99;
  font-weight: bold;
  margin-right: 12px;
  transform: scale(1);
  transition: transform 0.3s;
}

.greenBullet.regular li:hover::before {
  transform: scale(1.3);
}

.greenBullet.regular li b {
  color: #ffd700;
  margin-right: 10px;
}

.greenBullet.regular li:hover {
  background: linear-gradient(90deg, rgba(0,255,153,0.1), rgba(0,255,153,0.2));
  transform: translateX(5px);
}
 
@media (max-width: 500px) {
  .greenBullet.regular li {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }
}

.black_list_item {
  display: grid;
  grid-template-columns: 220px 2fr 1fr;
  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);
}
.black_list_item h3, .top_tip_item h3{
  -webkit-text-fill-color: #410a4a;
  margin-top: 0;
}
.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 { 
  text-decoration: underline;
  color: var(--text);
  z-index: 10;
  transition: all .3s linear;
  width: max-content;
  display: block !important;
  margin: 0 auto !important;
}
.btn_read_review:hover{
  color: var(--link);
}
.box_cart_started {
  position: relative;
}
.started_button{
  padding-bottom: 20px;
} 
.info_start {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: #f9f9f9; 
  z-index: 1;
}
 
.info_start::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 30%, #0c0c0f, transparent 40%),
              radial-gradient(circle at 80% 70%, #1a0a30, transparent 30%),
              radial-gradient(circle at 50% 50%, #001f2d, transparent 50%);
  background-size: cover;
  animation: darkBG 20s linear infinite;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.6;
}
 
@keyframes darkBG {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
} 
.get_started {
  background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #1c1b29);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  padding: 60px 0;
  color: #fff; 
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
 
.get_started .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
 
.get_started p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #d1d1d1;
}
 
.started_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
} 
.info_block {
  padding: 60px 20px; 
  color: #333;
  line-height: 1.8;
} 
.info_block .container {
  max-width: 900px;
  margin: 0 auto;
} 
.info_block p {
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}
 
.info_block p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 18px;
  background: #ff6b6b; 
  border-radius: 2px;
}
 
.info_block .emphasized-box {
  background-color: #fff;  
  border-left: 6px solid #ff6b6b;
  padding: 20px 25px;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  font-weight: 600;
  font-size: 18px;
  color: #222;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.info_block .emphasized-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
 
.info_block .emphasized-box.box-heading {
  font-size: 20px;
}
 
@media (max-width: 768px) {
  .info_block p {
    font-size: 16px;
  }

  .info_block .emphasized-box {
    font-size: 16px;
    padding: 18px 20px;
  }
}
.emphasized-box--green {
  background: linear-gradient(135deg, #8c00bf, #3703a5);
  border-left: 6px solid #00ff99;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0, 191, 174, 0.3);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  color: #fff; 
  margin: 20px 0;
}

.emphasized-box--green:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(0, 191, 174, 0.5);
}

.emphasized-box--green::before {
  content: "💎";
  position: absolute;
  top: -12px;
  left: -12px;
  font-size: 28px;
  transform: rotate(-15deg);
} 
table.primary {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden; 
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin: 20px 0;
}
 
table.primary thead th {
  background: linear-gradient(90deg, #00bfae, #00ff99);
  color: #fff;
  font-weight: 600;
  padding: 15px 20px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s;
}
 
table.primary thead th:hover {
  background: linear-gradient(90deg, #00ff99, #00bfae);
  transform: translateY(-2px);
}
 
table.primary tbody tr {
  background: #f9f9f9;
  transition: background 0.3s, transform 0.3s;
}
 
table.primary tbody tr:hover {
  background: #e0fff8;
  transform: scale(1.02);
}
 
table.primary tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
}
 
table.primary tbody a {
  display: inline-block;
  background: #00bfae;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

table.primary tbody a:hover {
  background: #00ff99;
  color: #000;
  box-shadow: 0 6px 12px rgba(0,191,174,0.3);
}
 
table.primary tbody tr:last-child td {
  border-bottom: none;
} 
.slot_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}
 
.slot_item {
  background: linear-gradient(145deg, #ffffff, #e6f7f5);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
 
.slot_item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
 
.title_slot {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00796b;
  padding: 15px 20px;
  text-align: center;
  background: linear-gradient(90deg, #860484, #050e70);
  color: white;
  border-radius: 20px 20px 0 0;
  transition: background 0.3s ease;
}

.slot_item:hover .title_slot {
  background: linear-gradient(90deg, #00ff99, #00bfae);
}
 
.slot_content {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.ram_action {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #e0f7f1, #ffffff);
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 30px auto;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.ram_action:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
} 
.ram_action img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.ram_action:hover img {
  transform: scale(1.1) rotate(-2deg);
}
 
.ram_action p:first-of-type {
  font-size: 22px;
  font-weight: 700;
  color: #00796b;
  margin-bottom: 15px;
}
 
.ram_action p:last-of-type {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
 
.ram_action a {
  color: #00bfae;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.ram_action a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: #00bfae;
  transition: width 0.3s ease;
} 
.slot_section {
  background: #061832;
  padding: 60px 0; 
}
.operatorCard__ss{
  order: -1;
} 
.slot_top_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.slot_top_title h2 {
  font-size: 28px;
  color: #430079;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.hover_content {
  position: relative;
  background: #ffffff;
  border-left: 5px solid #5f00bf;
  border-radius: 12px;
  padding: 20px 20px 20px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  margin: 20px auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards; 
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hover_content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
 
.hover_content .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hover_content .close-button:hover {
  transform: scale(1.2) rotate(90deg);
  opacity: 0.8;
}
 
.hover_content span {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: #00796b;
  margin-bottom: 10px;
  position: relative;
}

.hover_content span::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #420568;
  border-radius: 2px;
  margin-top: 4px;
}
 
.hover_content p.hover_item {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  margin: 0;
}
 
@media screen and (max-width: 768px) {
  .hover_content {
    max-width: 90%;
    padding: 15px 15px 15px 20px;
  }

  .hover_content span {
    font-size: 16px;
  }

  .hover_content p.hover_item {
    font-size: 13px;
  }
}

.slot_top_title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: #00bfae;
  left: 0;
  bottom: -10px;
  border-radius: 2px;
}

.slot_top_title a {
  text-decoration: none;
  font-weight: 600;
  color: #00bfae;
  transition: color 0.3s ease;
}

.slot_top_title a:hover {
  color: #00796b;
} 
.topfive_operators {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.operator_details {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  width: 230px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.operator_details:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
 
.operator_details:nth-child(4) {
  display: none;
}
 .black_list_slotsbox {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 50px auto;
  max-width: 1200px;
}
.top_tip_items {
  display: flex; 
  flex-direction: column;
  justify-content: center;
  margin: 20px auto;
  max-width: 1200px;
}

.top_tip_item {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px 20px 60px;
  position: relative; 
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top_tip_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.top_tip_item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 10px;
}

.top_tip_item p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
 .wp-block-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  max-width: 500px;
}

.wp-block-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
  font-size: 16px;
  line-height: 1.6;
  list-style: none;
  transition: transform 0.2s ease;
}

.wp-block-list li::before {
  content: "➡"; 
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: #e63946;  
  transition: transform 0.3s ease, color 0.3s ease;
}

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

.wp-block-list li:hover::before {
  transform: translateX(5px);
  color: #f1faee;
}

.wp-block-list li:hover a {
  color: #e63946;  
}
 

.top_tip_item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 25px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e63946;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}
 
.top_tip_item:nth-child(1)::before {
  content: "🎯";  
}

.top_tip_item:nth-child(2)::before {
  content: "🚫";  
}

.top_tip_item:nth-child(3)::before {
  content: "💰";  
}

.top_tip_item:nth-child(4)::before {
  content: "📊";  
}
 
@media screen and (max-width: 992px) {
  .top_tip_item {
    width: 45%;
  }
}

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

.black_list_item {
  background: #ead7e8;
  border-left: 6px solid #7b099e;  
  border-radius: 15px;
  overflow: hidden;
  width: 350px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.black_list_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.slotsbox__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.slotsbox__image img.slotsbox__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

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

.slotsbox__description {
  padding: 20px;
}

.slotsbox__description-heading {
  font-size: 20px;
  font-weight: 700;
  color: #8d39e6;  
  margin-bottom: 10px;
}

.slotsbox__description p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.slotsbox__additional-info {
  padding: 15px 20px;
  background: #ffeaea;
  border-top: 1px solid #f1c0c0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

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

.slotsbox__additional-info a {
  color: #1d3557;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  background: #fddede;
  transition: all 0.3s ease;
}

.slotsbox__additional-info a:hover {
  background: #560353;
  color: #fff;
  transform: translateY(-2px);
}
 
@media screen and (max-width: 992px) {
  .black_list_item {
    width: 45%;
  }
}

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

.logo_img img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.operator_details:hover .logo_img img {
  transform: scale(1.1);
}
 
.details_star {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  gap: 5px;
  font-weight: 600;
  color: #ffb400;
}

.star_rating {
  width: 70px;
  height: 14px;
  background: linear-gradient(to right, #ffb400 70%, #ddd 70%);
  border-radius: 7px;
  position: relative;
}
 
.welcome_bonus {
  font-weight: 700;
  color: #00796b;
  margin-bottom: 5px;
} 
.operators__button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  background: linear-gradient(135deg, #8300bf, #0c0079);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.operators__button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #00796b, #004d40);
}

.operator_reviewlink {
  display: block;
  margin-top: 8px;
  color: #00bfae;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.operator_reviewlink:hover {
  color: #00796b;
}
 
@media screen and (max-width: 1024px) {
  .topfive_operators {
    justify-content: space-around;
  }
}

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

  .operator_details {
    width: 80%;
  }
}

.ram_action a:hover {
  color: #00796b;
}

.ram_action a:hover::after {
  width: 100%;
}

.slot_img {
  width: 100%;
  max-width: 220px;
  height: auto;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.slot_img img {
  width: 100%;
  display: block;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.slot_item:hover .slot_img img {
  transform: scale(1.05) rotate(-1deg);
}
 
.slot_content p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}
 
@media (max-width: 768px) {
  .slot_items {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
}

.emphasized-box--green .titleText {
  display: block;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.emphasized-box--green p {
  font-size: 16px;
  line-height: 1.7;
}

.box_cart_started {
  background: rgba(20, 20, 30, 0.85);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.box_cart_started:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}
 
.card_item {
  display: block;
  text-decoration: none;
  color: inherit;
}
 
.started_rank {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffcc00;
}
 
.started_logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.started_logo img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #ffcc00;
}

.started_logo p {
  font-weight: 600;
  font-size: 1.1rem;
}
 
.started_deposit {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.started_deposit li img {
  width: 30px; 
  filter: brightness(1.2);
}
 
.started_bonus {
  background: rgba(255, 204, 0, 0.1);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
  text-align: center;
}

.started_bonus p {
  margin: 2px 0;
}

.bonus_num {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffcc00;
}
 
.started_payout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.gambling-operator__speed-meter {
  width: 60px;
  height: 8px;
  border-radius: 4px;
  background: #444;
  position: relative;
  overflow: hidden;
}

.gambling-operator__speed-meter::after {
  content: '';
  display: block;
  height: 100%;
  background: #ffcc00;
  width: 80%;
  animation: pulse 2s infinite alternate;
  border-radius: 4px;
}

@keyframes pulse {
  0% { width: 0%; }
  100% { width: 80%; }
}
 
.started_products {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

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

.gambling-operator__product img {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
  filter: drop-shadow(0 0 3px #ffcc00);
}
 
.fantom_btn {
  background: linear-gradient(45deg, #ffcc00, #ffaa00);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
  color: #1b1b1b;
}

.fantom_btn:hover {
  background: linear-gradient(45deg, #ffaa00, #ffdd33);
  transform: scale(1.05);
}
 
.btn_read_review {
  display: inline-block;
  margin-top: 10px;
  color: #ffcc00;
  text-decoration: underline;
  transition: color 0.3s;
}

.btn_read_review:hover {
  color: #ffaa00;
}
 
.title_mob {
  display: none;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #ffcc00;
} 
.full_btn {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
  padding: 12px 30px;
  background: #ffcc00;
  color: #1b1b1b;
  border-radius: 30px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

.full_btn:hover {
  background: #ffaa00;
  transform: scale(1.05);
}
 
@media (max-width: 768px) {
  .title_mob {
    display: block;
  }

  .started_header {
    display: none;
  }
}

.info_start .container {
  position: relative;
  z-index: 2;
}
.info_start {
  padding: 80px 0;
  color: #f9f9f9;
  background: #000; 
  position: relative;
  overflow: hidden;
}
 
.info_start::before,
.info_start::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  animation: floatGlow 10s infinite alternate;
  z-index: 0;
}

.info_start::before {
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(0, 255, 208, 0.5), transparent 70%);
}

.info_start::after {
  bottom: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(255, 234, 0, 0.5), transparent 70%);
}

@keyframes floatGlow {
  from { transform: translateY(0px) scale(1); }
  to { transform: translateY(30px) scale(1.1); }
}

.info_start .container {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
 
.info_start h1 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  color: #fff;
  background: linear-gradient(90deg, #00ffd0, #ffea00, #ff007a, #00ffd0);
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: movingNeon 6s linear infinite;
  filter: drop-shadow(0 0 10px rgba(15, 15, 15, 0.5));
}

@keyframes movingNeon {
  0% {
    background-position: 0% 50%;
    text-shadow: 0 0 20px #00ffd0, 0 0 40px #00ffd0;
  }
  50% {
    background-position: 100% 50%;
    text-shadow: 0 0 25px #ffea00, 0 0 50px #ff007a;
  }
  100% {
    background-position: 0% 50%;
    text-shadow: 0 0 20px #00ffd0, 0 0 40px #ffea00;
  }
}
 
.info_start .line {
  width: 120px;
  height: 5px;
  margin: 0 auto 40px;
  border-radius: 5px;
  background: linear-gradient(90deg, #ff007a, #ffea00, #00ffd0, #ff007a);
  background-size: 300%;
  animation: glowBar 5s ease-in-out infinite alternate;
  box-shadow: 0 0 30px rgba(255, 234, 0, 0.8);
}

@keyframes glowBar {
  0% { background-position: 0% 50%; box-shadow: 0 0 25px #ff007a; }
  50% { background-position: 100% 50%; box-shadow: 0 0 40px #00ffd0; }
  100% { background-position: 0% 50%; box-shadow: 0 0 25px #ffea00; }
}
 
.info_autor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
  padding: 12px 25px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 60px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 25px rgba(255, 234, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.info_autor:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(255, 234, 0, 0.4), 0 0 80px rgba(0, 255, 208, 0.25);
}

.info_autor .autor_img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ffea00;
  box-shadow: 0 0 20px #ffea00;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info_autor .autor_img:hover {
  transform: scale(1.15);
  box-shadow: 0 0 30px #00ffd0, 0 0 40px #ff007a;
}

.info_autor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info_autor p {
  margin: 2px 0;
  font-size: 15px;
  color: #e6e6e6;
}

.info_autor a {
  color: #ffea00;
  font-weight: 600;
  text-decoration: none;
  text-shadow: 0 0 8px rgba(255, 234, 0, 0.8);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.info_autor a:hover {
  color: #00ffd0;
  text-shadow: 0 0 15px #00ffd0, 0 0 30px #00ffd0;
}

.date_publick {
  font-size: 13px;
  color: #aaa;
} 
.title_fix_card {
  background: linear-gradient(135deg, #1f1f1f, #111);
  padding: 25px 0;
  border-radius: 15px; 
  border: 2px solid #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.title_fix_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}
  
.title_fix_card_group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 20px;
}
.flag{
  display: none !important; 
}  
.title_fix_card .logo_card img {
  max-width: 120px;
  border-radius: 12px;
  transition: transform 0.4s;
}

.title_fix_card .logo_card:hover img {
  transform: scale(1.1) rotate(-3deg);
}
 
.item_cart_bonus {
  background: #222;
  padding: 12px 18px;
  border-radius: 10px;
  text-align: center;
  min-width: 140px;
  transition: transform 0.3s, background 0.3s;
}

.item_cart_bonus:hover {
  transform: translateY(-3px);
  background: #ff416c;
}

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

.item_cart_bonus p span {
  font-weight: 700;
  color: #ffd700;
  display: block;
  margin-bottom: 5px;
}
 
.flag {
  position: relative;
  display: flex;
  align-items: center;
  background: #333;
  padding: 5px 10px;
  border-radius: 10px;
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
}

.flag:hover {
  transform: translateY(-2px);
  background: #ff416c;
}

.flag img {
  width: 30px;
  margin-right: 5px;
}

.flag span {
  font-weight: bold;
  color: #fff;
}
 
.button_play_now {
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(255,65,108,0.5);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.button_play_now:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255,65,108,0.7);
  background: linear-gradient(90deg, #ff4b2b, #ff416c);
}

.info-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(145deg, #ffffff, #f6f8fb);
  border: 1px solid #e6ecf1;
  border-radius: 18px;
  padding: 25px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #457b9d, #e63946);
  border-radius: 18px 0 0 18px;
}

.info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #fdfdfd, #f3f7fa);
}

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

.info-box:hover .info-box__icon img {
  transform: scale(1.1) rotate(3deg);
}

.info-box__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 6px;
}

.info-box__content p {
  margin: 0;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .info-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .info-box__icon img {
    width: 60px;
    height: 60px;
  }

  .info-box__title {
    font-size: 1.2rem;
  }

  .info-box__content p {
    font-size: 0.95rem;
  }
}

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

  .item_cart_bonus, .button_play_now, .flag {
    min-width: 100%;
    text-align: center;
  }

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

.date_publick .date_update {
  color: #00ffd0;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(0, 255, 208, 0.8);
}
 
.info_start p {
  text-align: justify;
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.9;
  color: #dcdcdc;
  transition: all 0.3s ease;
}

.info_start p:hover {
  color: #fff;
  transform: translateY(-3px);
  text-shadow: 0 0 10px rgba(255, 234, 0, 0.3);
}

@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;
  }
  .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%;
  }
  .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;
  }
  .online_casinos_items{
    display: flex;
    flex-direction: column;
    
  }
  h3 {
    width: 100%;
    padding: 5px 60px 5px 10px;
    display: inline-block;
    font-weight: 500;
    box-sizing: border-box;
  }
  .online_casinos_items {
    display: flex !important;
    flex-direction: column;
    align-content: center;
    gap: 0;
  }
  .slotsbox__additional-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 0;
  }
  .top_tip_item h3{
    padding-left: 40px;
    padding-top: 10px;
  }
  .slotsbox__additional-info a{
    width: 300px;
    box-sizing: border-box;
    text-align: center;
    background: var(--bg-secondary);
    color: var(--bg);
  }
  .slotsbox__additional-info{
    padding-top: 10px !important;
  }
  .black_list_item{
    width: 100%;
  }
  .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; 
  }
  .testimonials__img {
    width: 60px;
    height: 60px;
  }
  .testimonials__wrapper--answer {
    margin-left: 10px;
  }
  .testimonials__wrapper {
    padding: 40px 20px 30px;
  }
  .slot_cart_group {
           width: 90%;
        flex-direction: row;
        gap: 15px;
  }
 
  .testimonials__img {
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
  }
  .testimonials__single,
  .testimonials__wrapper--answer {
    margin-left: 0;
    width: 100%;
  }
  .operatorCard__middleBar span.more-options {
    width: 250px;
  }
  .testimonials__img {
    top: -20px;
  }
  .wp-block-table {
    overflow-x: auto;
  }
  .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);
  }
  .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 {
    width: 95%;
  }
  .review-table-left th,
  .review-table-right th {
    width: 150px;
  }
  .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;
  }
  .wp-block-table > table {
    width: 750px;
  }
  .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;
    box-sizing: border-box;
  }
  .top_tip_item {
    padding: 20px;
    box-sizing: border-box;
  }
  .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;
  }
  .centerList ul{
    grid-template-columns: 1fr;
    width: 100%;
  }
  .expandable-list-container ul{
    padding-left: 0;
  }
  .centerList li{
    padding-left: 50px;
  }
  .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_group {
    display: grid;
    padding: 10px 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .logo_card img {
    height: auto;
    width: 100%;
  }
  .site_list{
    gap: 0;
  }
  .button_play_now {
    width: 100%;
  }
}
