* {
  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 {
  display: none;
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #3B1A30 0%, #5C293A 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Figtree", sans-serif;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content {
  flex: 1;
  color: #fff;
}

.cookie-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  outline: none;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #E9B472;
  color: #3B1A30;
}

.cookie-btn-accept:hover {
  background: #F5DCBF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.cookie-btn-decline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px;
  }
  
  .cookie-container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  
  .cookie-content h3 {
    font-size: 16px;
  }
  
  .cookie-content p {
    font-size: 13px;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Removed stb-icon-sprite styles - using direct SVG elements now */
svg.icon {
  aspect-ratio: 1/1;
  display: block;
  width: 20px;
  height: 20px;
  fill: #5C293A;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

.main {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #F6E9DC;
  background: #150B18;
  overflow-x: hidden;
  padding-top: 0;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1632px;
  overflow-x: hidden;
}

header {
  height: 66px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: radial-gradient(88.18% 100% at 50% 0%, #5C293A 0%, #150B18 60%, #150B18 100%);
  border-bottom: 0;
}
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: 25px;
  padding-left: 10px;
}

.header__logo {
  width: 110px;
  aspect-ratio: 110/50;
}
.header__logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.header__icon,
.burger {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #F6E9DC;
  background: #150B18;
  box-shadow: 0 8px 8px rgba(21, 11, 24, 0.3490196078), 0 4px #1F1023;
  cursor: pointer;
}
.header__icon svg.icon,
.burger svg.icon {
  width: 28px;
  height: 28px;
  fill: #5C293A;
}

.burger {
  display: none;
}

.header__nav {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.header__nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav li {
  position: relative;
}

.header__nav a {
  color: #3B1A30;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 8px 0;
  display: block;
}

.header__nav a:hover {
  color: rgb(255, 255, 255);
}

.header__nav a.active {
  color: rgb(255, 255, 255);
  position: relative;
}

.header__nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #DDB094 0%, #8A4A5C 50%, #5C293A 100%);
  border-radius: 2px;
}

.header__right {
  display: flex;
  gap: 8px;
}

.header__search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  width: 300px;
  font-size: 16px;
  font-weight: 400;
  padding: 0 12px;
  border: 1px solid #5C293A;
  border-radius: 12px;
  color: #3B1A30;
  background-color: #150B18;
  box-shadow: 0px 4px 0px #150B18, inset 0px 4px 0px rgba(92, 41, 58, 0.2);
}
.header__search svg.icon {
  width: 16px;
  height: 16px;
  fill: #5C293A;
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  background: radial-gradient(182.55% 100% at 50% 0%, #DDB094, #8A4A5C 33%, #5C293A 38%, #2A1428) padding-box, linear-gradient(180deg, rgb(122, 62, 79) 0%, rgb(201, 151, 122) 98%) border-box;
  color: rgb(255, 255, 255);
  font-weight: 900;
  padding: 0 23px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-transform: uppercase;
}

.mobile--menu {
  display: none;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 66px;
  height: calc(100vh - 66px);
  width: 256px;
  z-index: 99;
  overflow: auto;
  display: flex;
  flex-direction: column;
  background: #150B18;
  border-inline-end: 1px solid #492337;
}

.sidebar__menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 12px 12px 0;
  border-radius: 16px;
  border: 1px solid rgb(255, 255, 255);
  background: linear-gradient(180deg, #231227 0%, rgb(221, 176, 148) 100%);
}

.sidebar__line {
  display: none;
}

.sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-bottom: 9px;
}
.sidebar__list:after {
  display: block;
  transform: translateY(5px);
  height: 1px;
  margin-inline: 12px;
  background: linear-gradient(90deg, rgba(73, 35, 55, 0) 0%, #492337 50%, rgba(73, 35, 55, 0) 100%);
  content: "";
}
.sidebar__list:nth-child(3) a {
  background: none no-repeat left 200% center/0, none no-repeat left center/3px 21px, linear-gradient(90deg, rgba(221, 176, 148, 0.6) 0%, rgba(245, 220, 191, 0) 80%);
  color: #231227;
}
.sidebar__list:nth-child(3) a span:nth-child(1) svg {
  fill: #231227;
}
.sidebar__list li {
  width: 100%;
}
.sidebar__list a {
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  gap: 12px;
  padding: 0 20px;
  color: #5C293A;
  background: none no-repeat left 200% center/0, none no-repeat left center/0;
}
.sidebar__list a span:nth-child(1) {
  width: 20px;
  aspect-ratio: 1/1;
  display: flex;
}
.sidebar__list a span:nth-child(1) img {
  width: 100%;
  height: 100%;
}

.sidebar__footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: sticky;
  bottom: 0;
  z-index: 2;
  padding: 4px 12px 12px;
  background: #150B18;
  gap: 5px;
}
.sidebar__footer a {
  position: relative;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  gap: 2px;
  place-content: center;
  place-items: center;
  padding: 6px 8px;
  height: 57px;
  border: 1px solid transparent;
  background: radial-gradient(182.55% 100% at 50% 0%, rgb(221, 176, 148) 0%, rgb(214, 166, 136) 33.17%, rgb(201, 151, 122) 37.98%, rgb(175, 119, 91) 100%) padding-box, linear-gradient(175.32deg, #231227 0%, rgb(214, 166, 136) 100%) border-box;
  color: rgb(255, 255, 255);
  text-align: center;
  border-radius: 12px;
  box-shadow: 0px 2px 0px rgb(138, 74, 92), 0px 6px 6px rgba(92, 41, 58, 0.15), inset 0px 1.5px 0px rgba(214, 166, 136, 0.6);
}
.sidebar__footer a img,
.sidebar__footer a svg.icon {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar__footer a svg.icon {
  fill: rgb(255, 255, 255);
}

.wrap {
  padding-left: 256px;
  overflow-x: hidden;
  width: 100%;
}

.banner--wrap .container {
  width: 100%;
  max-width: none;
}

.banner {
  height: 465px;
  position: relative;
  display: flex;
  align-items: center;
}
.banner:before {
  background-image: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 16px;
  background-size: 100% 100%;
  background-position: 100% 50%;
  content: "";
  z-index: 1;
}

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

.banner__content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: 200px;
}
.banner__content p:nth-child(1) {
  font-size: 20px;
  font-weight: 400;
  padding: 3px 9px 5px 15px;
  -o-border-image: none 58 fill/18px stretch;
     border-image: none 58 fill/18px stretch;
  color: rgb(255, 255, 255);
}
.banner__content p:nth-child(2) {
  margin-top: 7px;
  font-size: 48px;
  font-weight: 900;
  text-shadow: 0px 1px 0px rgb(138, 74, 92);
  color: rgb(255, 255, 255);
  max-width: 525px;
  width: 100%;
  text-transform: uppercase;
}
.banner__content p:nth-child(3) {
  margin-top: 25px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(0, 0, 0);
  background: radial-gradient(182.55% 100% at 50% 0%, #f6ffde, #aeef01 33%, #9bd601 38%, #6a9801) padding-box, linear-gradient(180deg, rgb(250, 255, 235) 0%, rgb(135, 189, 1) 98%) border-box;
  border-radius: 1000px;
  border: 1px solid transparent;
  overflow: hidden;
  box-shadow: 0px 4px 0px rgb(67, 102, 1), 0px 8px 8px rgba(43, 52, 83, 0.35), inset 0px 2px 0px rgba(250, 255, 235, 0.3);
  font-size: 28px;
  font-weight: 900;
  padding: 0 38px;
  text-transform: uppercase;
}

.dots {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 6px;
  bottom: 24px;
  left: 0;
  position: absolute;
}
.dots span {
  width: 12px;
  height: 12px;
  background: var(--stb-main-banner-pagination-item-default-background-color);
  border: 1px solid #fff;
  border-radius: 50%;
}
.dots span:nth-child(1) {
  background: #fff;
}

.arrows {
  position: absolute;
  display: flex;
  justify-content: space-between;
  left: 40px;
  right: 40px;
  width: auto;
}
.arrows span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid transparent;
  box-shadow: 0px 4px 0px #231227, 0px 8px 8px rgba(21, 11, 24, 0.35), inset 0px 2px 0px rgba(214, 166, 136, 0.2);
  background: radial-gradient(182.55% 100% at 50% 0%, #DDB094, #5C293A 33%, #3B1A30 38%, #3B1A30) padding-box, linear-gradient(180deg, #F6E9DC 0%, #5C293A 100%) border-box;
}
.arrows span svg.icon {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.top--menu {
  top: 65px;
  z-index: 9;
  position: sticky;
  overflow: hidden;
  margin: 0 auto;
  background-color: #150B18;
  padding: 16px 0 0 16px;
}

.top__menu {
  position: relative;
}

.top__menu__row {
  overflow-x: auto;
  padding: 0 16px 0 10px;
  max-width: 100%;
}
.top__menu__row ul {
  display: flex;
  gap: 12px;
  min-width: -moz-max-content;
  min-width: max-content;
  justify-content: center;
}
.top__menu__row ul li:last-child {
  position: relative;
  z-index: 2;
}
.top__menu__row ul a {
  font-size: 14px;
  font-weight: 800;
  position: relative;
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  grid-template-columns: auto;
  grid-gap: 4px;
  align-items: center;
  justify-items: initial;
  padding: 8px;
  white-space: nowrap;
  color: rgb(0, 0, 0);
  border-radius: 8px;
  border: 1px solid rgb(255, 255, 255);
  background: rgb(242, 236, 255);
  box-shadow: 2px 2px 0px #DDB094;
  margin-top: 8px;
}
.top__menu__row ul a span:nth-child(1) {
  width: 36px;
  height: 36px;
  margin-block-end: -16px;
  margin-inline-start: -20px;
  margin-block-start: -20px;
}
.top__menu__row ul a span:nth-child(1) img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  overflow-x: hidden;
}

.cards__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.cards__title {
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 700;
  min-width: -moz-max-content;
  min-width: max-content;
  text-transform: capitalize;
}

.cards__line {
  height: 36px;
  width: 100%;
  background: linear-gradient(90deg, rgba(73, 35, 55, 0) 0%, #492337 50%, rgba(73, 35, 55, 0) 100%) left center/100% 1px repeat-x;
}

.cards__nav {
  display: flex;
  align-items: center;
  min-width: -moz-max-content;
  min-width: max-content;
  gap: 12px;
}
.cards__nav p {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  text-transform: uppercase;
  color: #492337;
}

.cards__arrows {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cards__arrows span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgb(255, 255, 255);
  background: #231227;
  box-shadow: 2px 2px 0px rgb(201, 151, 122);
}
.cards__arrows span svg.icon {
  width: 16px;
  height: 16px;
}
.cards__arrows span:nth-child(1) {
  opacity: 0.5;
}

.cards__list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  max-width: 100%;
}

.cards__item {
  position: relative;
}

.cards__item__body {
  position: relative;
  aspect-ratio: 224/336;
  border-radius: 8px;
  border: 2px solid rgb(255, 255, 255);
  box-shadow: 2px 2px 0 0 #DDB094;
}
.cards__item__body span {
  display: none;
}
.cards__item__body img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.cards__item__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: rgb(160, 138, 128);
  display: none;
}

.content--wrap {
  padding: 40px 80px;
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
}

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

.content__item {
  font-size: 18px;
  line-height: 1.5;
}
.content__item h1,
.content__item h2,
.content__item h3,
.content__item h4 {
  font-weight: 900;
}
.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;
}

/* Link Styles in Content */
.content a {
  color: #5C293A;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(92, 41, 58, 0.3);
  text-underline-offset: 2px;
  transition: all 0.3s ease;
}

.content a:hover {
  color: #F6E9DC;
  text-decoration-color: #F6E9DC;
  text-shadow: 0 0 1px rgba(92, 41, 58, 0.3);
}

.content a:visited {
  color: #5C293A;
}

.content a:active {
  color: #231227;
  transform: translateY(1px);
}

.content a:focus {
  outline: 2px solid #5C293A;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Special styling for links in tables */
.content__table a {
  color: #5C293A;
  text-decoration: underline;
  text-decoration-style: dotted;
}

.content__table a:hover {
  text-decoration-style: solid;
}

/* Links in lists */
.content ul a,
.content ol a {
  position: relative;
  display: inline-block;
}

.content ul a::after,
.content ol a::after {
  content: '→';
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.3s ease;
  opacity: 0;
}

.content ul a:hover::after,
.content ol a:hover::after {
  opacity: 1;
  transform: translateX(3px);
}

.content__table {
  overflow-x: auto;
  max-width: 100%;
}
.content__table table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}
.content__table td {
  padding: 12px;
  border: 1px solid #F6E9DC;
  text-align: left;
  vertical-align: top;
}
.content__table tr:first-child td {
  text-align: center;
  font-weight: 900;
}
.content__table thead th {
  padding: 12px;
  border: 1px solid #F6E9DC;
  text-align: center;
  font-weight: 900;
  vertical-align: top;
}

.table--style tr:first-child td {
  text-align: center;
  font-weight: 900;
}
.table--style td:first-child {
  font-weight: 900;
}

footer {
  padding: 32px 0;
  position: relative;
  background: none, linear-gradient(180deg, #150B18 0%, rgb(59, 26, 48) 100%);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 20px;
}

.footer__menu {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 40px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  color: #3B1A30;
}
.footer__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.footer__menu__title {
  font-weight: 700;
  font-size: 14px;
  color: rgb(245, 220, 191);
}

.footer__menu__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__menu__item:nth-child(2) {
  margin-top: 60px;
}

.footer__copyright {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 0px;
  color: rgb(175, 119, 91);
  line-height: 1.4;
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 1919px) {
  .cards__list {
    grid-template-columns: repeat(7, 1fr);
  }
  .cards__item:nth-child(n+8) {
    display: none;
  }
  .banner {
    height: 444px;
  }
}
@media (max-width: 1279px) {
  .burger {
    display: flex;
  }
  .header__icon {
    display: none;
  }
  .header__search {
    display: none;
  }
  .header__nav {
    display: none;
  }
  .sidebar {
    display: none;
  }
  .wrap {
    padding-left: 0;
    position: relative;
    overflow-x: hidden;
    width: 100%;
  }
  .cards__list {
    grid-template-columns: repeat(6, 1fr);
  }
  .cards__item:nth-child(n+7) {
    display: none;
  }
  .cards__arrows {
    display: none;
  }
  .footer__menu {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer__column:nth-child(n+5) {
    display: none;
  }
  .content--wrap {
    padding: 40px 16px;
    overflow-x: hidden;
    max-width: 100%;
  }
  .footer {
    padding: 0;
  }
  .top__menu__row::-webkit-scrollbar {
    display: none;
  }
  .header__left {
    gap: 15px;
    padding-left: 0;
  }
  .mobile--menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 44px;
    position: relative;
  }
  .mobile--menu:before {
    position: absolute;
    inset: 0;
    height: 53px;
    background: transparent none top center no-repeat;
    background-size: 100% 100%;
    content: "";
    z-index: 2;
  }
  .mobile--menu a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    text-decoration: none;
  }
  .mobile--menu span {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 0 2px;
    color: #3B1A30;
  }
  .mobile--menu a:hover span {
    color: rgb(255, 255, 255);
  }
  .mobile--menu a.active span {
    color: rgb(255, 255, 255);
    font-weight: 900;
  }
  .mobile--menu a:last-child::after {
    display: none;
  }
  .mobile--menu a:after {
    position: absolute;
    top: 50%;
    inset-inline-end: -1px;
    z-index: 1;
    display: block;
    width: 1px;
    height: 24px;
    background: rgb(35, 18, 39);
    transform: translateY(-50%);
    content: "";
  }
  .banner__content {
    margin-left: 30px;
  }
  .arrows {
    display: none;
  }
}
@media (max-width: 767px) {
  .content__item ol,
  .content__item ul {
    padding-left: 30px;
  }
  .content__item {
    font-size: 16px;
  }
  .content__table th,
  .content__table td {
    padding: 8px;
  }
  .footer__menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    padding: 0 16px;
    max-width: 100%;
    overflow-x: hidden;
  }
  .footer__top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__top a {
    width: 100%;
  }
  .footer__pay {
    flex-wrap: wrap;
  }
  .cards__list {
    display: flex;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-right: 0;
  }
  .cards__item:nth-child(n+7) {
    display: block;
  }
  .cards__item {
    width: 27%;
    min-width: 27%;
  }
  .top--menu {
    top: 111px;
  }
  header {
    height: 112px;
    padding: 12px 16px;
  }
  header .container {
    width: 100%;
  }
  .header {
    flex-direction: column;
  }
  .burger {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .burger svg.icon {
    width: 24px;
    height: 24px;
  }
  .header__right {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .header__btn {
    height: 34px;
    font-size: 14px;
    padding: 0 10px;
  }
  .header__logo {
    width: 92px;
  }
  .banner__content {
    margin-left: 0px;
  }
  .banner {
    height: 392px;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 30px;
  }
  .banner:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 16px;
    background-image: none;
    background-size: 100% 100%;
    background-position: 100% 50%;
    content: "";
    z-index: 1;
  }
  .banner__content p:nth-child(2) {
    width: 100%;
    max-width: 314px;
    font-size: 24px;
    margin-top: 3px;
  }
  .banner__content p:nth-child(1) {
    padding: 1px 5px 1px 10px;
    font-size: 14px;
  }
  .banner__content p:nth-child(3) {
    width: 100%;
    max-width: 313px;
    margin-top: 8px;
  }
  .dots {
    bottom: -24px;
  }
  .dots span {
    width: 8px;
    height: 8px;
  }
  .cards__title {
    font-size: 16px;
  }
}/*# sourceMappingURL=styles.css.map */

/* =========================================================
   SPINBARA — единый слой темы (палитра снята с арта бренда)
   ========================================================= */
:root{
  --sb-bg:#150B18; --sb-panel:#231227; --sb-panel-2:#3B1A30; --sb-line:#5C293A;
  --sb-warm:#AF775B; --sb-sand:#DDB094; --sb-cream:#F5DCBF; --sb-gold:#E9B472; --sb-accent:#FFA13E; --sb-text:#F6E9DC;
}
html,body{ overflow-x:hidden; overscroll-behavior-x:none; max-width:100%; background:var(--sb-bg); color:var(--sb-text); }

/* ---- ШАПКА ---- */
.site-header{ background:var(--sb-panel) !important; border-bottom:1px solid rgba(233,180,114,.28) !important; }
.site-header__inner{ display:flex; align-items:center; gap:20px; min-height:66px; }
.site-header__logo{ display:flex; align-items:center; flex:0 0 auto; }
.site-header__logo img{ height:38px; width:auto; display:block; }
.site-nav__link{ color:var(--sb-text) !important; font-weight:700; }
.site-nav__link:hover{ color:var(--sb-gold) !important; }
.site-header__cta{ background:transparent !important; color:var(--sb-gold) !important;
  border:2px solid var(--sb-gold); border-radius:12px; font-weight:800; padding:9px 16px; white-space:nowrap; }
.site-header__cta:hover{ background:var(--sb-gold) !important; color:#231227 !important; }
.site-burger__bar{ background:var(--sb-cream); }

/* ---- САЙДБАР ---- */
.sidebar{ background:var(--sb-bg) !important; border-right:1px solid rgba(233,180,114,.14); }
.sidebar__menu{ background:var(--sb-panel) !important; border-color:rgba(233,180,114,.16) !important; }
.sidebar__list a{ color:var(--sb-text) !important; background:none !important; }
.sidebar__list a:hover, .sidebar__list a.active{ color:var(--sb-gold) !important; background:rgba(233,180,114,.1) !important; }
.sidebar__list:after{ background:rgba(233,180,114,.16) !important; }
.sidebar__footer a{ color:var(--sb-cream) !important; }

/* ---- КОНТЕНТ ---- */
.content--wrap{ background:transparent; }
.content__item{ color:var(--sb-text); }
.content h2,.content h3{ color:#fff; }
.content a:not(.btn){ color:var(--sb-gold); text-decoration:underline; text-underline-offset:3px; text-decoration-color:rgba(233,180,114,.55); }
.content a:not(.btn):hover{ color:#fff; text-decoration-color:#fff; }
.content__table{ background:var(--sb-panel); border:1px solid rgba(233,180,114,.16); border-radius:12px; overflow:hidden; }
.content__table table td{ border-color:rgba(233,180,114,.14) !important; color:var(--sb-text); }
.content__table table tr:first-child td{ background:var(--sb-panel-2); color:#fff; }
.toc{ background:var(--sb-panel); border:1px solid rgba(233,180,114,.2); border-radius:12px; padding:12px 16px; }
.toc summary{ color:#fff; cursor:pointer; font-weight:700; }
.toc__list{ margin:12px 0 0; padding-left:18px; display:grid; gap:6px; }
.notice{ background:rgba(175,119,91,.16); border-left:4px solid var(--sb-gold); padding:16px 18px; border-radius:10px; }
.notice__age{ color:var(--sb-gold); font-weight:800; font-size:20px; margin:0 0 6px; }
.notice__neutral{ background:var(--sb-panel); padding:14px 16px; border-radius:10px; font-size:15px; }
.author{ display:flex; gap:16px; background:var(--sb-panel); border:1px solid rgba(233,180,114,.2); border-radius:12px; padding:16px; }
.author__photo{ width:96px; height:96px; border-radius:50%; object-fit:cover; flex:0 0 auto; }
.author--page .author__photo{ width:128px; height:128px; }
.author__name{ font-weight:800; margin:0; font-size:18px; }
.author__role{ margin:2px 0 8px; color:var(--sb-sand); font-size:14px; }
.author__meta{ font-size:13px; color:var(--sb-sand); margin:10px 0 0; }
.stamp{ font-size:14px; color:var(--sb-sand); border-left:3px solid var(--sb-gold); padding-left:12px; }
.content code{ background:rgba(233,180,114,.16); color:var(--sb-cream); padding:1px 6px; border-radius:5px; }
.content ol{ padding-left:20px; display:grid; gap:8px; } .content ul{ padding-left:20px; }
.faq__item{ border-bottom:1px solid rgba(233,180,114,.14); padding-bottom:10px; margin-bottom:14px; }
.content__actions{ margin:14px 0; }

/* ---- ИГРЫ: явно кликабельные ---- */
.top--menu,.cards--wrap{ background:var(--sb-panel); }
.top__menu__row ul li a, .cards__item{ cursor:pointer; transition:transform .15s ease, box-shadow .15s ease; }
.top__menu__row ul li a{ color:var(--sb-text) !important; border:1px solid rgba(233,180,114,.14); border-radius:12px; }
.top__menu__row ul li a:hover{ color:var(--sb-gold) !important; border-color:var(--sb-gold); background:rgba(233,180,114,.08); }
.cards__item{ border:1px solid rgba(233,180,114,.14); border-radius:14px; overflow:hidden; background:var(--sb-panel-2); display:block; }
.cards__item:hover{ transform:translateY(-4px); box-shadow:0 12px 28px rgba(0,0,0,.5); border-color:var(--sb-gold); }
.cards__item__title span{ color:var(--sb-text); }
.cards__item:hover .cards__item__title span{ color:var(--sb-gold); }
.cards__row{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin:16px 0; }
.cards__row .cards__item img{ width:100%; height:auto; display:block; }

/* ---- СТРАНИЦЫ, КРОШКИ, ПЕРЕЛИНКОВКА ---- */
.hero--page{ grid-template-columns:1fr; gap:10px; }
.hero--page h1{ text-transform:none; font-size:clamp(24px,3vw,34px); }
.crumbs{ font-size:13px; display:flex; gap:6px; flex-wrap:wrap; color:var(--sb-sand); }
.crumbs a{ color:var(--sb-sand); text-decoration:none; } .crumbs a:hover{ color:var(--sb-gold); }
.links--grid{ list-style:none; padding:0; margin:12px 0 0; display:grid; grid-template-columns:repeat(3,1fr); gap:8px 18px; }
.links--grid li a{ display:block; padding:8px 12px; border:1px solid rgba(233,180,114,.22);
  border-radius:8px; background:var(--sb-panel); color:var(--sb-cream) !important; text-decoration:none !important; font-weight:700; }
.links--grid li a:hover{ background:var(--sb-panel-2); color:#fff !important; border-color:var(--sb-gold); }

/* ---- ПОДВАЛ И КУКИ ---- */
.site-footer{ background:var(--sb-panel) !important; color:var(--sb-text); }
.site-footer a{ color:var(--sb-cream); } .site-footer a:hover{ color:var(--sb-gold); }
.site-footer h3{ color:#fff; }
.cookie-banner{ background:var(--sb-panel-2); color:var(--sb-text); }
.cookie-btn-accept{ background:var(--sb-gold); color:#231227; }

@media (max-width:900px){ .hero{ grid-template-columns:1fr; } .hero__img img{ max-width:220px; } .cards__row{ grid-template-columns:1fr; } }
@media (max-width:767px){ .hero--wrap{ padding:22px 0 20px; }
  .links--grid{ grid-template-columns:1fr; } .author{ flex-direction:column; } }

/* ---- HERO (макет Pistolo: текст слева, квадратная карточка справа, одна кнопка) ---- */
.hero--wrap{ background:linear-gradient(180deg,#1E1024 0%, var(--sb-bg) 100%);
  border-bottom:1px solid rgba(233,180,114,.14); padding:44px 0 40px; margin-bottom:26px; }
.hero{ display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:48px; align-items:center; }
.hero__col{ min-width:0; }
.hero h1{ color:#fff; font-weight:800; line-height:1.12; margin:0 0 18px;
  font-size:clamp(28px,3.6vw,44px); letter-spacing:-.01em; }
.hero p{ color:rgba(246,233,220,.86); margin:0 0 12px; font-size:15px; line-height:1.65; max-width:66ch; }
.hero p strong{ color:#fff; font-weight:700; }
.hero__lead{ font-size:15px; }
.hero__actions{ margin-top:22px; }
.hero__img img{ width:100%; max-width:300px; height:auto; border-radius:24px; display:block;
  box-shadow:0 20px 50px rgba(0,0,0,.55); }
a.btn--cta{ display:inline-flex; align-items:center; justify-content:center;
  background:var(--sb-accent) !important; color:#231227 !important;
  border:0; border-radius:10px; padding:15px 42px; font-weight:800; font-size:16px;
  text-decoration:none !important; box-shadow:0 8px 22px rgba(255,161,62,.28); transition:.15s; }
a.btn--cta:hover{ background:#FFB25E !important; transform:translateY(-2px); box-shadow:0 12px 28px rgba(255,161,62,.4); }
.site-header__cta{ background:var(--sb-accent) !important; color:#231227 !important; border:0 !important; }
.site-header__cta:hover{ background:#FFB25E !important; color:#231227 !important; }
.cards__item:hover{ border-color:var(--sb-accent); }
.top__menu__row ul li a:hover{ color:var(--sb-accent) !important; border-color:var(--sb-accent); }
@media (max-width:900px){ .hero{ grid-template-columns:1fr; gap:24px; } .hero__img img{ max-width:240px; } }
@media (max-width:767px){ .hero--wrap{ padding:24px 0 22px; } a.btn--cta{ width:100%; } }
.hero--page{ grid-template-columns:1fr !important; gap:10px; }
.hero--page h1{ font-size:clamp(24px,3vw,34px); margin-bottom:10px; }
.hero--page .hero__lead{ font-size:16px; }

/* ---- ФИКСЫ: отступы, сайдбар, чипсы категорий ---- */
.container{ padding-left:24px; padding-right:24px; }
.content--wrap{ padding:40px 0 !important; }
.content--wrap .container{ max-width:1100px; }
.hero--wrap .container{ max-width:1280px; }

/* сайдбар: высота по содержимому, текст не рвётся */
.sidebar__list a{
  height:auto !important; min-height:46px; padding:11px 18px !important;
  line-height:1.25; align-items:center; text-transform:none !important;
  font-size:13px; letter-spacing:.01em; border-radius:10px;
}
.sidebar__list a span:last-child{ display:block; }
.sidebar__list li{ margin:2px 0; }
.sidebar__menu{ padding:6px; }

/* чипсы категорий: тёмные, читаемые */
.top--menu{ padding:16px 0; }
.top__menu__row ul{ display:flex; gap:10px; padding:2px 0; }
.top__menu__row ul li a{
  background:var(--sb-panel-2) !important; color:var(--sb-text) !important;
  border:1px solid rgba(233,180,114,.18) !important; border-radius:12px;
  padding:9px 14px !important; display:inline-flex !important; align-items:center; gap:9px;
  white-space:nowrap; font-size:13px; font-weight:700; text-decoration:none !important;
}
.top__menu__row ul li a img{ width:20px; height:20px; object-fit:contain; }
.top__menu__row ul li a:hover{
  background:rgba(255,161,62,.16) !important; color:var(--sb-accent) !important; border-color:var(--sb-accent) !important;
}

/* ---- КОНТРАСТ: заголовки рядов игр, «Pokaż wszystko», мобильное меню ---- */
.cards__title span{ color:#fff !important; font-weight:800; }
.cards__line{ background:linear-gradient(90deg, rgba(233,180,114,0) 0%, rgba(233,180,114,.5) 50%, rgba(233,180,114,0) 100%) left center/100% 1px repeat-x !important; margin:0 18px; }
.cards__nav{ text-decoration:none !important; }
.cards__nav p{ color:var(--sb-accent) !important; font-weight:800; }
.cards__nav:hover p{ color:#FFC489 !important; }
.cards__arrows{ filter:brightness(1.6); }

/* ---- ПОДВАЛ: компактнее и читаемо ---- */
.site-footer{ background:var(--sb-panel) !important; border-top:1px solid rgba(233,180,114,.16); }
.site-footer__inner{ padding:28px 24px 20px !important; }
.site-footer__top{ padding-bottom:16px !important; }
.site-footer__logo img{ height:30px; width:auto; }
.site-footer__columns{ gap:18px !important; padding:18px 0 !important; }
.site-footer__col h3{ font-size:13px !important; color:#fff !important; margin-bottom:8px !important; letter-spacing:.02em; }
.site-footer__col ul{ display:grid; gap:5px; }
.site-footer__col a{ font-size:13px !important; color:rgba(246,233,220,.82) !important; text-decoration:none; }
.site-footer__col a:hover{ color:var(--sb-accent) !important; }
.site-footer__disclaimer{ font-size:12px !important; color:rgba(246,233,220,.7) !important;
  gap:10px !important; padding:12px 0 !important; border-top:1px solid rgba(233,180,114,.14); }
.site-footer__disclaimer a{ color:var(--sb-accent) !important; }
.site-footer__badge-txt{ color:var(--sb-accent) !important; font-weight:800; }
.site-footer__bottom{ font-size:12px !important; color:rgba(246,233,220,.62) !important; padding-top:10px !important; }
.site-footer__bottom a{ color:var(--sb-cream) !important; }
.site-footer__cta{ background:var(--sb-accent) !important; color:#231227 !important; border:0 !important;
  border-radius:10px; font-weight:800; padding:11px 20px; }
.site-footer__cta:hover{ background:#FFB25E !important; }

/* ---- КУКИ-БАННЕР ---- */
.cookie-banner{ background:var(--sb-panel-2); border-top:1px solid rgba(233,180,114,.24); color:var(--sb-text); }
.cookie-banner[hidden]{ display:none !important; }
.cookie-content h3{ color:#fff; }
.cookie-btn{ cursor:pointer; border-radius:10px; font-weight:800; padding:11px 20px; border:2px solid transparent; }
.cookie-btn-accept{ background:var(--sb-accent) !important; color:#231227 !important; }
.cookie-btn-accept:hover{ background:#FFB25E !important; }
.cookie-btn-decline{ background:transparent !important; color:var(--sb-cream) !important;
  border-color:rgba(220,176,148,.5) !important; }
.cookie-btn-decline:hover{ background:rgba(220,176,148,.14) !important; color:#fff !important; }

/* ================= МОБИЛЬНАЯ ВЕРСИЯ: всё по центру ================= */
@media (max-width:767px){
  .hero{ text-align:center; justify-items:center; }
  .hero__col{ display:flex; flex-direction:column; align-items:center; }
  .hero h1{ text-align:center; }
  .hero p, .hero__lead{ text-align:center; margin-left:auto; margin-right:auto; }
  .hero__actions{ display:flex; justify-content:center; width:100%; }
  .hero__img{ display:flex; justify-content:center; width:100%; margin-top:8px; }
  .hero__img img{ margin:0 auto 6px; max-width:190px; }
  a.btn--cta{ width:100%; max-width:340px; }
  .content__actions{ display:flex; justify-content:center; }
  .cards__row .cards__item img{ margin:0 auto; }
  .author{ align-items:center; text-align:center; }
  .author__photo{ margin:0 auto; }
  .notice{ text-align:left; }
  .site-footer__top{ display:flex; flex-direction:column; align-items:center; gap:12px; text-align:center; }
  .site-footer__disclaimer{ flex-direction:column; align-items:center; text-align:center; }
  .site-footer__bottom{ text-align:center; }
  .cookie-container{ text-align:center; }
  .cookie-buttons{ display:flex; justify-content:center; gap:10px; }
  .crumbs{ justify-content:center; }
  .hero--page .hero__col{ align-items:center; }
}

/* ---- Кнопка: текст строго по центру ---- */
a.btn--cta{ justify-content:center !important; text-align:center; }
.hero__actions{ display:flex; }
@media (max-width:767px){
  .hero__actions{ justify-content:center; }
  a.btn--cta{ width:100%; max-width:340px; justify-content:center !important; }
  /* порядок: H1 -> текст -> кнопка -> картинка */
  .hero{ display:flex; flex-direction:column; }
  .hero__col{ order:1; width:100%; }
  .hero__img{ order:2; }
}

/* ---- Hero-картинка крупнее ---- */
.hero{ grid-template-columns:minmax(0,1fr) 380px; gap:44px; }
.hero__img img{ max-width:380px; border-radius:28px; }
@media (max-width:1100px){ .hero{ grid-template-columns:minmax(0,1fr) 300px; } .hero__img img{ max-width:300px; } }
@media (max-width:900px){ .hero{ grid-template-columns:1fr; } .hero__img img{ max-width:280px; } }
@media (max-width:767px){ .hero__img img{ max-width:230px; } }

/* ---- Шапка sticky 73px: сайдбар и якоря выравниваем по ней ---- */
.sidebar{ top: 73px !important; height: calc(100vh - 73px) !important; }
html{ scroll-padding-top: 84px; }
