/* 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: color32 */
:root {
    --primary: #6b705c;
    --primary-hover: #7f8570;
    --accent: #b5838d;
    --accent-hover: #c79aa2;
    --accent-secondary: #d8b3ba;
    --accent-transparent: rgba(181,131,141,0.3);
    --background: #f8f7f4;
    --header: #ffffff;
    --shadow: 2px 2px 10px rgba(0,0,0,0.22);
    --page-gap: 20px;
    --page-gap-reduced: calc(var(--page-gap) / 2);
    --section-gap: 30px;
    --dark: #202020;
    --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;
  width: 100%;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", Arial, sans-serif;

  color: var(--light);
  overflow-x: hidden;
}

.u_5dc8c8 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--header);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.u_7e09f7 {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px var(--page-gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.u_b34cbb {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.u_477f40 {
  display: block;
  height: auto;
  max-width: 140px;
}

.u_46ada1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.u_e947f1 {
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  line-height: 1.3;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.u_9b957a {
  background: var(--primary);
  color: var(--light);
  border-color: transparent;
  box-shadow: 0 0 0 0 rgba(0,0,0,0.3);
}

.u_9b957a:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

.u_4ac5c6 {
  background: transparent;
  color: var(--accent);
  border-color: rgba(0,0,0,0.12);
}

.u_4ac5c6:hover {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.25);
  transform: translateY(-1px);
}

/* Hero layout */

.u_35e694 {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at 10% -10%, rgba(255,255,255,0.15), transparent 55%), radial-gradient(circle at 90% 120%, rgba(255,255,255,0.1), transparent 55%), #000000;
  padding-top: 68px;
  color: var(--light);
  overflow: hidden;
}

.u_216eac {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#particleCanvas,
#flareCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.u_8a9727 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -120px;
  width: 100%;
  height: 420px;
  opacity: 0.7;
}

.u_a26abb {
  transform-origin: center;
}

.u_fd2ab7 {
  animation: waveFloat1 18s ease-in-out infinite alternate;
}

.u_a8d059 {
  animation: waveFloat2 22s ease-in-out infinite alternate;
}

.u_6143d9 {
  animation: waveFloat3 26s ease-in-out infinite alternate;
}

/* Parallax & image layer */

.u_7db24b {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 52px var(--page-gap) 80px;
}

.u_4ac737 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.u_e5be65 {
  position: absolute;
  right: -12%;
  top: 8%;
  width: 58%;
  max-width: 720px;
  min-width: 280px;
  transform-origin: center;
  will-change: transform;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.75);
}

.u_e5be65 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.1);
}

.u_a1470e {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.12), transparent 55%), linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.35));
  mix-blend-mode: soft-light;
  z-index: 2;
  pointer-events: none;
}

/* Hero content */

.u_56de62 {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 42px;
  position: relative;
}

.u_059a01 {
  max-width: 520px;
  transform: translateY(18px);
  opacity: 0;
  animation: heroFadeUp 900ms ease-out 120ms forwards;
}

.u_ebe70c {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: 14px;
}

.u_470128 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--light);
}

.u_142964 {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
}

.u_df3644 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.u_96b214 {
  border-radius: 999px;
  padding: 11px 24px;
  font-size: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.u_ca0f3e {
  background: var(--primary);
  color: var(--light);
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
}

.u_ca0f3e:hover {
  background: var(--primary-hover);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 22px 60px rgba(0,0,0,0.7);
}

.u_b6a059 {
  background: transparent;
  color: var(--accent-secondary);
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.u_b6a059:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

/* Right panel */

.u_e0f113 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.u_778c43 {
  position: relative;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.16), transparent 52%), linear-gradient(145deg, rgba(9,9,12,0.9), rgba(14,14,18,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 55px rgba(0,0,0,0.9);
  overflow: hidden;
}

.u_778c43::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 10% 0%, rgba(255,255,255,0.16), transparent 60%);
  opacity: 0.4;
  mix-blend-mode: screen;
  pointer-events: none;
}

.u_778c43::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.16);
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}

.u_71c7af {
  position: relative;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
}

.u_14cd4e {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.24);
  opacity: 0.8;
}

.u_3b8648 {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  opacity: 0;
  animation: avatarPulse 2200ms ease-out infinite;
}

.u_46e594 {
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.u_256445 {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 190deg, rgba(255,255,255,0.2), rgba(255,255,255,0.02), rgba(255,255,255,0.4), rgba(255,255,255,0.1));
  mix-blend-mode: screen;
}

.u_cc85ca {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--light);
}

.u_f8a027 {
  margin-left: 78px;
}

.u_e1a5c4 {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.u_9e4790 {
  font-size: 15px;
  font-weight: 600;
  color: var(--light);
}

.u_0407c5 {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #27ff81;
  box-shadow: 0 0 8px rgba(39,255,129,0.9);
  animation: statusBlink 1600ms ease-in-out infinite;
}

.u_ca38d9 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255,255,255,0.65);
}

.u_75486a {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}

.u_49f7c3 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

.u_49f7c3 li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.u_49f7c3 .u_41c157 {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
}

/* live matches panel */

.u_073e0c {
  position: relative;
  padding: 11px 14px 10px;
  border-radius: 14px;
  background: linear-gradient(130deg, rgba(15,15,20,0.95), rgba(10,10,15,0.9));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 14px 36px rgba(0,0,0,0.75);
  overflow: hidden;
}

.u_073e0c::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 80% 0%, rgba(255,255,255,0.22), transparent 60%);
  opacity: 0.45;
  mix-blend-mode: screen;
  pointer-events: none;
}

.u_1d23f0 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.u_971cd3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6);
}

.u_82a085 {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff427f;
  box-shadow: 0 0 10px rgba(255,66,127,0.9);
  animation: panelGlow 1800ms ease-in-out infinite;
}

.u_34d8a9 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}

.u_a6a788 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.u_eb43b7 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.u_a153ea {
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 10%, #ffe892, #ff6b9c);
  box-shadow: 0 0 8px rgba(255,104,158,0.7);
  border: 1px solid rgba(255,255,255,0.6);
}

.u_e7947b {
  margin-left: -7px;
  background: radial-gradient(circle at 20% 0%, #96f0ff, #6f7bff);
}

.u_5a443a {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.u_4aeda1 {
  font-weight: 500;
}

.u_644939 {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

/* Animations */

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes waveFloat1 {
  0% {
    transform: translateY(10px) scaleY(1);
  }
  100% {
    transform: translateY(-12px) scaleY(0.98);
  }
}

@keyframes waveFloat2 {
  0% {
    transform: translateY(24px) translateX(-10px) scaleY(1.02);
  }
  100% {
    transform: translateY(-20px) translateX(6px) scaleY(0.96);
  }
}

@keyframes waveFloat3 {
  0% {
    transform: translateY(32px) scaleY(1);
  }
  100% {
    transform: translateY(-18px) scaleY(1.04);
  }
}

@keyframes avatarPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes statusBlink {
  0%,
  40%,
  100% {
    opacity: 1;
  }
  60% {
    opacity: 0.4;
  }
}

@keyframes panelGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(255,66,127,0.7);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 18px rgba(255,66,127,1);
    transform: scale(1.12);
  }
}

/* Responsive */

@media (max-width: 1024px) {
  .u_7e09f7 {
    padding-inline: var(--page-gap-reduced);
  }

  .u_7db24b {
    padding-inline: var(--page-gap-reduced);
  }

  .u_56de62 {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
    gap: 32px;
  }

  .u_e5be65 {
    right: -6%;
    top: 10%;
    width: 68%;
    border-radius: 32px;
  }
}

@media (max-width: 768px) {
  .u_7e09f7 {
    padding: 12px var(--page-gap-reduced);
  }

  .u_477f40 {
    max-width: 120px;
  }

  .u_46ada1 {
    justify-content: flex-end;
    gap: 6px;
  }

  .u_e947f1 {
    padding-inline: 14px;
    font-size: 12px;
  }

  .u_35e694 {
    padding-top: 62px;
  }

  .u_7db24b {
    padding: 32px var(--page-gap-reduced) 52px;
  }

  .u_56de62 {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .u_059a01 {
    max-width: 100%;
  }

  .u_470128 {
    font-size: clamp(26px, 8vw, 32px);
  }

  .u_142964 {
    font-size: 14px;
  }

  .u_df3644 {
    gap: 8px;
  }

  .u_96b214 {
    padding-inline: 18px;
    width: auto;
  }

  .u_e0f113 {
    flex-direction: row;
    align-items: stretch;
  }

  .u_778c43,
  .u_073e0c {
    flex: 1 1 0;
  }

  .u_778c43 {
    padding: 14px;
  }

  .u_f8a027 {
    margin-left: 70px;
  }

  .u_4ac737 {
    position: absolute;
    inset: auto 0 0;
    top: auto;
    height: 54vh;
    max-height: 420px;
  }

  .u_e5be65 {
    position: absolute;
    left: 50%;
    top: 8%;
    transform: translateX(-50%);
    width: 88%;
    border-radius: 26px;
  }

  .u_e5be65 img {
    transform: scale(1.04);
  }
}

@media (max-width: 560px) {
  .u_46ada1 {
    gap: 4px;
  }

  .u_4ac5c6 {
    display: none;
  }

  .u_e0f113 {
    flex-direction: column;
  }

  .u_778c43,
  .u_073e0c {
    flex: none;
  }

  .u_778c43 {
    order: 2;
  }

  .u_073e0c {
    order: 1;
  }

  .u_7db24b {
    padding-bottom: 46px;
  }
}

/* Parallax safety on very small screens */

@media (max-width: 400px) {
  .u_4ac737 {
    opacity: 0.8;
  }
}

/* LINKS */
.u_3acad4 {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-gap);
  box-sizing: border-box;
}

.u_b6eccd {
  position: relative;
  box-sizing: border-box;
  color: var(--light);
}

.u_bfd8d7 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 24px;
  box-sizing: border-box;
}

.u_1b58f1 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.u_026e66 {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.8;
}

.u_0694fa {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.u_0694fa li {
  box-sizing: border-box;
}

.u_0694fa a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: radial-gradient(circle at top left, var(--accent) 0%, var(--primary) 40%, var(--dark) 100%);
  color: var(--light);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
  transform-origin: center;
  transform: translateY(0) scale(1);
  transition:
    background var(--transition),
    color var(--transition),
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    opacity 220ms ease-out;
  box-sizing: border-box;
  will-change: transform, box-shadow, opacity;
}

.u_0694fa a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--light);
  opacity: 0.8;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.18),
    0 0 12px rgba(255, 255, 255, 0.7);
  transform: scale(0.8);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, opacity 200ms ease-out;
}

.u_0694fa a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.0;
  pointer-events: none;
  transition: opacity 220ms ease-out, transform 220ms ease-out;
  transform: scale(0.96);
}

.u_0694fa a:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.u_0694fa a:hover::before {
  transform: scale(1);
  opacity: 1;
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.28),
    0 0 16px rgba(255, 255, 255, 0.9);
}

.u_0694fa a:hover::after {
  opacity: 1;
  transform: scale(1);
}

.u_0694fa a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.u_0694fa li:nth-child(3n) a {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.u_0694fa li:nth-child(4n) a {
  background: linear-gradient(135deg, var(--dark), var(--primary));
}

.u_0694fa li:nth-child(5n) a {
  background: linear-gradient(135deg, var(--accent), var(--dark));
}

.u_0694fa li:nth-child(odd) a {
  animation: links-block-aurora92-fadeSlide 1200ms ease-out both;
}

.u_0694fa li:nth-child(even) a {
  animation: links-block-aurora92-fadeScale 1200ms ease-out both;
}

.u_0694fa li:nth-child(1) a { animation-delay: 40ms; }
.u_0694fa li:nth-child(2) a { animation-delay: 80ms; }
.u_0694fa li:nth-child(3) a { animation-delay: 120ms; }
.u_0694fa li:nth-child(4) a { animation-delay: 160ms; }
.u_0694fa li:nth-child(5) a { animation-delay: 200ms; }
.u_0694fa li:nth-child(6) a { animation-delay: 240ms; }
.u_0694fa li:nth-child(7) a { animation-delay: 280ms; }
.u_0694fa li:nth-child(8) a { animation-delay: 320ms; }
.u_0694fa li:nth-child(9) a { animation-delay: 360ms; }
.u_0694fa li:nth-child(10) a { animation-delay: 400ms; }
.u_0694fa li:nth-child(11) a { animation-delay: 440ms; }
.u_0694fa li:nth-child(12) a { animation-delay: 480ms; }
.u_0694fa li:nth-child(13) a { animation-delay: 520ms; }
.u_0694fa li:nth-child(14) a { animation-delay: 560ms; }
.u_0694fa li:nth-child(15) a { animation-delay: 600ms; }
.u_0694fa li:nth-child(16) a { animation-delay: 640ms; }
.u_0694fa li:nth-child(17) a { animation-delay: 680ms; }
.u_0694fa li:nth-child(18) a { animation-delay: 720ms; }
.u_0694fa li:nth-child(19) a { animation-delay: 760ms; }
.u_0694fa li:nth-child(20) a { animation-delay: 800ms; }

@keyframes links-block-aurora92-fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  60% {
    opacity: 1;
    transform: translateY(-2px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes links-block-aurora92-fadeScale {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }
  70% {
    opacity: 1;
    transform: translateY(-1px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .u_3acad4 {
    padding: calc(var(--section-gap) * 0.75);
  }

  .u_bfd8d7 {
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .u_1b58f1 {
    font-size: 1.4rem;
  }

  .u_026e66 {
    font-size: 0.9rem;
  }

  .u_0694fa {
    gap: 10px;
  }

  .u_0694fa li {
    width: 100%;
  }

  .u_0694fa a {
    width: 100%;
    display: block;
    text-align: center;
    white-space: normal;
    padding: 12px 16px;
    margin: 2px 0;
  }
}

/* FOOTER */
.u_f323d3 {
  background: var(--header);
  box-shadow: 0 -8px 24px var(--shadow);
  padding: calc(var(--section-gap) * 0.8) var(--page-gap);
}

.u_75a6b9 {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--page-gap);
  flex-wrap: wrap;
  overflow-x: hidden;
}

.u_e728b1 {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.u_15be2f {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  gap: calc(var(--page-gap) * 0.8);
  flex-wrap: wrap;
}

.u_c6e63b {
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--primary);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition), opacity var(--transition);
}

.u_c6e63b::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius);
  transition: width var(--transition), background var(--transition);
}

.u_c6e63b:hover {
  color: var(--primary-hover);
  opacity: 0.9;
}

.u_c6e63b:hover::after {
  width: 100%;
  background: var(--accent);
}

.u_022485 {
  flex: 0 0 auto;
  text-align: right;
}

.u_022485 p {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--primary);
  opacity: 0.9;
}

/* Tablet */
@media (max-width: 992px) {
  .u_75a6b9 {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .u_15be2f {
    order: 2;
    justify-content: center;
  }

  .u_e728b1 {
    order: 1;
    justify-content: center;
  }

  .u_022485 {
    order: 3;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .u_f323d3 {
    padding: calc(var(--section-gap) * 0.7) var(--page-gap-reduced);
  }

  .u_75a6b9 {
    gap: calc(var(--page-gap-reduced) * 0.8);
  }

  .u_15be2f {
    flex-direction: column;
    gap: 0.4rem;
  }

  .u_c6e63b {
    font-size: 0.9rem;
  }

  .u_022485 p {
    font-size: 0.85rem;
  }
}

/* BODY */
.u_ed63d9 {

  box-sizing: border-box;

  width: 100%;

  min-height: 100vh;

  position: relative;

  overflow-x: hidden;

  background: var(--dark);

  display: flex;

  justify-content: center;

  align-items: center;

  padding: var(--section-gap) 0;

}



.u_6235fa {

  position: relative;

  width: 100%;

  max-width: 1024px;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  align-items: center;

  z-index: 1;

  box-sizing: border-box;

}



.u_a3beb1 {

  position: relative;

  width: 100%;

  max-width: 1024px;

  max-height: 640px;

  min-height: 320px;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  border-radius: var(--radius);

  box-shadow: 0 0 40px 2px var(--primary), 0 2px 24px var(--shadow);

  margin-bottom: -16vh;

  z-index: 0;

}



.u_a3beb1 > *:first-child {

  display: block;

  width: 100%;

  height: auto;

  min-height: 320px;

  object-fit: cover;

  border-radius: var(--radius);

}



.u_ceec11 {

  position: absolute;

  inset: 0;

  background: linear-gradient(120deg, rgba(10,0,93,0.50) 0%, rgba(149,24,48, 0.35) 50%, rgba(0,0,0, 0.85) 100%);

  pointer-events: none;

  z-index: 1;

  box-shadow: 0 0 80px 32px var(--accent-transparent) inset;

  backdrop-filter: blur(0.5px);

  border-radius: var(--radius);

}



.u_2193ab {

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  margin-top: -20vh;

  padding: 3.5vw 8vw 4vw 8vw;

  min-width: 0;

  max-width: 90%;

  background: rgba(25,7,50,0.75);

  border-radius: calc(var(--radius) * 2);

  box-shadow: 0 0 32px 0 var(--primary-hover), 0 2px 24px var(--shadow);

  backdrop-filter: blur(0.5px);

}



.u_92db95 {

  color: var(--light);

  text-align: center;

  font-size: 1.24rem;

  font-weight: 400;

  letter-spacing: 0.01em;

  margin-bottom: 1.9rem;

  line-height: 1.7;

  width: 100%;

  

}

.u_92db95 h2,

.u_92db95 h3 {

  color: var(--light);

  font-weight: 700;

  margin: 0 0 0.6em;

  letter-spacing: 0.02em;

  text-shadow: 0 0 8px var(--primary), 0 2px 10px var(--accent-transparent);

}

.u_92db95 h2 {

  font-size: 2.2rem;

  line-height: 1.2;

}

.u_92db95 h3 {

  font-size: 1.4rem;

  line-height: 1.3;

}

.u_92db95 p {

  margin: 0 0 1em 0;

  color: var(--light);

  opacity: 0.92;

  font-size: 1.08rem;

}

.u_92db95 ul,

.u_92db95 ol {

  margin: 1em auto 1.5em 2em;

  padding-left: 1.4em;

  color: var(--light);

  font-size: 1.08rem;

}

.u_92db95 li {

  margin-bottom: 0.45em;

  position: relative;

}

.u_92db95 ul li::before {

  content: "";

  display: inline-block;

  vertical-align: middle;

  width: 0.55em;

  height: 0.55em;

  margin-right: 0.6em;

  border-radius: 50%;

  background: radial-gradient(circle, var(--accent) 0%, var(--primary) 100%);

  box-shadow: 0 0 8px 2px var(--primary);

}

.u_92db95 ol {

  list-style-type: decimal;

}

.u_92db95 b, 

.u_92db95 strong {

  color: var(--accent);

  font-weight: 600;

  text-shadow: 0 0 6px var(--primary-hover);

}

.u_92db95 i,

.u_92db95 em {

  color: var(--accent-secondary, var(--accent));

}

.u_92db95 a {

  color: var(--accent-secondary, var(--accent));

  transition: color 0.2s;

  text-decoration: underline;

  text-underline-offset: 2px;

  font-weight: 500;

}

.u_92db95 a:hover {

  color: var(--primary-hover);

  text-shadow: 0 0 8px var(--accent);

}

.u_92db95 table {

  width: 100%;

  overflow-x: auto;

  border-collapse: separate;

  border-spacing: 0;

  background: rgba(0,0,0,0.26);

  border-radius: var(--radius);

  margin: 1.1em 0;

  box-shadow: 0 2px 12px 0 var(--shadow);

}

.u_92db95 th,

.u_92db95 td {

  padding: 0.6em 1em;

  border: 1px solid var(--accent-transparent);

  color: var(--light);

  text-align: center;

  font-size: 1rem;

}

.u_92db95 th {

  font-weight: 700;

  background: var(--accent-transparent);

  color: var(--light);

}

.u_92db95 tr:nth-child(even) td {

  background: rgba(171,161,251,0.09);

}





.u_a0f3a7.u_ccb35a {

  display: inline-block;

  font-weight: 700;

  font-size: 1.10rem;

  padding: 14px 38px;

  margin-top: 0.7rem;

  color: var(--light);

  background: radial-gradient(circle at 50% 45%, var(--primary) 0%, var(--accent) 90%);

  border: none;

  border-radius: 32px;

  box-shadow:

    0 2px 24px 0 var(--accent),

    0 0 16px 2px var(--primary-hover),

    0 0 32px 4px var(--accent-transparent);

  cursor: pointer;

  transition: 

    background 0.27s var(--transition),

    box-shadow 0.30s cubic-bezier(.24,0,.12,1),

    transform 0.21s cubic-bezier(.40,.25,.27,1);

  outline: none;

  text-shadow: 0 0 12px var(--primary-hover);

  letter-spacing: 0.07em;

  position: relative;

}



.u_a0f3a7.u_ccb35a:hover,

.u_a0f3a7.u_ccb35a:focus {

  background: radial-gradient(circle at 60% 40%, var(--primary-hover) 10%, var(--accent) 90%);

  box-shadow:

    0 4px 36px 0 var(--primary-hover),

    0 0 28px 6px var(--accent-hover),

    0 0 40px 10px var(--accent-transparent);

  transform: translateY(-3px) scale(1.028);

  filter: brightness(1.07);

  outline: none;

}



.u_a0f3a7.u_ccb35a:active {

  transform: scale(0.98);

  filter: brightness(0.97);

}





@media (max-width: 1024px) {

  .u_ed63d9 {

    min-height: 80vh;

    padding: var(--page-gap);

  }

  .u_a3beb1 {

    max-height: 340px;

    margin-bottom: -70px;

  }

  .u_2193ab {

    margin-top: -8vh;

    padding: 6vw 4vw 7vw 4vw;

    max-width: 98%;

  }

}

@media (max-width: 768px) {

  .u_ed63d9 {

    padding: var(--page-gap-reduced);

    min-height: 60vh;

  }

  .u_6235fa {

    max-width: 98vw;

    padding: 0;

  }

  .u_a3beb1 {

    max-width: 98vw;

    max-height: 180px;

    min-height: 120px;

    margin-bottom: -28vw;

  }

  .u_2193ab {

    margin-top: -13vw;

    padding: 7vw 4vw 7vw 4vw;

    font-size: 0.99rem;

    min-width: 0;

    max-width: 100vw;

    border-radius: var(--radius);

  }

  .u_92db95 {

    font-size: 1rem;

  }

  .u_a0f3a7.u_ccb35a {

    font-size: 1rem;

    padding: 12px 26px;

  }

}

@media (max-width: 480px) {

  .u_ed63d9 {

    padding: var(--page-gap-reduced) 0;

  }

  .u_a3beb1 {

    max-width: 100vw;

    max-height: 110px;

    min-height: 60px;

    margin-bottom: -17vw;

  }

  .u_2193ab {

    margin-top: -14vw;

    padding: 12vw 4vw 12vw 4vw;

    border-radius: var(--radius);

  }

  .u_92db95 {

    font-size: 0.93rem;

    padding: 0;

  }

}

/* BODY1 */
.u_5542b7 {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: var(--section-gap) var(--page-gap);
  background: var(--background);
  color: var(--dark);
}
.u_5542b7 * {
  box-sizing: border-box;
  max-width: 100%;
}
.u_afe5ea {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}
.content-heroImage--flareFrame702 {
  position: relative;
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.content-heroImage--flareFrame702 img {
  display: block;
  width: 100%;
  height: auto;
}
.content-heroOverlay--flareFrame702 {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--accent-transparent), rgba(0,0,0,0.25));
  backdrop-filter: blur(0.5px);
}
.content-heroBadge--flareFrame702 {
  position: absolute;
  left: var(--page-gap);
  bottom: var(--page-gap);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--light);
  font-size: 12px;
  box-shadow: var(--shadow);
}
.content-heroBadge-dot--flareFrame702 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(149, 24, 48, 0.25);
}
.content-heroBadge-text--flareFrame702 {
  white-space: nowrap;
}
.u_c671f4 {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: calc(var(--section-gap) + 10px);
  align-items: center;
}
.u_91e27f {
  position: relative;
  align-self: stretch;
  display: flex;
  justify-content: center;
}
.u_91e27f::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  border-radius: calc(var(--radius) * 2);
  background: var(--accent-transparent);
  filter: blur(0.5px);
  z-index: 1;
}
.u_91e27f img {
  position: relative;
  z-index: 2;
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 100%;
  max-height: 420px;
}
.u_68a772 {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
  padding: calc(var(--page-gap) * 1.1);
  border-radius: calc(var(--radius) * 2);
  background: var(--header);
  box-shadow: var(--shadow);
}
.u_68a772 .u_097359 {
  color: var(--dark-default);
}
.u_68a772 .u_097359 h2,
.u_68a772 .u_097359 h3 {
  color: var(--dark);
  margin-top: 0;
}
.u_68a772 .u_097359 p {
  color: var(--dark-default);
  line-height: 1.6;
}
.u_68a772 .u_097359 ul,
.u_68a772 .u_097359 ol {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0.75rem;
  color: var(--dark-default);
}
.u_68a772 .u_097359 li {
  margin-bottom: 0.3rem;
}
.u_68a772 .u_097359 a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 0, 93, 0.3);
  transition: var(--transition);
}
.u_68a772 .u_097359 a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary-hover);
}
.u_68a772 .u_097359 table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
.u_68a772 .u_097359 thead {
  background: var(--accent-transparent);
}
.u_68a772 .u_097359 th,
.u_68a772 .u_097359 td {
  border: 1px solid rgba(0,0,0,0.08);
  padding: 8px 10px;
  text-align: left;
}
.u_68a772 .text-content-wrapperTable {
  width: 100%;
  overflow-x: auto;
}
.u_13ed1d {
  display: flex;
  flex-wrap: wrap;
  gap: var(--page-gap-reduced);
  align-items: center;
}
.u_73b5c3.u_7b3c50 {
  background: var(--primary);
  color: var(--light);
  padding: 12px 26px;
  border-radius: 999px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  transform-origin: center;
}
.u_73b5c3.u_7b3c50:hover {
  background: var(--primary-hover);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}
.u_73b5c3.u_7b3c50:active {
  transform: translateY(0) scale(0.99);
  box-shadow: var(--shadow);
}
.u_4b2067 {
  background: var(--light);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.u_4b2067:hover {
  background: var(--accent-transparent);
  color: var(--accent-hover);
  transform: translateY(-1px);
}
.u_4b2067:active {
  transform: translateY(0);
}
.u_af0492 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 4px;
}
.u_3d7f07 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dark-muted);
  font-size: 12px;
}
.u_42a359 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.u_8a03ea {
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .u_c671f4 {
    grid-template-columns: minmax(0, 1fr);
  }
  .u_91e27f {
    max-width: 380px;
    margin: 0 auto;
    order: -1;
  }
}
@media (max-width: 768px) {
  .u_5542b7 {
    padding: var(--section-gap) var(--page-gap-reduced);
  }
  .content-heroBadge--flareFrame702 {
    left: var(--page-gap-reduced);
    right: var(--page-gap-reduced);
    justify-content: center;
  }
  .content-heroBadge-text--flareFrame702 {
    white-space: normal;
    text-align: center;
  }
  .u_68a772 {
    padding: var(--page-gap);
  }
  .u_13ed1d {
    flex-direction: column;
    align-items: flex-start;
  }
  .u_73b5c3.u_7b3c50,
  .u_4b2067 {
    width: auto;
    max-width: 100%;
  }
  .u_af0492 {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .u_91e27f::before {
    inset: 12% 12%;
  }
  .u_91e27f img {
    max-height: 360px;
  }
}

/* BODY2 */
.u_2ff6ac {
  box-sizing: border-box;
  max-width: 100%;
  padding: var(--section-gap) var(--page-gap);
  overflow-x: hidden;
  background: var(--background);
  color: var(--dark-default);
}

.u_2ff6ac * {
  box-sizing: border-box;
}

.u_5da812 {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: calc(var(--section-gap) * 0.9);
  align-items: stretch;
}

.u_c3561b {
  position: relative;
  border-radius: calc(var(--radius) * 3);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
}

.u_c3561b img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.u_9dee06 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, var(--accent-transparent), transparent 55%), radial-gradient(circle at 80% 90%, rgba(0, 0, 0, 0.45), transparent 60%);
  pointer-events: none;
}

.u_300f35 {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 14px 18px;
  border-radius: calc(var(--radius) * 2);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(0.5px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.u_5ee855 {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-transparent);
  color: var(--light);
  font-size: 13px;
  font-weight: 600;
}

.u_af795d {
  color: var(--light);
  font-size: 13px;
  opacity: 0.9;
}

.u_2fbf24 {
  display: flex;
  align-items: center;
}

.u_9a18d5 {
  background: var(--header);
  border-radius: calc(var(--radius) * 3);
  box-shadow: var(--shadow);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.u_9a18d5 .u_bcc5e8 {
  color: var(--dark-default);
}

.u_9a18d5 .u_bcc5e8 h2,
.u_9a18d5 .u_bcc5e8 h3 {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 10px;
}

.u_9a18d5 .u_bcc5e8 p {
  margin: 0 0 10px;
  color: var(--dark-muted);
}

.u_9a18d5 .u_bcc5e8 ul,
.u_9a18d5 .u_bcc5e8 ol {
  padding-left: 20px;
  margin: 6px 0 10px;
  color: var(--dark-muted);
}

.u_9a18d5 .u_bcc5e8 li {
  margin-bottom: 4px;
}

.u_9a18d5 .u_bcc5e8 a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

.u_9a18d5 .u_bcc5e8 a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.u_9a18d5 .u_bcc5e8 table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.u_9a18d5 .u_bcc5e8 thead {
  background: var(--accent-transparent);
}

.u_9a18d5 .u_bcc5e8 td,
.u_9a18d5 .u_bcc5e8 th {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.u_9a18d5 .u_bcc5e8 .table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.u_ea1612 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

.u_a8e8d8.u_c447ab {
  background: var(--primary);
  color: var(--light);
  padding: 12px 26px;
  border-radius: calc(var(--radius) * 3);
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: none;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  transform-origin: center;
}

.u_a8e8d8.u_c447ab:hover {
  background: var(--primary-hover);
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.u_a8e8d8.u_c447ab:active {
  transform: translateY(0) scale(0.99);
  box-shadow: var(--shadow);
}

.u_f5e178 {
  background: transparent;
  color: var(--accent);
  border-radius: calc(var(--radius) * 3);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--accent-transparent);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.u_f5e178::after {
  content: "▶";
  font-size: 10px;
}

.u_f5e178:hover {
  background: var(--accent-transparent);
  color: var(--accent-hover);
  transform: translateY(-1px);
}

.u_f5e178:active {
  transform: translateY(0);
}

.u_c70a49 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 2px;
  color: var(--dark-muted);
  font-size: 12px;
}

.u_160f51 {
  white-space: nowrap;
}

.u_b3b9ca {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-secondary);
}

/* Lower content placeholder */

.content-placeholder-wrap412 {
  max-width: 1120px;
  margin: calc(var(--section-gap) * 0.9) auto 0;
}

.content-placeholder-inner412 {
  border-radius: calc(var(--radius) * 2);
  padding: 22px 24px;
  background: var(--accent-transparent);
  backdrop-filter: blur(0.5px);
  box-shadow: var(--shadow);
}

.content-placeholder-inner412 .u_bcc5e8 {
  color: var(--dark-default);
}

.content-placeholder-inner412 .u_bcc5e8 h2,
.content-placeholder-inner412 .u_bcc5e8 h3 {
  color: var(--accent);
  margin: 0 0 8px;
}

.content-placeholder-inner412 .u_bcc5e8 p {
  margin: 0 0 8px;
  color: var(--dark-muted);
}

.content-placeholder-inner412 .u_bcc5e8 ul,
.content-placeholder-inner412 .u_bcc5e8 ol {
  padding-left: 20px;
  margin: 4px 0 8px;
}

.content-placeholder-inner412 .u_bcc5e8 li {
  margin-bottom: 4px;
}

.content-placeholder-inner412 .u_bcc5e8 a {
  color: var(--accent);
  text-decoration: underline;
  transition: var(--transition);
}

.content-placeholder-inner412 .u_bcc5e8 a:hover {
  color: var(--accent-hover);
}

/* Responsive */

@media (max-width: 992px) {
  .u_5da812 {
    grid-template-columns: minmax(0, 1fr);
  }

  .u_c3561b {
    order: -1;
    min-height: 240px;
  }

  .u_9a18d5 {
    padding: 22px 20px 20px;
  }
}

@media (max-width: 768px) {
  .u_2ff6ac {
    padding: var(--section-gap) var(--page-gap-reduced);
  }

  .u_5da812 {
    gap: var(--section-gap);
  }

  .u_c3561b {
    border-radius: calc(var(--radius) * 2);
  }

  .u_300f35 {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 10px 12px;
  }

  .u_5ee855 {
    font-size: 12px;
    padding: 5px 12px;
  }

  .u_af795d {
    font-size: 12px;
  }

  .u_ea1612 {
    flex-direction: row;
    align-items: stretch;
  }

  .u_a8e8d8.u_c447ab,
  .u_f5e178 {
    font-size: 13px;
    padding-inline: 18px;
  }

  .u_c70a49 {
    font-size: 11px;
  }

  .content-placeholder-inner412 {
    padding: 18px 16px;
  }
}

@media (max-width: 540px) {
  .u_300f35 {
    flex-direction: column;
    align-items: flex-start;
  }

  .u_160f51 {
    white-space: normal;
  }

  .content-placeholder-inner412 .u_bcc5e8 table,
  .u_9a18d5 .u_bcc5e8 table {
    font-size: 13px;
  }
}