/* Custom: 1.css */
@import url('https://fonts.googleapis.com/css2?family=Magra:wght@400;700&family=Montserrat:wght@700&family=Spartan:wght@600&family=Ubuntu:wght@400;500;700&display=swap');

@font-face {
  font-style: normal;
  font-weight: normal;
  font-family: "Material Icons";
  font-display: block;
  src: url(":r:icomoon.woff2") format("woff2");
}
header img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
* {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style-position: inside;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
section {
  margin-bottom: var(--section-gap);
}

body {
 font-family: var(--font-family-main) !important;
 font-weight: var(--font-weight-body) !important;
 font-size: var(--font-size-base) !important;
  background: var(--background);
  color: var(--dark);
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}
ul, ol {
  margin: 20px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 14px;
  line-height: 1.6;
}
.content-container {
  padding-left: var(--page-gap);
  padding-right: var(--page-gap);
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .content-container {
    padding-left: var(--page-gap-reduced);
    padding-right: var(--page-gap-reduced);
  }
    section > div > div,
  section > div > div > div {
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 20px var(--page-gap-reduced);
  }



  ul, ol {
    padding-left: 16px;
  }
}

.breadcrumbs-section {
  width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    height: 100%;
}

.breadcrumbs-list .breadcrumbs-list-item {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin: 5px 0;
}

.breadcrumbs-list .breadcrumbs-list-item:last-child {
  color: var(--primary);
}

.breadcrumbs-list .breadcrumbs-list-item a {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
}

.breadcrumbs-list .breadcrumbs-list-item a:hover {
  text-decoration: underline;
}

.breadcrumbs-list .breadcrumbs-list-item a::after {
  content: "";
  margin: 0 10px 0 10px;
  border: solid rgba(0, 0, 0, 0.25);
  border-width: 0 2px 2px 0;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1px;
  padding: 5px;
  transform: rotate(45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.layout-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--section-gap);
  margin: var(--page-gap) auto;
  max-width: 1200px;
}

.main-column {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.sidebar-column {
  position: relative;
}
@media (max-width: 768px) {
 .layout-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar-column {
    grid-row: 1; 
  }

  .main-column {
    grid-row: 2;
  }
}

/* FAQ блок */
details {
  width: 100%;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--primary);
  transition: var(--transition);
  font-family: var(--font-family-main);
}

details[open] {
  background: var(--accent);
}

details summary {
  cursor: pointer;
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-heading);
  color: var(--light);
  list-style: none;
  outline: none;
  transition: var(--transition);
}

details summary::-webkit-details-marker {
  display: none;
}

details summary:hover {
  background: var(--primary-hover);
}

details[open] summary {
  background: var(--accent-hover);
}

details div {
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-body);
  color: var(--light);
  background: var(--accent-transparent);
  line-height: 1.6;
}

/* Color scheme: color29 */
:root {
    --primary: #ba55d3;
    --primary-hover: #c670dc;
    --accent: #3cb371;
    --accent-hover: #57c089;
    --accent-secondary: #71cea1;
    --accent-transparent: rgba(60, 179, 113, 0.3);
    --background: #faf0e6;
    --header: #ffffff;
    --shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    --page-gap: 20px;
    --page-gap-reduced: calc(var(--page-gap) / 2);
    --section-gap: 30px;
    --dark: #000000;
    --dark-default: rgba(0, 0, 0, 0.8);
    --dark-muted: rgba(0, 0, 0, 0.4);
    --light: #ffffff;
    --transition: all 0.25s cubic-bezier(0.39, 0, 0.17, 0.99);
    --radius: 4px;
    --font-family-main: 'Inter', sans-serif;
    --font-family-heading: 'Georgia', serif;
    --font-weight-body: 400;
    --font-weight-heading: 700;
    --font-size-base: 16px;
    --font-size-h1: 32px;
    --font-size-h2: 24px;
  }

/* HEADER */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Roboto", sans-serif;

  color: var(--light);
}

.u_0402dc {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background-color: var(--header);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.u_aaa370 {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--page-gap-reduced) var(--page-gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--page-gap-reduced);
  min-width: 0;
}

.u_236b7a img {
  display: block;
  height: auto;
}

.u_d919a1 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.u_6f8dfd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.2;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  max-width: 100%;
  transition: var(--transition);
}

.u_190678 {
  padding: 12px 24px;
  font-size: 15px;
}

.u_89a231 {
  background: var(--primary);
  color: var(--light);
  border-color: var(--primary);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
}

.u_89a231:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
}

.u_b38c20 {
  background: transparent;
  color: var(--primary);
  border-color: rgba(0, 0, 0, 0.06);
}

.u_b38c20:hover {
  color: var(--primary-hover);
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.03);
}

.u_22eb4b {
  background: rgba(0, 0, 0, 0.5);
  color: var(--accent-secondary);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.7);
}

.u_22eb4b:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.u_daa5e1 {
  padding-top: 72px;
}

.u_16b28b {
  position: relative;
  min-height: calc(100vh - 72px);
  background-color: #000000;
  color: var(--light);
  overflow: hidden;
}

.u_0a9a91 {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.u_e1f054 {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  display: block;
  opacity: 0.55;
}

.u_f35b14 {
  position: absolute;
  inset: -10% -10% auto -10%;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: 0.28;
  transform: translate3d(0, 0, 0);
}

.u_f35b14 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transform-origin: center;
  will-change: transform;
  animation: heroImageDrift 16s ease-in-out infinite alternate;
}

.u_d90b83 {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -2%;
  color: var(--accent);
  pointer-events: none;
}

.u_9a8b44 {
  opacity: 0.5;
  filter: blur(2px);
}

.u_8ef199 {
  opacity: 0.75;
}

.u_8ef199 .u_206c44 {
  fill: rgba(0, 0, 0, 0.9);
}

.u_126390 {
  transform-origin: center;
  animation: heroWave 18s ease-in-out infinite alternate;
}

.u_e96093 {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.2;
  mix-blend-mode: screen;
  pointer-events: none;
}

.u_e47d15 {
  left: -120px;
  bottom: 10%;
  background: radial-gradient(circle at 30% 30%, var(--primary), transparent 70%);
  animation: glowDriftLeft 22s ease-in-out infinite alternate;
}

.u_bcc13b {
  right: -60px;
  top: 12%;
  background: radial-gradient(circle at 40% 40%, var(--accent), transparent 70%);
  animation: glowDriftRight 24s ease-in-out infinite alternate;
}

.u_05f7ef {
  position: relative;
  z-index: 5;
}

.u_79cafa {
  max-width: 1180px;
  margin: 0 auto;
  padding: calc(var(--section-gap) + 20px) var(--page-gap) var(--section-gap);
}

.u_ff15ee {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.u_3a9a83 {
  max-width: 580px;
  min-width: 0;
  animation: heroFadeInUp 1.2s ease-out forwards;
  opacity: 0;
}

.u_039c2e {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.u_a1ccbc {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--light);
}

.u_4f561b {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
}

.u_299065 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.u_ff0d6e {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.u_660e4f {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.u_938260 {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
}

.u_d36d6e {
  background: #16ff79;
  box-shadow: 0 0 0 0 rgba(22, 255, 121, 0.7);
  animation: livePulse 2.2s cubic-bezier(0.21, 0.9, 0.35, 1) infinite;
}

.u_e298f2 {
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.u_480df3 {
  border-color: rgba(255, 68, 119, 0.7);
  color: rgba(255, 132, 177, 0.9);
  box-shadow: 0 0 16px rgba(255, 68, 119, 0.4);
}

.u_12287e {
  min-width: 0;
  animation: heroFadeInRight 1.4s ease-out forwards;
  opacity: 0;
}

.u_3e6a48 {
  position: relative;
  border-radius: 24px;
  padding: 18px 18px 16px;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.16), transparent 60%), linear-gradient(145deg, rgba(15, 15, 20, 0.95), rgba(8, 8, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.u_0bf864 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.u_d6c9a6 {
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

.u_25122c {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: conic-gradient(from 180deg, var(--primary), var(--accent), var(--primary), var(--accent));
  opacity: 0.95;
  filter: blur(0.2px);
  animation: avatarRing 14s linear infinite;
}

.u_9a3615 {
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3), rgba(40, 40, 55, 1));
  overflow: hidden;
}

.u_47ae0a {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 2px solid rgba(10, 10, 14, 0.94);
}

.u_7a499b {
  background: #2cff90;
  box-shadow:
    0 0 0 0 rgba(44, 255, 144, 0.8),
    0 0 12px rgba(44, 255, 144, 0.9);
  animation: livePulse 2.1s cubic-bezier(0.21, 0.9, 0.35, 1) infinite;
}

.u_48b5c7 {
  flex: 1;
  min-width: 0;
}

.u_63f02b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.u_4aa23e {
  font-size: 15px;
  font-weight: 600;
  color: var(--light);
}

.u_20ce1d {
  position: relative;
  padding: 4px 9px 4px 20px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: radial-gradient(circle at 0 50%, rgba(47, 255, 169, 1), rgba(47, 255, 169, 0.15)), linear-gradient(130deg, rgba(10, 10, 18, 0.95), rgba(33, 33, 55, 1));
  box-shadow: 0 0 22px rgba(47, 255, 169, 0.55);
  overflow: hidden;
}

.u_a50f82 {
  position: absolute;
  left: 7px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2fff9e;
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 rgba(47, 255, 158, 0.7);
  animation: matchPulse 2.4s ease-out infinite;
}

.u_a7bc3d {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
}

.u_955472 {
  border-radius: 18px;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.04), transparent 60%), linear-gradient(145deg, rgba(11, 11, 17, 0.96), rgba(15, 15, 24, 0.98));
  padding: 10px 10px 8px;
}

.u_1fd2ad {
  position: relative;
  border-radius: 14px;
  height: 160px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.12), transparent 60%), linear-gradient(135deg, rgba(9, 9, 14, 1), rgba(20, 20, 36, 1));
  margin-bottom: 10px;
}

.u_856554 {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.12), transparent 50%), linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(48, 29, 88, 0.5));
  mix-blend-mode: screen;
  opacity: 0.8;
}

.u_32331e {
  position: absolute;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.7;
  mix-blend-mode: screen;
}

.u_8b0f09 {
  width: 130px;
  height: 130px;
  left: -40px;
  bottom: -40px;
  background: radial-gradient(circle at 30% 30%, var(--primary), transparent 65%);
  animation: profileGlow1 18s ease-in-out infinite alternate;
}

.u_c1c34c {
  width: 120px;
  height: 120px;
  right: -20px;
  top: -40px;
  background: radial-gradient(circle at 40% 30%, var(--accent), transparent 65%);
  animation: profileGlow2 18s ease-in-out infinite alternate;
}

.u_1ffc7c {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.u_aee5d2 {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.u_a42f0e {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.u_e96f11 {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.u_96413f {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.u_8d4d53 {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
}

.u_8d4d53 .u_e68d55 {
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(to top, #fb4f8c, #ffea8a);
  box-shadow: 0 0 12px rgba(255, 111, 162, 0.9);
  animation: activityBar 1.4s ease-in-out infinite alternate;
}

.u_8d4d53 .u_f905bb {
  height: 10px;
  animation-delay: 0s;
}

.u_8d4d53 .u_d3ff67 {
  height: 14px;
  animation-delay: 0.1s;
}

.u_8d4d53 .u_1b0af5 {
  height: 8px;
  animation-delay: 0.18s;
}

.u_8d4d53 .u_414cf3 {
  height: 12px;
  animation-delay: 0.26s;
}

.u_73518f {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.u_2d029e {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  animation: matchSparkle 3.2s ease-in-out infinite alternate;
}

.u_2d029e.u_c59d1e {
  background: #ff4b8f;
  box-shadow: 0 0 0 0 rgba(255, 75, 143, 0.8);
  animation: matchHot 2.4s ease-out infinite;
}

.u_282e6a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.u_cb1404 {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.u_751745 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(17, 17, 26, 0.98), rgba(31, 31, 52, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(18px);
}

.u_c24d1f {
  background: linear-gradient(120deg, rgba(13, 13, 22, 0.96), rgba(36, 24, 58, 0.96));
  border-color: rgba(168, 132, 255, 0.35);
}

.u_92f05a {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.u_2becb4 {
  background: var(--primary);
  box-shadow: 0 0 10px rgba(255, 111, 162, 0.9);
}

.u_7a89f9 {
  background: var(--accent);
  box-shadow: 0 0 14px rgba(171, 161, 251, 0.9);
}

.u_0b8360 {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.u_91a6f2 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.u_3067e4 {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

/* Animations */

@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroFadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(20px, 10px, 0) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroImageDrift {
  0% {
    transform: translate3d(0, -4%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0, 4%, 0) scale(1.08);
  }
}

@keyframes heroWave {
  0% {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
  100% {
    transform: translate3d(0, -10px, 0) scaleY(1.08);
  }
}

@keyframes glowDriftLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(40px, -30px, 0);
  }
}

@keyframes glowDriftRight {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50px, 40px, 0);
  }
}

@keyframes livePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(22, 255, 121, 0.7);
    opacity: 1;
  }
  100% {
    transform: scale(1.18);
    box-shadow: 0 0 0 10px rgba(22, 255, 121, 0);
    opacity: 0.9;
  }
}

@keyframes matchPulse {
  0% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 0 rgba(47, 255, 158, 0.7);
  }
  100% {
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 0 0 8px rgba(47, 255, 158, 0);
  }
}

@keyframes avatarRing {
  0% {
    transform: rotate(0deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1.05);
  }
}

@keyframes profileGlow1 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(12px, -8px, 0) scale(1.06);
  }
}

@keyframes profileGlow2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-10px, 10px, 0) scale(1.05);
  }
}

@keyframes activityBar {
  0% {
    transform: scaleY(0.4);
    opacity: 0.7;
  }
  100% {
    transform: scaleY(1.1);
    opacity: 1;
  }
}

@keyframes matchSparkle {
  0% {
    opacity: 0.4;
    transform: scale(0.8) translateY(0);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.05) translateY(-1px);
  }
}

@keyframes matchHot {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 75, 143, 0.8);
  }
  100% {
    transform: scale(1.25);
    box-shadow: 0 0 0 10px rgba(255, 75, 143, 0);
  }
}

/* Parallax helper */

.u_12177a {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Responsive */

@media (max-width: 1024px) {
  .u_aaa370 {
    padding-inline: calc(var(--page-gap) * 0.9);
  }

  .u_79cafa {
    padding-inline: calc(var(--page-gap) * 0.9);
  }

  .u_ff15ee {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 28px;
  }

  .u_3e6a48 {
    padding: 16px 16px 14px;
  }
}

@media (max-width: 768px) {
  .u_daa5e1 {
    padding-top: 64px;
  }

  .u_aaa370 {
    padding: 10px var(--page-gap);
    gap: 8px;
  }

  .u_d919a1 {
    justify-content: flex-end;
  }

  .u_6f8dfd {
    padding-inline: 14px;
    font-size: 13px;
  }

  .u_190678 {
    width: auto;
    max-width: 100%;
  }

  .u_16b28b {
    min-height: calc(100vh - 64px);
  }

  .u_79cafa {
    padding: calc(var(--section-gap) * 0.8) var(--page-gap) var(--section-gap);
  }

  .u_ff15ee {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .u_12287e {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .u_3a9a83 {
    text-align: left;
  }

  .u_299065 {
    justify-content: flex-start;
  }

  .u_ff0d6e {
    flex-direction: column;
    align-items: flex-start;
  }

  .u_a1ccbc {
    font-size: clamp(28px, 7vw, 34px);
  }

  .u_4f561b {
    font-size: 14px;
    max-width: none;
  }

  .u_1fd2ad {
    height: 150px;
  }

  .u_f35b14 {
    opacity: 0.24;
  }
}

@media (max-width: 520px) {
  .u_aaa370 {
    padding-inline: calc(var(--page-gap) * 0.7);
  }

  .u_d919a1 {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .u_b38c20 {
    padding-inline: 10px;
  }

  .u_79cafa {
    padding-inline: calc(var(--page-gap) * 0.7);
  }

  .u_299065 {
    flex-direction: column;
    align-items: flex-start;
  }

  .u_190678 {
    width: auto;
  }

  .u_ff0d6e {
    gap: 8px;
  }

  .u_3e6a48 {
    border-radius: 20px;
  }

  .u_955472 {
    padding-inline: 9px;
  }

  .u_1fd2ad {
    height: 140px;
  }
}

/* FOOTER */
.footer-block-dating742 {
  background: var(--header);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18), var(--shadow);
  padding: calc(var(--section-gap) * 0.7) var(--page-gap);
}

.footer-inner-dating742 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: calc(var(--page-gap) * 0.75);
  align-items: flex-start;
  justify-content: space-between;
  overflow-x: hidden;
}

.footer-brand-dating742 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-copy-dating742 {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--accent);
  opacity: 0.9;
}

.footer-nav-dating742 {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-link-dating742 {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition:
    color var(--transition),
    opacity var(--transition),
    transform var(--transition);
}

.footer-link-dating742::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 0;
  height: 1px;
  background: var(--primary-hover);
  transition: width var(--transition);
  opacity: 0.9;
}

.footer-link-dating742:hover,
.footer-link-dating742:focus-visible {
  color: var(--primary-hover);
  transform: translateY(-0.5px);
}

.footer-link-dating742:hover::after,
.footer-link-dating742:focus-visible::after {
  width: 100%;
}

.footer-link-dating742:active {
  opacity: 0.8;
  transform: translateY(0);
}

.footer-link-dating742:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (min-width: 600px) {
  .footer-inner-dating742 {
    flex-direction: row;
    align-items: center;
  }

  .footer-brand-dating742 {
    max-width: 50%;
  }

  .footer-copy-dating742 {
    font-size: 0.9rem;
  }

  .footer-nav-dating742 {
    align-items: flex-end;
  }
}

@media (min-width: 960px) {
  .footer-block-dating742 {
    padding: calc(var(--section-gap) * 0.8) calc(var(--page-gap) * 1.4);
  }

  .footer-inner-dating742 {
    gap: var(--page-gap);
  }

  .footer-copy-dating742 {
    font-size: 0.95rem;
  }

  .footer-link-dating742 {
    font-size: 0.95rem;
  }
}

/* BODY */
.u_345817 {

  position: relative;

  width: 100vw;

  max-width: 100%;

  min-height: 100vh;

  overflow-x: hidden;

  box-sizing: border-box;

  background: var(--background);

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

}



.u_e51211 {

  position: absolute;

  inset: 0;

  z-index: 1;

  width: 100%;

  height: 100%;

  pointer-events: none;

  user-select: none;

}

.u_e51211 img, 

.u_e51211 > * {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  max-width: 100vw;

}





.u_6358d5 {

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  min-height: 70vh;

  width: 100%;

  padding: 0;

  z-index: 2;

}



.u_f79701 {

  backdrop-filter: blur(0.5px);

  background: rgba(255, 255, 255, 0.56);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  max-width: 1200px;

  width: 100%;

  margin: 10vh auto 0 auto;

  padding: 48px 40px 80px 40px;

  transition: var(--transition);

  display: flex;

  flex-direction: column;

  align-items: center;

  animation: heroFadeInSlide 1.2s cubic-bezier(0.39, 0, 0.17, 0.99) both;

  box-sizing: border-box;

  min-width: 0;

}



@keyframes heroFadeInSlide {

  from {

    opacity: 0;

    transform: translateY(48px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



.u_d285de {

  width: 100%;

  color: var(--dark);

  display: flex;

  flex-direction: column;

  gap: 24px;

}

.u_d285de .u_fd2411 {

  width: 100%;

}

.u_d285de h2 {

  font-family: 'Inter', 'Montserrat', 'Segoe UI', Arial, sans-serif;

  font-size: 3rem;

  font-weight: 800;

  line-height: 1.1;

  color: var(--primary);

  letter-spacing: -1.5px;

  margin-bottom: 24px;

}

.u_d285de h3 {

  font-size: 1.5rem;

  font-weight: 600;

  color: var(--accent);

  margin-top: 28px;

  margin-bottom: 8px;

  letter-spacing: -0.3px;

}



.u_d285de p,

.u_d285de ul,

.u_d285de ol,

.u_d285de table {

  font-size: 1.17rem;

  color: var(--dark-default);

  margin: 0 0 16px 0;

}



.u_d285de ul, .u_d285de ol {

  padding-left: 24px;

  margin-bottom: 18px;

}

.u_d285de ul li,

.u_d285de ol li {

  margin-bottom: 6px;

  list-style-position: inside;

}



.u_d285de a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

  font-weight: 600;

}

.u_d285de a:hover {

  color: var(--primary-hover);

}



.u_d285de table {

  width: 100%;

  border-collapse: collapse;

  background: var(--background);

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.u_d285de th,

.u_d285de td {

  border: 1px solid var(--accent-secondary);

  padding: 8px 16px;

  text-align: left;

}

.u_d285de thead {

  background: var(--accent-transparent);

  color: var(--dark);

}



.u_d285de b,

.u_d285de strong {

  color: var(--accent);

  font-weight: 700;

}



.u_d285de i,

.u_d285de em {

  color: var(--primary-hover);

}





.u_758c2f {

  position: fixed;

  left: 0;

  right: 0;

  bottom: 32px;

  margin: 0 auto;

  display: flex;

  justify-content: center;

  z-index: 10;

  width: max-content;

  padding: 0;

  pointer-events: all;

  background: none;

}

.u_758c2f:focus {

  outline: none;

}

.u_758c2f > * {

  pointer-events: none;

}

.u_758c2f {

  background: var(--primary);

  color: var(--light);

  font-family: inherit;

  font-size: 1.28rem;

  font-weight: 700;

  padding: 18px 44px;

  border: none;

  border-radius: var(--radius);

  box-shadow: 0 4px 36px -6px var(--primary-hover), var(--shadow);

  cursor: pointer;

  transition: var(--transition), box-shadow 0.19s;

  box-sizing: border-box;

  min-width: 0;

  text-decoration: none;

  text-align: center;

  letter-spacing: 0.08em;

  will-change: transform, box-shadow;

}

.u_758c2f:hover, .u_758c2f:focus-visible {

  background: var(--primary-hover);

  transform: translateY(-3px) scale(1.025);

  box-shadow: 0 8px 48px -8px var(--primary-hover), var(--shadow);

}

@media (min-width: 1025px) {

  .u_758c2f {

    display: none !important;

  }

}



@media (max-width: 1024px) {

  .u_f79701 {

    padding: 32px 18px 70px 18px;

    max-width: 92vw;

    margin: 6vh auto 0 auto;

  }

  .u_d285de h2 {

    font-size: 2.1rem;

    margin-bottom: 18px;

  }

  .u_758c2f {

    padding: 16px 28px;

    font-size: 1rem;

    bottom: 16px;

  }

}

@media (max-width: 768px) {

  .u_345817 {

    min-height: 90vh;

  }

  .u_f79701 {

    padding: 24px 6vw 58px 6vw;

    margin: 4vh auto 0 auto;

    max-width: 98vw;

  }

  .u_d285de h2 {

    font-size: 1.48rem;

    margin-bottom: 14px;

  }

  .u_758c2f {

    bottom: 8px;

    padding: 14px 15vw;

    font-size: 0.96rem;

    width: 90vw;

    left: 50%;

    transform: translateX(-50%);

    border-radius: calc(var(--radius) + 6px);

    box-shadow: 0 4px 24px -8px var(--primary-hover), var(--shadow);

  }

}

@media (max-width: 480px) {

  .u_f79701 {

    padding: 18px 3vw 48px 3vw;

  }

  .u_758c2f {

    font-size: 0.95rem;

    padding: 13px 8vw;

    width: 94vw;

    left: 50%;

    transform: translateX(-50%);

  }

}





body, .u_345817 {

  overflow-x: hidden;

}

/* BODY1 */
.u_0db102 {

  position: relative;

  width: 100vw;

  max-width: 100%;

  min-height: 100vh;

  overflow-x: hidden;

  box-sizing: border-box;

  background: var(--background);

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

}



.u_636fa7 {

  position: absolute;

  inset: 0;

  z-index: 1;

  width: 100%;

  height: 100%;

  pointer-events: none;

  user-select: none;

}

.u_636fa7 img, 

.u_636fa7 > * {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  max-width: 100vw;

}





.u_9b0127 {

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  min-height: 70vh;

  width: 100%;

  padding: 0;

  z-index: 2;

}



.u_7ae04e {

  backdrop-filter: blur(0.5px);

  background: rgba(255, 255, 255, 0.56);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  max-width: 1200px;

  width: 100%;

  margin: 10vh auto 0 auto;

  padding: 48px 40px 80px 40px;

  transition: var(--transition);

  display: flex;

  flex-direction: column;

  align-items: center;

  animation: heroFadeInSlide 1.2s cubic-bezier(0.39, 0, 0.17, 0.99) both;

  box-sizing: border-box;

  min-width: 0;

}



@keyframes heroFadeInSlide {

  from {

    opacity: 0;

    transform: translateY(48px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



.u_ba82e1 {

  width: 100%;

  color: var(--dark);

  display: flex;

  flex-direction: column;

  gap: 24px;

}

.u_ba82e1 .u_911853 {

  width: 100%;

}

.u_ba82e1 h2 {

  font-family: 'Inter', 'Montserrat', 'Segoe UI', Arial, sans-serif;

  font-size: 3rem;

  font-weight: 800;

  line-height: 1.1;

  color: var(--primary);

  letter-spacing: -1.5px;

  margin-bottom: 24px;

}

.u_ba82e1 h3 {

  font-size: 1.5rem;

  font-weight: 600;

  color: var(--accent);

  margin-top: 28px;

  margin-bottom: 8px;

  letter-spacing: -0.3px;

}



.u_ba82e1 p,

.u_ba82e1 ul,

.u_ba82e1 ol,

.u_ba82e1 table {

  font-size: 1.17rem;

  color: var(--dark-default);

  margin: 0 0 16px 0;

}



.u_ba82e1 ul, .u_ba82e1 ol {

  padding-left: 24px;

  margin-bottom: 18px;

}

.u_ba82e1 ul li,

.u_ba82e1 ol li {

  margin-bottom: 6px;

  list-style-position: inside;

}



.u_ba82e1 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

  font-weight: 600;

}

.u_ba82e1 a:hover {

  color: var(--primary-hover);

}



.u_ba82e1 table {

  width: 100%;

  border-collapse: collapse;

  background: var(--background);

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.u_ba82e1 th,

.u_ba82e1 td {

  border: 1px solid var(--accent-secondary);

  padding: 8px 16px;

  text-align: left;

}

.u_ba82e1 thead {

  background: var(--accent-transparent);

  color: var(--dark);

}



.u_ba82e1 b,

.u_ba82e1 strong {

  color: var(--accent);

  font-weight: 700;

}



.u_ba82e1 i,

.u_ba82e1 em {

  color: var(--primary-hover);

}





.u_c751d0 {

  position: fixed;

  left: 0;

  right: 0;

  bottom: 32px;

  margin: 0 auto;

  display: flex;

  justify-content: center;

  z-index: 10;

  width: max-content;

  padding: 0;

  pointer-events: all;

  background: none;

}

.u_c751d0:focus {

  outline: none;

}

.u_c751d0 > * {

  pointer-events: none;

}

.u_c751d0 {

  background: var(--primary);

  color: var(--light);

  font-family: inherit;

  font-size: 1.28rem;

  font-weight: 700;

  padding: 18px 44px;

  border: none;

  border-radius: var(--radius);

  box-shadow: 0 4px 36px -6px var(--primary-hover), var(--shadow);

  cursor: pointer;

  transition: var(--transition), box-shadow 0.19s;

  box-sizing: border-box;

  min-width: 0;

  text-decoration: none;

  text-align: center;

  letter-spacing: 0.08em;

  will-change: transform, box-shadow;

}

.u_c751d0:hover, .u_c751d0:focus-visible {

  background: var(--primary-hover);

  transform: translateY(-3px) scale(1.025);

  box-shadow: 0 8px 48px -8px var(--primary-hover), var(--shadow);

}

@media (min-width: 1025px) {

  .u_c751d0 {

    display: none !important;

  }

}



@media (max-width: 1024px) {

  .u_7ae04e {

    padding: 32px 18px 70px 18px;

    max-width: 92vw;

    margin: 6vh auto 0 auto;

  }

  .u_ba82e1 h2 {

    font-size: 2.1rem;

    margin-bottom: 18px;

  }

  .u_c751d0 {

    padding: 16px 28px;

    font-size: 1rem;

    bottom: 16px;

  }

}

@media (max-width: 768px) {

  .u_0db102 {

    min-height: 90vh;

  }

  .u_7ae04e {

    padding: 24px 6vw 58px 6vw;

    margin: 4vh auto 0 auto;

    max-width: 98vw;

  }

  .u_ba82e1 h2 {

    font-size: 1.48rem;

    margin-bottom: 14px;

  }

  .u_c751d0 {

    bottom: 8px;

    padding: 14px 15vw;

    font-size: 0.96rem;

    width: 90vw;

    left: 50%;

    transform: translateX(-50%);

    border-radius: calc(var(--radius) + 6px);

    box-shadow: 0 4px 24px -8px var(--primary-hover), var(--shadow);

  }

}

@media (max-width: 480px) {

  .u_7ae04e {

    padding: 18px 3vw 48px 3vw;

  }

  .u_c751d0 {

    font-size: 0.95rem;

    padding: 13px 8vw;

    width: 94vw;

    left: 50%;

    transform: translateX(-50%);

  }

}





body, .u_0db102 {

  overflow-x: hidden;

}

/* BODY2 */
.u_ddb50b {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: var(--section-gap) var(--page-gap);
  display: flex;
  justify-content: center;
  background: var(--background);
}

.u_ddb50b * {
  box-sizing: border-box;
  max-width: 100%;
}

.u_4ecb8c {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  overflow-x: hidden;
}

.u_8c070d {
  position: relative;
  width: 100%;
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--dark);
}

.u_8c070d img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.u_b041ec {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 10%, var(--accent-transparent), transparent 55%), linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.15));
  pointer-events: none;
  backdrop-filter: blur(0.5px);
}

.u_9d6c22 {
  position: absolute;
  bottom: var(--page-gap);
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 520px);
  background: rgba(255,255,255,0.94);
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow);
  padding: 20px 24px 18px;
  display: grid;
  grid-auto-flow: row;
  row-gap: 16px;
  align-items: start;
}

.u_861108 {
  color: var(--dark-default);
}

.u_861108 h1,
.u_861108 h2,
.u_861108 h3 {
  color: var(--dark);
  margin: 0 0 8px;
}

.u_861108 p {
  color: var(--dark-default);
  margin: 0 0 8px;
  line-height: 1.5;
}

.u_861108 ul,
.u_861108 ol {
  margin: 0 0 8px 18px;
  padding: 0;
  color: var(--dark-default);
}

.u_861108 li {
  margin-bottom: 4px;
}

.u_861108 a {
  color: var(--accent);
  text-decoration: underline;
  transition: var(--transition);
}

.u_861108 a:hover {
  color: var(--accent-hover);
}

.u_861108 table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  overflow-x: auto;
  display: block;
}

.u_861108 thead {
  background: var(--accent-transparent);
}

.u_861108 td,
.u_861108 th {
  padding: 8px 10px;
  border-bottom: 1px solid var(--accent-transparent);
  color: var(--dark-default);
}

.u_f73a57 {
  display: inline-block;
  width: auto;
  max-width: max-content;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
  transition: var(--transition);
  transform: translateY(0);
}

.u_f73a57:hover {
  background: var(--primary-hover);
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.u_9682f2 {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dark-muted);
}

@media (max-width: 1024px) {
  .u_ddb50b {
    padding: var(--section-gap) var(--page-gap-reduced);
  }
  .u_9d6c22 {
    width: min(94%, 520px);
    padding: 18px 18px 14px;
    row-gap: 12px;
  }
}

@media (max-width: 768px) {
  .u_ddb50b {
    padding: var(--section-gap) var(--page-gap-reduced);
  }
  .u_8c070d {
    border-radius: calc(var(--radius) * 1.5);
  }
  .u_9d6c22 {
    position: static;
    transform: none;
    margin: 12px auto 0;
    background: var(--light);
  }
  .u_b041ec {
    background: linear-gradient(160deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 45%, transparent 100%);
  }
  .u_f73a57 {
    justify-self: flex-start;
  }
}