* {
  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, #3c34ac 0%, #655dd0 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: #ffd700;
  color: #3c34ac;
}

.cookie-btn-accept:hover {
  background: #ffed4e;
  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: rgb(101, 93, 208);
}

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: rgb(60, 52, 172);
  background: rgb(220, 218, 249) url(../images/body-background.0e9fe9dd541947bb.webp) repeat center top;
  overflow-x: hidden;
  padding-top: 66px;
}

.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%, #7c47d1 0%, #081064 60%, #081064 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 rgb(60, 52, 172);
  background: rgb(7, 15, 89);
  box-shadow: 0 8px 8px rgba(10, 20, 130, 0.3490196078), 0 4px #282371;
  cursor: pointer;
}
.header__icon svg.icon,
.burger svg.icon {
  width: 28px;
  height: 28px;
  fill: rgb(101, 93, 208);
}

.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: rgb(183, 180, 238);
  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, #c5a1fa 0%, #8f60e2 50%, #6440bd 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 rgb(101, 93, 208);
  border-radius: 12px;
  color: rgb(183, 180, 238);
  background-color: rgb(7, 15, 89);
  box-shadow: 0px 4px 0px rgb(6, 11, 69), inset 0px 4px 0px rgba(101, 93, 208, 0.2);
}
.header__search svg.icon {
  width: 16px;
  height: 16px;
  fill: rgb(101, 93, 208);
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  background: radial-gradient(182.55% 100% at 50% 0%, #c5a1fa, #8f60e2 33%, #6440bd 38%, #302987) padding-box, linear-gradient(180deg, rgb(115, 78, 212) 0%, rgb(168, 115, 248) 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;
}

/* Mobile Burger Button */
.mobile-burger {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #8f60e2 0%, #6440bd 50%, #3c34ac 100%);
  box-shadow: 0 6px 20px rgba(60, 52, 172, 0.5), 0 3px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.mobile-burger:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(60, 52, 172, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.mobile-burger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-burger.active span:nth-child(2) {
  opacity: 0;
}

.mobile-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 15, 89, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 24px;
  padding: 40px;
}

.mobile-nav a {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #c5a1fa;
}

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

.hero--section {
  position: relative;
  width: 100%;
  background: rgb(220, 218, 249);
  padding: 0;
  margin: 0;
}

.hero__wrapper {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
  pointer-events: none;
}

.hero__wrapper .container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 30px 20px 80px;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

.hero__title {
  margin-bottom: auto;
  margin-top: 1rem;
  padding-top: 20px;
}

.hero__title h1 {
  font-size: 52px;
  font-weight: 900;
  color: rgb(255, 255, 255);
  line-height: 1.2;
  text-shadow: 
    0 3px 10px rgba(0, 0, 0, 0.5),
    0 6px 20px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(255, 255, 255, 0.2);
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
  margin: 0;
}

.hero__promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(60, 52, 172, 0.5) 0%, rgba(101, 93, 208, 0.4) 50%, rgba(60, 52, 172, 0.5) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 50px;
  border-radius: 30px;
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 5px 15px rgba(255, 255, 255, 0.12) inset;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.hero__promo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: glow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate(20px, 20px);
    opacity: 0.5;
  }
}

.hero__promo__badge {
  font-size: 18px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.hero__promo__title {
  font-size: 54px;
  font-weight: 900;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  text-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.7),
    0 2px 6px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 255, 255, 0.3);
  line-height: 1.1;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.hero__promo__subtitle {
  font-size: 24px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  10%, 100% {
    left: 150%;
  }
}

.hero__promo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 65px;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  background: linear-gradient(135deg, #e5ff8a 0%, #9ee805 30%, #7bc403 60%, #5a9501 100%);
  border: none;
  border-radius: 70px;
  box-shadow: 
    0 14px 0 #3d6801,
    0 20px 35px rgba(0, 0, 0, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.6),
    inset 0 -2px 8px rgba(0, 0, 0, 0.2),
    0 0 30px rgba(158, 232, 5, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  position: relative;
  letter-spacing: 2px;
  overflow: hidden;
  z-index: 2;
  margin-top: 10px;
}

.hero__promo__btn span {
  position: relative;
  z-index: 3;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 1px 1px rgba(0, 0, 0, 0.2);
}

.hero__promo__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-25deg);
  animation: shine 6s infinite;
  z-index: 2;
}

.hero__promo__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 70px;
  padding: 4px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent, rgba(255, 255, 255, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.hero__promo__btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 18px 0 #3d6801,
    0 24px 40px rgba(0, 0, 0, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.7),
    inset 0 -2px 8px rgba(0, 0, 0, 0.2),
    0 0 50px rgba(158, 232, 5, 0.6);
  background: linear-gradient(135deg, #f0ffaa 0%, #a8f015 30%, #85ce10 60%, #68a208 100%);
}

.hero__promo__btn:active {
  transform: translateY(5px) scale(0.98);
  box-shadow: 
    0 5px 0 #3d6801,
    0 12px 25px rgba(0, 0, 0, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 6px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(158, 232, 5, 0.3);
}

.top--menu {
  top: 65px;
  z-index: 9;
  position: sticky;
  overflow: hidden;
  margin: 0 auto;
  background-color: rgb(220, 218, 249);
  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 rgb(189, 149, 250);
  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%;
}


.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;
}
.content__item h2 {
  font-size: 40px;
  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;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-accordion__item {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(94, 86, 206, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion__item:hover {
  border-color: rgba(94, 86, 206, 0.3);
}

.faq-accordion__item.active {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(94, 86, 206, 0.4);
  box-shadow: 0 4px 20px rgba(94, 86, 206, 0.1);
}

.faq-accordion__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  color: rgb(60, 52, 172);
  transition: all 0.3s ease;
}

.faq-accordion__question:hover {
  color: rgb(94, 86, 206);
}

.faq-accordion__question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: rgb(94, 86, 206);
}

.faq-accordion__item.active .faq-accordion__question svg {
  transform: rotate(180deg);
}

.faq-accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-accordion__item.active .faq-accordion__answer {
  max-height: 300px;
}

.faq-accordion__answer p {
  padding: 10px 24px 20px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgb(51, 51, 51);
}

@media (max-width: 767px) {
  .faq-accordion__question {
    padding: 16px 18px;
    font-size: 16px;
  }
  
  .faq-accordion__answer p {
    padding: 8px 18px 16px;
    font-size: 15px;
  }
}

/* Bonus Highlight Card */
.bonus-highlight {
  background: linear-gradient(135deg, rgba(94, 86, 206, 0.12) 0%, rgba(60, 52, 172, 0.08) 100%);
  border: 2px solid rgba(94, 86, 206, 0.25);
  border-radius: 24px;
  padding: 32px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.bonus-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(94, 86, 206, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-highlight__header {
  text-align: center;
  margin-bottom: 28px;
}

.bonus-highlight__tag {
  display: inline-block;
  background: linear-gradient(135deg, rgb(94, 86, 206) 0%, rgb(60, 52, 172) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.bonus-highlight__header h3 {
  font-size: 28px;
  font-weight: 900;
  color: rgb(60, 52, 172);
  margin: 0;
  line-height: 1.3;
}

.bonus-highlight__details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.bonus-highlight__item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(94, 86, 206, 0.1);
}

.bonus-highlight__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgb(102, 102, 102);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-highlight__value {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: rgb(60, 52, 172);
}

.bonus-highlight__btn {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  background: linear-gradient(180deg, #b8e85a 0%, #5a9501 100%);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  padding: 16px 32px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(90, 149, 1, 0.35), 0 3px 0 #3d6801;
}

.bonus-highlight__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(90, 149, 1, 0.45), 0 3px 0 #3d6801;
}

@media (max-width: 767px) {
  .bonus-highlight {
    padding: 24px 20px;
  }
  
  .bonus-highlight__header h3 {
    font-size: 22px;
  }
  
  .bonus-highlight__details {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .bonus-highlight__item {
    padding: 14px 12px;
  }
  
  .bonus-highlight__value {
    font-size: 18px;
  }
  
  .bonus-highlight__btn {
    max-width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* Login/Registration Steps */
.login-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 30px 0;
}

.login-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(94, 86, 206, 0.08) 0%, rgba(60, 52, 172, 0.05) 100%);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(94, 86, 206, 0.15);
  transition: all 0.3s ease;
}

.login-step:hover {
  border-color: rgba(94, 86, 206, 0.3);
  box-shadow: 0 8px 30px rgba(94, 86, 206, 0.12);
  transform: translateY(-2px);
}

.login-step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgb(94, 86, 206) 0%, rgb(60, 52, 172) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 4px 15px rgba(94, 86, 206, 0.35);
}

.login-step__content {
  flex: 1;
}

.login-step__content h3 {
  font-size: 20px;
  font-weight: 800;
  color: rgb(60, 52, 172);
  margin-bottom: 10px;
}

.login-step__content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgb(51, 51, 51);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .login-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
  
  .login-step__number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .login-step__content h3 {
    font-size: 18px;
  }
  
  .login-step__content p {
    font-size: 15px;
  }
}

/* Link Styles in Content */
.content a {
  color: rgb(94, 86, 206);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(94, 86, 206, 0.3);
  text-underline-offset: 2px;
  transition: all 0.3s ease;
}

.content a:hover {
  color: rgb(60, 52, 172);
  text-decoration-color: rgb(60, 52, 172);
  text-shadow: 0 0 1px rgba(94, 86, 206, 0.3);
}

/* In-content Highlighted Links */
.inlinks {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(94, 86, 206, 0.12) 0%, rgba(60, 52, 172, 0.08) 100%);
  color: rgb(60, 52, 172) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  padding: 4px 14px;
  border-radius: 8px;
  border: 1px solid rgba(94, 86, 206, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.inlinks::before {
  content: '→';
  font-size: 14px;
  transition: transform 0.3s ease;
}

.inlinks::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.inlinks:hover {
  background: linear-gradient(135deg, rgb(94, 86, 206) 0%, rgb(60, 52, 172) 100%);
  color: #fff !important;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(94, 86, 206, 0.35);
}

.inlinks:hover::before {
  transform: translateX(3px);
}

.inlinks:hover::after {
  left: 100%;
}

.content a:visited {
  color: rgb(101, 93, 208);
}

.content a:active {
  color: rgb(50, 44, 142);
  transform: translateY(1px);
}

.content a:focus {
  outline: 2px solid rgb(94, 86, 206);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Special styling for links in tables */
.content__table a {
  color: rgb(94, 86, 206);
  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 rgb(60, 52, 172);
  text-align: left;
  vertical-align: top;
}
.content__table thead th {
  padding: 12px;
  border: 1px solid rgb(60, 52, 172);
  text-align: center;
  font-weight: 900;
  vertical-align: top;
}

.table--style td:first-child {
  font-weight: 900;
}

footer {
  padding: 32px 0;
  position: relative;
  background: url(../images/footer-mask.webp), linear-gradient(180deg, rgb(6, 11, 69) 0%, rgb(73, 7, 124) 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: rgb(183, 180, 238);
}
.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(227, 226, 250);
}

.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(156, 150, 229);
  line-height: 1.4;
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 1919px) {
}

@media (max-width: 1024px) {
  .hero__wrapper {
    min-height: 480px;
  }
  .hero__content {
    min-height: 440px;
  }
  .hero__title h1 {
    font-size: 40px;
  }
  .hero__promo {
    padding: 35px 40px;
  }
  .hero__promo__title {
    font-size: 42px;
  }
  .hero__promo__subtitle {
    font-size: 20px;
  }
  .hero__promo__btn {
    padding: 20px 55px;
    font-size: 24px;
  }
}
@media (max-width: 1279px) {
  .burger {
    display: flex;
  }
  .header__icon {
    display: none;
  }
  .header__search {
    display: none;
  }
  .header__nav {
    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: none;
  }
  .mobile-burger {
    display: flex;
  }
  .mobile-nav-overlay {
    display: block;
  }
  main {
    padding-top: 2rem;
  }
}
@media (max-width: 767px) {
  .hero__wrapper {
    min-height: 650px !important;
  }
  .hero__wrapper .container {
    padding: 30px 16px 70px !important;
  }
  .hero__content {
    margin-top: 0 !important;
    min-height: 580px;
  }
  .hero__title {
    padding-top: 10px;
  }
  .hero__title h1 {
    font-size: 32px;
    line-height: 1.25;
  }
  .hero__promo {
    gap: 16px;
    padding: 30px 24px;
    border-radius: 24px;
    margin-bottom: 0;
  }
  .hero__promo__badge {
    font-size: 13px;
    padding: 6px 16px;
  }
  .hero__promo__title {
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: 1px;
  }
  .hero__promo__subtitle {
    font-size: 16px;
    letter-spacing: 0.5px;
  }
  .hero__promo__btn {
    padding: 18px 45px;
    font-size: 20px;
    letter-spacing: 1.5px;
    box-shadow: 
      0 10px 0 #3d6801,
      0 16px 28px rgba(0, 0, 0, 0.5),
      inset 0 2px 0 rgba(255, 255, 255, 0.6),
      inset 0 -2px 6px rgba(0, 0, 0, 0.2),
      0 0 25px rgba(158, 232, 5, 0.4);
  }
  .hero__promo__btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
      0 14px 0 #3d6801,
      0 20px 32px rgba(0, 0, 0, 0.6),
      inset 0 2px 0 rgba(255, 255, 255, 0.7),
      inset 0 -2px 6px rgba(0, 0, 0, 0.2),
      0 0 40px rgba(158, 232, 5, 0.6);
  }
  .hero__promo__btn:active {
    transform: translateY(3px) scale(0.98);
    box-shadow: 
      0 4px 0 #3d6801,
      0 10px 20px rgba(0, 0, 0, 0.5),
      inset 0 2px 0 rgba(255, 255, 255, 0.5),
      inset 0 -2px 6px rgba(0, 0, 0, 0.3),
      0 0 15px rgba(158, 232, 5, 0.3);
  }
  .welcome-bonus-img {
    max-width: 450px !important;
  }
  .login-img {
    max-width: 450px !important;
  }
  .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: 1fr;
    gap: 0;
    padding: 0 16px;
    max-width: 100%;
    overflow-x: hidden;
  }
  .footer__column {
    display: contents;
  }
  .footer__menu__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
  }
  .footer__menu__item:nth-child(2) {
    margin-top: 0;
  }
  .footer__menu__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    position: relative;
  }
  .footer__menu__title::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: rgb(183, 180, 238);
    transition: transform 0.3s ease;
  }
  .footer__menu__item.active .footer__menu__title::after {
    content: '−';
  }
  .footer__menu__item ul {
    display: none;
    padding-bottom: 16px;
  }
  .footer__menu__item.active ul {
    display: flex;
  }
  .footer__top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__top a {
    width: 100%;
  }
  .footer__pay {
    flex-wrap: wrap;
  }
  .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;
  }
}/*# sourceMappingURL=styles.css.map */