/* Базовые стили и сброс */
*, ::after, ::before {
  box-sizing: border-box;
}

body {
  font-family: 'Arial', 'Times New Roman', Times, serif;
  color: #fff;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  background: #171722;
  margin: 0;
  padding: 0;
}

ol, ul {
  padding: 0;
  list-style: none;
}

blockquote, body, dd, dl, figcaption, figure, h1, h2, h3, h4, li, ol, p, ul {
  margin: 0;
}

button, input, select, textarea {
  font: inherit;
}

a, button {
  padding: 0;
  margin: 0;
  border: none;
  outline: 0;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  background: inherit;
}

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

/* Базовый контейнер */
.base-block {
  max-width: 1296px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  margin-top: 48px;
  padding: 0px 48px;
}

/* Базовая граница с градиентом */
.base-gradient-border {
  position: relative;
  box-shadow: 0px 2px 2px 0px #0000003D;
  border-radius: 8px;
  background: #252536;
}

.base-gradient-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%) border-box;
  -webkit-mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff);
  mask-composite: exclude;
  pointer-events: none;
  border-radius: 8px;
}

/* Заголовки */
.h2-base-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0px;
  text-align: center;
  margin-bottom: 24px;
}

/* Иконка переключения */
.toggle-icon {
  transition: transform 0.3s ease-out;
}

/* Header - Шапка сайта */
.header {
  position: fixed;
  left: 0;
  top: 0;
  min-height: 64px;
  width: 100%;
  z-index: 1000;
  background: #252536;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 0px 0px 1px 0px;
  border-style: solid;
  border-color: transparent;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 2066.33% at 50% 100%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff);
  mask-composite: exclude;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  padding: 8px 0px;
  margin: 0 auto;
}

.header-logo {
  cursor: pointer;
  z-index: 1000;
  height: 28px;
}

.header-buttons-wrapper {
  display: flex;
  gap: 0px 20px;
  position: static;
  transform: none;
  width: auto;
  max-width: none;
  height: auto;
  box-shadow: none;
}

.header-close-btn-and-logo-wrapper,
.header-burger-button,
.header-nav {
  display: none;
}

.header-social-buttons-wrapper {
  display: flex;
  gap: 0px 20px;
}

.header-button {
  position: relative;
  height: 48px;
  padding: 0px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 2px 4px 0px #0000003D;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.header-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.3);
}

.header-button-content {
  z-index: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
}

.header-button::before {
  border-radius: 4px;
}

.header-register-button {
  position: relative;
  overflow: hidden;
  background: radial-gradient(100% 100% at 50% 0%, #FE284A 0%, #CC203B 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 0.01%, rgba(255, 255, 255, 0.01) 100%);
  transition: all 0.3s ease;
}

.header-register-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0px 8px 16px 0px rgba(254, 40, 74, 0.4);
}

.header-register-button::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 0.01%, rgba(255, 255, 255, 0.01) 100%) border-box;
}

.header-register-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(100% 100% at 50% 0%, #FF6B7A 0%, #E6304B 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  z-index: 0;
}

.header-register-button:hover::after {
  opacity: 1;
}

.header-social-button,
.header-burger-button {
  position: relative;
  overflow: hidden;
  background: radial-gradient(100.01% 100% at 50% 0%, #484868 0%, #33334A 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.3s ease;
}

.header-social-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0px 8px 16px 0px rgba(72, 72, 104, 0.5);
}

.header-social-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%), radial-gradient(99.97% 100% at 50% 0%, #6A6A9A 0%, #4F4F73 100%);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  z-index: 0;
}

.header-social-button:hover::after {
  opacity: 1;
}

.header-vertical-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(58, 58, 82, 0.08) 0%, #3A3A52 55.73%, rgba(58, 58, 82, 0.08) 100%);
}

.header-horizontal-divider {
  display: none;
}

/* Main - Основной контент */
.main {
  margin-top: 64px;
  background: #171722;
}

/* Banner - Баннер */
.banner-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner {
  position: relative;
  width: 100%;
  display: block;
}

.banner-img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
}

/* Prize Fund - Призовой фонд */
.prize-fund-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -88px;
}

.prize-fund-wrapper > img {
  margin: -1px;
  padding: 0;
  align-self: flex-end;
  z-index: 100;
}

.desktop-rectangle {
  display: block;
}

.tablet-rectangle {
  display: none;
}

.prize-fund {
  display: flex;
  align-items: center;
  column-gap: 40px;
  position: relative;
  height: 88px;
  padding: 0 48px;
  border-radius: 32px 32px 0 0;
  background: linear-gradient(360deg, #252536 0%, rgba(44, 44, 63, 0.72) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
  backdrop-filter: blur(5px);
}

.prize-fund::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 2px 2px 0px 2px;
  border-style: solid;
  border-color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%) border-box;
  -webkit-mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff);
  mask-composite: exclude;
  border-radius: 32px 32px 0 0;
}

.prize-fund-block {
  margin-right: 22px;
  display: flex;
  align-items: center;
}

.prize-fund-block img {
  margin-right: 16px;
}

.prize-fund-block-description p:nth-child(1) {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
}

.prize-fund-block-description p:nth-child(2) {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
}

.prize-fund-button {
  position: relative;
  height: 48px;
  padding: 0px 57.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 2px 4px 0px #0000003D;
  border-radius: 4px;
  background: radial-gradient(74.4% 100% at 50% 0%, #96E000 0%, #529900 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 0.01%, rgba(255, 255, 255, 0.01) 100%);
}

.prize-fund-button-content {
  z-index: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
}

.prize-fund-button::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 0.01%, rgba(255, 255, 255, 0.01) 100%) border-box;
  border-radius: 4px;
}

.prize-fund-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(74.4% 100% at 50% 0%, #CCFF00 0%, #529900 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  z-index: -1;
  border-radius: 4px;
}

.prize-fund-button:hover::after {
  opacity: 1;
}

.prize-fund-mobile-section {
  display: none;
}

/* Navigation - Навигация */
.navigation {
  background: #252536;
  box-shadow: 0px 1px 0px 0px #00000029;
}

.navigation-menu {
  display: flex;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
}

.navigation-menu .menu-item {
  position: relative;
  height: 72px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex: 0 0 25%;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.navigation-menu .menu-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
}

.navigation-menu .menu-item:hover img {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(1.3);
}

.navigation-menu .menu-item img {
  transition: all 0.3s ease;
}

.navigation-menu .menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%) border-box;
  border-width: 0px 1px;
  border-style: solid;
  border-color: transparent;
  -webkit-mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff);
  mask-composite: exclude;
  border-radius: 12px;
}

.navigation-menu .menu-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.navigation-menu .menu-item img {
  margin-right: 12px;
}

.navigation-menu .menu-item .menu-item-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0px;
}

.navigation-menu .menu-item:nth-child(1) {
  color: #07BCF7;
}

.navigation-menu .menu-item:nth-child(1):hover {
  box-shadow: 0px 6px 12px rgba(7, 188, 247, 0.2);
  background: radial-gradient(circle at center, rgba(7, 188, 247, 0.1) 0%, transparent 70%);
}

.navigation-menu .menu-item:nth-child(2) {
  color: #FB7903;
}

.navigation-menu .menu-item:nth-child(2):hover {
  box-shadow: 0px 6px 12px rgba(251, 121, 3, 0.2);
  background: radial-gradient(circle at center, rgba(251, 121, 3, 0.1) 0%, transparent 70%);
}

.navigation-menu .menu-item:nth-child(3) {
  color: #7DFA00;
}

.navigation-menu .menu-item:nth-child(3):hover {
  box-shadow: 0px 6px 12px rgba(125, 250, 0, 0.2);
  background: radial-gradient(circle at center, rgba(125, 250, 0, 0.1) 0%, transparent 70%);
}

.navigation-menu .menu-item:nth-child(4) {
  color: #FFDE26;
}

.navigation-menu .menu-item:nth-child(4):hover {
  box-shadow: 0px 6px 12px rgba(255, 222, 38, 0.2);
  background: radial-gradient(circle at center, rgba(255, 222, 38, 0.1) 0%, transparent 70%);
}

/* Зеркало блок */
.zerkalo-section-btn_wrapper-header {
  margin: 40px 0;
  border: 1px solid #525e83;
  background: #282c48;
  border-radius: 12px;
  padding: 40px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.zerkalo-section-btn_wrapper-header p {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.btn-zerkalo {
  display: inline-block;
  box-shadow: 1px 1px 10px 5px rgba(146, 148, 248, 0.4);
  background: linear-gradient(149deg, rgba(24,187,156,1) 0%, rgba(106,57,175,1) 42%, rgba(187,24,148,1) 72%, rgba(115,53,134,1) 100%);
  text-decoration: none;
  border: 1px solid rgb(146, 148, 248);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  font-size: 17px;
  font-weight: bold;
  padding: 16px 20px;
  color: #f4f4f4;
  text-transform: uppercase;
  margin: 30px 0 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-zerkalo:hover {
  transform: translateY(-2px);
  box-shadow: 1px 1px 15px 8px rgba(146, 148, 248, 0.6);
}

/* Текстовый блок и артикли */
.text-and-articles-block-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0em;
}

.articles-block {
  border-radius: 10px !important;
}

.articles-block::before {
  border-radius: 10px !important;
}

.articles-header-wrapper {
  padding: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.articles-header-wrapper img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.articles-header-wrapper.open img {
  transform: rotate(0deg);
}

.articles-items-wrapper {
  padding: 0px 16px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.articles-items-wrapper .articles-item:last-child {
  margin-bottom: 16px;
}

.articles-items-wrapper.open {
  max-height: 1000px;
}

.articles-item {
  position: relative;
  display: flex;
  flex: 0 0 50%;
  align-items: center;
  padding: 16px 12px;
  border-radius: 4px;
  color: #7575A1;
  transition: color 0.3s ease-out;
  overflow: hidden;
  z-index: 1;
}

.articles-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(99.97% 100% at 50% 0%, #55557D 0%, #41415E 100%);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  border-radius: inherit;
  z-index: -1;
}

.articles-item:hover::before {
  opacity: 1;
}

.articles-item:hover {
  color: #fff;
}

/* Текстовый блок второй */
.text-block-second {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-block-second-content {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0px;
}

.text-block-second-content h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  margin: 30px 0 20px;
}

.text-block-second-content h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin: 25px 0 15px;
}

.text-block-second-content h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin: 20px 0 12px;
}

.text-block-second-content p {
  margin: 15px 0;
}

.text-block-second-content ul {
  margin: 15px 0;
  padding-left: 25px;
  list-style: disc;
}

.text-block-second-content li {
  margin: 8px 0;
  line-height: 24px;
  padding-left: 5px;
}

.text-block-second-content li::marker {
  color: #66BB6A;
}

.text-block-second-content table {
  margin: 20px 0;
  width: 100%;
  border-collapse: collapse;
}

.text-block-second-content th,
.text-block-second-content td {
  padding: 12px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
}

.text-block-second-content th {
  background: rgba(102, 187, 106, 0.1);
  font-weight: 600;
}

.text-block-second-content tr:hover {
  background: rgba(255,255,255,0.03);
}

.text-block-second-content-hidden {
  display: none;
}

.text-block-second-content-hidden.show {
  display: block;
}

.text-block-second-button {
  display: flex;
  align-items: center;
  color: #8A8AAE;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
  letter-spacing: 0px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.text-block-second-button:hover {
  color: #fff;
}

.text-block-second-button svg {
  transform: rotate(270deg);
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.text-block-second-button.active svg {
  transform: rotate(90deg);
}

/* Блок автора */
.author-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  padding: 30px;
  border: 2px solid #B22222;
  border-radius: 12px;
  max-width: 800px;
  text-align: left;
  background: linear-gradient(135deg, rgba(178, 34, 34, 0.05) 0%, rgba(178, 34, 34, 0.02) 100%);
}

.author-box img {
  border-radius: 50%;
  margin-right: 30px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.author-info {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.author-info h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.author-info p {
  font-size: 16px;
  line-height: 24px;
  color: #BCBCD1;
  margin-bottom: 10px;
}

.author-info a {
  color: #B22222;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.author-info a:hover {
  color: #FF4444;
}

/* Преимущества */
.advantages-content {
  border-radius: 10px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 24px;
}

.advantages-content::before {
  border-radius: 10px !important;
}

.advantages-item {
  position: relative;
  flex: 0 0 calc(33.33% - 8px);
  display: flex;
  align-items: center;
  padding: 12px 24px;
  background: #1E1E2C;
  border-radius: 8px;
  z-index: 1;
  transition: all 0.3s ease;
}

.advantages-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid transparent;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff);
  mask-composite: exclude;
  pointer-events: none;
  border-radius: 8px;
  z-index: 2;
}

.advantages-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(100.01% 100% at 50% 0%, #484868 0%, #33334A 100%);
  opacity: 0;
  transition: opacity 0.3s ease-in;
  z-index: -1;
  border-radius: 8px;
}

.advantages-item:hover::after {
  opacity: 1;
}

.advantages-item-img {
  z-index: 2;
  margin-right: 16px;
}

.advantages-item-text {
  z-index: 2;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0px;
}

/* FAQ */
.review {
  margin-bottom: 48px;
}

.faq-content,
.review-content {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  margin-bottom: 24px;
}

/* FAQ стили */
.faq-block {
  margin-bottom: 48px;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.faq-items-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  cursor: pointer;
  padding: 24px;
  border-radius: 12px !important;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, rgba(42, 42, 58, 0.4) 0%, rgba(30, 30, 44, 0.4) 100%);
  border: 1px solid rgba(102, 187, 106, 0.1);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 187, 106, 0.05) 0%, rgba(254, 40, 74, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
  pointer-events: none;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(102, 187, 106, 0.3);
  box-shadow: 0 8px 24px rgba(102, 187, 106, 0.15);
}

.faq-item.active {
  border-color: rgba(102, 187, 106, 0.4);
  background: linear-gradient(135deg, rgba(42, 42, 58, 0.6) 0%, rgba(30, 30, 44, 0.6) 100%);
  box-shadow: 0 4px 16px rgba(102, 187, 106, 0.2);
}

.faq-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s ease-out;
  position: relative;
  z-index: 1;
}

.faq-item-header .toggle-icon {
  margin-left: 16px;
  transition: transform 0.4s ease, color 0.3s ease;
  color: #66BB6A;
  flex-shrink: 0;
}

.faq-item.active .faq-item-header .toggle-icon {
  transform: rotate(180deg);
  color: #FE284A;
}

.faq-item-title {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.3px;
  color: #fff;
  background-color: transparent;
  border: 0;
  padding: 0;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-item-title {
  color: #66BB6A;
}

.faq-item-content {
  font-size: 15px;
  font-weight: 300;
  margin-top: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  line-height: 1.7;
  color: #BCBCD1;
  position: relative;
  z-index: 1;
}

.faq-item-content.faq-item-content-hidden {
  margin-top: 0;
}

.faq-item.active .faq-item-content {
  max-height: 500px;
  margin-top: 16px;
}

.faq-item-content p {
  margin: 0;
  padding-top: 4px;
}

/* Отзывы стили */
.review-section {
  margin-bottom: 48px;
}

.review-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-item {
  padding: 28px;
  border-radius: 14px !important;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, rgba(42, 42, 58, 0.5) 0%, rgba(30, 30, 44, 0.5) 100%);
  border: 1px solid rgba(254, 40, 74, 0.15);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.review-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #66BB6A 0%, #FE284A 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.review-item:hover::before {
  opacity: 1;
}

.review-item:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 40, 74, 0.3);
  box-shadow: 0 12px 32px rgba(254, 40, 74, 0.2);
}

.review-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.review-item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-item-name {
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.review-item-rating {
  display: flex;
  gap: 6px;
  align-items: center;
}

.review-item-rating .star {
  font-size: 18px;
  color: #3A3A52;
  transition: all 0.3s ease;
}

.review-item-rating .star.filled {
  color: #FFD700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6), 0 2px 4px rgba(255, 215, 0, 0.3);
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.8));
}

.review-item:hover .review-item-rating .star.filled {
  transform: scale(1.1);
  text-shadow: 0 0 16px rgba(255, 215, 0, 0.8), 0 2px 6px rgba(255, 215, 0, 0.5);
}

.review-item-date {
  font-size: 13px;
  color: #8A8AAE;
  font-weight: 400;
  padding: 4px 12px;
  background: rgba(138, 138, 174, 0.1);
  border-radius: 20px;
  white-space: nowrap;
}

.review-item-content {
  font-size: 15px;
  font-weight: 400;
  margin-top: 8px;
  max-height: none;
  overflow: visible;
  line-height: 1.7;
  color: #D0D0E0;
  letter-spacing: 0.2px;
}

.review-item-content p {
  margin: 0;
}

/* Footer */
.footer {
  margin: 0px 28px;
}

.footer-first-part {
  border-top: 1px solid #1E1E2C;
  border-bottom: 1px solid #1E1E2C;
}

.footer-content-first-part,
.footer-content-second-part {
  padding: 32px 20px;
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
  row-gap: 20px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 4px;
}

.footer-nav-item {
  padding: 12px 4px;
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 0px;
  color: #BCBCD1;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.footer-nav-item::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 4px;
  right: 4px;
  height: 2px;
  background: linear-gradient(90deg, #66BB6A 0%, #4CAF50 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-nav-item:hover {
  color: #fff;
  transform: translateY(-2px);
}

.footer-nav-item:hover::after {
  transform: scaleX(1);
}

.footer-social-btns-wrappper {
  display: flex;
  column-gap: 8px;
}

.footer-social-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.footer-social-btn:hover {
  transform: translateY(-2px);
}

.footer-social-btn-instagram {
  background: radial-gradient(230.93% 230.93% at 102.01% 2.03%, #F9ED32 0%, #EE2A7B 36%, #D22A8A 44%, #8B2AB2 60%, #1B2AF0 83%, #002AFF 88%);
}

.footer-social-btn-vk {
  background: #0077FF;
}

.footer-social-btn-telegram {
  background: #0088cc;
}

.footer-social-btn-youtube {
  background: #F40000;
}

.footer-second-part-item {
  max-width: 465px;
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.footer-second-part-item-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 0em;
  color: #8A8AAE;
}

/* Выбор языка */
.choose-lang {
  position: relative;
  cursor: pointer;
}

.header-lang .choose-lang-button span {
  display: none;
}

.header-lang .choose-lang-button,
.footer-lang .choose-lang-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease-out;
  background: radial-gradient(100.01% 100% at 50% 0%, #484868 0%, #33334A 100%);
  padding: 10px 8px;
  height: 48px;
}

.footer-lang .choose-lang-button {
  height: 60px;
  width: 174px;
  padding: 12px;
}

.header-lang .choose-lang-list,
.footer-lang .choose-lang-list {
  display: grid;
  position: absolute;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4px;
  background-color: #1E1E2C;
  border: 1px solid #FFFFFF1A;
  visibility: hidden;
  transform: scale(0);
  transition: transform 0.3s ease-out, visibility 0.3s;
  z-index: 1000;
  border-radius: 4px;
  padding: 12px;
}

.header-lang .choose-lang-list {
  top: 0px;
  right: 0px;
  transform-origin: top right;
}

.footer-lang .choose-lang-list {
  border-radius: 8px;
  bottom: 0px;
  left: -200px;
  transform-origin: bottom right;
}

.choose-lang:hover .choose-lang-list {
  visibility: visible;
  transform: scale(1);
}

.header-lang .choose-lang-list li,
.footer-lang .choose-lang-list li {
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.header-lang .choose-lang-list li {
  padding: 10px 8px;
  height: 48px;
  width: 173px;
}

.footer-lang .choose-lang-list li {
  padding: 12px;
  height: 60px;
  width: 173px;
}

.header-lang .choose-lang-list li:hover,
.footer-lang .choose-lang-list li:hover {
  background: #41415E;
}

.choose-lang-list .choose-lang-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.choose-lang-box-first {
  background: #41415E;
}

.choose-lang span {
  padding-left: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0px;
}

.header-lang .toggle-icon {
  margin-left: 10px;
}

.footer-lang .toggle-icon {
  margin-left: 16px;
}

/* Overlay для мобильного меню */
.overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1049;
}

.overlay.active {
  display: block;
}

/* Стили для секции игр */
.games-grid-section {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px 15px;
  background: linear-gradient(135deg, rgba(37, 37, 54, 0.95), rgba(28, 28, 40, 0.95));
  border-radius: 16px;
  border: 2px solid rgba(150, 224, 0, 0.2);
}

.games-grid-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #66BB6A;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(102, 187, 106, 0.3);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  padding: 5px;
}

.game-card {
  background: rgba(28, 28, 40, 0.8);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(150, 224, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-3px);
  border-color: #66BB6A;
  box-shadow: 0 8px 20px rgba(102, 187, 106, 0.25);
}

.game-card-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 133.33%; /* 3:4 соотношение сторон */
  overflow: hidden;
  background: linear-gradient(135deg, #252536, #1c1c28);
}

.game-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-card-image {
  transform: scale(1.05);
}

.game-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-card-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  width: 100%;
}

.game-card-btn {
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.game-card-btn-play {
  background: linear-gradient(135deg, #66BB6A, #4CAF50);
  color: #000;
  font-weight: 700;
}

.game-card-btn-play:hover {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 187, 106, 0.4);
}

.game-card-btn-demo {
  background: transparent;
  color: #66BB6A;
  border-color: #66BB6A;
}

.game-card-btn-demo:hover {
  background: #66BB6A;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 187, 106, 0.35);
}

.game-card-title {
  padding: 10px 8px 4px;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.3;
}

.game-card-provider {
  padding: 0 8px 10px;
  margin: 0;
  font-size: 11px;
  color: #66BB6A;
  text-align: center;
  font-weight: 500;
}

/* Кнопка "Еще игры" */
.more-games-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding: 0 20px 20px;
}

.more-games-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #66BB6A, #4CAF50);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 187, 106, 0.3);
  border: 2px solid transparent;
}

.more-games-button:hover {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 187, 106, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.more-games-button:active {
  transform: translateY(-1px);
}

.more-games-button svg {
  transition: transform 0.3s ease;
}

.more-games-button:hover svg {
  transform: translateX(5px);
}

/* =====================================================
   НОВЫЕ БЛОКИ - РЕДИЗАЙН САЙТА 2026
   ===================================================== */

/* Review meta */
.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 20px 0 28px;
  padding: 18px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(102, 187, 106, 0.08), rgba(254, 40, 74, 0.05));
  border: 1px solid rgba(102, 187, 106, 0.2);
  font-size: 14px;
  color: #D0D0E0;
}

.review-meta-item strong {
  color: #fff;
  font-weight: 600;
}

.review-meta-rating .rating-stars {
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  letter-spacing: 2px;
  margin-left: 6px;
}

/* Section title общие стили */
.section-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 8px 0 12px;
  position: relative;
  padding-left: 18px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 5px;
  border-radius: 4px;
  background: linear-gradient(180deg, #66BB6A 0%, #FE284A 100%);
}

.section-intro {
  font-size: 15px;
  line-height: 1.7;
  color: #BCBCD1;
  margin-bottom: 24px;
  max-width: 880px;
}

/* =================== FACTS TABLE =================== */
.facts-box {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 37, 54, 0.95), rgba(28, 28, 40, 0.95));
  border: 2px solid rgba(102, 187, 106, 0.2);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.facts-box-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.facts-box-title::before {
  content: '';
  width: 6px;
  height: 28px;
  background: linear-gradient(180deg, #66BB6A 0%, #4CAF50 100%);
  border-radius: 3px;
}

.facts-table-wrapper {
  overflow-x: auto;
  border-radius: 10px;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.facts-table th,
.facts-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.facts-table th {
  width: 38%;
  color: #66BB6A;
  font-weight: 600;
  background: rgba(102, 187, 106, 0.04);
}

.facts-table td {
  color: #fff;
}

.facts-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.facts-table tr:last-child th,
.facts-table tr:last-child td {
  border-bottom: none;
}

/* =================== PROS / CONS =================== */
.pros-cons-section {
  padding: 8px 0;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.pros-card,
.cons-card {
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 37, 54, 0.9), rgba(28, 28, 40, 0.9));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.pros-card {
  border: 2px solid rgba(102, 187, 106, 0.3);
}

.cons-card {
  border: 2px solid rgba(254, 40, 74, 0.3);
}

.pros-cons-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pros-cons-header h3 {
  margin: 0;
  font-size: 22px;
  color: #fff;
}

.pros-cons-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.pros-card .pros-cons-icon {
  background: radial-gradient(circle, #66BB6A, #4CAF50);
  box-shadow: 0 4px 12px rgba(102, 187, 106, 0.4);
}

.cons-card .pros-cons-icon {
  background: radial-gradient(circle, #FE284A, #CC203B);
  box-shadow: 0 4px 12px rgba(254, 40, 74, 0.4);
}

.pros-list,
.cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-list li,
.cons-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #D0D0E0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.pros-list li:last-child,
.cons-list li:last-child {
  border-bottom: none;
}

.pros-list li::before,
.cons-list li::before {
  position: absolute;
  left: 0;
  top: 11px;
  font-weight: 700;
  font-size: 16px;
}

.pros-list li::before {
  content: '✓';
  color: #66BB6A;
}

.cons-list li::before {
  content: '✕';
  color: #FE284A;
}

/* =================== BONUS CARDS =================== */
.bonus-section {
  padding: 8px 0;
}

.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.bonus-card {
  position: relative;
  padding: 24px 20px;
  border-radius: 16px;
  background: linear-gradient(160deg, #2c2c40 0%, #1c1c28 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.bonus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(102, 187, 106, 0.4);
  box-shadow: 0 12px 28px rgba(102, 187, 106, 0.2);
}

.bonus-card-main {
  border-color: rgba(102, 187, 106, 0.5);
  background: linear-gradient(160deg, #2c4030 0%, #1c2818 100%);
  box-shadow: 0 8px 24px rgba(102, 187, 106, 0.15);
}

.bonus-card-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  background: rgba(102, 187, 106, 0.2);
  color: #66BB6A;
  margin-bottom: 14px;
}

.bonus-card-tag-cashback { background: rgba(7, 188, 247, 0.2); color: #07BCF7; }
.bonus-card-tag-vip { background: rgba(255, 215, 0, 0.2); color: #FFD700; }
.bonus-card-tag-weekly { background: rgba(251, 121, 3, 0.2); color: #FB7903; }

.bonus-card-amount {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #66BB6A 0%, #FE284A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-card-extra {
  font-size: 13px;
  color: #BCBCD1;
  margin-bottom: 14px;
}

.bonus-card-title {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
}

.bonus-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  text-align: left;
}

.bonus-card-list li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 13px;
  line-height: 1.5;
  color: #D0D0E0;
}

.bonus-card-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #66BB6A;
}

.bonus-card-btn {
  display: block;
  padding: 12px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #66BB6A, #4CAF50);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bonus-card-btn:hover {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 187, 106, 0.4);
}

/* PROMO CODE BOX */
.promo-code-box {
  margin: 30px 0 10px;
  padding: 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(254, 40, 74, 0.08), rgba(102, 187, 106, 0.08));
  border: 2px dashed rgba(254, 40, 74, 0.4);
}

.promo-code-content h3 {
  font-size: 22px;
  color: #fff;
  margin: 0 0 12px;
}

.promo-code-content p {
  color: #D0D0E0;
  line-height: 1.7;
  font-size: 15px;
}

.promo-code-display {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.promo-code-label {
  font-size: 14px;
  color: #8A8AAE;
}

.promo-code-value {
  display: inline-block;
  padding: 10px 24px;
  background: #fff;
  color: #1c1c28;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 2px;
  border-radius: 8px;
  border: 2px dashed #FE284A;
}

.promo-code-copy {
  padding: 10px 18px;
  background: #FE284A;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.promo-code-copy:hover {
  background: #CC203B;
  transform: translateY(-2px);
}

.promo-code-copy.copied {
  background: #66BB6A;
}

.promo-code-note {
  font-size: 13px !important;
  color: #8A8AAE !important;
  font-style: italic;
}

/* =================== TOURNAMENTS =================== */
.tournaments-section {
  padding: 8px 0;
}

.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.tournament-card {
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(160deg, #2c2c40 0%, #1c1c28 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tournament-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.tournament-card-gold {
  border-color: rgba(255, 215, 0, 0.4);
}

.tournament-card-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
}

.tournament-card-platinum {
  border-color: rgba(7, 188, 247, 0.4);
}

.tournament-card-platinum::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #07BCF7, #4DA9FF);
}

.tournament-card-fire {
  border-color: rgba(254, 40, 74, 0.4);
}

.tournament-card-fire::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FE284A, #FB7903);
}

.tournament-card-header {
  margin-bottom: 18px;
}

.tournament-card-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 20px;
  background: rgba(255, 215, 0, 0.2);
  color: #FFD700;
  margin-bottom: 10px;
}

.tournament-badge-vip {
  background: rgba(7, 188, 247, 0.2);
  color: #07BCF7;
}

.tournament-badge-hot {
  background: rgba(254, 40, 74, 0.2);
  color: #FE284A;
}

.tournament-card-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.tournament-card-prize {
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 18px;
}

.tournament-prize-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #8A8AAE;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.tournament-prize-amount {
  display: block;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tournament-card-platinum .tournament-prize-amount {
  background: linear-gradient(135deg, #07BCF7 0%, #4DA9FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.tournament-card-fire .tournament-prize-amount {
  background: linear-gradient(135deg, #FE284A 0%, #FB7903 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.tournament-card-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.tournament-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  padding: 6px 0;
}

.tournament-info-row span {
  color: #8A8AAE;
}

.tournament-info-row strong {
  color: #fff;
  font-weight: 600;
}

.tournament-card-note {
  font-size: 13px;
  line-height: 1.6;
  color: #BCBCD1;
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin: 0;
}

.tournaments-rules {
  margin-top: 30px;
  padding: 20px 24px;
  border-radius: 12px;
  background: rgba(102, 187, 106, 0.05);
  border-left: 4px solid #66BB6A;
}

.tournaments-rules h3 {
  font-size: 18px;
  color: #fff;
  margin: 0 0 12px;
}

.tournaments-rules p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #D0D0E0;
  margin: 8px 0;
}

/* Games grid subtitle */
.games-grid-subtitle {
  text-align: center;
  font-size: 14px;
  color: #BCBCD1;
  margin: -10px 0 20px;
}

/* =================== TOP GAMES DETAILED =================== */
.top-games-detailed {
  padding: 8px 0;
}

.top-game-row {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 37, 54, 0.7), rgba(28, 28, 40, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.top-game-row:hover {
  border-color: rgba(102, 187, 106, 0.3);
  transform: translateX(4px);
  box-shadow: -4px 8px 24px rgba(102, 187, 106, 0.1);
}

.top-game-rank {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 800;
  border-radius: 50%;
  background: linear-gradient(135deg, #66BB6A, #4CAF50);
  color: #000;
  box-shadow: 0 4px 12px rgba(102, 187, 106, 0.4);
}

.top-game-row:nth-child(3) .top-game-rank {
  background: linear-gradient(135deg, #C0C0C0, #808080);
  box-shadow: 0 4px 12px rgba(192, 192, 192, 0.4);
}

.top-game-row:nth-child(4) .top-game-rank {
  background: linear-gradient(135deg, #CD7F32, #8B4513);
  box-shadow: 0 4px 12px rgba(205, 127, 50, 0.4);
}

.top-game-content {
  flex: 1;
}

.top-game-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.top-game-header h3 {
  margin: 0;
  font-size: 22px;
  color: #fff;
}

.top-game-provider {
  font-size: 14px;
  color: #66BB6A;
  font-weight: 500;
}

.top-game-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.stat-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.stat-badge-rtp { background: rgba(102, 187, 106, 0.2); color: #66BB6A; }
.stat-badge-vol { background: rgba(251, 121, 3, 0.2); color: #FB7903; }
.stat-badge-max { background: rgba(254, 40, 74, 0.2); color: #FE284A; }

.top-game-content p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #D0D0E0;
  margin: 10px 0;
}

.top-game-content strong {
  color: #fff;
}

/* =================== LIVE CASINO =================== */
.live-casino-section {
  padding: 8px 0;
}

.live-providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.live-provider-card {
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 37, 54, 0.9), rgba(28, 28, 40, 0.9));
  border: 1px solid rgba(7, 188, 247, 0.25);
  transition: all 0.3s ease;
}

.live-provider-card:hover {
  border-color: rgba(7, 188, 247, 0.5);
  box-shadow: 0 8px 24px rgba(7, 188, 247, 0.15);
  transform: translateY(-4px);
}

.live-provider-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.live-provider-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(7, 188, 247, 0.15);
  color: #07BCF7;
  border-radius: 12px;
  margin-bottom: 16px;
}

.live-provider-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.live-provider-card li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  line-height: 1.55;
  color: #D0D0E0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.live-provider-card li:last-child {
  border-bottom: none;
}

.live-provider-card li::before {
  content: '●';
  position: absolute;
  left: 4px;
  top: 8px;
  color: #07BCF7;
  font-size: 10px;
}

.live-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(7, 188, 247, 0.08), rgba(102, 187, 106, 0.08));
  border: 1px solid rgba(7, 188, 247, 0.2);
}

.live-stat-item {
  text-align: center;
  padding: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.live-stat-item:last-child {
  border-right: none;
}

.live-stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #07BCF7, #4DA9FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.live-stat-label {
  display: block;
  font-size: 13px;
  color: #BCBCD1;
}

/* =================== STEPS SECTION =================== */
.steps-section {
  padding: 8px 0;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.step-item {
  display: flex;
  gap: 20px;
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 37, 54, 0.8), rgba(28, 28, 40, 0.8));
  border-left: 4px solid #66BB6A;
  transition: all 0.3s ease;
}

.step-item:hover {
  border-left-color: #FE284A;
  background: linear-gradient(135deg, rgba(37, 37, 54, 0.95), rgba(28, 28, 40, 0.95));
  transform: translateX(4px);
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  background: linear-gradient(135deg, #66BB6A, #4CAF50);
  color: #000;
  box-shadow: 0 4px 12px rgba(102, 187, 106, 0.3);
}

.step-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}

.step-content p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #D0D0E0;
  margin: 0;
}

.step-content strong {
  color: #66BB6A;
}

.step-cta-box {
  margin-top: 22px;
  padding: 22px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(254, 40, 74, 0.1), rgba(102, 187, 106, 0.1));
  border: 1px solid rgba(254, 40, 74, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.step-cta-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  flex: 1;
  min-width: 280px;
}

.step-cta-btn {
  padding: 14px 32px;
  background: linear-gradient(135deg, #FE284A, #CC203B);
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.step-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(254, 40, 74, 0.4);
}

/* =================== LOGIN ISSUES TABLE =================== */
.login-section {
  padding: 8px 0;
}

.login-issues-table,
.payment-table,
.vip-table,
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 14.5px;
  background: linear-gradient(135deg, rgba(37, 37, 54, 0.6), rgba(28, 28, 40, 0.6));
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.login-issues-table thead,
.payment-table thead,
.vip-table thead,
.comparison-table thead {
  background: linear-gradient(135deg, rgba(102, 187, 106, 0.15), rgba(254, 40, 74, 0.1));
}

.login-issues-table th,
.payment-table th,
.vip-table th,
.comparison-table th {
  padding: 14px 16px;
  text-align: left;
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(102, 187, 106, 0.2);
}

.login-issues-table td,
.payment-table td,
.vip-table td,
.comparison-table td {
  padding: 14px 16px;
  color: #D0D0E0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.5;
}

.login-issues-table tr:hover td,
.payment-table tr:hover td,
.vip-table tr:hover td,
.comparison-table tr:hover td {
  background: rgba(102, 187, 106, 0.04);
}

.login-issues-table tr:last-child td,
.payment-table tr:last-child td,
.vip-table tr:last-child td,
.comparison-table tr:last-child td {
  border-bottom: none;
}

.login-section p strong {
  color: #66BB6A;
}

/* =================== PAYMENTS =================== */
.payments-section,
.vip-section,
.comparison-section,
.security-section,
.mobile-section {
  padding: 8px 0;
}

.payment-table-wrapper,
.vip-table-wrapper,
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
}

.payment-row-featured td {
  background: rgba(102, 187, 106, 0.08) !important;
  color: #fff !important;
  font-weight: 600;
}

.payment-row-featured td:first-child strong {
  color: #66BB6A;
}

.payment-tips {
  margin-top: 24px;
  padding: 24px;
  border-radius: 12px;
  background: rgba(7, 188, 247, 0.05);
  border-left: 4px solid #07BCF7;
}

.payment-tips h3 {
  font-size: 18px;
  color: #fff;
  margin: 0 0 16px;
}

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

.payment-tips li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #D0D0E0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.payment-tips li:last-child {
  border-bottom: none;
}

.payment-tips li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 10px;
  color: #07BCF7;
  font-weight: 700;
  font-size: 16px;
}

.payment-tips li strong {
  color: #fff;
}

/* =================== VIP TABLE COLORS =================== */
.vip-row-newbie td:first-child strong { color: #8A8AAE; }
.vip-row-bronze td:first-child strong { color: #CD7F32; }
.vip-row-silver td:first-child strong { color: #C0C0C0; }
.vip-row-gold td:first-child strong { color: #FFD700; }
.vip-row-platinum td:first-child strong { color: #E5E4E2; }
.vip-row-diamond td:first-child strong {
  background: linear-gradient(135deg, #B9F2FF, #00D4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =================== MOBILE COMPARE =================== */
.mobile-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 22px;
}

.mobile-compare-card {
  padding: 26px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 37, 54, 0.85), rgba(28, 28, 40, 0.85));
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.mobile-compare-android {
  border-color: rgba(125, 250, 0, 0.3);
}

.mobile-compare-android:hover {
  border-color: rgba(125, 250, 0, 0.5);
  box-shadow: 0 12px 28px rgba(125, 250, 0, 0.15);
  transform: translateY(-4px);
}

.mobile-compare-ios {
  border-color: rgba(7, 188, 247, 0.3);
}

.mobile-compare-ios:hover {
  border-color: rgba(7, 188, 247, 0.5);
  box-shadow: 0 12px 28px rgba(7, 188, 247, 0.15);
  transform: translateY(-4px);
}

.mobile-compare-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 14px;
}

.mobile-compare-card h3 {
  font-size: 22px;
  color: #fff;
  margin: 0 0 16px;
}

.mobile-compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.mobile-compare-card li {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: 14px;
  line-height: 1.55;
  color: #D0D0E0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.mobile-compare-card li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 10px;
}

.mobile-compare-android li::before { color: #7DFA00; }
.mobile-compare-ios li::before { color: #07BCF7; }

.mobile-rating {
  padding: 10px 14px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  color: #D0D0E0;
}

.mobile-rating strong {
  color: #FFD700;
  font-size: 18px;
}

/* =================== SECURITY GRID =================== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.security-item {
  padding: 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 37, 54, 0.8), rgba(28, 28, 40, 0.8));
  border: 1px solid rgba(102, 187, 106, 0.15);
  transition: all 0.3s ease;
}

.security-item:hover {
  border-color: rgba(102, 187, 106, 0.4);
  background: linear-gradient(135deg, rgba(37, 37, 54, 0.95), rgba(28, 28, 40, 0.95));
}

.security-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(102, 187, 106, 0.2);
}

.security-item p {
  font-size: 14px;
  line-height: 1.65;
  color: #BCBCD1;
  margin: 0;
}

/* =================== COMPARISON =================== */
.comparison-table th.comparison-highlight,
.comparison-table td.comparison-highlight {
  background: linear-gradient(135deg, rgba(102, 187, 106, 0.18), rgba(102, 187, 106, 0.08));
  color: #fff;
  font-weight: 600;
  position: relative;
}

.comparison-table th.comparison-highlight {
  color: #66BB6A;
}

/* =================== AUTHOR BOX UPGRADE =================== */
.author-title {
  color: #66BB6A;
  font-size: 14px;
  font-style: italic;
  margin-top: -6px !important;
  margin-bottom: 14px !important;
}

.author-methodology {
  margin: 16px 0;
  padding: 14px 18px;
  background: rgba(102, 187, 106, 0.05);
  border-radius: 8px;
  border-left: 3px solid #66BB6A;
}

.author-methodology strong {
  display: block;
  margin-bottom: 8px;
  color: #66BB6A;
  font-size: 14px;
}

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

.author-methodology li {
  position: relative;
  padding: 4px 0 4px 18px;
  font-size: 13.5px;
  color: #D0D0E0;
}

.author-methodology li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #66BB6A;
}

.author-update {
  font-size: 13px !important;
  color: #8A8AAE !important;
  margin-top: 14px !important;
  font-style: italic;
}

.updated-date {
  color: #66BB6A;
  font-weight: 600;
}

/* Review intro */
.review-intro {
  text-align: center;
  font-size: 14.5px;
  color: #BCBCD1;
  margin: -20px auto 28px;
  max-width: 720px;
  line-height: 1.6;
}

