.main-content img {
  width: 100%;
  display: block;
  border-radius: var(--primary-border-radius);
  background-color: var(--secondary-color);
  max-width: 100%;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 0 16px;
}

.gallery img {
  width: 100%;
  height: auto;
  margin: 0;
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.content-button {
  margin: 16px auto;
}

.table-wrap {
  overflow-x: auto;
  width: 100%;
  border-radius: var(--primary-border-radius);
  border: 1px solid white;
  color: black;
  background-color: white;
  margin: 0 -24px 16px;
  width: calc(100% + 48px);
}

.content-games {
  position: relative;
  text-align: center;
  font-weight: 800;
  color: white;
  margin: 0 -24px 16px;
  width: calc(100% + 48px);
  padding: 16px 24px;
}

.content-games b {
  margin-top: 8px;
  margin-bottom: 16px;
  display: block;
  text-align: center;
  font-size: 14px;
}

.content-games img {
  margin-bottom: 0;
}

tr:nth-child(even) {
  background-color: rgb(29 55 136);
  color: white;
}

@media (min-width: 1200px) {
  .main-content img {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }

  .content-games img {
    margin-bottom: 0;
  }

  .table-wrap {
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }

  .content-games {
    width: 100%;
    margin: 0 0 16px;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery img {
    max-width: 100%;
  }
}

.faq-section {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 0;
}

.faq-title {
  font-size: 40px;
  line-height: 1;
  margin: 0;
}

.faq-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.faq-list {
  align-items: flex-start;
}

.accordion svg {
  font-size: 20px;
  flex: 0 0 20px;
  transform: rotateZ(90deg);
  color: white;
}

.accordion_active svg {
  transform: rotateZ(180deg);
}

.accordion {
  position: relative;
  border-radius: var(--primary-border-radius);
  display: flex;
  flex-direction: column;
  transition-property: background-color, box-shadow;
  transition-duration: 200ms;
  user-select: none;
  z-index: 10;
  margin-bottom: 16px;
  background-color: #1e3eb2;
  box-shadow: 2px 2px 0px 0px rgb(7, 31, 62);
  border: 1px solid white;
  color: white;
}

.accordion h3 {
  font-weight: 500;
  min-height: 40px;
  font-size: 18px;
  cursor: pointer;
  padding: 8px 24px;
  line-height: 1.3;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.accordion .accordion-body {
  padding: 0 24px;
  max-height: 0px;
  overflow: hidden;
  margin: 0;
}

.accordion_active .accordion-body {
  padding-bottom: 12px;
  padding-top: 12px;
}

.accordion:last-of-type {
  margin-bottom: 24px;
}

.accordion-content {
  padding: 16px 24px;
  margin: 0;
}

.accordion-divider {
  height: 2px;
  background-color: rgb(219, 219, 219);
}

.accordion_active .accordion-body {
  max-height: 1000px;
}

.footer {
  position: relative;
  padding: 32px 0;
  width: 100%;
  color: white;
  background: #1e3eb2;
}

/* .footer-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
} */

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.footer-link {
  flex: 1;
  text-align: center;
  padding: 12px;
  text-decoration: none;
}

.footer-main {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}

.footer-link-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* .footer-link-wrapper a {
  width: 100%;
  background-color: var(--secondary-color);
  border-radius: var(--primary-border-radius);
  height: 100%;
  padding: 8px 12px;
  overflow: hidden;
  box-shadow: 2px 2px 0px 0px rgba(189, 149, 250, 1);
  border: 1px solid white;
  color: black;
  background-color: rgba(242, 236, 255, 1);
} */


.footer-link-wrapper * {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-link-wrapper img {
  max-width: 100px;
}

.footer-copyright {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 1200px) {
  .footer-copyright {
    text-align: center;
    max-width: 50%;
  }

  .footer-link-wrapper {
    margin-bottom: 0;
  }
  .footer-nav{
    flex-direction: row;
  }
}

.adult {
  border-radius: 50%;
  flex: 0 0 38px;
  aspect-ratio: 1 / 1;
  width: 38px;
  border: 2px solid var(--secondary-contrast-color);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-text {
  opacity: 0.7;
  gap: 6px;
  font-size: 14px;
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 1200px) {
  .footer-text {
    text-align: center;
  }
}

.header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--secondary-contrast-color);
  background: url("/assets/images/dc70d6acdc.webp") rgba(43 83 222);
  background-size: 100px 100px, auto;
  display: flex;
  align-items: center;
}

/* .header::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  inset: 0;
  display: block;
  background: radial-gradient(
    88.18% 100% at 50% 0%,
    #7c47d1 0%,
    #081064 60%,
    #081064 100%
  );
  border-bottom: 1px solid var(--tint-neutral-850, rgba(50, 44, 142, 1));
} */

.header-content {
  position: relative;
  z-index: 1;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 40px;
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 105px !important;
}

.header-logo-image {
  object-fit: contain;
  object-position: center;
}

.header-nav {
  flex: 1 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav > * {
  flex: 1 1;
  margin-top: 8px;
}

.header-nav-link {
  cursor: pointer;
  text-decoration: none;
  font-size: 14px!important;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(243, 242, 253, 1);
  padding: 8px 12px;
}

.header-nav-link_active {
  border: 1px solid white;
  color: black;
  background-color: rgb(255, 255, 255);
  border-radius: var(--primary-border-radius);
}

.header-nav-link:hover {
  opacity: 0.8;
}

.header-button {
  margin-left: auto;
}

.mobile-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 38px;
  height: 38px;
  background-color: transparent;
  border: none;
  aspect-ratio: 1 / 1;
  margin: auto 0;
  margin-left: auto;
  color: #fff;
  position: relative;
}
/* 
.mobile-menu-button::before {
  content: "";
  display: block;
  position: absolute;
  border-radius: var(--primary-border-radius);
  inset: -1px;
  display: block;
  background: linear-gradient(180deg, #734ed4 0%, #a873f8 97.9%);
  z-index: -1;
  box-shadow: 0px 2px 0px 0px rgba(242, 236, 255, 0.1) inset,
    0px 8px 8px 0px rgba(55, 48, 157, 0.35), 0 4px 0 0 rgb(47, 42, 132);
}

.mobile-menu-button::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: var(--primary-border-radius);
  inset: 0px;
  display: block;
  background: radial-gradient(
    182.55% 100% at 50% 0%,
    #c5a1fa 0%,
    #8f60e2 33.17%,
    #6440bd 37.98%,
    #302987 100%
  );
  z-index: 0;
}

.mobile-menu-button img {
  position: relative;
  z-index: 1;
} */

.mobile-nav {
  z-index: -10;
  position: absolute;
  top: 100%;
  left: 0;
  gap: 16px;
  right: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #2b53de;
  transition-property: transform, opacity;
  transition-duration: 300ms;
}

.mobile-nav.hidden {
  pointer-events: none;
  transform: translateY(-100%);
  opacity: 0;
}

@media (min-width: 1200px) {
  .header-nav > * {
    flex: 0 0 max-content;
    margin-top: 0;
  }

  .header {
    height: 63px;
    overflow: hidden;
  }

  .header-logo {
    height: 63px;
  }
}

.partners-wrapper {
  position: relative;
}

.partners {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 0;
  gap: 16px;
}

/* .partner {
  padding: 8px 16px;
  flex: 1 1 130px;
  background-color: var(--secondary-color);
  border-radius: var(--primary-border-radius);
  height: 65px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 2px 0px 0px rgba(189, 149, 250, 1);
  border: 1px solid white;
  color: black;
  background-color: rgba(242, 236, 255, 1);
} */

.partner {
  flex: 1 1 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  height: 65px;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.partner img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 1200px) {
  .partner {
    flex: 0 0 130px;
  }
}

.anim-letters > * {
  transition-property: text-shadow, opacity;
  transition-duration: 200ms;
  position: relative;
}

.anim-letter {
  opacity: 0.6;
  text-shadow: white 1px 0 10px;
}

.button {
  position: relative;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid black;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  background-image: radial-gradient( 57.41% 52.5% at 50% 100%, rgb(153 224 255 / .35) 0%, rgb(153 224 255 / .35) 31.84%, rgb(153 224 255 / 0) 100% ), linear-gradient( rgb(83 151 246), rgb(69 140 230) 57.84%, rgb(50 133 234) );
  border-radius: 10px;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 0 0 rgb(255 255 255 / .3) inset, 0 3px 0 0 rgb(3 73 164);
  text-decoration: none;
  filter: drop-shadow( 0 2px 0 rgb(0 0 0 / .15) );
  text-shadow: 0 calc(2px + 1px) 1px rgb(28 33 39), 0 calc(2px + 1px) 0 rgb(0 0 0 / .15);
  -webkit-text-stroke: .14em rgb(28 33 39);
  paint-order: stroke fill;
}

/* .button::before {
  content: "";
  display: block;
  position: absolute;
  border-radius: var(--primary-border-radius);
  inset: -1px;
  display: block;
  background: linear-gradient(180deg, #734ed4 0%, #a873f8 97.9%);
  z-index: -1;
  box-shadow: 0px 2px 0px 0px rgba(242, 236, 255, 0.1) inset,
    0px 8px 8px 0px rgba(55, 48, 157, 0.35), 0 4px 0 0 rgb(47, 42, 132);
}

.button::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: var(--primary-border-radius);
  inset: 0px;
  display: block;
  background: radial-gradient(
    182.55% 100% at 50% 0%,
    #c5a1fa 0%,
    #8f60e2 33.17%,
    #6440bd 37.98%,
    #302987 100%
  );
  z-index: 0;
} 

.button > span {
  position: relative;
  z-index: 10;
} */

.hero-button {
  /*border: 2px solid #703719;*/
  min-width: 200px;
  min-height: 60px;
  font-size: 22px;
  padding: 0 32px;
}

h1,
h2 {
  font-weight: 800;
  color: white;
  word-break: break-all;
}

.button:hover {
  filter: brightness(110%);
}

.button-secondary {
}


/* .button-secondary::before {
  content: "";
  display: block;
  position: absolute;
  border-radius: var(--primary-border-radius);
  inset: -1px;
  display: block;
  background: linear-gradient(180deg, #faffeb 0%, #87bd01 97.9%);
  z-index: -1;
  box-shadow: 0px 8px 8px 0px rgba(43, 52, 83, 0.35),
    0px 2px 0px 0px rgba(250, 255, 235, 0.3) inset, 0 4px 0 0 rgb(65, 85, 36);
}

.button-secondary::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: var(--primary-border-radius);
  inset: 0px;
  display: block;
  background: radial-gradient(
    182.55% 100% at 50% 0%,
    #f6ffde 0%,
    #aeef01 33.17%,
    #9bd601 37.98%,
    #6a9801 100%
  );

  z-index: 0;
} */

/*.button::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    #a3d000 24%,
    #fff 48% 50%,
    #fff 52%,
    #a3d000 82%
  );
  border-radius: 8px;
}

.button::after {
  z-index: -1;
  position: absolute;
  content: "";
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  border-radius: 5px;
  background-color: #111111;
}*/

/*.button-secondary::after {
  z-index: -1;
  position: absolute;
  content: "";
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  background-color: #ffffff;
  border-radius: 5px;
}*/

.button-big {
  min-height: 62px;
  min-width: 200px;
  border-radius: 18px;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 3px 0 0 rgb(172 255 130 / .7) inset, 0 5px 0 0 rgb(20 122 2);
  background-image: linear-gradient( 178deg, rgb(93 255 89 / .2) 6.87%, rgb(93 255 89 / 0) 120.68% ), radial-gradient( 171.59% 82.06% at 51.32% 18.75%, rgb(82 241 64) .44%, rgb(102 248 87) 44.3%, rgb(65 227 49) 46.51%, rgb(58 202 9) 100% );
}
/* 
.button-big::before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 555px;
  inset: -1px;
  display: block;
  background: linear-gradient(180deg, #faffeb 0%, #87bd01 97.9%);
  z-index: -1;
  box-shadow: 0px 8px 8px 0px rgba(43, 52, 83, 0.35),
    0px 2px 0px 0px rgba(250, 255, 235, 0.3) inset, 0 4px 0 0 rgb(65, 85, 36);
}

.button-big::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 555px;
  inset: 0px;
  display: block;
  background: radial-gradient(
    182.55% 100% at 50% 0%,
    #f6ffde 0%,
    #aeef01 33.17%,
    #9bd601 37.98%,
    #6a9801 100%
  );
  z-index: 0;
}

.button-big > span {
  position: static;
}

.button-big > span::before {
  border-radius: 555px;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  display: block;
  background-image: url(/assets/images/444b7cedb2.webp);
} */

.floating-button {
  position: sticky;
  bottom: 24px;
  z-index: 10;
  margin: 24px auto;
  transform: translateY(200%);
  transition-property: transform;
  transition-duration: 400ms;
}

.floating-button.active {
  transform: translateY(0%);
}

/* @keyframes floating-button-animation {
  0% {
    transform: translateX(-50%) rotateZ(-50deg);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: translateX(50%) rotateZ(-50deg);
    opacity: 0;
  }
  100% {
    transform: translateX(50%) rotateZ(-50deg);
    opacity: 0;
  }
}

.floating-button-indicator {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: none;
  background: linear-gradient(
    90deg,
    #ffffff60 0%,
    #ffffff80 50%,
    #ffffff60 100%
  );
  animation: floating-button-animation 800ms ease-in-out infinite;
} */

.section {
  display: flex;
  align-items: flex-start;
  padding: var(--global-gap) 0;
}

.section h3 {
  font-size: 20px;
  line-height: 1.1;
  padding-top: 16px;
}

.section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  line-height: 1;
}

ol,
ul {
  padding-left: 20px;
  line-height: 1.4;
}

p {
  line-height: 1.4;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
  font-weight: 500;
}

.section p,
.section ul,
.section ol {
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 32px;
  padding-bottom: 0;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero img {
  display: block;
  color: black;
  background-color: rgba(242, 236, 255, 1);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 24px 0;
}

.hero-content {
  padding: 24px 48px;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.hero-image-section {
  position: relative;
}

.hero-offer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, rgba(55, 48, 157, 0.95) 0%, rgba(88, 79, 203, 0.95) 100%);
  border: 2px solid rgba(142, 13, 240, 0.8);
  border-radius: 12px;
  padding: 12px 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-offer .button {
  margin-top: 4px;
}

.hero-offer-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-offer-value {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-offer {
    bottom: 30px;
    left: 30px;
    padding: 16px 28px;
  }

  .hero-offer-title {
    font-size: 16px;
  }

  .hero-offer-value {
    font-size: 22px;
  }
}

@media (min-width: 1200px) {
  .hero-offer {
    bottom: 40px;
    left: 40px;
    padding: 20px 32px;
  }

  .hero-offer-title {
    font-size: 18px;
  }

  .hero-offer-value {
    font-size: 26px;
  }
}

a {
  color: rgba(142, 13, 240, 1);
}

.subtitle {
  padding: 0;
  margin: 0 0 12px;
  font-weight: 800;
  font-size: 24px;
  line-height: 30px;
  color: white;
  filter: drop-shadow(0 2px 0 rgb(0 0 0 / .15));
    text-shadow: 0 calc(2px + 1px) 1px rgb(28 33 39), 0 calc(2px + 1px) 0 rgb(0 0 0 / .15);
    -webkit-text-stroke: .14em rgb(28 33 39);
    paint-order: stroke fill;
}

.subtitle b {
  text-shadow: none;
  border: 1px solid rgba(88, 79, 203, 1);
  background-color: rgba(55, 48, 157, 1);
  border-radius: 555px;
  line-height: 18px;
  font-size: 14px;
  font-weight: 600;
  padding: 0 12px;
  box-shadow: 0 2px 0 0 rgba(55, 48, 157, 1);
}

@media (min-width: 1200px) {
  .subtitle {
    font-size: 36px;
    line-height: 50px;
  }

  .subtitle b {
    line-height: 28px;
    font-size: 20px;
  }

  .hero-content {
    max-width: 50%;
    top: 0;
    bottom: 0;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .button-big {
    min-height: 78px;
    min-width: 250px;
    border-radius: 555px;
    font-size: 28px;
    font-weight: 900;
  }

  .hero {
    margin-top: 16px;
  }

  .hero img {
    border-radius: var(--primary-border-radius);
  }
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

:root {
  --global-gap: 16px;

  --primary-color: rgb(7, 31, 62);
  --primary-contrast-color: white;

  --secondary-color: rgba(220, 218, 249, 1);
  --secondary-contrast-color: rgba(74, 65, 198, 1);

  --primary-border-radius: 12px;
}

hr {
  display: none;
}

html,
body {
  margin: 0;
  padding: 0;
  min-width: 375px;
  max-width: 100vw;
  min-height: 100vh;
  font-size: 16px;
  font-family: Figtree, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  background: url("/assets/images/100703b194.webp") rgb(29 55 136) 0 0 / 161px 94px;
  color: var(--primary-contrast-color);
}

main {
  flex: 1 1;
  min-width: 375px;
  max-width: 100vw;
}

picture {
  display: block;
}

@media (min-width: 1200px) {
  :root {
    --global-gap: 32px;
  }

  main {
    padding: 0 0 var(--global-gap);
  }
}

picture {
  display: block;
}

hr {
  display: none;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1;
  min-width: 375px;
  max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
  line-height: 1;
}

svg {
  width: 1em;
  height: 1em;
}

ol,
ul {
  padding-left: 20px;
  line-height: 1.4;
}

h2,
h3,
h4,
h5,
h6 {
  padding-top: 24px;
  margin: 0 0 16px;
}

ol,
p,
ul {
  margin: 0 0 16px;
  line-height: 1.4;
}

table {
  table-layout: fixed;
  overflow-wrap: break-word;
  border-spacing: 0;
}

td,
th {
  padding: 6px 24px;
}

p {
  line-height: 1.4;
}

h1 {
  filter: drop-shadow( 0 2px 0 rgb(0 0 0 / .15) );
  text-shadow: 0 calc(2px + 1px) 1px rgb(28 33 39), 0 calc(2px + 1px) 0 rgb(0 0 0 / .15);
  -webkit-text-stroke: .14em rgb(28 33 39);
  paint-order: stroke fill;
}

h2 {
  font-size: 24px;
  filter: drop-shadow( 0 2px 0 rgb(0 0 0 / .15) );
  text-shadow: 0 calc(2px + 1px) 1px rgb(28 33 39), 0 calc(2px + 1px) 0 rgb(0 0 0 / .15);
  -webkit-text-stroke: .14em rgb(28 33 39);
  paint-order: stroke fill;
}

h3 {
  font-size: 20px;
  font-weight: 500;
}

img {
  max-width: 100%;
}

@font-face {
  font-family: Figtree;
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url(/fonts/_Xmu-HUzqDCFdgfMm4GNAa5o7Cqcs8-2.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Figtree;
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url(/fonts/_Xmu-HUzqDCFdgfMm4GND65o7Cqcsw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Figtree;
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(/fonts/_Xms-HUzqDCFdgfMm4q9DaRvziissg.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Figtree;
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(/fonts/_Xms-HUzqDCFdgfMm4S9DaRvzig.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

.container {
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #1e3eb2 0%, #2b53de 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.4s ease-in-out;
}

.cookie-banner-hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cookie-banner-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: white;
}

.cookie-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.cookie-banner-text strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

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

.cookie-btn-accept {
  background: linear-gradient(180deg, #52f140 0%, #3aca09 100%);
  color: white;
  box-shadow: 0 3px 0 0 #147a02;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.cookie-btn-accept:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.cookie-btn-necessary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-btn-necessary:hover {
  background: rgba(255,255,255,0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: white;
  border: none;
  text-decoration: underline;
  padding: 12px 16px;
}

.cookie-btn-settings:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .cookie-banner-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .cookie-banner-text {
    flex: 1;
  }
  
  .cookie-banner-buttons {
    flex-shrink: 0;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .container {
    max-width: 1200px;
  }

  .container-xl {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .d-xl-none {
    display: none !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }

  .offset-xl-2 {
    margin-left: 16.666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.333333%;
  }

  .offset-xl-5 {
    margin-left: 41.666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.333333%;
  }

  .offset-xl-8 {
    margin-left: 66.666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.333333%;
  }

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

