* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input,
button,
textarea {
  border: 0;
  background: none;
  outline: none;
}

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

ul,
ol {
  list-style: none;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  border: 4px solid #000;
}

::-webkit-scrollbar-track {
  background: #000;
}

svg {
  display: block;
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
}
svg path {
  fill: #aa7bc9;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #000000;
  color: #fbf5ff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}

.container {
  width: calc(100% - 32px);
  margin: 0 auto;
  max-width: 1368px;
}

header {
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 99;
  background: #000000;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2392156863), 0 0 1px 0 rgba(0, 0, 0, 0.3215686275);
}
header .container {
  height: 100%;
  max-width: none;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  width: 150px;
  aspect-ratio: 150/37;
}
.logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.header__left__menu {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 32px;
  background: #1a1a1a;
  border-radius: 16px;
}
.header__left__menu li {
  height: 100%;
  color: #aa7bc9;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px 0 8px;
}
.header__left__menu li svg path {
  fill: rgba(162, 165, 175, 0.8);
}
.header__left__menu li:nth-child(1) {
  border-radius: 16px;
  background: #4d1472;
  color: #ffffff;
}
.header__left__menu li:nth-child(1) svg path {
  fill: rgba(255, 255, 255, 0.8);
}
.header__left__menu li:nth-child(2) {
  padding: 0 14px 0 12px;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__right div {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header__right div:nth-child(1) {
  width: 24px;
  aspect-ratio: 1/1;
}
.header__right div:nth-child(1) svg {
  width: 100%;
}
.header__right div:nth-child(2) {
  border-radius: 16px;
  box-shadow: inset 0 0 0 2px #4d1472;
  font-size: 12px;
  font-weight: 600;
  height: 32px;
  padding: 0 12px;
  color: #ffffff;
}
.header__right div:nth-child(3) {
  height: 32px;
  padding: 0 12px;
  background: #9ee933;
  border-radius: 16px;
  color: #111217;
  font-size: 12px;
  font-weight: 600;
}
.header__right div:nth-child(3) span:nth-child(2) {
  position: absolute;
  font-size: 8px;
  line-height: 1;
  padding: 2px 3px;
  color: #f3f4fd;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  background: #355be2;
  right: -5px;
  top: -5px;
}
.header__right div:nth-child(3) span:nth-child(2) img {
  width: 10px;
  aspect-ratio: 1/1;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 64px;
  z-index: 99;
  background: #23013a;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar__burger {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2392156863), 0 0 1px 0 rgba(0, 0, 0, 0.3215686275);
  background: #23013a;
}
.sidebar__burger svg {
  width: 24px;
}

.sidebar__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  gap: 4px;
}
.sidebar__menu li {
  aspect-ratio: 1/1;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sidebar__menu li:nth-child(1):after {
  background: #3c0f5b;
  bottom: -8px;
  content: "";
  height: 1px;
  position: absolute;
  width: 100%;
}
.sidebar__menu li:nth-child(2) {
  margin-top: 12px;
  background: #3c0f5b;
  border-radius: 8px;
}
.sidebar__menu li:nth-child(6) {
  margin-top: 12px;
}
.sidebar__menu li:nth-child(6)::before {
  background: #3c0f5b;
  top: -8px;
  content: "";
  height: 1px;
  position: absolute;
  width: 100%;
}
.sidebar__menu li:nth-child(6) svg path {
  fill: #09e41f;
}
.sidebar__menu li img {
  width: 40px;
  aspect-ratio: 1/1;
}
.sidebar__menu li svg {
  width: 24px;
}

.wrap {
  padding-left: 64px;
}

.banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.banner {
  position: relative;
  height: 192px;
  overflow: hidden;
  border-radius: 16px;
  padding: 12px;
}

.banner__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.banner__content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.banner__content div {
  width: -moz-max-content;
  width: max-content;
}
.banner__content div:nth-child(1) {
  padding: 0 8px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5c1e85;
  border-radius: 6px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0);
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
}
.banner__content div:nth-child(2) {
  font-size: 20px;
  font-weight: 900;
  color: #f6da24;
}
.banner__content div:nth-child(2) p:nth-child(2) {
  font-weight: 600;
  font-size: 14px;
}
.banner__content a {
  background: #9ee933;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 600;
  font-size: 12px;
  color: #0b0b0f;
  padding: 0 12px;
  height: 32px;
}

.gros {
  margin-top: 32px;
}

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

.cards__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 28px;
}
.cards__title svg {
  width: 32px;
}

.cards__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cards__nav__btns {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cards__nav__btns span {
  background: #4d1472;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 44px;
  aspect-ratio: 1/1;
}
.cards__nav__btns span svg {
  width: 20px;
}

.gros__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.gros__card {
  display: flex;
  align-items: center;
  background: #23013a;
  border-radius: 12px;
  height: 84px;
}

.gros__img {
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
}

.gros__info {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.gros__info p:nth-child(1) {
  font-weight: 700;
  font-size: 14px;
}
.gros__info p:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gros__info p:nth-child(2) img {
  width: 20px;
  aspect-ratio: 1/1;
}
.gros__info p:nth-child(2) span {
  font-weight: 600;
  font-size: 10px;
  color: #aa7bc9;
}
.gros__info p:nth-child(3) {
  color: #09e41f;
  font-weight: 700;
  font-size: 14px;
}

.cards {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  gap: 32px;
}

.cards__nav__title {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  box-shadow: inset 0 0 0 2px #4d1472;
  color: #ffffff;
  height: 44px;
  padding: 0 20px;
}
.cards__nav__title span:nth-child(2) {
  background: #5c1e85;
  border-radius: 12px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0);
  font-weight: 700;
  font-size: 12px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  height: 20px;
}

.cards__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.cards__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cards__item__img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
}

.cards__item__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.cards__item__info svg {
  width: 24px;
  min-width: 24px;
}
.cards__item__info svg path {
  fill: #e6cdf6;
}
.cards__item__info div {
  position: relative;
  width: 100%;
}
.cards__item__info div:after {
  background: linear-gradient(270deg, black 0%, rgba(0, 0, 0, 0) 100%);
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 20px;
  height: 100%;
}
.cards__item__info div p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  font-size: 14px;
}
.cards__item__info div p:nth-child(2) {
  font-weight: 500;
  font-size: 12px;
  color: #7b44a0;
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 0px;
}

.content__item {
  font-weight: 500;
}
.content__item h1,
.content__item h2,
.content__item h3,
.content__item h4 {
  font-weight: 700;
}
.content__item h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.content__item h2 {
  font-size: 35px;
  margin-bottom: 10px;
}
.content__item h3 {
  font-size: 27px;
  margin-bottom: 10px;
}
.content__item h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.content__item p,
.content__item .content__table,
.content__item ul,
.content__item ol {
  margin-bottom: 20px;
}
.content__item ol,
.content__item ul {
  padding-left: 50px;
  list-style: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.content__item ol p,
.content__item ul p {
  margin-bottom: 15px;
}
.content__item ul {
  list-style: disc;
}
.content__item h3:last-child,
.content__item ol:last-child,
.content__item p:last-child,
.content__item .content__table:last-child,
.content__item ul:last-child {
  margin-bottom: 0;
}
.content__item.faq .faq__item {
  margin-bottom: 25px;
}
.content__item.faq .faq__item p,
.content__item.faq .faq__item ol,
.content__item.faq .faq__item ul,
.content__item.faq .faq__item .content__table {
  margin-bottom: 15px;
}
.content__item.faq .faq__item p:last-child,
.content__item.faq .faq__item ol:last-child,
.content__item.faq .faq__item ul:last-child,
.content__item.faq .faq__item .content__table:last-child {
  margin-bottom: 0;
}
.content__item.faq .faq__item p:first-child {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 900;
}
.content__item.faq .faq__item:last-child {
  margin-bottom: 0;
}

.content__table table {
  border-collapse: collapse;
}
.content__table th,
.content__table td {
  padding: 12px;
  border: 1px solid #fbf5ff;
  text-align: left;
  vertical-align: top;
}
.content__table tr:first-child td,
.content__table tr:first-child th {
  font-weight: bold;
}

.table--style tr:first-child td {
  background: linear-gradient(180deg, rgb(219, 255, 0) 0%, rgb(180, 197, 0) 100%);
  color: rgb(3, 10, 10);
}
.table--style th {
  background: linear-gradient(180deg, rgb(219, 255, 0) 0%, rgb(180, 197, 0) 100%);
  color: rgb(3, 10, 10);
}

footer {
  padding: 24px 0 54px;
  position: relative;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(88, 92, 131, 0.3019607843);
  margin-bottom: 40px;
  padding: 30px 0 40px;
}

.footer__top__left .logo {
  margin-bottom: 33px;
}

.footer__top__list p {
  color: #f6e9ff;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}
.footer__top__list ul {
  display: flex;
  gap: 8px;
}
.footer__top__list ul li {
  border-radius: 50%;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4d1472;
}
.footer__top__list ul li svg {
  width: 20px;
}

.footer__left__title {
  margin-top: 30px;
  color: #f6e9ff;
  font-size: 18px;
  font-weight: 500;
}

.footer__menu {
  grid-gap: 14px;
  align-items: start;
  display: grid;
  flex: 0 0 55%;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  --rowsCount: 4;
  --colsCount: 4;
  font-weight: 600;
  color: #9865b9;
  font-size: 12px;
}

.footer__top__right div:nth-child(1) {
  color: #fbf5ff;
  font-weight: 600;
  font-size: 18px;
}
.footer__top__right div:nth-child(1) p:nth-child(2) {
  color: #c6a0df;
  font-weight: 500;
  font-size: 14px;
}
.footer__top__right div:nth-child(2) {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}
.footer__top__right div:nth-child(2) svg {
  width: 18px;
}
.footer__top__right div:nth-child(2) svg path {
  fill: #b6ff61;
}
.footer__top__right div:nth-child(3) {
  margin-top: 17px;
  display: flex;
  align-items: center;
  color: #cdd2d5;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.footer-row div {
  display: flex;
  align-items: center;
  position: relative;
}
.footer-row div:nth-child(1) {
  background: #2f054b;
  overflow: hidden;
  border-radius: 4px;
  height: 32px;
  font-weight: 700;
  font-size: 12px;
  gap: 4px;
  padding: 0 8px 0 0;
}
.footer-row div:nth-child(1) img {
  width: 28px;
  aspect-ratio: 1/1;
}
.footer-row div:nth-child(1):before {
  background: #1a799f;
  content: "";
  filter: blur(30px);
  height: 45px;
  left: -15px;
  opacity: 1;
  position: absolute;
  top: -15px;
  width: 45px;
}
.footer-row div:nth-child(2) {
  gap: 16px;
}
.footer-row div:nth-child(3) {
  gap: 4px;
  height: 32px;
  background: #4d1472;
  border-radius: 16px;
  padding: 0 12px;
  font-weight: 600;
  font-size: 12px;
}

.footer-disclaimer {
  margin-top: 17px;
}
.footer-disclaimer div {
  display: flex;
  align-items: center;
  color: #869dee;
  font-size: 14px;
  gap: 4px;
}
.footer-disclaimer div svg path {
  fill: #869dee;
}
.footer-disclaimer p {
  margin: 16px 0 0;
  color: #aa7bc9;
  font-weight: 500;
  font-size: 14px;
}

.suport {
  position: fixed;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3019607843);
  width: 60px;
  aspect-ratio: 1/1;
  bottom: 16px;
  right: 0px;
  background: #4d1472;
}
.suport svg {
  width: 32px;
}
.suport svg path {
  fill: #fff;
}

.burger {
  display: none;
}

.mobile-header,
.mobile-menu {
  display: none;
}

@media (max-width: 1279px) {
  .sidebar {
    display: none;
  }
  .wrap {
    padding-left: 0px;
  }
  .logo {
    aspect-ratio: 70/24;
    width: 70px;
  }
  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    aspect-ratio: 1/1;
  }
  .burger svg {
    width: 100%;
  }
  .header__left {
    gap: 8px;
  }
  .header__left .header__left__menu {
    display: none;
  }
  .header__right div:nth-child(2) {
    display: none;
  }
  .header__right div:nth-child(1) {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 9;
  }
  .suport {
    right: 16px;
    bottom: 16px;
    width: 48px;
  }
  .suport svg {
    width: 26px;
  }
  .footer__top {
    flex-direction: column;
  }
  .footer__top__left .logo {
    display: none;
  }
  .footer__menu {
    width: 100%;
    margin-top: 30px;
  }
  .footer__top__right {
    margin-top: 30px;
  }
  .footer-row {
    justify-content: flex-start;
  }
  .gros__list {
    overflow-x: auto;
    width: calc(100% + 16px);
    padding-right: 16px;
  }
  .gros__list::-webkit-scrollbar {
    display: none;
  }
  .gros__info {
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .cards__list {
    display: flex;
    width: calc(100% + 16px);
    padding-right: 16px;
    overflow-x: auto;
  }
  .cards__list::-webkit-scrollbar {
    display: none;
  }
  .cards__item {
    width: 124px;
    min-width: 124px;
  }
  .header__right div:nth-child(1) {
    display: none;
  }
  .banners {
    width: calc(100% + 16px);
    padding-right: 16px;
    overflow-x: auto;
    display: flex;
  }
  .banners::-webkit-scrollbar {
    display: none;
  }
  .banner {
    width: 100%;
    min-width: 100%;
    height: 315px;
  }
}
@media (max-width: 767px) {
  .content__item ol,
  .content__item ul {
    padding-left: 30px;
  }
  .content__table th,
  .content__table td {
    padding: 8px;
  }
  header {
    height: 54px;
  }
  .header__right {
    gap: 4px;
  }
  .cards__title {
    font-size: 24px;
  }
  .cards {
    gap: 24px;
  }
  .cards__list {
    display: flex;
    gap: 8px;
    width: calc(100% + 16px);
    padding-right: 16px;
    overflow-x: auto;
  }
  .cards__list::-webkit-scrollbar {
    display: none;
  }
  .cards__item {
    width: 35vw;
    min-width: 35vw;
  }
  .content__table {
    width: calc(100% + 16px);
    padding-right: 16px;
    overflow-x: auto;
  }
  .content__table::-webkit-scrollbar {
    display: none;
  }
  .footer__menu {
    --rowsCount: 8;
    --colsCount: 2;
    flex: 0 0 100%;
    grid-template-rows: repeat(8, auto);
  }
  .footer-row {
    flex-wrap: wrap;
  }
  .footer-row div:nth-child(1) {
    width: 100%;
  }
  .header__right div:nth-child(2) {
    display: flex;
  }
  .mobile-header {
    display: block;
    margin-top: 6px;
  }
  .mobile-header .header__left__menu {
    display: flex;
    width: 100%;
  }
  .mobile-header .header__left__menu li {
    width: 50%;
    justify-content: center;
  }
  .mobile-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .mobile-search {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4d1472;
  }
  .banner {
    aspect-ratio: 343/147;
    width: 90vw;
    min-width: 90vw;
    padding: 12px;
    height: 148px;
  }
  .cards__nav__btns {
    display: none;
  }
  .gros__list {
    display: flex;
    gap: 8px;
  }
  .cards__title {
    font-size: 16px;
  }
  .cards__nav__title {
    gap: 0;
    border-radius: 0;
    box-shadow: none;
    color: #ffffff;
    height: auto;
    padding: 0;
    color: #aebef3;
  }
  .cards__nav__title span:nth-child(2) {
    display: none;
  }
  .cards__title svg {
    display: none;
  }
  .banner__content div:nth-child(1) {
    padding: 0 4px;
    height: 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 10px;
  }
  .gros {
    margin-top: 16px;
  }
  .cards__top {
    margin-bottom: 16px;
  }
  .cards__item {
    gap: 2px;
  }
  .cards__item__info svg {
    display: none;
  }
  .cards__item__info div p {
    font-size: 12px;
  }
  .cards {
    margin-top: 16px;
    gap: 16px;
  }
  .suport {
    bottom: 70px;
  }
  .mobile-menu {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9;
    height: 55px;
    background-color: #23013a;
    border-radius: 16px 16px 0 0;
  }
  .mobile-menu div {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 10px;
    font-weight: 600;
    color: #8c55af;
  }
  .mobile-menu div:nth-child(1) {
    color: #9ee933;
  }
  .mobile-menu div:nth-child(1) svg path {
    fill: #9ee933;
  }
  .mobile-menu div:nth-child(3) span:nth-child(1) {
    box-shadow: 0 0 0 0 #9ee933, 0 2px 7px -1px #9ee933;
    border-radius: 50%;
    background: #9ee933;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    margin-top: -20px;
    width: 44px;
  }
  .mobile-menu div:nth-child(3) span:nth-child(1) svg {
    width: 20px;
  }
  .mobile-menu div:nth-child(3) span:nth-child(1) svg path {
    fill: #0b0b0f;
  }
  .mobile-menu div svg {
    width: 24px;
  }
  footer {
    padding: 24px 0 74px;
  }
  .banner__content div:nth-child(2) p:nth-child(2) {
    font-size: 12px;
  }
}
@media (max-width: 374px) {
  .header__right div:nth-child(2) {
    display: none;
  }
  .header__left__menu li {
    font-size: 9px;
  }
}

/* Casino Infinity AT palette adaptation */
:root {
  --ci-bg-deep: #4f0058;
  --ci-bg-mid: #6c0a68;
  --ci-bg-side: #57005f;
  --ci-bg-surface: #7f135f;
  --ci-page-light: #cfd4dd;
  --ci-text-main: #ffffff;
  --ci-text-soft: #f6d7ef;
  --ci-text-dim: #d9bfd4;
  --ci-accent-red-1: #f23a58;
  --ci-accent-red-2: #c81f4f;
  --ci-accent-green-1: #45ea09;
  --ci-accent-green-2: #1dbe00;
  --ci-outline: rgba(255, 170, 220, 0.28);
}

body {
  background: var(--ci-page-light);
  color: #2f2434;
}

header,
.sidebar,
.sidebar__burger {
  background: linear-gradient(180deg, #670a6d 0%, #4d0057 100%);
  color: var(--ci-text-main);
}

header {
  border-bottom: 1px solid var(--ci-outline);
  box-shadow: 0 6px 18px rgba(53, 0, 60, 0.38);
}

svg path {
  fill: #f5cde4;
}

.header__left__menu {
  background: transparent;
  box-shadow: none;
}

.header__left__menu li {
  color: #ffffff;
  font-weight: 700;
}

.header__left__menu li:nth-child(1) {
  background: transparent;
}

.header__right div:nth-child(2),
.header__right div:nth-child(3) {
  height: 40px;
  min-width: 142px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 2px rgba(255, 177, 206, 0.3), 0 2px 10px rgba(70, 0, 55, 0.44);
}

.header__right div:nth-child(2),
.header__right div:nth-child(3),
.header__right div:nth-child(3):hover {
  background: linear-gradient(180deg, var(--ci-accent-red-1) 0%, var(--ci-accent-red-2) 100%);
}

.header__right div:nth-child(3) span:nth-child(2) {
  background: #ff2f67;
  color: #fff;
}

.sidebar {
  background: linear-gradient(180deg, #5a0360 0%, #47004e 100%);
}

.sidebar__menu li:nth-child(2) {
  background: #ff3559;
  border-radius: 12px;
}

.sidebar__menu li:nth-child(1):after,
.sidebar__menu li:nth-child(6)::before {
  background: rgba(255, 159, 220, 0.2);
}

.wrap {
  background: var(--ci-page-light);
}

.top {
  background: linear-gradient(180deg, #5b055b 0%, #7a145d 52%, #8f1959 100%);
  border-radius: 0 0 18px 18px;
  padding-bottom: 22px;
  position: relative;
  overflow: visible;
}

.top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -36px;
  height: 44px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(143, 25, 89, 0.72) 0%, rgba(143, 25, 89, 0) 100%);
}

.banner {
  box-shadow: inset 0 0 0 1px rgba(255, 175, 217, 0.22);
  background: #4a0c62;
}

.banner__content div:nth-child(1) {
  background: rgba(118, 82, 146, 0.52);
  color: #ffe65f;
  box-shadow: inset 0 0 0 1px rgba(255, 243, 128, 0.32);
}

.banner__content div:nth-child(2) {
  color: #ffffff;
}

.banner__content div:nth-child(2) p:nth-child(2) {
  color: #ffe5f3;
}

.banner__content a {
  background: linear-gradient(180deg, var(--ci-accent-green-1) 0%, var(--ci-accent-green-2) 100%);
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 5px 14px rgba(18, 126, 0, 0.38);
}

.cards__title,
.cards__nav__title,
.cards__item__info div p,
.gros__info p:nth-child(1) {
  color: #ffffff;
}

.gros,
.cards {
  background: transparent;
}

.cards__nav__title span:nth-child(2) {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cards__nav__btns span {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 191, 228, 0.24);
}

.gros__card {
  background: rgba(77, 2, 77, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 194, 231, 0.18);
}

.gros__info p:nth-child(2) span,
.cards__item__info div p:nth-child(2) {
  color: #f4cce7;
}

.gros__info p:nth-child(3) {
  color: #81ff41;
}

.content,
footer {
  background: var(--ci-page-light);
}

main .container {
  position: relative;
}

.top,
.gros,
.cards {
  position: relative;
  z-index: 1;
}

/* Game sections share the same visual zone as hero */
.top,
.cards {
  margin-top: 0;
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.cards {
  padding-top: 16px;
  padding-bottom: 20px;
  background: linear-gradient(180deg, #7f165d 0%, #8b1a59 52%, #8f1b56 100%);
  border-radius: 0 0 18px 18px;
  position: relative;
  z-index: 1;
}

.cards::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 24px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(143, 27, 86, 0.55) 0%, rgba(143, 27, 86, 0) 100%);
}

.cards__title,
.cards__nav__title,
.cards__nav__title span,
.cards__item__info div p {
  color: #ffffff;
}

.cards__item__info div:after {
  background: linear-gradient(270deg, #8a1a5a 0%, rgba(138, 26, 90, 0) 100%);
  width: 12px;
}

.cards__item__info div p {
  line-height: 1.2;
}

.cards__item__info div p:nth-child(1) {
  font-weight: 700;
}

.cards__item__info div p:nth-child(2) {
  color: #f1c8e1;
}

.cards__item__info svg path {
  fill: #f3d4e8;
}

.cards__nav__title {
  box-shadow: inset 0 0 0 1px rgba(255, 190, 227, 0.24);
}

/* Gentle blend from hero zone into page background */
.top {
  margin-bottom: 0;
  border-radius: 0;
  padding-top: 16px;
  background: linear-gradient(180deg, #5b055b 0%, #7a145d 52%, #8f1959 100%);
}

.top::before,
.top::after {
  display: none;
}

.banners {
  margin-top: 0;
}

/* Clean card captions under game thumbnails */
.cards__item__info {
  align-items: flex-start;
  gap: 8px;
}

.cards__item__info div {
  padding-right: 0;
}

.cards__item__info div:after {
  display: none;
}

.cards__item__info div p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-line-clamp: unset;
  line-height: 1.18;
}

.cards__item__info div p:nth-child(1) {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.cards__item__info div p:nth-child(2) {
  font-size: 12px;
  font-weight: 500;
  color: #f3cfe6;
}

/* Bordeaux footer with readable contrast */
footer {
  background: linear-gradient(180deg, #7d1859 0%, #68114f 100%);
}

.footer__top {
  border-bottom-color: rgba(255, 202, 231, 0.24);
}

.footer__menu,
.footer-disclaimer p,
.footer__top__right div:nth-child(1) p:nth-child(2),
.footer__left__title,
.footer__top__list p {
  color: #f1d7e7;
}

.footer__top__right div:nth-child(1),
.footer__top__right div:nth-child(2),
.footer-disclaimer div {
  color: #ffffff;
}

.footer-disclaimer div svg path,
.footer__top__right div:nth-child(2) svg path {
  fill: #ffd2ea;
}

/* Final cleanup: keep original card sizing and readable contrast */
.top,
.cards {
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 0;
}

.top {
  padding-top: 12px;
  margin-bottom: 0;
  background: linear-gradient(180deg, #5b055b 0%, #7a145d 55%, #8f1959 100%);
}

.cards {
  margin-top: 0;
  padding-top: 14px;
  padding-bottom: 18px;
  background: linear-gradient(180deg, #8a1a5a 0%, #8f1b56 100%);
}

.top::before,
.top::after,
.cards::after {
  display: none;
}

.banners {
  margin-top: 0;
}

.cards__list {
  gap: 16px;
}

.cards__item {
  width: auto;
  min-width: 0;
}

.cards__item__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 14px;
}

.cards__item__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.cards__item__info div {
  position: relative;
  width: 100%;
  padding-right: 18px;
}

.cards__item__info div:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 100%;
  background: linear-gradient(270deg, #8f1b56 0%, rgba(143, 27, 86, 0) 100%);
}

.cards__item__info div p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  white-space: normal;
  line-height: 1.2;
}

.cards__item__info div p:nth-child(1) {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.cards__item__info div p:nth-child(2) {
  font-size: 12px;
  font-weight: 500;
  color: #f4cfe6;
}

footer {
  background: linear-gradient(180deg, #7e1858 0%, #67124e 100%);
}

.footer__top {
  border-bottom: 1px solid rgba(255, 210, 234, 0.22);
}

.footer__left__title,
.footer__menu,
.footer__top__list p,
.footer__top__right div:nth-child(1),
.footer__top__right div:nth-child(1) p:nth-child(2),
.footer__top__right div:nth-child(2),
.footer__top__right div:nth-child(2) a,
.footer-disclaimer div,
.footer-disclaimer p {
  color: #ffe8f4;
}

.footer__top__list ul li,
.footer-row div:nth-child(3),
.footer-row div:nth-child(1) {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 217, 237, 0.26);
  color: #fff3f9;
}

.footer__top__right div:nth-child(2) svg path,
.footer-disclaimer div svg path {
  fill: #ffe8f4;
}

/* Darker social icons for better contrast on bordeaux footer */
.footer__top__list ul li svg path,
.footer__top__list ul li svg circle,
.footer__top__list ul li svg g path {
  fill: #8d3d72 !important;
  stroke: #8d3d72 !important;
}

.cards__block {
  margin-top: 0;
}

.cards__item__info svg path {
  fill: #f0d4e8;
}

.content__item h1,
.content__item h2,
.content__item h3,
.content__item h4 {
  color: #3d1840;
}

.content__item p,
.content__item li,
.content__table td,
.content__table th {
  color: #36293b;
}

.content__table th,
.content__table td {
  border-color: rgba(131, 101, 127, 0.35);
}

.footer__top {
  border-bottom: 1px solid rgba(111, 84, 110, 0.35);
}

.footer__menu,
.footer-disclaimer p,
.footer__top__right div:nth-child(1) p:nth-child(2),
.footer__left__title,
.footer__top__list p {
  color: #6c5268;
}

.footer__top__right div:nth-child(2) svg path {
  fill: #9c2b54;
}

.footer-row div:nth-child(1),
.footer-row div:nth-child(3),
.footer__top__list ul li {
  background: #ece6eb;
  box-shadow: inset 0 0 0 1px rgba(135, 102, 133, 0.28);
  color: #4a3049;
}

.footer-disclaimer div,
.footer-disclaimer div svg path {
  color: #8c5a80;
  fill: #8c5a80;
}

.mobile-menu {
  background: linear-gradient(180deg, #56065b 0%, #42014a 100%);
}

.mobile-menu div {
  color: #e7b9d9;
}

.mobile-menu div:nth-child(1),
.mobile-menu div:nth-child(1) svg path {
  color: #ffffff;
  fill: #ffffff;
}

.mobile-menu div:nth-child(3) span:nth-child(1) {
  background: linear-gradient(180deg, var(--ci-accent-red-1) 0%, var(--ci-accent-red-2) 100%);
  box-shadow: 0 6px 14px rgba(125, 6, 54, 0.5);
}

.mobile-search,
.suport {
  background: linear-gradient(180deg, var(--ci-accent-red-1) 0%, var(--ci-accent-red-2) 100%);
}

/* Final stable overrides (prevent regressions from duplicate legacy blocks) */
footer {
  background: linear-gradient(180deg, #7e1858 0%, #67124e 100%);
}

.footer__top {
  border-bottom: 1px solid rgba(255, 210, 234, 0.22);
}

.footer__left__title,
.footer__menu,
.footer__top__list p,
.footer__top__right div:nth-child(1),
.footer__top__right div:nth-child(1) p:nth-child(2),
.footer__top__right div:nth-child(2),
.footer__top__right div:nth-child(2) a,
.footer-disclaimer div,
.footer-disclaimer p {
  color: #ffe8f4;
}

.footer__top__right div:nth-child(2) svg path,
.footer-disclaimer div svg path {
  fill: #ffe8f4;
}

@media (max-width: 1279px) {
  .top,
  .cards {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
  }

  .banners {
    margin-top: 0;
    width: 100%;
    padding-right: 0;
  }

  .cards__list {
    width: 100%;
    padding-right: 0;
  }

  .cards__item {
    width: 124px;
    min-width: 124px;
  }

  .top {
    padding-top: 10px;
  }

  .cards {
    padding-top: 12px;
    padding-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .cards__item {
    width: 35vw;
    min-width: 35vw;
  }

  .cards__item__info div {
    padding-right: 0;
  }

  .cards__item__info div:after {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
