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

* {
  --bg: #fff;
  --shadow: rgba(0, 0, 0, 0.5);
  --bg-secondary: #1f2435;
  --bg-active: #fff7d4;
  --text: #212529;
  --title: #1c2d44;
  --breadcrumbs: #f0f4fc;
  --border-line: #d9dbdf;
  --light: #bcc4d8;
  --text-cart: #6a6a6a;
  --line: #73ac05;
  --active: #e5f523;
  --btn-first: #cfb220;
  --link: #007bff;
  --cart-button: #ff500f;
  --play-button: #fe8d1d;
  --olive: olive;
 --bg-dark: #0b0b10;
  --bg-light: #161622;
  --neon-red: #ff004c;
  --neon-gold: #ffb400;
  --text-light: #f5f5f7;
  --text-gray: #a0a0b0;
  --transition: 0.3s ease;
  --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-family: "Archivo Black", sans-serif;
  font-weight: 700;
  position: relative;
}
 .sub_title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff416c, #ff4b2b, #ffcc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.sub_title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff416c, #ff4b2b, #ffcc33);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.sub_title:hover {
    transform: translateY(-3px);
}

.sub_title:hover::after {
    transform: scaleX(1);
}

h3 {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: #ff4b2b; 
    padding-left: 35px;  
    margin-bottom: 20px;
    display: inline-block;
    transition: color 0.3s ease;
}

h3::before {
    content: '➤';  
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #ffcc33;  
    transition: transform 0.3s ease, color 0.3s ease;
}

h3:hover::before {
    transform: translateY(-50%) translateX(5px);  /
    color: #ff416c;  
}

h3:hover {
    color: #ff416c;  
}

#breadcrumbs {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  justify-content: center;
}
#breadcrumbs a {
  color: var(--cart-button);
}
.title_fix_card{
  display: none;
}
.breadcrumb-container {
  padding: 30px 0 10px;
  width: 100%;
  background: #fff;
  position: relative; 
}
h1 {
  font-size: 40px;
  line-height: 40px;
  margin: 35px 0 20px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--active);
}
 
 
.breadcrumb-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff004c, #ffb400, transparent);
  animation: neonLine 6s linear infinite;
  opacity: 0.4;
}

@keyframes neonLine {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

#breadcrumbs {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  color: #1c1c1c;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  animation: fadeInBreadcrumb 0.5s ease;
}

#breadcrumbs li {
  color: #000000;
  transition: color 0.3s ease;
}

#breadcrumbs li a {
  color: var(--neon-gold, #ffb400);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

#breadcrumbs li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon-red, #ff004c);
  box-shadow: 0 0 8px var(--neon-red, #ff004c);
  transition: width 0.3s ease;
}

#breadcrumbs li a:hover {
  color: var(--neon-red, #ff004c);
  text-shadow: 0 0 10px var(--neon-red, #ff004c);
}

#breadcrumbs li a:hover::after {
  width: 100%;
}

#breadcrumbs li.breadcrumb_last {
  color: #050505;
  text-shadow: 0 0 4px rgba(255, 180, 0, 0.2);
}

#breadcrumbs li:nth-child(2) {
  color: var(--neon-red, #ff004c);
  opacity: 0.7;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* header */
.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;
  justify-content: space-between;
  margin: 0 auto;
  flex-direction: column;
  max-width: 1440px;
  padding: 10px 15px 0;
  gap: 10px;
}

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

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

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

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

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

  .header__mobile-toggle {
    order: 2;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.header__actions .header__link--disabled,
.header__actions a,
.header__actions button {
  background-color: inherit;
  border: none;
  border-radius: 4px;
  color: var(--active);
  cursor: pointer;
  padding: 8px 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: 16px;
  padding: 24px 12px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

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

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

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

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

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

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

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

.header__submenu li {
  margin: 8px 0;
}

.header__submenu li .header__link--disabled,
.header__submenu li a {
  color: var(--bg);
  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;
}
/* 🎰 Elegant Casino Info Section */

.info_start {
  background: linear-gradient(180deg, #0c0c14 0%, #121222 100%);
  padding: 4rem 1.5rem;
  color: var(--text-light, #f5f5f7);
  position: relative;
  overflow: hidden;
}

/* Декоративное сияние по бокам */
.info_start::before,
.info_start::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  filter: blur(40px);
  opacity: 0.4;
  z-index: 0;
}
.info_start::before {
  left: 0;
  background: radial-gradient(circle at left, #ff004c 0%, transparent 70%);
}
.info_start::after {
  right: 0;
  background: radial-gradient(circle at right, #ffb400 0%, transparent 70%);
}

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

/* Заголовок */
.info_start h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffb400, #ff004c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 0, 76, 0.2);
  margin-bottom: 1rem;
  animation: fadeInDown 0.7s ease both;
}

/* Тонкая линия под заголовком */
.info_start .line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ffb400, #ff004c);
  margin: 0 auto 2rem auto;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(255, 0, 76, 0.6);
  animation: glowPulse 2.5s infinite ease-in-out;
}

/* Автор */
.info_autor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--text-gray, #b0b0c0);
  animation: fadeIn 0.9s ease both;
}

.info_autor img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid #ffb400;
  box-shadow: 0 0 15px rgba(255, 180, 0, 0.5);
  transition: transform 0.4s ease;
}
.info_autor img:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 25px rgba(255, 0, 76, 0.8);
}

/* Автор и даты */
.info_autor a {
  color: #ffb400;
  text-decoration: none;
  transition: color 0.3s ease;
}
.info_autor a:hover {
  color: #ff004c;
  text-shadow: 0 0 10px #ff004c;
}

.date_publick {
  font-size: 0.9rem;
  color: #aaa;
}
.date_update {
  color: #ffb400;
}

/* Абзацы */
.info_start p {
  line-height: 1.75;
  color: #cfcfe2;
  font-size: 1.05rem;
  max-width: 820px;
  margin: 0 auto 1.5rem auto;
  text-align: justify;
  animation: fadeInUp 1s ease both;
}
.info_start p:last-child {
  margin-bottom: 0;
}

/* 🔥 Анимации */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 12px rgba(255, 0, 76, 0.6);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 180, 0, 0.9);
  }
}

/* Адаптивность */
@media (max-width: 768px) {
  .info_start {
    padding: 3rem 1rem;
  }

  .info_start h1 {
    font-size: 2rem;
  }

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

.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;
}
/* ===== HEADER BASE ===== */
.header {
  background: linear-gradient(90deg, rgb(10 10 65), rgb(22, 22, 36));
  box-shadow: 0 0 25px rgba(255, 0, 76, 0.15);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: background var(--transition);
}

.header__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  transition: transform 0.4s ease;
}
.header__logo img:hover {
  transform: scale(1.05) rotate(-1deg);
  filter: drop-shadow(0 0 10px var(--neon-gold));
}

/* ===== MENU ===== */
.header__main-menu {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
}

.header__link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  text-transform: none;
  position: relative;
  padding: 10px ;
  transition: color var(--transition);
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  z-index: 2000;
  height: 2px;
  background: var(--neon-red);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.header__link:hover {
  color: var(--neon-gold);
}

.header__link:hover::after {
  width: 100%;
  box-shadow: 0 0 12px var(--neon-red);
}

/* ===== SUBMENU WRAPPER ===== */
.header__menu-container {
  position: absolute;
  left: 0;
  width: 100%;
  background: rgba(14, 14, 24, 0.97);
  backdrop-filter: blur(8px); 
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.4s ease;
}

.header__list:hover .header__menu-container {
  display: block;
}

/* ===== SUBCATEGORIES ===== */
.header__subcategory {
  list-style: none; 
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.header__subcategory li a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
  position: relative;
}

.header__subcategory li a:hover {
  color: var(--neon-gold);
  text-shadow: 0 0 8px var(--neon-gold);
}

/* ===== MOBILE TOGGLE ===== */
.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle__bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background: var(--neon-gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== SEARCH ICON ===== */
.icon-search {
  color: var(--neon-gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--transition);
}
.icon-search:hover {
  color: var(--neon-red);
  text-shadow: 0 0 8px var(--neon-red);
}

/* ===== HOVER EFFECTS ===== */
.header__list:hover > .header__link {
  color: var(--neon-gold);
  text-shadow: 0 0 8px var(--neon-gold);
}

/* ===== ANIMATION ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header__main-menu {
    display: none;
  }

  .header__mobile-toggle {
    display: block;
  }

  .header__menu.active .header__main-menu {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    animation: fadeIn 0.3s ease;
  }

  .header__link {
    padding: 0.8rem 1.5rem;
  }
}
.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;
}
/* card */

.started_header {
  background-color: var(--bg-secondary);
  border-bottom: 3px solid var(--bg);
  border-radius: var(--border-l);
  color: var(--bg);
  display: grid;
  font-weight: 700;
  grid-template-columns: 2.5em 1.5fr repeat(5, 1fr);
  grid-gap: 0.5em 2em;
  padding: 15px;
  place-items: center;
  position: relative;
  text-align: center;
  z-index: 2;
  margin-top: 20px;
}
.started_item {
  display: block;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 1em;
  transition: all 0.3s linear;
  border-radius: var(--border-s);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  color: var(--text-cart);
  margin-bottom: 20px;
}
.started_item:hover {
  background: var(--bg-active);
}
 
 
.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%;
  background: #3e5184;
  margin: 0 auto;
}
.started_logo {
  text-align: center;
  font-size: 15px;
  display: flex;
  flex-direction: column;
 
  justify-content: center;
}
.started_deposit {
  display: flex;
  align-items: center;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}
.started_deposit li {
  background: var(--bg);
  width: 45px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-sizing: border-box;
}
.started_deposit img {
  display: block;
  width: 100%;
  max-width: 70px;
}
.started_bonus {
  text-align: center;
  display: flex;
  flex-direction: column;
  color: var(--title);
}
.started_bonus .bonus_num {
  font-size: 50px;
  color: var(--bg);
  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;
}
 
 
.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;
}
.emphasized-box:before {
  bottom: -10px;
  content: url(../images/emphasis-left.png);
  left: -145px;
  position: absolute;
}
.emphasized-box:after {
  bottom: -10px;
  content: url(../images/emphasis-right.png);
  position: absolute;
  right: -238px;
}
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: 30px;
  height: 30px;
  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;
  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;
}
.greenBullet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 580px;
  gap: 10px;
  font-weight: 600;
  margin: 0 auto 40px;
}
.checklist_box h2 {
  font-size: 2.5rem;              
  font-weight: 800;             
  text-transform: uppercase;  
  letter-spacing: 1px;           
  background: linear-gradient(90deg, #ff416c, #ff4b2b); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  transition: transform 0.3s ease;
}

.checklist_box h2::after {
  content: '';
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.checklist_box h2:hover {
  transform: scale(1.05);        
}

.checklist_box h2:hover::after {
  width: 100px;                  
}

.reviews_section img {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.expandable-list-container {
  background-color: var(--breadcrumbs);
  border-bottom: 3px solid var(--line);
  padding: 10px;
}
.expandable-list-container ul {
  align-items: flex-start;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 auto;
  padding: 0 0 0 40px;
}
.expandable-list-container ul li {
  list-style: disc;
}
.expandable-list-container ul li::marker {
  color: var(--line);
}
.expandable-list-container ul li a {
  color: var(--link);
}

/* Add styles */
.regular {
  gap: 12px;
  transition: all 0.3s linear;
  max-height: 170px;
  overflow: hidden;
}
.show.regular {
  max-height: 10000px;
}
.full_btn {
  display:  block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  box-shadow: 0 5px 15px rgba(255, 65, 108, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
 .info_block {
  background: linear-gradient(135deg, #002134, #461417);
  color: #fff;
  padding: 50px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
  line-height: 1.8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info_block .container {
  max-width: 900px;
  margin: 0 auto;
}

.info_block p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.95);
  transition: color 0.3s ease;
}

.info_block p:hover {
  color: #fff;
}

.info_block .emphasized-box {
  background: rgba(255, 255, 255, 0.1);
  border-left: 6px solid #fff;
  padding: 20px 25px;
  margin: 30px 0;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.reviews_section {
  padding: 60px 0; 
  color: #f5f5f5;
  background: #1c1c1c; 
}

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

.reviews_section .sub_title {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  position: relative;
}

.reviews_section img {
  width: 100%;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

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

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

.expandable-list-container {
  margin-top: 30px;
  text-align: center;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.expandable-list-container.collapsed .expandable_full_list {
  max-height: 300px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.expandable-list-container .expandable_full_list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  max-height: 1000px; /* максимальная высота при раскрытии */
  transition: max-height 0.5s ease;
}

.expandable-list-container .expandable_full_list li {
  margin: 10px 0;
}

.expandable-list-container .expandable_full_list li a {
  color: #ff6b81;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s ease;
}

.expandable-list-container .expandable_full_list li a:hover {
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  color: #fff;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(255,65,108,0.4);
}

.list_btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.list_btn:hover {
  background: linear-gradient(90deg, #ff4b2b, #ff416c);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255,65,108,0.5);
}

/* Анимация раскрытия списка через JS */
.expandable-list-container.expanded .expandable_full_list {
  max-height: 5000px;
}

.info_block .emphasized-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.05);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.info_block .emphasized-box:hover::before {
  top: -20%;
  left: -20%;
}

.info_block b {
  color: #ffea00; /* яркий акцент на важном слове */
}

.full_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}
.checklist {
  padding: 50px 20px; 
  color: #333;
}

.checklist_box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.checklist_box h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.checklist_box h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

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

.checklist_box ul li {
  position: relative;
  padding-left: 35px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  cursor: default;
  transition: transform 0.3s ease, color 0.3s ease;
}

.checklist_box ul li:hover {
  transform: translateY(-3px);
  color: #ff416c;
}

.checklist_box ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: #28a745; 
  transition: transform 0.3s ease, color 0.3s ease;
}

.checklist_box ul li:hover::before {
  transform: scale(1.3);
  color: #ff416c;  
}
 
@media (max-width: 600px) {
  .checklist_box ul {
    flex-direction: column;
    gap: 15px;
  }
}

.full_btn:hover::before {
  left: 100%;
}
 
.full_btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 65, 108, 0.6);
}
 
.full_btn span {
  position: relative;
  z-index: 2;
}
 
.full_btn:hover span {
  text-shadow: 0 0 8px rgba(255,255,255,0.8);
}

/* -------- */
.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 */
.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;
}
.get_started{
  padding: 60px 0;
} 
.started_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px; 
  color: #333;
}
 
.started_header {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 2fr 2fr 2fr 1fr;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  color: #fff;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 12px;
  text-align: center;
}

.title_mob {
  display: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ff416c;
  text-align: center;
  margin-bottom: 20px;
}
.get_started>div>p{
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}
/* Карточки операторов */
.started_items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; 
}

.started_item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.started_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.box_cart_started {
  padding: 15px;
}

.card_item {
  display: block;
  text-decoration: none;
  color: inherit;
}

.started_rank {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff416c;
}

.started_logo img {
  width: 80px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 5px;
}

.started_logo p {
  font-weight: 700;
  font-size: 1rem;
  margin-top: 5px;
  color: #ff4b2b;
}

/* Методы депозита */
.started_deposit {
  display: flex;
  gap: 5px;
  margin: 10px 0;
  justify-content: center;
}

.started_deposit li img {
  width: 80px; 
  background: #ffffff;
}

/* Бонус */
.started_bonus {
  text-align: center;
  background: linear-gradient(45deg, #ffcc33, #ff6666);
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}

.bonus_num {
  font-size: 1.5rem;
}

/* Скорость выплат */
.started_payout {
  text-align: center;
  margin-bottom: 10px;
  font-weight: 500;
  color: #333;
  display: none;
}

.gambling-operator__speed-meter {
  height: 5px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  border-radius: 5px;
  margin: 5px auto;
  width: 80%;
}

/* Продукты казино */
.started_products {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

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

.gambling-operator__product img {
  width: 35px; 
  margin-bottom: 5px;
}

/* Кнопки */
.started_button .fantom_btn {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.started_button .fantom_btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 65, 108, 0.5);
}

/* Кнопка "Read Review" */
.btn_read_review {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 8px 0;
  background: #ffcc33;
  color: #333;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn_read_review:hover {
  background: #ffb700;
}
.started_header{
  display: none;
}

/* Текст карточки */
.started_item p {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #555;
  text-align: center;
}

/* Адаптив */
@media (max-width: 900px) {
  .started_header {
    display: none;
  }
  .title_mob {
    display: block;
  }
}

.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: 90%;
  left: 0;
  width: 100%;
  z-index: 100;
}
header {
  position: relative;
}
 }
@media (max-width: 992px) {
  .header__main-menu {
    display: flex;
    flex-direction: column;
  }
  .header__menu-container {
    position: static;
  }
}

/* start */
.main_screen {
  background: url(../images/home-banner-971x446.webp) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3.4em 25px;
}
.main_screen h1 {
  font-size: 70px;
  color: var(--bg);
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 30px;
  position: static;
  border: none;
  text-transform: uppercase;
}
.main_screen p {
  color: var(--bg);
  margin-bottom: 20px;
}
.trust_box__content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--bg);
  text-transform: uppercase;
  font-weight: 17px;
}
.trust_box__content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.line_block {
  padding: 20px 0;
  background: var(--bg-secondary);
  color: var(--bg);
}
.trending_now__heading {
  text-transform: uppercase;
  font-weight: 500;
}
.trending_now__content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.trending_now__links a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--bg);
  font-size: 14px;
}
.trending_now__links img {
  width: 20px;
  filter: invert(1);
  display: block;
}
.trending_now__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.screen_contain {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.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;
}
/* Анимация заголовка */
.screen_contain h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #222;
    background: linear-gradient(90deg, #ff6b6b, #ffdd59, #1dd1a1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Стили для списка логотипов */
.trust_box__content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: flex-start;
}

.trust_box__content ul li img {
    width: auto;
    height: 25px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(60%);
}

.trust_box__content ul li img:hover {
    transform: scale(1.2);
    filter: grayscale(0%);
}
 
@media (max-width: 768px) {
    .screen_contain h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    .trust_box__content ul {
        justify-content: center;
        gap: 15px;
    }
}

.gambling_categoty_item {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid var(--light);
  border-radius: 10px;
  margin: 0 auto 30px;
  overflow: hidden;
}
.gambling_categoty_item > div:not(.slotsbox__image) {
  padding: 25px 35px;
}
.gambling_categoty_item h3 {
  color: var(--text);
  padding: 0;
  background: transparent;
}
.rounded-corners-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 21px 0 40px;
}
.rounded-corners-cta__wrapper {
  border-radius: 10px;
  height: 248px;
  overflow: hidden;
  width: 32%;
}
.rounded-corners-cta__primary-image-container {
  height: 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";
  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(--neon-red);
  border-radius: 10px 0;
  bottom: 0;
  color: var(--bg);
  display: block;
  font-size: 20px;
  font-weight: 700;
  height: 40px;
  padding-top: 8px;
  position: relative;
  right: 0;
  text-align: center;
  width: 40px;
}
.howtobox__header {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  grid-area: title;
  line-height: 27px;
  padding: 25px 20px 20px;
}
.howtobox__image {
  display: flex;
  grid-area: photo;
  padding-bottom: 15px;
  background: var(--breadcrumbs);
}
.howtobox__image img {
  height: 150px;
  margin: auto;
  width: 150px;
}
.howtobox__content {
  padding: 0 20px 20px;
}
.howtobox__content li {
  list-style: disc;
  margin: 0 0 10px 20px;
}
.site_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.recent-blogs-link a {
  margin: 30px auto;
  text-align: center;
}

/* card_item */

.title_fix_card {
  background: var(--border-line);
}
.item_cart_bonus {
  font-weight: 700;
  font-size: 14px;
  padding: 20px 15px;
  text-align: center;
}
.item_cart_bonus span {
  color: var(--line);
}
.flag span {
  color: var(--cart-button);
  width: 20px;
  height: 20px;
  display: flex;
  font-weight: 700;
  line-height: 0;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding-bottom: 2px;
  box-sizing: border-box;
  overflow: hidden;
  border: 2px solid var(--cart-button);
}
.flag {
  display: flex;
  align-items: center;
  gap: 10px;
}
.title_fix_card_group {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.logo_card img {
  display: block;
  height: 70px;
}
.logo_card {
  padding: 0 7%;
  background: var(--bg-secondary);
}
.button_play_now {
  background: var(--play-button);
  border-radius: 22px;
  box-shadow: 0 3px var(--cart-button);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  height: 44px;
  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;
}
/* Псевдоэлементы для prosconsListItem */
.prosItem.prosconsListItem::before {
  content: "✔";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--line);
  color: var(--bg);
  font-size: 16px;
  margin-right: 8px;
}
.consItem.prosconsListItem::before {
  content: "✔";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cart-button);
  color: var(--bg);
  font-size: 16px;
  margin-right: 8px;
}
.emphasized-box--green {
  background-color: var(--border-line);
  font-size: 18px;
  line-height: 24px;
  margin: 15px 0;
  box-sizing: border-box;
  overflow: hidden;
  padding: 15px 40px;
  position: relative;
  text-align: center;
  width: 100%;
}
.emphasized-box--green:before {
  bottom: -10px;
  content: url(../images/emphasis-left-green.png);
  left: -238px;
  position: absolute;
}
.emphasized-box--green:after {
  bottom: -10px;
  content: url(../images/emphasis-right-green.png);
  position: absolute;
  right: -238px;
}
.emphasized-box--green .titleText {
  display: block;
  font-weight: 700;
  padding: 0 0 10px;
}
table.primary {
  display: block;
  margin: 30px 0;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
}
th {
  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%;
}
/* 
button up */

.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%;
}

/* slot */
.nav_right {
  background: var(--breadcrumbs);
  border: 1px solid #cfd6eb;
  border-radius: 10px;
  padding: 47px;
  box-sizing: border-box;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.102);
}
.nav_right .sub_title {
  border: none;
}
.nav_right .sub_title::before,
.nav_right .sub_title::after {
  content: none;
}
.links__list li a {
  color: var(--link);
  line-height: 1.5;
}
.links__list li::before {
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 15px;
  margin: 0 5px -2px 0;
  width: 10px;
}
.grid_section {
  display: grid;
  grid-template-columns: auto 500px;
  gap: 10%;
  margin: 0 0 40px;
}
.date_publick {
  color: var(--text-cart);
}
.title_operators__heading {
  color: var(--bg);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.02px;
  text-transform: uppercase;
}

.slot_section {
  background: var(--link);
  padding: 42px 0 100px;
}
.slot_section > div {
  max-width: 1200px;
}
.slot_top_title a {
  color: var(--bg);
  font-weight: 800;
  text-decoration: underline;
}
.table_block{
  display: none !important; 
}
.gambling_categoty_items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gambling_categoty_item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gambling_categoty_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.15);
}

.slotsbox__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gambling_categoty_item:hover .slotsbox__image img {
    transform: scale(1.05);
}
.responsible_block {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px 25px;
  border-radius: 16px;
  background: #f8f9fa;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); 
  color: #333;
  line-height: 1.6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.responsible_block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.responsible_block h2 {
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #ff4757;
  position: relative;
}

.responsible_block h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ff4757;
  margin: 8px auto 0 auto;
  border-radius: 2px;
}

.responsible_block p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
}

.responsible_block a {
  color: #ff4757;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

.responsible_block ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #444;
}

.responsible_block ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #ff4757;
  font-weight: bold;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .responsible_block {
    padding: 20px 15px;
  }
  .responsible_block h2 {
    font-size: 1.6rem;
  }
  .responsible_block ul li {
    font-size: 0.95rem;
  }
}

.gambling_categoty_item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 15px 20px 10px;
    padding-left: 20px;
    color: #222;
}

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

.slotsbox__button {
    display: inline-block;
    margin: 0 20px 20px;
    padding: 12px 20px;
    background: linear-gradient(90deg, #ff6b6b, #ffdd59);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.slotsbox__button:hover {
    background: linear-gradient(90deg, #ffdd59, #ff6b6b);
    transform: translateY(-2px);
}
 
@media (max-width: 768px) {
    .gambling_categoty_items {
        grid-template-columns: 1fr;
    }
    .gambling_categoty_item h3 {
        font-size: 1.4rem;
    }
}

.greenBullet.regular {
    list-style: none;
    padding: 0;
    margin: 20px 0; 
    font-size: 16px;
    color: #eee;
}

.greenBullet.regular li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    background: rgba(30,144,255,0.05);
    border-left: 4px solid #1e90ff;
    border-radius: 6px;
    transition: all 0.3s ease;
    padding-top: 10px;
    padding-bottom: 10px;
}

.greenBullet.regular li:hover {
    transform: translateX(5px);
    background: rgba(30,144,255,0.15);
    box-shadow: 0 4px 15px rgba(30,144,255,0.4);
}

.greenBullet.regular li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6a00; /* яркий акцент */
    font-weight: bold;
    font-size: 18px;
}

.greenBullet.regular li b {
    color: #1e90ff;
}

/* Мобильная адаптация */
@media (max-width: 600px) {
    .greenBullet.regular li {
        padding-left: 25px;
        font-size: 15px;
    }
    .greenBullet.regular li::before {
        left: 5px;
        font-size: 16px;
    }
}
.list_d {
    list-style: none;
    padding: 0;
    margin: 20px 0; 
}

.list_d li {
    position: relative;
    padding: 10px;
    padding-left: 55px;
    margin-bottom: 15px;
    background: #0d0d0d; /* тёмный фон для контраста */
    border-left: 5px solid #1e90ff;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}
 
.list_d li:hover {
    border-left-color: #00ffff;
    box-shadow: 0 0 20px #00ffff, 0 0 40px #1e90ff, 0 0 60px #00ffff;
    transform: translateX(5px);
}
 
.list_d li::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
}
 
.list_d li:nth-child(1)::before {
    background-image: url('./assets/icons/casino.png');
}
.list_d li:nth-child(2)::before,
.list_d li:nth-child(3)::before,
.list_d li:nth-child(4)::before,
.list_d li:nth-child(5)::before {
    background-image: url('./assets/icons/sportsbook.png');
}
.list_d li:nth-child(6)::before {
    background-image: url('./assets/icons/lottery.png');
}
.list_d li:nth-child(7)::before {
    background-image: url('./assets/icons/birthday.png');
}
.list_d li:nth-child(8)::before {
    background-image: url('./assets/icons/shop.png');
}

/* Анимация градиента текста при hover */
.list_d li span {
    display: inline-block;
    transition: all 0.3s ease;
}

.list_d li:hover span {
    background: linear-gradient(90deg, #1e90ff, #00ffff, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glowText 1.5s infinite alternate;
}

@keyframes glowText {
    0% { text-shadow: 0 0 5px #00ffff, 0 0 10px #1e90ff; }
    100% { text-shadow: 0 0 20px #00ffff, 0 0 40px #1e90ff; }
}

 
@media (max-width: 600px) {
    .list_d li {
        padding-left: 50px;
        font-size: 14px;
    }
    .list_d li::before {
        width: 20px;
        height: 20px;
    }
}
.emphasized-box--green {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-left: 5px solid #1effa1;  
    padding: 25px 30px;
    border-radius: 12px;
    color: #fff; 
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(30, 255, 161, 0.3);
    transition: all 0.4s ease;
}

.emphasized-box--green:hover {
    box-shadow: 0 0 25px rgba(30, 255, 161, 0.6), 0 0 50px rgba(30, 255, 161, 0.3);
    transform: translateY(-3px);
}
 
.emphasized-box--green .titleText {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #1effa1;
    margin-bottom: 10px;
    position: relative;
}

/* Добавим небольшой эффект свечения под заголовком */
.emphasized-box--green .titleText::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1effa1, #00ffaa, #1effa1);
    border-radius: 2px;
    animation: glowLine 1.5s infinite alternate;
}

@keyframes glowLine {
    0% { box-shadow: 0 0 5px #1effa1, 0 0 10px #00ffaa; }
    100% { box-shadow: 0 0 15px #1effa1, 0 0 25px #00ffaa; }
}

.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;
  border-right: 1px solid var(--border-line);
  margin: 25px 35px;
  padding-right: 20px;
  grid-area: description;
}
.slotsbox_more_info {
  grid-area: info;
  padding: 45px 25px 25px 0;
}
.slotsbox__button {
  background-color: var(--bg);
  border: 1px solid var(--title);
  border-radius: 7px;
  color: var(--title);
  display: flex;
  font-size: 15px;
  align-items: center;
  font-weight: 700;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  width: -moz-fit-content;
  transition: all 0.3s linear;
  width: fit-content;
}
.slotsbox__button:hover {
  background-color: var(--title);
  color: var(--bg);
}
.slotsbox {
  display: grid;
  grid-template-areas:
    "title title title"
    "photo description info";
  grid-template-columns: 220px 2fr 1fr;
}
.left_top_block p {
  margin-bottom: 20px;
}
.slotsbox_info h3 {
  background: none;
  color: var(--title);
  padding: 0;
}
.slotsbox_info p {
  margin-bottom: 20px;
}
.slotsbox__additional_info {
  font-weight: 600;
  margin: 0 0 15px;
}
.slotsbox__additional_info span {
  font-weight: 400;
  display: block;
}
.slot_cart_group {
  grid-row-gap: 10px;
  background-color: var(--breadcrumbs);
  border: 1px solid var(--light);
  border-radius: 20px;
  grid-template-areas:
    "photo"
    "title"
    "text-content";
  margin: 20px auto 20px;
  padding: 30px 20px 30px 70px;
  position: relative;
  width: 90%;
  box-sizing: border-box;
  margin-left: auto;
}
 
.icon_background img {
  width: 70px;
  display: block;
} 
 
.text_slot_cart {
  grid-area: title;
}
.text_slot_cart h3 {
  color: var(--title);
  background: transparent;
  padding: 0;
}
.online_slot_game {
  margin-top: 60px;
}
.is-style-gsorg-fixed-horizontal-table table tr td {
  text-align: center;
}
.wp-block-table.is-style-gsorg-fixed-horizontal-table
  table
  tr
  td:first-of-type {
  background-color: #f5f7fa;
}
.types_slot p {
  margin-bottom: 20px;
}
.real_slot {
  margin-top: 70px;
}
.info-box {
  grid-column-gap: 30px;
  grid-row-gap: 10px;
  border: 1px solid #adbdd4;
  border-top: 7px solid var(--title);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 5px 25px rgba(28, 45, 68, 0.102);
  display: grid;
  grid-template-areas:
    "photo title"
    "photo box-content";
  margin: 0 auto 25px;
  max-width: 945px;
  padding: 25px;
}
.info-box__title {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}
.slot_list_popular li {
  padding: 20px;
  background-color: var(--breadcrumbs);
  border: 1px solid var(--light);
  border-radius: 20px;
  margin: 20px auto;
}
.slot_list_popular h3 {
  color: var(--title);
  padding-left: 20px !important;
  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;
  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(--cart-button);
}
.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(--text);
}
.reels_block h3::before{
  content: none;
}
.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: 150px;
  height: max-content;
}
.our_blog {
  margin: 0 0 100px;
}

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

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

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

.operatorCard__extraDetails-wrapper .pros li i.icon-checkmark-fill {
  background: var(--line);
}
.operatorCard__extraDetails-wrapper .pros li i.icon-checkmark-fill::after {
  content: "✓";
  line-height: 1;
}
.operatorCard__extraDetails-wrapper .cons li i.icon-crossmark-fill {
  background: var(--cart-button);
}
.operatorCard__extraDetails-wrapper .cons li i.icon-crossmark-fill::after {
  content: "✕";
  line-height: 1;
}
.tips_playing h3 {
  background: none;
  padding: 0;
  color: var(--title);
  padding-left: 20px;
}
.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;
  }
}
.splitTwo.greenBullet.checkBullet.normalText {
    list-style: none;
    padding: 0;
    margin: 0; 
    gap: 18px;
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto;
    color: #222;
     margin-bottom: 30px !important;
}
/* Общие стили формы */
.form_section {
    padding: 80px 0;
    background: #1a1a1a;
    color: #fff; 
}

.form_box {
    display: flex;
    align-items: center;
    gap: 50px;

    box-sizing: border-box;
    background: linear-gradient(145deg, #0f0f0f, #1f1f1f);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.form_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

.form_box img {
    max-width: 300px;
    border-radius: 15px;
    animation: floatImg 3s ease-in-out infinite;
}

@keyframes floatImg {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.form_content h5 {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

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

/* Поля формы */
.form_group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.form_item {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.form_item label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s ease;
}

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

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

.form_item input:focus + label {
    color: #ff6a00;
}

/* Кастомный чекбокс */
.custom-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.custom-checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #ff6a00;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.custom-checkbox-wrapper input[type="checkbox"]:hover {
    transform: scale(1.2);
}

.custom-checkbox-wrapper label {
    font-size: 14px;
    color: #ccc;
}

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

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

/* Кнопка отправки */
.btn_submit {
    display: inline-block;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #ff6a00, #ffd700);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.btn_submit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.5);
}

.splitTwo.greenBullet.checkBullet.normalText li {
    position: relative;
    padding-left: 13px;
    line-height: 1.6;
    transition: transform 0.3s ease, color 0.3s ease;
}
 
.splitTwo.greenBullet.checkBullet.normalText li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-right: 4px solid;
    border-bottom: 4px solid;
    border-image: linear-gradient(135deg, #ff6a00, #ffcc00) 1;
    transition: all 0.3s ease;
}
/* Общий стиль футера */
.footer {
    background: #111;
    color: #fff;
    padding: 60px 0 30px; 
    position: relative;
    overflow: hidden;
    width: 100vw;
}
 
.footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}
 
.footer_nav {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    order: 1;  
}

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

.footer_nav li a:hover {
    color: #1e90ff;  
    text-shadow: 0 0 8px rgba(30,144,255,0.6);
}
 
.footer_center {
    flex: 1 1 300px;
    text-align: center;
    order: 2;
}

.footer_center img {
    max-width: 150px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.footer_center img:hover {
    transform: scale(1.05) rotate(-2deg);
}

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

.footer_center ul li img {
    width: 30px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer_center ul li img:hover {
    transform: scale(1.3);
    filter: drop-shadow(0 0 8px #1e90ff);
}
 
.footer_discription {
    flex: 2 1 500px;
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    order: 3;
}
.slot_cart_box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.slot_cart_group {
    flex: 1 1 300px;
    background: linear-gradient(145deg, #0d1f3c, #112b4e);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 10px 25px rgba(0, 170, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot_cart_group:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 170, 255, 0.4);
}

.icon_background {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00aaff, #00ffaa);
    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) rotate(10deg);
    background: linear-gradient(135deg, #00ffaa, #00aaff);
}

.slot_cart_group:nth-child(1) .icon_background {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23fff' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path d='M32 2a30 30 0 1 0 30 30A30 30 0 0 0 32 2zm0 4a26 26 0 1 1-26 26A26 26 0 0 1 32 6z'/></svg>");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

.slot_cart_group:nth-child(2) .icon_background {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23fff' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path d='M32 0a32 32 0 1 0 32 32A32 32 0 0 0 32 0zm0 6a26 26 0 1 1-26 26A26 26 0 0 1 32 6z'/></svg>");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

.slot_cart_group:nth-child(3) .icon_background {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23fff' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path d='M32 4a28 28 0 1 0 28 28A28 28 0 0 0 32 4zm0 8a20 20 0 1 1-20 20A20 20 0 0 1 32 12z'/></svg>");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

.text_slot_cart h3 {
    font-size: 20px;
    color: #00aaff;
    margin-bottom: 10px;
}

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

.text_slot_cart a {
    color: #00ffaa;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.text_slot_cart a:hover {
    color: #00aaff;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .slot_cart_box {
        flex-direction: column;
    }
    .slot_cart_group {
        width: 100%;
    }
}

.footer_discription h4 {
    color: #ff6a00;
    margin-bottom: 10px;
    font-size: 18px;
}
 
.footer_logos {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 30px;
    order: 4;
}

.footer_logos p {
    color: #ccc;
    margin-bottom: 15px;
}

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

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

.footer_logos ul li img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px #1e90ff);
}

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

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

.footer_bottom img:hover {
    transform: scale(1.2) rotate(-5deg);
}
 
.footer .copy {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #666;
}
.slot_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.slot_item {
    background: #0a0a0a;  
    border-radius: 16px;
    overflow: hidden;
    width: calc(50% - 40px);
    box-shadow: 0 8px 25px rgba(0, 170, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(30,255,161,0.2);
}

.slot_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 255, 161, 0.5);
}
.ram_action {
    background: linear-gradient(135deg, #0d1f3c, #001a2b);  
    border-left: 6px solid #ff6a00; 
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    justify-content: center;
    gap: 10px; 
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ram_action:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 170, 255, 0.5);
}

.ram_action img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid #00aaff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ram_action:hover img {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 106, 0, 0.6);
}

.ram_action p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.ram_action p b {
    color: #ff6a00;  
    font-size: 20px;
}

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

.ram_action a:hover {
    color: #ff6a00; 
}
   
.ram_action {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

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

.title_slot {
    background: linear-gradient(135deg, #1effa1, #00aaff);
    color: #0a0a0a;
    font-weight: 700;
    font-size: 18px;
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s ease;
}

.slot_item:hover .title_slot {
    background: linear-gradient(135deg, #00ffaa, #1e90ff);
}

.slot_content {
    padding: 20px;
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
}

.slot_img {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.slot_img img {
    width: 100%;
    max-width: 250px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot_item:hover .slot_img img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(30, 255, 161, 0.5);
}
 
.slot_item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.slot_item:nth-child(1) { animation-delay: 0s; }
.slot_item:nth-child(2) { animation-delay: 0.1s; }
.slot_item:nth-child(3) { animation-delay: 0.2s; }
.slot_item:nth-child(4) { animation-delay: 0.3s; }

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

.footer .copy b {
    color: #ff6a00;
}
 .footer .container{
  width: 100%;
  overflow-x: hidden;
 }
.footer .container > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards;
}

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

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 
 body{
  width: 100vw;
  overflow-x: hidden;
 }
@media (max-width: 900px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
    }
    .footer_nav {
        justify-content: center;
    }
    .footer_discription {
        text-align: center;
    }
}

/* Hover эффект */
.splitTwo.greenBullet.checkBullet.normalText li:hover::before {
    transform: translateY(-50%) rotate(45deg) translateX(5px) scale(1.2);
}

.splitTwo.greenBullet.checkBullet.normalText li:hover {
    color: #ff6a00;
    transform: translateX(5px);
}

.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;
}

/* sites */
.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;
}
/* --- Секция слотов --- */
.slot_section {
    padding: 60px 0;
    background: #0d1f3c; /* темный фон */
    color: #e0e0e0;
}

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

.slot_top_title h2 {
    font-size: 32px;
    background: linear-gradient(90deg, #00aaff, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.slot_top_title a:hover {
    color: #ff6a00;
}
 
.topfive_operators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.operator_details {
    background: #112b4e;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.operator_details:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 170, 255, 0.4);
}

/* --- Логотип --- */
.logo_img {
    display: block;
    margin: 0 auto 15px auto;
}

.logo_img img {
    width: 100%;
    height: 100%;
    object-position: center;

    transition: transform 0.3s ease;
}

.operator_details:hover .logo_img img {
    transform: scale(1.1);
}
 
.details_star {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    gap: 8px;
}

.star_rating {
    display: inline-block;
    width: 80px;
    height: 16px;
    background: linear-gradient(to right, #ffcc00 70%, #555 0%);
    border-radius: 8px;
}
 
.welcome_bonus {
    font-weight: bold;
    color: #00aaff;
    margin-bottom: 5px;
    font-size: 16px;
}

.operator_details p {
    font-size: 14px;
    margin-bottom: 10px;
}

.operators__button {
    display: inline-block;
    background: linear-gradient(135deg, #00aaff, #ff6a00);
    color: #fff;
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-bottom: 8px;
}

.operators__button:hover {
    background: linear-gradient(135deg, #ff6a00, #00aaff);
    transform: scale(1.05);
}

.operator_reviewlink {
    display: block;
    color: #00aaff;
    font-size: 13px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.operator_reviewlink:hover {
    color: #ff6a00;
}

.operator_details {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s forwards;
}

.operator_details:nth-child(1) { animation-delay: 0.1s; }
.operator_details:nth-child(2) { animation-delay: 0.2s; }
.operator_details:nth-child(3) { animation-delay: 0.3s; }
.operator_details:nth-child(4) { animation-delay: 0.4s; }

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

.table_block td {
  text-align: center;
  text-decoration: underline;
}
.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 {
 
  background: transparent;
  color: var(--play-button);
}
.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:hover{
  color: var(--link);
}
.box_cart_started {
  position: relative;
}
.started_button{
  padding-bottom: 0;
}
 
.hover_content {
    position: relative;
    background: linear-gradient(145deg, #0d1f3c, #112b4e);
    border: 2px solid #00aaff;
    border-radius: 14px;
    padding: 20px 25px 25px;
    max-width: 400px;
    color: #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}
 
.hover_content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 170, 255, 0.5);
}
 
.hover_content .close-button {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hover_content .close-button:hover {
    transform: scale(1.2);
}
 
.hover_content span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #00aaff; 
}
 
.hover_content .hover_item {
    font-size: 14px;
    line-height: 1.6;
    color: #c0c0c0;
}
 
.hover_content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInHover 0.6s forwards;
}
/* --- Основной контейнер карточки --- */
.online_casino_item {
    background: linear-gradient(145deg, #0d1f3c, #112b4e);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #e0e0e0;
}

/* --- Hover эффект всей карточки --- */
.online_casino_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 170, 255, 0.5);
}

/* --- Заголовок --- */
.online_casino__title h3 {
    font-size: 22px;
    color: #00aaff;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

 

/* --- Левая колонка --- */
.casino__info_left {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column; 
}

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

.logo_cagino img {
    max-width: 120px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* --- Star rating --- */
.operator-star-rating {
    position: relative;
    width: 100px;
    height: 12px;
    background: #333;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}
.operator-star-rating__overlay {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #00aaff, #00ffaa);
    top: 0;
    left: 0;
}
.operator-star-rating__underlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #555;
}

/* --- Центр карточки: бонус и кнопки --- */
.casino__info_center {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.operatorCard__bonus {
    background: linear-gradient(90deg, #00aaff, #00ffaa);
    color: #0d1f3c;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.operatorCard__bonus span {
    font-weight: 400;
    font-size: 14px;
}

/* --- Кнопки --- */
.operatorCard__cta a {
    display: inline-block;
    padding: 10px 18px;
    margin: 5px 5px 0 0;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.operators__button {
    background: #00aaff;
    color: #fff;
}
.operators__button:hover {
    background: #00ffaa;
    transform: scale(1.05);
}

.read_review {
    color: #00aaff;
}
.read_review:hover {
    color: #00ffaa;
    text-decoration: underline;
}

/* --- Скриншот --- */
.operatorCard__ss img.inner {
    border-radius: 12px;
    max-width: 100%;
    box-shadow: 0 5px 20px rgba(0, 170, 255, 0.3);
    transition: transform 0.3s ease;
}
.operatorCard__ss img.inner:hover {
    transform: scale(1.05);
}

/* --- Средняя панель: игры, live, платежи --- */
.operatorCard__middleBar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background: #112b4e;
    border-radius: 12px;
}

.operatorCard__middleBar span {
    font-weight: 700;
    color: #00aaff;
}
 
.operatorCard__content p {
    margin-top: 15px;
    line-height: 1.6;
}
 
.operatorCard__moreDetails {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.operatorCard__extraDetails {
    flex: 1;
}

.operatorCard__extraDetails-wrapper ul {
    list-style: none;
    padding: 0;
}

.operatorCard__extraDetails-wrapper ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #cfd6eb;
}
.operatorCard__cta{
  display: flex;
  flex-direction: column;
}
.icon-checkmark-fill {
    color: #00ffaa;
    margin-right: 8px;
    font-size: 16px;
}
.icon-crossmark-fill {
    color: #ff4a4a;
    margin-right: 8px;
    font-size: 16px;
}
.text_slot_cart h3{
  padding-left: 20px;
}
.blog_items { 
    gap: 25px;
    margin-top: 30px;
}
.spin_today {
    background: linear-gradient(145deg, #0b1a33, #11294d);
    color: #e0e0e0;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.2);
    margin-top: 30px; 
}

.spin_today h2 {
    font-size: 28px;
    color: #00aaff;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.spin_today h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #00ffaa;
    margin: 8px auto 0 auto;
    border-radius: 2px;
}

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

.spin_today h4 {
    font-size: 22px;
    color: #00ffaa;
    margin: 30px 0 15px 0;
}

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

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

.list_spin a {
    display: block;
    text-align: center;
    padding: 12px 18px;
    background: #0d1f3c;
    color: #00aaff;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 170, 255, 0.2);
}

.list_spin a:hover {
    background: #00aaff;
    color: #0b1a33;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 170, 255, 0.4);
}

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

.blog_item {
    background: linear-gradient(145deg, #0d1f3c, #112b4e);
    border-radius: 16px;
    overflow: hidden; 
    box-shadow: 0 10px 25px rgba(0, 170, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 170, 255, 0.4);
}

.blog_img {
    display: block;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.blog_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog_item_body {
    padding: 15px 20px;
}

.recent {
    display: inline-block;
    background: #00aaff;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.bottom-author-block {
    padding: 25px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15); 
    color: #e0e0e0;
}

.author__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00aaff;
}

.autor_grid {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author__avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #00ffaa;
    box-shadow: 0 5px 15px rgba(0, 170, 255, 0.3);
}

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

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

.author__name {
    font-size: 18px;
    font-weight: 600;
    color: #00ffaa;
}

.author__name .author-title {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #a0a0a0;
    margin-top: 2px;
}

.author__social-media a img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

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

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

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

.author__buttons a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0d1f3c;
    color: #00aaff;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 170, 255, 0.2);
}

.author__buttons a:hover {
    background: #00aaff;
    color: #0b1a33;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.4);
}

.author__buttons img {
    display: inline-block;
    vertical-align: middle;
}

.recent_blog__title h4 {
    font-size: 18px;
    margin: 8px 0;
    line-height: 1.4;
}

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

.recent_blog__title h4 a:hover {
    color: #00ffaa;
}

.recent-blog__date {
    font-size: 12px;
    color: #8aa0b0;
    margin-bottom: 8px;
}

.recent_blog__author {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}
.black_list_slotsbox {
    display: flex;
    flex-direction: column;
    gap: 25px; 
    color: #f0f0f0;
}

.black_list_item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #1b1b1b;
    border-left: 5px solid #ff4c4c;
    border-radius: 12px;
    overflow: hidden;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.black_list_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 76, 76, 0.4);
}

.slotsbox__image {
    flex: 0 0 150px;
    max-width: 150px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 76, 76, 0.3);
}

.slotsbox__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slotsbox__description {
    flex: 1;
}

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

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

.slotsbox__additional-info {
    margin-top: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

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

.slotsbox__additional-info a {
    color: #00aaff;
    font-weight: 600;
    text-decoration: none;
    background: #1a1a1a;
    padding: 4px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.slotsbox__additional-info a:hover {
    background: #00aaff;
    color: #1b1b1b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 170, 255, 0.3);
}
.slot_carts_items {
    display: grid;
    grid-template-columns: 1fr 1fr;
  
    gap: 25px;
    justify-content: center; 
}
.slot_carts_items h3::before{
  content: none;
}
.slotsbox {
    background: #1b1b1b;
    border-radius: 15px;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #f0f0f0;
}

.slotsbox:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 170, 255, 0.4);
}

.slotsbox_img {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #333;
}

.slotsbox_img img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

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

.slotsbox_info {
    padding: 15px 20px;
}

.slotsbox_info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #00aaff;
}

.slotsbox_info p {
    font-size: 14px;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.slotsbox__button {
    display: inline-block;
    background: linear-gradient(90deg, #ff7f50, #ff4c4c);
    color: #fff;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.slotsbox__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 76, 76, 0.4);
}

.slotsbox_more_info {
    background: #111;
    padding: 12px 20px;
    border-top: 1px solid #333;
}

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

.slotsbox__additional_info {
    font-size: 13px;
    margin-bottom: 5px;
    color: #ccc;
}
.testimonials__container {
    display: flex;
    flex-direction: column;
 
    color: #f0f0f0;
}
.explore_slot {
    background: #1b1b1b;
    border-radius: 12px;
    padding: 20px;
    color: #f0f0f0; 
}

.explore_slot h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #00aaff;
    text-align: left;
}

.expandable-list-container {
    position: relative;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.expandable-list-container.collapsed ul.regular {
    max-height: 240px; /* фиксированная высота для "свернутого" состояния */
    overflow: hidden;
}

.expandable-list-container ul.regular {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.expandable-list-container ul.regular li {
    width: calc(50% - 6px);
    margin-bottom: 10px;
}

.expandable-list-container ul.regular li a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    background: #222;
    color: #00aaff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}
.info-box {
    display: flex;
    align-items: flex-start;
    background: #1b1b1b;
    border-radius: 14px;
    padding: 20px;
    gap: 20px;
    color: #f0f0f0; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.info-box__icon img {
    width: 72px;
    height: 72px;
    display: block;
}

.info-box__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #00aaff;
}

.info-box__content p {
    font-size: 15px;
    line-height: 1.6;
    color: #ddd;
    margin: 0;
}

.info-box-mobile-stack {
    flex-direction: row;
}

@media (max-width: 768px) {
    .info-box-mobile-stack {
        flex-direction: column;
        text-align: center;
    }
    .info-box__icon {
        margin-bottom: 15px;
    }
}

.expandable-list-container ul.regular li a:hover {
    background: #00aaff;
    color: #1b1b1b;
}

.list_btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 18px;
    background: #00aaff;
    color: #1b1b1b;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
    cursor: pointer;
}

.list_btn:hover {
    background: #0088cc;
}

@media (max-width: 768px) {
    .expandable-list-container ul.regular li {
        width: 100%;
    }
}

.testimonials__single {
    background: #1b1b1b;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 170, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials__single:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 170, 255, 0.35);
}

.testimonials__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-sizing: border-box;
    padding: 15px 20px 15px 70px;
    border-bottom: 1px solid #333;
}

.testimonials__wrapper--answer {
    background: #111;
    border-left: 4px solid #00aaff;
    padding: 20px 20px 15px 25px;
    flex-direction: row-reverse;
    text-align: left;
    padding-left: 70px;
}

.testimonials__img {
    width: 67px;
    height: 67px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00aaff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.testimonials__img--answer {
    width: 94px;
    height: 94px;
    border-color: #ffaa00;
}

.testimonials__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #00aaff;
}

.testimonials__wrapper--answer .testimonials__title {
    color: #ffaa00;
}

.testimonials__data {
    font-size: 14px;
    line-height: 1.6;
    color: #d0d0d0;
}

.testimonials__by {
    font-weight: 600;
    color: #00aaff;
    text-decoration: none;
}

.testimonials__wrapper--answer .testimonials__by {
    color: #ffaa00;
}

.testimonials__text p {
    margin: 5px 0 0 0;
}

.testimonials__wrapper--answer .testimonials__text p {
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .testimonials__wrapper,
    .testimonials__wrapper--answer {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .testimonials__wrapper--answer {
        border-left: none;
        border-top: 4px solid #00aaff;
    }
}

.slotsbox__additional_info_label {
    font-weight: 600;
    color: #ffaa00;
    margin-right: 5px;
}

@media (max-width: 1024px) {
    .slot_carts_items {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .slotsbox {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .black_list_item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .slotsbox__image {
        max-width: 200px;
    }
    .slotsbox__additional-info {
        justify-content: center;
    }
}

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

.recent_blog__author:hover {
    color: #00ffaa;
}

@media (max-width: 768px) {
    .blog_item {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .online_casino__info {
        flex-direction: column;
    }
    .operatorCard__middleBar {
        flex-direction: column;
    }
}

@keyframes fadeInHover {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.rounded-corners-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.rounded-corners-cta__wrapper {
  flex: 1 1 200px;
  max-width: 250px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.rounded-corners-cta__wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.rounded-corners-cta__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #222;
  height: 100%;
}

.rounded-corners-cta__primary-image-container {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #e0e0e0;
}

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

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

.rounded-corners-cta__description {
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 10px;
  background: #f9f9f9;
  transition: background 0.3s ease, color 0.3s ease;
}

.rounded-corners-cta__wrapper:hover .rounded-corners-cta__description {
  background: #ff4757;
  color: #fff;
  border-radius: 0 0 16px 16px;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .rounded-corners-cta {
    flex-direction: column;
    align-items: center;
  }
  .rounded-corners-cta__wrapper {
    max-width: 90%;
  }
}

.our_blog{
  display: none;
}
@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;
  }
  .header__main-menu{
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .card_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .header__container{
    display: flex;
    flex-direction: row;
  }
  .card_item > div {
    box-sizing: border-box;
  }
  .started_button {
    width: 100%; 
  }
  .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;
  }
  .header__menu-container-inner{
    display: none;
  }
  .header__main-menu{
    top: 100%;
  }
  h2 {
    font-size: 30px;
  }
   .operatorCard__middleBar div{
    flex: 1;
  }
}
@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: calc(50% - 150px);
    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;
  }
  .slot_items{
    display: flex;
    flex-direction: column;
  }
  .slot_item{
    width: 100%;
  }
  .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;
  }
  .form_content{
    padding: 0;
  }
  h3 {
    width: 100%;
    padding: 5px 60px 5px 20px;
    display: inline-block;
    font-weight: 500;
    box-sizing: border-box;
  }
  .centerList{
    padding: 20px;
  }
  .gambling_categoty_item {
    display: flex;
    flex-direction: column;
  }
  .howtobox__header {
    text-align: center;
    padding-left: 40px;
  }
  .rounded-corners-cta__wrapper {
    width: 300px;
  }
  .slot_cart_group{
    display: block;
  }
  .slot_cart_group{
    flex: 1;
  }
  .howtobox {
    display: flex;
    flex-direction: column;
  }
  .footer_center{
    flex: 1;
  }
  .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;
    position: static;
    margin: 0 auto;
    margin-top: 0;
    transform: none !important;
    left: -0;
  }
  .slot_cart_group{
    margin: 0 auto;
  }
  .slot_cart_group{
    padding-top: 0;
  }
  .testimonials__img {
    width: 60px;
    height: 60px;
  }
  .testimonials__wrapper--answer {
    margin-left: 10px;
  }
  .testimonials__wrapper {
    padding: 40px 20px 30px;
  }
  .slot_cart_group {
    box-sizing: border-box;
    padding-left: 30px;
    margin-left: 0;
    width: 100%; 
    padding-top: 40px;
  }
  .icon_background,
  .testimonials__img {
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
  }
  .testimonials__single,
  .testimonials__wrapper--answer {
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .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;
  }
  .top_tip_item {
    padding: 20px;
  }
  .bottom-author-block {
    position: relative;
    padding-top: 60px;
    margin-top: 40px;
  }
  .info_autor p{
    text-align: center;
  }
  .autor_grid {
    display: block;
  }
  .slotsbox__image img {
    max-width: 250px;
    margin: 0 auto;
  }
  .author__avatar {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .author__title {
    margin: 0;
  }
}
@media screen and (max-width: 575px) {
  .operatorCard__action {
    padding: 0;
  }
  .online_casino__info {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
  }
  .operatorCard__middleBar {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .blog_items {
    display: flex;
    flex-direction: column;
  }
  .list_spin a {
    padding: 10px;
  }
  .list_spin {
    gap: 10px;
  }
  .review-table-bonus {
    padding-bottom: 10px;
  }
  .title_fix_card_group {
    display: grid;
    padding: 10px 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .slot_carts_items{
    grid-template-columns: 1fr;
  }
  .logo_card img {
    height: auto;
    width: 100%;
  }
  .logo_cagino img{
    max-width: 250px;
  }
  .button_play_now {
    width: 100%;
  }
  .casino__info_center, .casino__info_left{
    flex: 1;
  }
}
