
:root {
  --bg: #061a28;
  --panel: #0f2132;
  --panel-soft: #102434;
  --text: #f0f2f7;
  --muted: #b7bfd0;
  --accent: #27e6a1;
  --accent-strong: #26d194;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --cta: #f43131;
  --cta-2: #ff1c1c;
  --panel-deep: #0b1f2d;
  --panel-table: #0b2230;
  --grad-top-1: #0a2a3e;
  --grad-top-2: #081f30;
  --grad-side-1: #0a2233;
  --grad-side-2: #0b1a28;
  --grad-nav-1: #0d2236;
  --grad-nav-2: #0c1c2c;
  --faq-1: #0f2537;
  --faq-2: #0a1c2a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at 12% 12%, rgba(40, 120, 175, 0.25), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(25, 230, 175, 0.2), transparent 35%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.page-y5ml5,
body {
  min-height: 100vh;
}

.page-y5ml5 {
  display: block;
}

.hero__eyebrow-y5ml5,
.sidebar__nav-y5ml5 {
  text-transform: uppercase;
  font-weight: 600;
}

.sidebar__close-y5ml5,
.sidebar__link-y5ml5,
body {
  color: var(--text);
}

.sidebar-y5ml5 {
  width: 280px;
  padding: 14px 24px;
  background: linear-gradient(180deg, var(--grad-side-1) 0%, var(--grad-side-2) 100%);
  border-right: 1px solid var(--line);
  position: fixed;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 30;
  transform: translateX(-110%);
  transition: transform 0.25s ease;
}

.page--menu-open .sidebar-y5ml5 {
  transform: translateX(0);
}

.sidebar__close-y5ml5 {
  display: none;
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.sidebar__brand-y5ml5 {
  display: flex;
  justify-content: center;
}

.sidebar__logo-y5ml5 {
  width: 160px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
}

.sidebar__actions-y5ml5 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar__nav-y5ml5 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

.sidebar__link-y5ml5 {
  text-decoration: none;
  font-size: 14px;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 6px 8px;
  border-radius: 10px;
}

.sidebar__link-y5ml5:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-bar,
.navigation--collapsed .navigation__panel-y5ml5 {
  display: none;
}

.content-wrapper-y5ml5 {
  margin: 0 auto;
  padding: 24px 48px 40px;
  width: 100%;
  max-width: 1200px;
}

.mobile-bar {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px;
  background: #1c1818;
  border-radius: 10px;
  margin-bottom: 10px;
  top: 16px;
  z-index: 5;
}

.burger-y5ml5,
.hero-y5ml5 {
  display: flex;
  flex-direction: column;
}

.burger-y5ml5 {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  justify-content: center;
  gap: 6px;
  padding: 10px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
}

.burger-y5ml5 span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
}

.mobile-bar__logo {
  width: 120px;
  height: 56px;
  object-fit: contain;
}

.mobile-bar__actions {
  display: flex;
  gap: 10px;
}

.hero-y5ml5 {
  gap: 10px;
}

.hero-y5ml5 h1 {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: 0.02em;
}

.hero__footer,
.hero__intro-y5ml5 p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 720px;
}

.hero__headline-y5ml5,
.navigation__link-y5ml5:hover,
.site-footer__links-y5ml5 button:hover {
  color: var(--accent);
}

.hero__card-y5ml5 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0b0d14;
  max-height: 500px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero__image-y5ml5 {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
  opacity: 0.7;
  margin: 10px 0;
}

.hero__image-reviews {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.7;
}

.hero__overlay-y5ml5 {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background-color: rgba(2, 12, 20, 0.9);
  padding: 24px;
  min-height: 250px;
}

.hero__eyebrow-y5ml5 {
  letter-spacing: 0.1em;
}

.hero__headline-y5ml5 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
}

.navigation-y5ml5 .section-title-y5ml5 {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.navigation-y5ml5 .section-title-y5ml5::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0.9;
}

h2 {
  color: #ffffff;
}

.navigation__toggle-y5ml5 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.navigation__icon-y5ml5 {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #77d9ff 0%, #3e6be5 55%, #4b3fb3 100%);
  position: relative;
  box-shadow: 0 4px 12px rgba(68, 120, 220, 0.45);
}

.navigation__icon-y5ml5::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: #7b3f92;
  right: -6px;
  bottom: -2px;
  transform: rotate(40deg);
}

.navigation__panel-y5ml5 {
  margin-top: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--grad-nav-1) 0%, var(--grad-nav-2) 100%);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 32px;
}

.navigation__link-y5ml5 {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.conclusion {
  margin: 20px 0;
}

.section-y5ml5 p {
  margin: 10px 0;
  line-height: 1.6;
}

.section-title-y5ml5 {
  position: relative;
  margin: 15px 0;
}

.faq-y5ml5::after,
.section-y5ml5 h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0.9;
}

.section-list {
  margin: 30px 0 25px 30px;
}

.section-list li {
  margin-bottom: 15px;
}

.faq-y5ml5 {
  position: relative;
  margin: 20px 0;
}

.faq-item-y5ml5 {
  background: linear-gradient(180deg, var(--faq-1) 0%, var(--faq-2) 100%);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 15px;
}

.faq-item-y5ml5 h3,
.faq-item-y5ml5 h4 {
  font-size: clamp(18px, 2.6vw, 22px);
  font-weight: 600;
  margin-bottom: 10px;
}

.btn-y5ml5,
.contacts__submit,
.site-footer__links-y5ml5 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-y5ml5 {
  font-family: inherit;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary-y5ml5 {
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-2) 100%);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 800;
}

.btn--ghost-y5ml5,
.site-footer__links-y5ml5 button {
  color: var(--text);
  text-decoration: none;
  background-color: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 500;
}

.btn--ghost-y5ml5 {
  background: transparent;
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.overlay-y5ml5 {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 12, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 20;
}

.page--menu-open .overlay-y5ml5 {
  opacity: 1;
  pointer-events: all;
}

.topbar-y5ml5 {
  position: sticky;
  top: 0;
  z-index: 25;
  background: linear-gradient(180deg, var(--grad-top-1) 0%, var(--grad-top-2) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__row-y5ml5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
}

.topbar__logo-y5ml5 {
  width: 160px;
  height: 56px;
  object-fit: contain;
}

.topbar__auth-y5ml5 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__lang-y5ml5 {
  background: rgba(10, 42, 62, 0.8);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
}

.topnav-y5ml5 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 24px 14px;
  background: rgba(6, 23, 34, 0.92);
  overflow-x: auto;
}

.topnav__link-y5ml5 {
  background: transparent;
  color: #eaf2ff;
  border: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  white-space: nowrap;
}

.topnav__link-y5ml5:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.badge-y5ml5 {
  background: var(--cta);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.topbar__bonus-y5ml5 {
  display: none;
}

.contacts__popup,
.game__overlay-y5ml5 {
  opacity: 0;
  transition: opacity 0.2s;
}

.site-footer-y5ml5 {
  padding: 28px 24px 20px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  margin: 40px auto 20px;
}

.site-footer__links-y5ml5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  font-weight: 600;
}

.site-footer__divider-y5ml5 {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}

.site-footer__text-y5ml5 {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 auto 12px;
  max-width: 900px;
}

.site-footer__copy-y5ml5 {
  color: var(--text);
  font-weight: 600;
}

.games__list-y5ml5 {
  list-style: none;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.games__item-y5ml5 {
  border-radius: 18px;
  width: 150px;
}

.game__banner-y5ml5,
.game__wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.game__img-y5ml5 img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
}

.game__overlay-y5ml5 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 13, 20, 0.55);
  text-decoration: none;
}

.game__overlay-y5ml5::before {
  content: "";
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.game__overlay-y5ml5::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 14px solid var(--text);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  transform: translateX(3px);
}

.game__banner-y5ml5:focus-within .game__overlay-y5ml5,
.game__banner-y5ml5:hover .game__overlay-y5ml5 {
  opacity: 1;
}

.game__info-y5ml5 {
  position: absolute;
  inset: auto 0 0;
  padding: 12px 10px;
  text-align: center;
  background: linear-gradient(180deg, rgba(12, 15, 22, 0) 0%, rgba(12, 15, 22, 0.8) 70%);
  color: var(--text);
}

.game__name-y5ml5 span {
  display: block;
  font-weight: 700;
}

.game__provider-y5ml5 span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.section-table-y5ml5 {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: center;
  color: var(--text);
  background: var(--panel-table);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  margin: 10px 0;
}

.section-table-y5ml5 td,
.section-table-y5ml5 th {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow-wrap: anywhere;
}

.section-table-y5ml5 thead th {
  font-weight: 600;
  background: var(--panel-deep);
}

.section-table-y5ml5 tbody tr:nth-child(odd) {
  background: var(--accent-strong);
  color: #001014;
  font-weight: 600;
}

.section-table-y5ml5 tbody tr:nth-child(2n) {
  background: var(--panel-deep);
}

.contacts {
  max-width: 420px;
  margin: 50px auto 0;
  display: grid;
  gap: 18px;
}

.contacts__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
}

.contacts__form {
  display: grid;
  gap: 14px;
}

.contacts__label {
  font-weight: 600;
}

.contacts__input,
.contacts__textarea {
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 12px 16px;
  background: #dcd7d7;
  color: #0b0d14;
  font-family: inherit;
  font-size: 15px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

.contacts__textarea {
  min-height: 140px;
  resize: vertical;
}

.contacts__submit {
  border: none;
  border-radius: 18px;
  padding: 12px 18px;
  font-weight: 700;
  background: var(--accent);
  color: #0b0d14;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.contacts__popup {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 12, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 40;
}

.contacts__popup-card {
  background: #1a1f2e;
  border-radius: 18px;
  padding: 22px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 220px;
}

.contacts__popup-close {
  margin-top: 14px;
  border: none;
  border-radius: 14px;
  padding: 10px 18px;
  font-weight: 600;
  background: var(--accent);
  color: #0b0d14;
  cursor: pointer;
}

.reviews-flex {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 25px auto;
  gap: 25px;
  justify-content: center;
}

button {
  cursor: pointer;
}

@media (max-width: 980px) {
  .sidebar__close-y5ml5 {
    display: inline-flex;
  }

  .content-wrapper-y5ml5 {
    margin-left: 0;
    padding: 16px 20px;
  }

  .topnav-y5ml5 {
    display: none;
  }

  .topbar__auth-y5ml5 .btn-y5ml5,
  .topbar__auth-y5ml5 .topbar__lang-y5ml5 {
    display: none;
  }

  .burger-y5ml5 {
    display: flex;
  }

  .topbar__auth-y5ml5 .topbar__bonus-y5ml5 {
    display: inline-flex;
  }

  .navigation__panel-y5ml5 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero__card-y5ml5 {
    min-height: 260px;
  }

  body {
    overflow-x: hidden;
  }

  .site-footer-y5ml5 {
    padding: 24px 18px 10px;
  }

  .games__list-y5ml5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .section-table-y5ml5 {
    font-size: 14px;
  }

  .section-table-y5ml5 td,
  .section-table-y5ml5 th {
    padding: 5px;
    font-size: 9px;
  }

  .contacts {
    max-width: 100%;
    padding: 0 8px;
    margin: 0 auto;
  }

  .contacts__title {
    font-size: 26px;
  }

  .contacts__input,
  .contacts__textarea {
    border-radius: 14px;
    font-size: 14px;
  }

  .contacts__submit {
    width: 100%;
  }

  .contacts__popup-card {
    width: calc(100% - 32px);
    max-width: 320px;
  }
}


.section-y5ml5 ul,
.section-y5ml5 ol,
.faq-item-y5ml5 ul {
  margin: 12px 0;
  padding-left: 24px;
}

.section-y5ml5 ul li,
.section-y5ml5 ol li,
.faq-item-y5ml5 ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.section-y5ml5 ul {
  list-style: disc;
}

.section-y5ml5 ol {
  list-style: decimal;
}


.section-y5ml5 .games__list-y5ml5{list-style:none;padding-left:0;margin:18px 0 0}
.section-y5ml5 .games__list-y5ml5 li{list-style:none;margin-bottom:0}
.games__list-y5ml5 .game__img-y5ml5 img{width:100%;height:230px;object-fit:cover;display:block}
.games__list-y5ml5 .game__info-y5ml5{padding-bottom:12px}
.game__play-y5ml5{display:inline-block;margin-top:8px;padding:6px 18px;border-radius:999px;background:linear-gradient(135deg,var(--cta) 0%,var(--cta-2) 100%);color:#fff;font-weight:800;font-size:12px;letter-spacing:.05em;text-transform:uppercase;cursor:pointer}


.section-y5ml5 > picture .hero__image-y5ml5 {
  aspect-ratio: 8 / 3;
  height: auto;
  object-fit: cover;
}

/* ===== Footer (as celsiusfrcasino.com) ===== */
.footerx-y5ml5 { border-top: 1px solid var(--line); margin-top: 40px; padding: 34px 0 26px; background: var(--panel-deep); border-radius: 18px 18px 0 0; }
.footerx__container-y5ml5 { max-width: 1160px; margin: 0 auto; padding: 0 22px; }
.footerx__inner-y5ml5 { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footerx__inner-y5ml5 > img { height: 38px; }
.footerx__note-y5ml5 { font-size: 13px; color: var(--muted); max-width: 720px; margin: 0; }
.footerx__age-y5ml5 { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--accent-strong); color: var(--accent); font-weight: 800; font-size: 14px; margin-right: 10px; }
.footerx__block-title-y5ml5 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text); margin-bottom: 10px; }
.footerx__license-y5ml5 { display: flex; flex-direction: column; gap: 12px; }
.footerx__license-item-y5ml5 { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--muted); text-decoration: none; }
.footerx__license-item-y5ml5 [data-anj-seal-id] { width: 52px; flex-shrink: 0; }
.footerx__license-item-y5ml5 [data-anj-seal-id] img { height: auto; max-width: 100%; }
.footerx__license-gamble-y5ml5 { flex-direction: column; align-items: flex-start; gap: 5px; }
.footerx__license-gamble-y5ml5 img { height: 24px; width: auto; }
.footerx__license-gamble-y5ml5 small { font-size: 11px; color: var(--muted); }
.footerx__links-y5ml5 { min-width: 190px; }
.footerx__menu-y5ml5 { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footerx__menu-y5ml5 li { margin: 0; }
.footerx__menu-y5ml5 a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s ease; }
.footerx__menu-y5ml5 a:hover { color: var(--accent); }
.footerx__payments-y5ml5 { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.footerx__paylist-y5ml5 { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; margin: 0; padding: 0; }
.footerx__paylist-y5ml5 li { margin: 0; }
.footerx__paylist-y5ml5 img { display: block; width: auto; opacity: .92; }
.footerx__paylist-y5ml5 .pay-crypto-y5ml5 img { height: 30px; }
.footerx__paylist-y5ml5 .pay-fiat-y5ml5 img { height: 17px; }
.footerx__bottom-y5ml5 { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); }
.footerx__bottom-y5ml5 p { margin: 0 0 8px; }
.footerx__bottom-y5ml5 p:last-child { margin-bottom: 0; }
.footerx__legal-y5ml5 { opacity: .8; }

/* ===== Legal pages ===== */
.legal-topbar-y5ml5 { display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: 1160px; margin: 0 auto; padding: 16px 22px; }
.legal-topbar-y5ml5 img { height: 46px; width: auto; max-width: 140px; object-fit: contain; }
.legal-topbar__actions-y5ml5 { display: flex; gap: 10px; }
.legal-page-y5ml5 { max-width: 1160px; margin: 0 auto; padding: 34px 22px 10px; }
.legal-page-y5ml5 h1 { margin: 0 0 22px; }
.legal-page-y5ml5 p { margin: 0 0 16px; color: var(--muted); max-width: 820px; line-height: 1.7; }
.legal-page-y5ml5 a { color: var(--accent); }
.back-btn-y5ml5 { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px; padding: 11px 20px; border-radius: 12px; background: var(--panel); border: 1px solid var(--line); color: var(--text); text-decoration: none; font-weight: 600; font-size: 14px; transition: background .2s ease; }
.back-btn-y5ml5:hover { background: var(--panel-soft); text-decoration: none; }

/* ===== Contact form ===== */
.contact-form-y5ml5 { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; max-width: 560px; }
.contact-form-y5ml5 label { display: flex; flex-direction: column; gap: 7px; font-size: 14px; font-weight: 600; color: var(--text); }
.contact-form-y5ml5 input, .contact-form-y5ml5 textarea { font: inherit; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line); background: var(--panel); color: var(--text); outline: none; transition: border-color .2s ease; }
.contact-form-y5ml5 input:focus, .contact-form-y5ml5 textarea:focus { border-color: var(--accent); }
.contact-form-y5ml5 textarea { resize: vertical; min-height: 140px; }
.contact-form-y5ml5 button { align-self: flex-start; border: none; cursor: pointer; }
.popup-overlay-y5ml5 { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(2, 10, 16, .78); z-index: 100; padding: 20px; }
.popup-overlay-y5ml5.is-open { display: flex; }
.popup-y5ml5 { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 36px 32px; max-width: 420px; width: 100%; text-align: center; box-shadow: var(--shadow); }
.popup-y5ml5 .popup-icon-y5ml5 { width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%; background: rgba(39, 230, 161, .14); color: var(--accent); font-size: 28px; display: flex; align-items: center; justify-content: center; }
.popup-y5ml5 h2 { margin: 0 0 10px; font-size: 21px; color: var(--text); }
.popup-y5ml5 p { margin: 0 0 22px; color: var(--muted); font-size: 15px; }
