@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/subset-CormorantGaramond-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/subset-CormorantGaramond-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/subset-Manrope-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/subset-Manrope-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/subset-Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/subset-Manrope-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/subset-Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: #10141f;
  background: radial-gradient(circle at 12% 8%, rgba(242, 213, 141, 0.34), transparent 26rem), radial-gradient(circle at 92% 14%, rgba(47, 140, 116, 0.16), transparent 24rem), linear-gradient(135deg, #fff8ea 0%, #fffdf7 45%, #f8efe0 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 8;
  background: rgba(16, 20, 31, 0.54);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image: linear-gradient(90deg, rgba(16, 20, 31, 0.045) 1px, transparent 1px), linear-gradient(rgba(16, 20, 31, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 80%);
          mask-image: linear-gradient(to bottom, black, transparent 80%);
}
body.menu-open {
  overflow: hidden;
}
body.menu-open::before {
  opacity: 1;
  pointer-events: auto;
}

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

img {
  display: block;
  max-width: 100%;
}

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

.container,
.header__container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 12px 0;
  isolation: isolate;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 248, 234, 0.78);
  border-bottom: 1px solid rgba(16, 20, 31, 0.08);
  backdrop-filter: blur(20px);
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
}
.header__logo {
  position: relative;
  z-index: 22;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #10141f;
}
.header__logo::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid #d7a84f;
  border-radius: 50%;
  background: radial-gradient(circle, #b93f38 0 28%, transparent 31%);
  box-shadow: 0 0 0 5px rgba(215, 168, 79, 0.14);
}
.header__logo--accent {
  color: #b93f38;
}
.header__nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 21;
  display: flex;
  flex-direction: column;
  width: min(86vw, 390px);
  height: 100dvh;
  padding: 104px 24px 28px;
  background: linear-gradient(145deg, rgba(255, 252, 244, 0.98), rgba(247, 234, 211, 0.98)), radial-gradient(circle at 80% 8%, rgba(215, 168, 79, 0.32), transparent 12rem);
  border-left: 1px solid rgba(215, 168, 79, 0.3);
  box-shadow: -26px 0 70px rgba(16, 20, 31, 0.22);
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.header__nav::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 24px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: conic-gradient(from 110deg, #d7a84f, #b93f38, #2f8c74, #d7a84f);
  opacity: 0.12;
}
.header__nav.is-open {
  transform: translateX(0);
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}
.header__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  color: #252b3a;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.header__nav-link::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: #d7a84f;
  opacity: 0.45;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.header__nav-link:hover, .header__nav-link:focus-visible, .header__nav-link--active {
  color: #b93f38;
  background: rgba(215, 168, 79, 0.15);
}
.header__nav-link:hover::before, .header__nav-link:focus-visible::before, .header__nav-link--active::before {
  opacity: 1;
  transform: scale(1.55);
}
.header__nav-link:focus-visible {
  outline: 3px solid rgba(47, 140, 116, 0.28);
  outline-offset: 3px;
}
.header__burger {
  position: relative;
  z-index: 22;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #10141f;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(16, 20, 31, 0.2);
}
.header__burger::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(242, 213, 141, 0.42);
  border-radius: inherit;
}
.header__burger-line {
  position: absolute;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: #fff8ea;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.header__burger-line:nth-child(1) {
  transform: translateY(-7px);
}
.header__burger-line:nth-child(3) {
  transform: translateY(7px);
}
.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: rotate(45deg);
}
.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active .header__burger-line:nth-child(3) {
  transform: rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover::after {
  transform: translateX(120%);
}
.btn:focus-visible {
  outline: 3px solid rgba(47, 140, 116, 0.3);
  outline-offset: 4px;
}
.btn--primary {
  color: #fff8ea;
  background: linear-gradient(135deg, #b93f38, #7f262b 54%, #10141f);
  box-shadow: 0 18px 40px rgba(185, 63, 56, 0.28);
}
.btn--outline {
  color: #10141f;
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(16, 20, 31, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}
.btn--outline:hover {
  border-color: rgba(215, 168, 79, 0.7);
  background: rgba(242, 213, 141, 0.28);
}

.hero {
  position: relative;
  padding: 54px 0 64px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -90px;
  top: 30px;
  width: 230px;
  aspect-ratio: 1;
  border-radius: 38% 62% 45% 55%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.68), transparent 20%), conic-gradient(from 180deg, rgba(215, 168, 79, 0.62), rgba(185, 63, 56, 0.42), rgba(47, 140, 116, 0.38), rgba(215, 168, 79, 0.62));
  opacity: 0.48;
  filter: blur(0.2px);
}
.hero__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
.hero__content {
  position: relative;
  z-index: 1;
}
.hero__badge,
.hero .head__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(47, 140, 116, 0.1);
  border: 1px solid rgba(47, 140, 116, 0.18);
  color: #174d54;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero__badge::before,
.hero .head__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2f8c74;
  box-shadow: 0 0 0 5px rgba(47, 140, 116, 0.12);
}
.hero__title {
  display: grid;
  gap: 2px;
  margin: 20px 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  color: #10141f;
  font-size: clamp(48px, 9vw, 88px);
  line-height: 0.9;
  letter-spacing: 0;
}
.hero__title-line {
  display: block;
}
.hero__title-line:nth-child(2) {
  color: #b93f38;
  transform: translateX(14px);
}
.hero__title-line:nth-child(3) {
  color: #174d54;
}
.hero__text {
  max-width: 640px;
  margin: 0;
  color: rgba(16, 20, 31, 0.76);
  font-size: 16px;
  line-height: 1.75;
}
.hero__text--accent {
  color: #b93f38;
  font-weight: 800;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}
.hero__note {
  margin-top: 18px;
  color: rgba(16, 20, 31, 0.58);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}
.hero__reels {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(16, 20, 31, 0.96), rgba(24, 35, 47, 0.96)), radial-gradient(circle at 18% 12%, rgba(215, 168, 79, 0.5), transparent 12rem);
  color: #fff8ea;
  overflow: hidden;
  border: 1px solid rgba(215, 168, 79, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 18px 44px rgba(16, 20, 31, 0.1);
}
.hero__reels::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(242, 213, 141, 0.28);
  border-radius: 20px;
  pointer-events: none;
}
.hero__reels::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(215, 168, 79, 0.85) 0 12deg, rgba(185, 63, 56, 0.75) 12deg 24deg);
  opacity: 0.2;
}
.hero__reels-title {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  line-height: 1;
}
.hero__reels-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero__reels-cell {
  display: grid;
  place-items: center;
  min-height: 78px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)), radial-gradient(circle at 50% 0, rgba(215, 168, 79, 0.35), transparent 70%);
  border: 1px solid rgba(242, 213, 141, 0.28);
  font-size: 32px;
  box-shadow: inset 0 -18px 32px rgba(16, 20, 31, 0.28);
}
.hero__reels-cell:nth-child(2n) {
  transform: translateY(7px);
}

.head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.head__badge {
  margin-inline: auto;
}
.head__title {
  margin: 16px 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 8vw, 64px);
  line-height: 0.96;
  color: #10141f;
}
.head__text {
  margin: 0;
  color: rgba(16, 20, 31, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.game,
.features,
.about,
.faq {
  position: relative;
  padding: 64px 0;
}

.game::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16%;
  width: 42%;
  height: 52%;
  background: linear-gradient(90deg, rgba(47, 140, 116, 0.13), transparent);
  clip-path: polygon(0 0, 78% 18%, 58% 100%, 0 82%);
}
.game__iframe-wrapper {
  position: relative;
  z-index: 1;
  padding: 8px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(215, 168, 79, 0.65), rgba(185, 63, 56, 0.55), rgba(47, 140, 116, 0.45));
  box-shadow: 0 24px 70px rgba(16, 20, 31, 0.16);
}
.game__iframe-wrapper::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 34px;
  background: radial-gradient(circle at 50% 0, rgba(215, 168, 79, 0.42), transparent 62%);
  filter: blur(8px);
}
.game__iframe {
  display: block;
  width: 100%;
  height: min(68vw, 680px);
  min-height: 520px;
  border-radius: 18px;
  background: #10141f;
  border: 0;
}

.features {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)), radial-gradient(circle at 5% 50%, rgba(185, 63, 56, 0.08), transparent 22rem);
}
.features__grid {
  display: grid;
  gap: 14px;
}
.features__card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  min-height: 160px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 20, 31, 0.12);
  box-shadow: 0 18px 45px rgba(16, 20, 31, 0.08);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.features__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 168, 79, 0.2), transparent 42%);
  opacity: 0;
  transition: opacity 0.24s ease;
}
.features__card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 96px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.16);
}
.features__card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 168, 79, 0.5);
  box-shadow: 0 24px 60px rgba(16, 20, 31, 0.13);
}
.features__card:hover::before {
  opacity: 1;
}
.features__card-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, #10141f, #174d54);
  color: #fff8ea;
  font-size: 25px;
  box-shadow: 0 14px 28px rgba(16, 20, 31, 0.18);
}
.features__card-content {
  position: relative;
  z-index: 1;
}
.features__card-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
  color: #10141f;
}
.features__card-text {
  margin: 0;
  color: rgba(16, 20, 31, 0.67);
  font-size: 14px;
  line-height: 1.65;
}

.about {
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 70px;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(from 30deg, rgba(215, 168, 79, 0.18) 0 10deg, transparent 10deg 20deg);
}
.about__grid {
  display: grid;
  gap: 24px;
  align-items: start;
}
.about__content {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 252, 244, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 70px rgba(16, 20, 31, 0.16);
  backdrop-filter: blur(18px);
}
.about__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(185, 63, 56, 0.1);
  color: #b93f38;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.about__title {
  margin: 18px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 8vw, 66px);
  line-height: 0.98;
}
.about__title--accent {
  color: #b93f38;
}
.about__description {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}
.about__description-text {
  margin: 0;
  color: rgba(16, 20, 31, 0.72);
  font-size: 15px;
  line-height: 1.75;
}
.about__description-text--accent {
  color: #174d54;
  font-weight: 800;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.about__stat {
  position: relative;
  min-height: 132px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94)), radial-gradient(circle at 20% 20%, rgba(215, 168, 79, 0.3), transparent 9rem);
  color: #fff8ea;
  overflow: hidden;
}
.about__stat::before {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 82px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.24);
}
.about__stat-value {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
  color: #f2d58d;
}
.about__stat-label {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(255, 248, 234, 0.78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.faq__accordion {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-inline: auto;
}
.faq__accordion-item {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 20, 31, 0.12);
  box-shadow: 0 14px 38px rgba(16, 20, 31, 0.07);
  overflow: hidden;
}
.faq__accordion-item.is-active {
  border-color: rgba(215, 168, 79, 0.48);
}
.faq__accordion-item.is-active .faq__accordion-icon {
  color: #b93f38;
  transform: rotate(45deg);
}
.faq__accordion-item.is-active .faq__accordion-content {
  grid-template-rows: 1fr;
}
.faq__accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq__accordion-question {
  margin: 0;
  color: #10141f;
  font-size: 15px;
  line-height: 1.35;
}
.faq__accordion-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.15);
  color: #174d54;
  font-size: 25px;
  line-height: 1;
  transition: transform 0.22s ease, color 0.22s ease;
}
.faq__accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq__accordion-answer {
  min-height: 0;
  margin: 0;
  padding: 0 18px;
  overflow: hidden;
  color: rgba(16, 20, 31, 0.7);
  font-size: 14px;
  line-height: 1.7;
}
.faq__accordion-item.is-active .faq__accordion-answer {
  padding-bottom: 18px;
}

.footer {
  position: relative;
  padding: 56px 0 28px;
  color: rgba(255, 248, 234, 0.78);
  background: radial-gradient(circle at 12% 0, rgba(215, 168, 79, 0.22), transparent 22rem), linear-gradient(145deg, #0f131c, #17252a 56%, #11151f);
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(90deg, #d7a84f 1px, transparent 1px), linear-gradient(#d7a84f 1px, transparent 1px);
  background-size: 54px 54px;
}
.footer .container {
  position: relative;
  z-index: 1;
}
.footer__grid {
  display: grid;
  gap: 28px;
}
.footer__logo {
  display: inline-flex;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff8ea;
}
.footer__logo--accent {
  color: #f2d58d;
}
.footer__text {
  max-width: 500px;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}
.footer__title, .footer__responsible-title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
}
.footer__nav-list, .footer__responsible-list, .footer__badges {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer__nav-list {
  display: grid;
  gap: 10px;
}
.footer__nav-link {
  color: rgba(255, 248, 234, 0.72);
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer__nav-link:hover, .footer__nav-link:focus-visible {
  color: #f2d58d;
  padding-left: 6px;
}
.footer__nav-link:focus-visible {
  outline: 2px solid rgba(215, 168, 79, 0.5);
  outline-offset: 4px;
}
.footer__responsible, .footer__notice, .footer__bottom {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 248, 234, 0.14);
}
.footer__responsible-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.footer__responsible-link {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}
.footer__responsible-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}
.footer__responsible-img {
  max-height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__notice {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}
.footer__notice-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.18);
}
.footer__notice-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
}
.footer__notice-text--accent {
  color: #f2d58d;
  font-weight: 800;
}
.footer__bottom {
  display: grid;
  gap: 16px;
}
.footer__copyright {
  margin: 0;
  font-size: 13px;
}
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 248, 234, 0.82);
  font-size: 12px;
  font-weight: 700;
}

@media (min-width: 360px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .btn {
    min-width: 150px;
  }
}
@media (min-width: 768px) {
  .container,
  .header__container {
    width: min(100% - 56px, 1180px);
  }
  .hero {
    padding: 78px 0 84px;
  }
  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 36px;
  }
  .hero__reels {
    padding: 22px;
  }
  .hero__reels-cell {
    min-height: 92px;
    font-size: 38px;
  }
  .features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  }
  .footer__grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }
  .footer__responsible-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .footer__bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .header {
    padding: 16px 0;
  }
  .header__wrapper {
    min-height: 64px;
  }
  .header__nav {
    position: static;
    z-index: auto;
    flex-direction: row;
    align-items: center;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    transition: none;
  }
  .header__nav::before {
    display: none;
  }
  .header__nav-list {
    flex-direction: row;
    align-items: center;
    gap: 4px;
    margin: 0 18px 0 0;
  }
  .header__nav-link {
    min-height: 42px;
    padding: 0 13px;
    font-size: 13px;
  }
  .header__nav-link::before {
    display: none;
  }
  .header__burger {
    display: none;
  }
  body.menu-open {
    overflow: auto;
  }
  body.menu-open::before {
    opacity: 0;
    pointer-events: none;
  }
  .hero {
    padding: 96px 0 104px;
  }
  .hero__text {
    font-size: 17px;
  }
  .game,
  .features,
  .about,
  .faq {
    padding: 88px 0;
  }
  .features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .about__content {
    padding: 34px;
  }
  .about__stats {
    gap: 16px;
  }
  .about__stat {
    min-height: 156px;
    padding: 22px;
  }
  .faq__accordion-trigger {
    padding: 22px 24px;
  }
  .faq__accordion-answer {
    padding-inline: 24px;
  }
  .faq__accordion-item.is-active .faq__accordion-answer {
    padding-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  .container,
  .header__container {
    width: min(100% - 72px, 1280px);
  }
  .hero {
    padding: 118px 0 124px;
  }
  .hero__grid {
    gap: 64px;
  }
  .hero__title {
    font-size: 96px;
  }
  .hero__reels-cell {
    min-height: 112px;
    font-size: 44px;
  }
  .head__title {
    font-size: 70px;
  }
  .features__card {
    padding: 22px;
  }
  .footer {
    padding-top: 72px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.page-hero {
  position: relative;
  padding: 58px 0 62px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  left: -72px;
  top: 18px;
  width: 210px;
  aspect-ratio: 1;
  border-radius: 34% 66% 58% 42%;
  background: conic-gradient(from 140deg, rgba(215, 168, 79, 0.42), rgba(185, 63, 56, 0.26), rgba(47, 140, 116, 0.28), rgba(215, 168, 79, 0.42));
  opacity: 0.42;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: 20px;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid rgba(215, 168, 79, 0.34);
  border-radius: 50%;
  box-shadow: inset 0 0 0 18px rgba(215, 168, 79, 0.08);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}
.page-hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(185, 63, 56, 0.1);
  border: 1px solid rgba(185, 63, 56, 0.16);
  color: #b93f38;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.page-hero__title {
  margin: 20px 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 10vw, 82px);
  line-height: 0.94;
  color: #10141f;
}
.page-hero__title--accent {
  color: #174d54;
}
.page-hero__text {
  max-width: 680px;
  margin: 0;
  color: rgba(16, 20, 31, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.page-mission {
  position: relative;
  padding: 64px 0;
}
.page-mission::before {
  content: "";
  position: absolute;
  inset: auto 0 8% auto;
  width: 46%;
  height: 54%;
  background: linear-gradient(90deg, transparent, rgba(215, 168, 79, 0.13));
  clip-path: polygon(18% 0, 100% 14%, 100% 100%, 0 78%);
}
.page-mission__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  align-items: start;
}
.page-mission__content {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 252, 244, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 70px rgba(16, 20, 31, 0.16);
  backdrop-filter: blur(18px);
}
.page-mission__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(47, 140, 116, 0.1);
  color: #174d54;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.page-mission__title {
  margin: 18px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 8vw, 66px);
  line-height: 0.98;
  color: #10141f;
}
.page-mission__title--accent {
  color: #b93f38;
}
.page-mission__description {
  display: grid;
  gap: 14px;
}
.page-mission__description-text {
  margin: 0;
  color: rgba(16, 20, 31, 0.72);
  font-size: 15px;
  line-height: 1.75;
}
.page-mission__description-text--accent {
  color: #174d54;
  font-weight: 800;
}
.page-mission__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.page-mission__stat {
  position: relative;
  min-height: 136px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94));
  color: #fff8ea;
  overflow: hidden;
}
.page-mission__stat::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 90px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.22);
}
.page-mission__stat::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 14px;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: #d7a84f;
  opacity: 0.8;
}
.page-mission__stat-value {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
  color: #f2d58d;
}
.page-mission__stat-label {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(255, 248, 234, 0.78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.page-values {
  position: relative;
  padding: 64px 0 76px;
  overflow: hidden;
}
.page-values::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 30px;
  width: min(520px, 80vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 168, 79, 0.7), transparent);
  transform: translateX(-50%);
}
.page-values__title {
  max-width: 760px;
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 8vw, 68px);
  line-height: 0.96;
  color: #10141f;
}
.page-values__title--accent {
  color: #b93f38;
}
.page-values__grid {
  display: grid;
  gap: 14px;
}
.page-values__card {
  position: relative;
  min-height: 245px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 20, 31, 0.12);
  box-shadow: 0 18px 46px rgba(16, 20, 31, 0.08);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.page-values__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 168, 79, 0.2), transparent 45%);
  opacity: 0;
  transition: opacity 0.24s ease;
}
.page-values__card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(215, 168, 79, 0.16) 0 12deg, transparent 12deg 24deg);
}
.page-values__card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 168, 79, 0.52);
  box-shadow: 0 26px 60px rgba(16, 20, 31, 0.13);
}
.page-values__card:hover::before {
  opacity: 1;
}
.page-values__card--2 {
  background: linear-gradient(150deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94));
  color: #fff8ea;
}
.page-values__card--2 .page-values__card-title {
  color: #fff8ea;
}
.page-values__card--2 .page-values__card-text {
  color: rgba(255, 248, 234, 0.76);
}
.page-values__card-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, #b93f38, #10141f);
  color: #fff8ea;
  font-size: 27px;
  box-shadow: 0 14px 28px rgba(16, 20, 31, 0.18);
}
.page-values__card-title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #10141f;
  font-size: 21px;
  line-height: 1.2;
}
.page-values__card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(16, 20, 31, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

@media (min-width: 360px) {
  .page-mission__stat {
    min-height: 148px;
  }
}
@media (min-width: 768px) {
  .page-hero {
    padding: 82px 0 86px;
  }
  .page-mission__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  }
  .page-values__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-values__card--2 {
    transform: translateY(28px);
  }
  .page-values__card--2:hover {
    transform: translateY(20px);
  }
}
@media (min-width: 1024px) {
  .page-hero {
    padding: 104px 0 108px;
  }
  .page-mission,
  .page-values {
    padding: 88px 0;
  }
  .page-mission__content {
    padding: 34px;
  }
  .page-mission__stats {
    gap: 16px;
  }
  .page-mission__stat {
    min-height: 166px;
    padding: 22px;
  }
  .page-values__title {
    margin-bottom: 38px;
  }
  .page-values__card {
    min-height: 280px;
    padding: 26px;
  }
}
@media (min-width: 1440px) {
  .page-hero {
    padding: 124px 0 126px;
  }
  .page-hero__title {
    font-size: 92px;
  }
  .page-values__card {
    min-height: 300px;
  }
}
.page-contact {
  position: relative;
  padding: 64px 0 76px;
}
.page-contact::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  width: 48%;
  height: 58%;
  background: linear-gradient(90deg, transparent, rgba(47, 140, 116, 0.12));
  clip-path: polygon(24% 0, 100% 12%, 100% 100%, 0 78%);
}
.page-contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  align-items: start;
}
.page-contact__form-wrapper {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 252, 244, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 70px rgba(16, 20, 31, 0.16);
  backdrop-filter: blur(18px);
}
.page-contact__form-title {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 8vw, 58px);
  line-height: 0.96;
  color: #10141f;
}
.page-contact__form {
  display: grid;
  gap: 16px;
}
.page-contact__form-field {
  display: grid;
  gap: 7px;
}
.page-contact__form-label {
  color: #10141f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.page-contact__form-input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(16, 20, 31, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  color: #10141f;
  font-size: 15px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.page-contact__form-input::-moz-placeholder {
  color: rgba(16, 20, 31, 0.38);
}
.page-contact__form-input::placeholder {
  color: rgba(16, 20, 31, 0.38);
}
.page-contact__form-input:focus {
  border-color: rgba(215, 168, 79, 0.9);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(215, 168, 79, 0.16);
}
.page-contact__form-input.is-invalid {
  border-color: rgba(185, 63, 56, 0.78);
  box-shadow: 0 0 0 4px rgba(185, 63, 56, 0.12);
}
.page-contact__form-input--textarea {
  min-height: 148px;
  padding-top: 14px;
  resize: vertical;
}
.page-contact__form-error {
  min-height: 16px;
  color: #b93f38;
  font-size: 12px;
  font-weight: 700;
}
.page-contact__submit {
  width: 100%;
  margin-top: 4px;
}
.page-contact__submit.is-loading {
  pointer-events: none;
  opacity: 0.78;
}
.page-contact__info {
  display: grid;
  gap: 14px;
}
.page-contact__info-item {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 20, 31, 0.12);
  box-shadow: 0 18px 45px rgba(16, 20, 31, 0.08);
  overflow: hidden;
}
.page-contact__info-item::before {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 104px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.15);
}
.page-contact__info-item:nth-child(4) {
  background: linear-gradient(150deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94));
  color: #fff8ea;
}
.page-contact__info-item:nth-child(4) .page-contact__info-title {
  color: #fff8ea;
}
.page-contact__info-item:nth-child(4) .page-contact__info-text {
  color: rgba(255, 248, 234, 0.76);
}
.page-contact__info-item:nth-child(4) .page-contact__info-icon {
  background: linear-gradient(145deg, #d7a84f, #b93f38);
}
.page-contact__info-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, #10141f, #174d54);
  color: #fff8ea;
  font-size: 25px;
  box-shadow: 0 14px 28px rgba(16, 20, 31, 0.18);
}
.page-contact__info-title {
  position: relative;
  z-index: 1;
  margin: 0 0 6px;
  color: #10141f;
  font-size: 18px;
  line-height: 1.2;
}
.page-contact__info-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(16, 20, 31, 0.68);
  font-size: 14px;
  line-height: 1.65;
}
.page-contact__info-text strong {
  color: #f2d58d;
  font-weight: 800;
}

.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}
.contact-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.contact-popup.is-open .contact-popup__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.contact-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 31, 0.64);
  backdrop-filter: blur(10px);
}
.contact-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 30px 24px 26px;
  border-radius: 28px;
  background: radial-gradient(circle at 16% 0, rgba(215, 168, 79, 0.26), transparent 13rem), linear-gradient(145deg, #fffcf4, #f7ead3);
  border: 1px solid rgba(215, 168, 79, 0.36);
  box-shadow: 0 30px 90px rgba(16, 20, 31, 0.34);
  text-align: center;
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
  outline: 0;
}
.contact-popup__dialog::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(215, 168, 79, 0.28);
  border-radius: 20px;
  pointer-events: none;
}
.contact-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 20, 31, 0.08);
  color: #10141f;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-popup__close:hover {
  background: rgba(185, 63, 56, 0.14);
  transform: rotate(90deg);
}
.contact-popup__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2f8c74, #174d54);
  color: #fff8ea;
  font-size: 38px;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(47, 140, 116, 0.28);
}
.contact-popup__title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  line-height: 0.98;
  color: #10141f;
}
.contact-popup__text {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: rgba(16, 20, 31, 0.7);
  font-size: 15px;
  line-height: 1.7;
}
.contact-popup__button {
  position: relative;
  z-index: 1;
  min-width: 150px;
}

body.popup-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-contact__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  }
  .page-contact__form-wrapper {
    padding: 30px;
  }
}
@media (min-width: 1024px) {
  .page-contact {
    padding: 88px 0 96px;
  }
  .page-contact__form-wrapper {
    padding: 36px;
  }
  .page-contact__info {
    gap: 16px;
  }
  .page-contact__info-item {
    padding: 22px;
  }
}
@media (min-width: 1440px) {
  .page-contact__grid {
    gap: 36px;
  }
}
.privacy-policy {
  position: relative;
  padding: 64px 0 78px;
}
.privacy-policy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  width: 42%;
  height: 48%;
  background: linear-gradient(90deg, rgba(47, 140, 116, 0.12), transparent);
  clip-path: polygon(0 0, 82% 16%, 58% 100%, 0 78%);
}
.privacy-policy__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  align-items: start;
}
.privacy-policy__aside {
  position: relative;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94));
  color: #fff8ea;
  overflow: hidden;
}
.privacy-policy__aside::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.2);
}
.privacy-policy__aside-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 248, 234, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.privacy-policy__aside-date {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  color: #f2d58d;
}
.privacy-policy__nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}
.privacy-policy__nav-link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 248, 234, 0.78);
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.privacy-policy__nav-link:hover, .privacy-policy__nav-link:focus-visible {
  color: #f2d58d;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}
.privacy-policy__content {
  display: grid;
  gap: 16px;
}
.privacy-policy__intro {
  display: grid;
  gap: 14px;
}
.privacy-policy__intro-card, .privacy-policy__block {
  position: relative;
  border: 1px solid rgba(16, 20, 31, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 45px rgba(16, 20, 31, 0.08);
  overflow: hidden;
}
.privacy-policy__intro-card {
  min-height: 180px;
  padding: 20px;
  border-radius: 24px;
}
.privacy-policy__intro-card::before {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 108px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.16);
}
.privacy-policy__intro-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, #10141f, #174d54);
  color: #fff8ea;
  font-size: 25px;
  box-shadow: 0 14px 28px rgba(16, 20, 31, 0.18);
}
.privacy-policy__intro-title {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: #10141f;
  font-size: 19px;
  line-height: 1.2;
}
.privacy-policy__intro-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(16, 20, 31, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.privacy-policy__block {
  padding: 24px;
  border-radius: 26px;
}
.privacy-policy__block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 72px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #d7a84f, #b93f38);
}
.privacy-policy__block--contact {
  background: linear-gradient(150deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94));
  color: #fff8ea;
}
.privacy-policy__block--contact .privacy-policy__block-title {
  color: #fff8ea;
}
.privacy-policy__block--contact .privacy-policy__text {
  color: rgba(255, 248, 234, 0.76);
}
.privacy-policy__block--contact .privacy-policy__block-number {
  color: rgba(242, 213, 141, 0.7);
}
.privacy-policy__block-number {
  display: block;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  color: rgba(185, 63, 56, 0.42);
}
.privacy-policy__block-title {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 7vw, 48px);
  line-height: 0.98;
  color: #10141f;
}
.privacy-policy__text {
  margin: 0 0 14px;
  color: rgba(16, 20, 31, 0.72);
  font-size: 15px;
  line-height: 1.75;
}
.privacy-policy__text:last-child {
  margin-bottom: 0;
}
.privacy-policy__list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
}
.privacy-policy__list-item {
  position: relative;
  padding-left: 26px;
  color: rgba(16, 20, 31, 0.72);
  font-size: 14px;
  line-height: 1.65;
}
.privacy-policy__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7a84f;
  box-shadow: 0 0 0 5px rgba(215, 168, 79, 0.14);
}
.privacy-policy__table {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.privacy-policy__table-row {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(215, 168, 79, 0.1);
  border: 1px solid rgba(215, 168, 79, 0.2);
}
.privacy-policy__table-title {
  color: #10141f;
  font-size: 14px;
}
.privacy-policy__table-text {
  color: rgba(16, 20, 31, 0.68);
  font-size: 14px;
  line-height: 1.55;
}
.privacy-policy__email {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(215, 168, 79, 0.16);
  border: 1px solid rgba(215, 168, 79, 0.32);
  color: #f2d58d;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}
.privacy-policy__email:hover, .privacy-policy__email:focus-visible {
  background: rgba(215, 168, 79, 0.24);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .privacy-policy__layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
  }
  .privacy-policy__aside {
    position: sticky;
    top: 108px;
  }
  .privacy-policy__intro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .privacy-policy__list--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .privacy-policy__table-row {
    grid-template-columns: 180px 1fr;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .privacy-policy {
    padding: 88px 0 100px;
  }
  .privacy-policy__layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
  }
  .privacy-policy__block {
    padding: 32px;
  }
  .privacy-policy__intro-card {
    padding: 24px;
  }
}
@media (min-width: 1440px) {
  .privacy-policy__layout {
    grid-template-columns: 320px minmax(0, 1fr);
  }
  .privacy-policy__block {
    padding: 38px;
  }
}
.terms-page {
  position: relative;
  padding: 64px 0 78px;
}
.terms-page::before {
  content: "";
  position: absolute;
  right: 0;
  top: 9%;
  width: 44%;
  height: 52%;
  background: linear-gradient(90deg, transparent, rgba(215, 168, 79, 0.13));
  clip-path: polygon(20% 0, 100% 15%, 100% 100%, 0 78%);
}
.terms-page__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  align-items: start;
}
.terms-page__aside {
  position: relative;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94));
  color: #fff8ea;
  overflow: hidden;
}
.terms-page__aside::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.2);
}
.terms-page__aside::after {
  content: "";
  position: absolute;
  left: -38px;
  bottom: -38px;
  width: 116px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(242, 213, 141, 0.24);
  box-shadow: inset 0 0 0 18px rgba(242, 213, 141, 0.05);
}
.terms-page__aside-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 248, 234, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.terms-page__aside-date {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  color: #f2d58d;
}
.terms-page__nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}
.terms-page__nav-link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 248, 234, 0.78);
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.terms-page__nav-link:hover, .terms-page__nav-link:focus-visible {
  color: #f2d58d;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}
.terms-page__content {
  display: grid;
  gap: 16px;
}
.terms-page__notice {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(185, 63, 56, 0.12), rgba(215, 168, 79, 0.12));
  border: 1px solid rgba(215, 168, 79, 0.28);
  box-shadow: 0 18px 45px rgba(16, 20, 31, 0.08);
  overflow: hidden;
}
.terms-page__notice::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 124px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(215, 168, 79, 0.18) 0 12deg, transparent 12deg 24deg);
}
.terms-page__notice-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(145deg, #b93f38, #10141f);
  color: #fff8ea;
  font-size: 27px;
  box-shadow: 0 14px 28px rgba(16, 20, 31, 0.18);
}
.terms-page__notice-content {
  position: relative;
  z-index: 1;
}
.terms-page__notice-title {
  margin: 0 0 8px;
  color: #10141f;
  font-size: 19px;
  line-height: 1.2;
}
.terms-page__notice-text {
  margin: 0;
  color: rgba(16, 20, 31, 0.72);
  font-size: 14px;
  line-height: 1.7;
}
.terms-page__block {
  position: relative;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 20, 31, 0.12);
  box-shadow: 0 18px 45px rgba(16, 20, 31, 0.08);
  overflow: hidden;
}
.terms-page__block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 72px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #d7a84f, #b93f38);
}
.terms-page__block::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 118px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.08);
}
.terms-page__block--contact {
  background: linear-gradient(150deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94));
  color: #fff8ea;
}
.terms-page__block--contact .terms-page__block-title {
  color: #fff8ea;
}
.terms-page__block--contact .terms-page__text {
  color: rgba(255, 248, 234, 0.76);
}
.terms-page__block--contact .terms-page__block-number {
  color: rgba(242, 213, 141, 0.72);
}
.terms-page__block-number {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  color: rgba(185, 63, 56, 0.42);
}
.terms-page__block-title {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 7vw, 48px);
  line-height: 0.98;
  color: #10141f;
}
.terms-page__text {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: rgba(16, 20, 31, 0.72);
  font-size: 15px;
  line-height: 1.75;
}
.terms-page__text:last-child {
  margin-bottom: 0;
}
.terms-page__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
}
.terms-page__list-item {
  position: relative;
  padding-left: 26px;
  color: rgba(16, 20, 31, 0.72);
  font-size: 14px;
  line-height: 1.65;
}
.terms-page__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7a84f;
  box-shadow: 0 0 0 5px rgba(215, 168, 79, 0.14);
}
.terms-page__email {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(215, 168, 79, 0.16);
  border: 1px solid rgba(215, 168, 79, 0.32);
  color: #f2d58d;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}
.terms-page__email:hover, .terms-page__email:focus-visible {
  background: rgba(215, 168, 79, 0.24);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .terms-page__layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
  }
  .terms-page__aside {
    position: sticky;
    top: 108px;
  }
  .terms-page__list--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .terms-page {
    padding: 88px 0 100px;
  }
  .terms-page__layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
  }
  .terms-page__block {
    padding: 32px;
  }
  .terms-page__notice {
    padding: 24px;
  }
}
@media (min-width: 1440px) {
  .terms-page__layout {
    grid-template-columns: 320px minmax(0, 1fr);
  }
  .terms-page__block {
    padding: 38px;
  }
}
.cookie-policy {
  position: relative;
  padding: 64px 0 78px;
}
.cookie-policy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  width: 44%;
  height: 52%;
  background: linear-gradient(90deg, rgba(215, 168, 79, 0.13), transparent);
  clip-path: polygon(0 0, 84% 18%, 58% 100%, 0 78%);
}
.cookie-policy__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  align-items: start;
}
.cookie-policy__aside {
  position: relative;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94));
  color: #fff8ea;
  overflow: hidden;
}
.cookie-policy__aside::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.2);
}
.cookie-policy__aside-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 248, 234, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.cookie-policy__aside-date {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  color: #f2d58d;
}
.cookie-policy__nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}
.cookie-policy__nav-link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 248, 234, 0.78);
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.cookie-policy__nav-link:hover, .cookie-policy__nav-link:focus-visible {
  color: #f2d58d;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}
.cookie-policy__content {
  display: grid;
  gap: 16px;
}
.cookie-policy__summary {
  display: grid;
  gap: 14px;
}
.cookie-policy__summary-card, .cookie-policy__block {
  position: relative;
  border: 1px solid rgba(16, 20, 31, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 45px rgba(16, 20, 31, 0.08);
  overflow: hidden;
}
.cookie-policy__summary-card {
  min-height: 178px;
  padding: 20px;
  border-radius: 24px;
}
.cookie-policy__summary-card::before {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 108px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.16);
}
.cookie-policy__summary-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, #10141f, #174d54);
  color: #fff8ea;
  font-size: 25px;
  box-shadow: 0 14px 28px rgba(16, 20, 31, 0.18);
}
.cookie-policy__summary-title {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: #10141f;
  font-size: 19px;
  line-height: 1.2;
}
.cookie-policy__summary-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(16, 20, 31, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.cookie-policy__block {
  padding: 24px;
  border-radius: 26px;
}
.cookie-policy__block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 72px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #d7a84f, #b93f38);
}
.cookie-policy__block--controls {
  background: radial-gradient(circle at 92% 10%, rgba(215, 168, 79, 0.2), transparent 15rem), rgba(255, 255, 255, 0.78);
}
.cookie-policy__block--contact {
  background: linear-gradient(150deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94));
  color: #fff8ea;
}
.cookie-policy__block--contact .cookie-policy__block-title {
  color: #fff8ea;
}
.cookie-policy__block--contact .cookie-policy__text {
  color: rgba(255, 248, 234, 0.76);
}
.cookie-policy__block--contact .cookie-policy__block-number {
  color: rgba(242, 213, 141, 0.72);
}
.cookie-policy__block-number {
  display: block;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  color: rgba(185, 63, 56, 0.42);
}
.cookie-policy__block-title {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 7vw, 48px);
  line-height: 0.98;
  color: #10141f;
}
.cookie-policy__text {
  margin: 0 0 14px;
  color: rgba(16, 20, 31, 0.72);
  font-size: 15px;
  line-height: 1.75;
}
.cookie-policy__text:last-child {
  margin-bottom: 0;
}
.cookie-policy__table {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.cookie-policy__table-row {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(215, 168, 79, 0.1);
  border: 1px solid rgba(215, 168, 79, 0.2);
}
.cookie-policy__table-title {
  color: #10141f;
  font-size: 14px;
}
.cookie-policy__table-text {
  color: rgba(16, 20, 31, 0.68);
  font-size: 14px;
  line-height: 1.55;
}
.cookie-policy__list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.cookie-policy__list-item {
  position: relative;
  padding-left: 26px;
  color: rgba(16, 20, 31, 0.72);
  font-size: 14px;
  line-height: 1.65;
}
.cookie-policy__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7a84f;
  box-shadow: 0 0 0 5px rgba(215, 168, 79, 0.14);
}
.cookie-policy__preferences {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.cookie-policy__toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 20, 31, 0.1);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cookie-policy__toggle:hover {
  border-color: rgba(215, 168, 79, 0.48);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(16, 20, 31, 0.08);
}
.cookie-policy__toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cookie-policy__toggle input:checked + .cookie-policy__toggle-control {
  background: linear-gradient(135deg, #2f8c74, #174d54);
}
.cookie-policy__toggle input:checked + .cookie-policy__toggle-control::before {
  transform: translateX(24px);
  background: #fff8ea;
}
.cookie-policy__toggle input:disabled + .cookie-policy__toggle-control {
  opacity: 0.7;
  cursor: not-allowed;
}
.cookie-policy__toggle-content {
  display: grid;
  gap: 4px;
}
.cookie-policy__toggle-title {
  color: #10141f;
  font-size: 15px;
  line-height: 1.25;
}
.cookie-policy__toggle-text {
  color: rgba(16, 20, 31, 0.62);
  font-size: 13px;
  line-height: 1.55;
}
.cookie-policy__toggle-control {
  position: relative;
  display: block;
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: rgba(16, 20, 31, 0.18);
  transition: background 0.2s ease;
}
.cookie-policy__toggle-control::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(16, 20, 31, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}
.cookie-policy__actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}
.cookie-policy__save, .cookie-policy__accept {
  width: 100%;
}
.cookie-policy__status {
  min-height: 22px;
  margin: 0;
  color: #174d54;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}
.cookie-policy__email {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(215, 168, 79, 0.16);
  border: 1px solid rgba(215, 168, 79, 0.32);
  color: #f2d58d;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cookie-policy__email:hover, .cookie-policy__email:focus-visible {
  background: rgba(215, 168, 79, 0.24);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .cookie-policy__layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
  }
  .cookie-policy__aside {
    position: sticky;
    top: 108px;
  }
  .cookie-policy__summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cookie-policy__table-row {
    grid-template-columns: 180px 1fr;
    align-items: center;
  }
  .cookie-policy__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .cookie-policy {
    padding: 88px 0 100px;
  }
  .cookie-policy__layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
  }
  .cookie-policy__block {
    padding: 32px;
  }
  .cookie-policy__summary-card {
    padding: 24px;
  }
}
@media (min-width: 1440px) {
  .cookie-policy__layout {
    grid-template-columns: 320px minmax(0, 1fr);
  }
  .cookie-policy__block {
    padding: 38px;
  }
}
.responsible-page {
  position: relative;
  padding: 64px 0 78px;
}
.responsible-page::before {
  content: "";
  position: absolute;
  right: 0;
  top: 8%;
  width: 44%;
  height: 54%;
  background: linear-gradient(90deg, transparent, rgba(47, 140, 116, 0.13));
  clip-path: polygon(24% 0, 100% 14%, 100% 100%, 0 78%);
}
.responsible-page__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  align-items: start;
}
.responsible-page__aside {
  position: relative;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94));
  color: #fff8ea;
  overflow: hidden;
}
.responsible-page__aside::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.2);
}
.responsible-page__aside::after {
  content: "";
  position: absolute;
  left: -34px;
  bottom: -34px;
  width: 112px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(242, 213, 141, 0.24);
  box-shadow: inset 0 0 0 18px rgba(242, 213, 141, 0.05);
}
.responsible-page__aside-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 248, 234, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.responsible-page__aside-title {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  color: #f2d58d;
}
.responsible-page__nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}
.responsible-page__nav-link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 248, 234, 0.78);
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.responsible-page__nav-link:hover, .responsible-page__nav-link:focus-visible {
  color: #f2d58d;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}
.responsible-page__content {
  display: grid;
  gap: 18px;
}
.responsible-page__notice, .responsible-page__section, .responsible-page__final {
  position: relative;
  border: 1px solid rgba(16, 20, 31, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 45px rgba(16, 20, 31, 0.08);
  overflow: hidden;
}
.responsible-page__notice {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(47, 140, 116, 0.13), rgba(215, 168, 79, 0.12));
}
.responsible-page__notice::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 124px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(215, 168, 79, 0.18) 0 12deg, transparent 12deg 24deg);
}
.responsible-page__notice-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(145deg, #2f8c74, #174d54);
  color: #fff8ea;
  font-size: 27px;
  box-shadow: 0 14px 28px rgba(16, 20, 31, 0.18);
}
.responsible-page__notice-content {
  position: relative;
  z-index: 1;
}
.responsible-page__notice-title {
  margin: 0 0 8px;
  color: #10141f;
  font-size: 20px;
  line-height: 1.2;
}
.responsible-page__notice-text {
  margin: 0;
  color: rgba(16, 20, 31, 0.72);
  font-size: 14px;
  line-height: 1.7;
}
.responsible-page__section {
  padding: 24px;
  border-radius: 26px;
}
.responsible-page__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 72px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #d7a84f, #2f8c74);
}
.responsible-page__head {
  max-width: 740px;
  margin-bottom: 20px;
}
.responsible-page__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(47, 140, 116, 0.1);
  color: #174d54;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.responsible-page__title {
  margin: 16px 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 7vw, 54px);
  line-height: 0.98;
  color: #10141f;
}
.responsible-page__text {
  margin: 0;
  color: rgba(16, 20, 31, 0.72);
  font-size: 15px;
  line-height: 1.75;
}
.responsible-page__cards {
  display: grid;
  gap: 14px;
}
.responsible-page__card {
  position: relative;
  min-height: 190px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 20, 31, 0.1);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.responsible-page__card::before {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 104px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.14);
}
.responsible-page__card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 168, 79, 0.5);
  box-shadow: 0 20px 48px rgba(16, 20, 31, 0.11);
}
.responsible-page__card-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, #10141f, #174d54);
  color: #fff8ea;
  font-size: 25px;
  box-shadow: 0 14px 28px rgba(16, 20, 31, 0.18);
}
.responsible-page__card-title {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: #10141f;
  font-size: 18px;
  line-height: 1.2;
}
.responsible-page__card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(16, 20, 31, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.responsible-page__warning {
  display: grid;
  gap: 20px;
}
.responsible-page__warning-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.responsible-page__warning-item {
  position: relative;
  padding: 14px 14px 14px 42px;
  border-radius: 16px;
  background: rgba(185, 63, 56, 0.08);
  border: 1px solid rgba(185, 63, 56, 0.13);
  color: rgba(16, 20, 31, 0.76);
  font-size: 14px;
  line-height: 1.55;
}
.responsible-page__warning-item::before {
  content: "!";
  position: absolute;
  left: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #b93f38;
  color: #fff8ea;
  font-size: 12px;
  font-weight: 900;
}
.responsible-page__steps {
  display: grid;
  gap: 14px;
}
.responsible-page__step {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94));
  color: #fff8ea;
  overflow: hidden;
}
.responsible-page__step::before {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;
  width: 96px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.2);
}
.responsible-page__step-number {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1;
  color: #f2d58d;
}
.responsible-page__step-title {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: #fff8ea;
  font-size: 18px;
  line-height: 1.2;
}
.responsible-page__step-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 248, 234, 0.76);
  font-size: 14px;
  line-height: 1.65;
}
.responsible-page__resources {
  display: grid;
  gap: 12px;
}
.responsible-page__resource {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 20, 31, 0.1);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.responsible-page__resource:hover, .responsible-page__resource:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(215, 168, 79, 0.52);
  box-shadow: 0 20px 48px rgba(16, 20, 31, 0.11);
}
.responsible-page__resource-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, #b93f38, #10141f);
  color: #fff8ea;
  font-size: 24px;
}
.responsible-page__resource-content {
  display: grid;
  gap: 5px;
}
.responsible-page__resource-title {
  color: #10141f;
  font-size: 16px;
  line-height: 1.25;
}
.responsible-page__resource-text {
  color: rgba(16, 20, 31, 0.68);
  font-size: 13px;
  line-height: 1.6;
}
.responsible-page__final {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(185, 63, 56, 0.12), rgba(215, 168, 79, 0.1));
}
.responsible-page__final-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(185, 63, 56, 0.13);
}
.responsible-page__final-text {
  margin: 0;
  color: rgba(16, 20, 31, 0.72);
  font-size: 13px;
  line-height: 1.7;
}
.responsible-page__final-text strong {
  color: #b93f38;
}

@media (min-width: 768px) {
  .responsible-page__layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
  }
  .responsible-page__aside {
    position: sticky;
    top: 108px;
  }
  .responsible-page__cards, .responsible-page__steps, .responsible-page__resources {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .responsible-page {
    padding: 88px 0 100px;
  }
  .responsible-page__layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
  }
  .responsible-page__section {
    padding: 32px;
  }
  .responsible-page__notice {
    padding: 24px;
  }
  .responsible-page__cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .responsible-page__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1440px) {
  .responsible-page__layout {
    grid-template-columns: 320px minmax(0, 1fr);
  }
  .responsible-page__section {
    padding: 38px;
  }
}
.affiliate-page {
  position: relative;
  padding: 64px 0 78px;
}
.affiliate-page::before {
  content: "";
  position: absolute;
  right: 0;
  top: 8%;
  width: 46%;
  height: 54%;
  background: linear-gradient(90deg, transparent, rgba(215, 168, 79, 0.14));
  clip-path: polygon(22% 0, 100% 14%, 100% 100%, 0 78%);
}
.affiliate-page__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  align-items: start;
}
.affiliate-page__aside {
  position: relative;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94));
  color: #fff8ea;
  overflow: hidden;
}
.affiliate-page__aside::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.2);
}
.affiliate-page__aside::after {
  content: "";
  position: absolute;
  left: -36px;
  bottom: -36px;
  width: 118px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(242, 213, 141, 0.24);
  box-shadow: inset 0 0 0 18px rgba(242, 213, 141, 0.05);
}
.affiliate-page__aside-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 248, 234, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.affiliate-page__aside-date {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  color: #f2d58d;
}
.affiliate-page__nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}
.affiliate-page__nav-link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 248, 234, 0.78);
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.affiliate-page__nav-link:hover, .affiliate-page__nav-link:focus-visible {
  color: #f2d58d;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}
.affiliate-page__content {
  display: grid;
  gap: 16px;
}
.affiliate-page__notice {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(215, 168, 79, 0.16), rgba(47, 140, 116, 0.1));
  border: 1px solid rgba(215, 168, 79, 0.28);
  box-shadow: 0 18px 45px rgba(16, 20, 31, 0.08);
  overflow: hidden;
}
.affiliate-page__notice::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 124px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(215, 168, 79, 0.18) 0 12deg, transparent 12deg 24deg);
}
.affiliate-page__notice-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(145deg, #d7a84f, #b93f38);
  color: #fff8ea;
  font-size: 27px;
  box-shadow: 0 14px 28px rgba(16, 20, 31, 0.18);
}
.affiliate-page__notice-content {
  position: relative;
  z-index: 1;
}
.affiliate-page__notice-title {
  margin: 0 0 8px;
  color: #10141f;
  font-size: 20px;
  line-height: 1.2;
}
.affiliate-page__notice-text {
  margin: 0;
  color: rgba(16, 20, 31, 0.72);
  font-size: 14px;
  line-height: 1.7;
}
.affiliate-page__summary {
  display: grid;
  gap: 14px;
}
.affiliate-page__summary-card, .affiliate-page__block {
  position: relative;
  border: 1px solid rgba(16, 20, 31, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 45px rgba(16, 20, 31, 0.08);
  overflow: hidden;
}
.affiliate-page__summary-card {
  min-height: 178px;
  padding: 20px;
  border-radius: 24px;
}
.affiliate-page__summary-card::before {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 108px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.16);
}
.affiliate-page__summary-card:nth-child(2) {
  background: linear-gradient(150deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94));
  color: #fff8ea;
}
.affiliate-page__summary-card:nth-child(2) .affiliate-page__summary-title {
  color: #fff8ea;
}
.affiliate-page__summary-card:nth-child(2) .affiliate-page__summary-text {
  color: rgba(255, 248, 234, 0.76);
}
.affiliate-page__summary-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, #10141f, #174d54);
  color: #fff8ea;
  font-size: 25px;
  box-shadow: 0 14px 28px rgba(16, 20, 31, 0.18);
}
.affiliate-page__summary-title {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: #10141f;
  font-size: 19px;
  line-height: 1.2;
}
.affiliate-page__summary-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(16, 20, 31, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.affiliate-page__block {
  padding: 24px;
  border-radius: 26px;
}
.affiliate-page__block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 72px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #d7a84f, #b93f38);
}
.affiliate-page__block::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.08);
}
.affiliate-page__block--contact {
  background: linear-gradient(150deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94));
  color: #fff8ea;
}
.affiliate-page__block--contact .affiliate-page__block-title {
  color: #fff8ea;
}
.affiliate-page__block--contact .affiliate-page__text {
  color: rgba(255, 248, 234, 0.76);
}
.affiliate-page__block--contact .affiliate-page__block-number {
  color: rgba(242, 213, 141, 0.72);
}
.affiliate-page__block-number {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  color: rgba(185, 63, 56, 0.42);
}
.affiliate-page__block-title {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 7vw, 48px);
  line-height: 0.98;
  color: #10141f;
}
.affiliate-page__text {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: rgba(16, 20, 31, 0.72);
  font-size: 15px;
  line-height: 1.75;
}
.affiliate-page__text:last-child {
  margin-bottom: 0;
}
.affiliate-page__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.affiliate-page__list-item {
  position: relative;
  padding-left: 26px;
  color: rgba(16, 20, 31, 0.72);
  font-size: 14px;
  line-height: 1.65;
}
.affiliate-page__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7a84f;
  box-shadow: 0 0 0 5px rgba(215, 168, 79, 0.14);
}
.affiliate-page__principles {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.affiliate-page__principle {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(215, 168, 79, 0.1);
  border: 1px solid rgba(215, 168, 79, 0.2);
}
.affiliate-page__principle-title {
  color: #10141f;
  font-size: 14px;
  line-height: 1.25;
}
.affiliate-page__principle-text {
  color: rgba(16, 20, 31, 0.68);
  font-size: 13px;
  line-height: 1.55;
}
.affiliate-page__email {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(215, 168, 79, 0.16);
  border: 1px solid rgba(215, 168, 79, 0.32);
  color: #f2d58d;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}
.affiliate-page__email:hover, .affiliate-page__email:focus-visible {
  background: rgba(215, 168, 79, 0.24);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .affiliate-page__layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
  }
  .affiliate-page__aside {
    position: sticky;
    top: 108px;
  }
  .affiliate-page__summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .affiliate-page__principles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .affiliate-page {
    padding: 88px 0 100px;
  }
  .affiliate-page__layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
  }
  .affiliate-page__notice {
    padding: 24px;
  }
  .affiliate-page__block {
    padding: 32px;
  }
  .affiliate-page__summary-card {
    padding: 24px;
  }
}
@media (min-width: 1440px) {
  .affiliate-page__layout {
    grid-template-columns: 320px minmax(0, 1fr);
  }
  .affiliate-page__block {
    padding: 38px;
  }
}
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 75;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(22px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner__inner {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(100%, 1120px);
  margin-inline: auto;
  padding: 18px;
  border-radius: 26px;
  background: radial-gradient(circle at 10% 0, rgba(215, 168, 79, 0.26), transparent 15rem), linear-gradient(145deg, rgba(255, 252, 244, 0.96), rgba(247, 234, 211, 0.96));
  border: 1px solid rgba(215, 168, 79, 0.34);
  box-shadow: 0 26px 80px rgba(16, 20, 31, 0.24);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.cookie-banner__inner::before {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(215, 168, 79, 0.18) 0 12deg, transparent 12deg 24deg);
}
.cookie-banner__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, #10141f, #174d54);
  color: #fff8ea;
  font-size: 25px;
  box-shadow: 0 14px 28px rgba(16, 20, 31, 0.18);
}
.cookie-banner__content {
  position: relative;
  z-index: 1;
}
.cookie-banner__title {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  color: #10141f;
}
.cookie-banner__text {
  margin: 0;
  color: rgba(16, 20, 31, 0.72);
  font-size: 13px;
  line-height: 1.65;
}
.cookie-banner__link {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 8px;
  color: #b93f38;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cookie-banner__actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}
.cookie-banner__accept, .cookie-banner__reject {
  width: 100%;
}

@media (min-width: 768px) {
  .cookie-banner {
    padding: 22px;
  }
  .cookie-banner__inner {
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 20px;
  }
  .cookie-banner__actions {
    grid-template-columns: 150px 150px;
  }
}
@media (min-width: 1024px) {
  .cookie-banner__inner {
    padding: 22px 24px;
  }
  .cookie-banner__title {
    font-size: 34px;
  }
  .cookie-banner__text {
    font-size: 14px;
  }
}
.not-found {
  position: relative;
  min-height: calc(100dvh - 90px);
  padding: 72px 0;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.not-found::before {
  content: "";
  position: absolute;
  right: -90px;
  top: 40px;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 42% 58% 48% 52%;
  background: conic-gradient(from 140deg, rgba(215, 168, 79, 0.45), rgba(185, 63, 56, 0.3), rgba(47, 140, 116, 0.28), rgba(215, 168, 79, 0.45));
  opacity: 0.48;
}
.not-found__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: center;
}
.not-found__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(185, 63, 56, 0.1);
  border: 1px solid rgba(185, 63, 56, 0.16);
  color: #b93f38;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.not-found__title {
  max-width: 760px;
  margin: 20px 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(50px, 13vw, 104px);
  line-height: 0.9;
  color: #10141f;
}
.not-found__title--accent {
  color: #174d54;
}
.not-found__text {
  max-width: 620px;
  margin: 0;
  color: rgba(16, 20, 31, 0.72);
  font-size: 16px;
  line-height: 1.75;
}
.not-found__actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.not-found__back {
  cursor: pointer;
}
.not-found__notice {
  margin: 18px 0 0;
  color: rgba(16, 20, 31, 0.58);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
}
.not-found__panel {
  position: relative;
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(16, 20, 31, 0.96), rgba(23, 77, 84, 0.94));
  color: #fff8ea;
  border: 1px solid rgba(215, 168, 79, 0.34);
  box-shadow: 0 26px 70px rgba(16, 20, 31, 0.18);
  overflow: hidden;
}
.not-found__panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(242, 213, 141, 0.26);
  border-radius: 22px;
  pointer-events: none;
}
.not-found__panel::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(215, 168, 79, 0.24) 0 12deg, transparent 12deg 24deg);
}
.not-found__number {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(82px, 22vw, 170px);
  line-height: 0.8;
  color: #f2d58d;
  text-align: center;
}
.not-found__reels {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.not-found__cell {
  display: grid;
  place-items: center;
  min-height: 78px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(242, 213, 141, 0.26);
  font-size: 32px;
}
.not-found__cell:nth-child(2n) {
  transform: translateY(7px);
}

@media (min-width: 360px) {
  .not-found__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
  }
  .not-found__back {
    grid-column: 1/-1;
  }
}
@media (min-width: 768px) {
  .not-found {
    padding: 92px 0;
  }
  .not-found__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 38px;
  }
  .not-found__actions {
    display: flex;
    flex-wrap: wrap;
    max-width: none;
  }
  .not-found__back {
    grid-column: auto;
  }
  .not-found__cell {
    min-height: 94px;
    font-size: 38px;
  }
}
@media (min-width: 1024px) {
  .not-found {
    min-height: calc(100dvh - 104px);
    padding: 110px 0;
  }
  .not-found__panel {
    padding: 28px;
  }
}
@media (min-width: 1440px) {
  .not-found__grid {
    gap: 64px;
  }
  .not-found__cell {
    min-height: 112px;
    font-size: 44px;
  }
}
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}
.age-gate.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.age-gate.is-open .age-gate__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.age-gate__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0, rgba(215, 168, 79, 0.16), transparent 18rem), rgba(16, 20, 31, 0.72);
  backdrop-filter: blur(12px);
}
.age-gate__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  padding: 32px 24px 26px;
  border-radius: 30px;
  background: radial-gradient(circle at 16% 0, rgba(215, 168, 79, 0.28), transparent 13rem), linear-gradient(145deg, #fffcf4, #f7ead3);
  border: 1px solid rgba(215, 168, 79, 0.38);
  box-shadow: 0 34px 96px rgba(16, 20, 31, 0.38);
  text-align: center;
  overflow: hidden;
  outline: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
}
.age-gate__dialog::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(215, 168, 79, 0.26);
  border-radius: 22px;
  pointer-events: none;
}
.age-gate__dialog::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 138px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(215, 168, 79, 0.18) 0 12deg, transparent 12deg 24deg);
}
.age-gate__mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, #b93f38, #10141f);
  color: #fff8ea;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 20px 42px rgba(185, 63, 56, 0.28);
}
.age-gate__title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 8vw, 52px);
  line-height: 0.96;
  color: #10141f;
}
.age-gate__text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(16, 20, 31, 0.72);
  font-size: 15px;
  line-height: 1.7;
}
.age-gate__actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.age-gate__confirm, .age-gate__deny {
  width: 100%;
}
.age-gate__notice {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: rgba(16, 20, 31, 0.58);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

body.age-gate-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .age-gate__dialog {
    padding: 38px 34px 30px;
  }
  .age-gate__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}