@font-face {
  font-family: "PPNeueMachina";
  src: url("/assets/fonts/PPNeueMachina-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PPNeueMachina";
  src: url("/assets/fonts/PPNeueMachina-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PPNeueMachina";
  src: url("/assets/fonts/PPNeueMachina-Ultrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --default-font: "PPNeueMachina", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --heading-font: "PPNeueMachina", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-font: "PPNeueMachina", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --accent-color: #ed4561;
  --color: #ed4561;
  --bg-base: #17181a;
  --ui-btn-bg: linear-gradient(180deg, #ed4561 0%, #ef6179 100%);
  --ui-btn-border: rgba(255, 214, 214, 0.24);
  --ui-btn-radius: 10px;
  --header-logo-height: 38px;
  --header-btn-height: 44px;
  --header-btn-padding: 10px 17px;
}

html {
  background: var(--bg-base) !important;
}

html::before,
html::after {
  content: none !important;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-color: var(--bg-base);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='440' height='650' viewBox='0 0 440 650'%3E%3Cg fill='%23FDF6FC' fill-opacity='0.045' font-family='YETEST,Georgia,serif' font-size='136' font-style='italic'%3E%3Ctext x='88' y='218' transform='rotate(-24 88 218)'%3ELC%3C/text%3E%3Ctext x='240' y='522' transform='rotate(-24 240 522)'%3ELC%3C/text%3E%3C/g%3E%3C/svg%3E");
  background-size: 440px 650px;
  background-position: 22px 14px;
  background-repeat: repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(1180px 1180px at -14% 86%, rgba(239, 97, 121, 0.34), transparent 72%),
    radial-gradient(1120px 1120px at 109% 12%, rgba(239, 97, 121, 0.34), transparent 70%);
  filter: blur(14px);
}

body {
  position: relative;
  z-index: 0;
  isolation: isolate;
  background: transparent !important;
}

body.index-page,
body.dashboard-page,
body.auth-page,
body.legal-page {
  background-color: transparent !important;
  background-image: none !important;
}

.camera-logo {
  display: none !important;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button,
input,
textarea,
select,
label {
  font-family: var(--default-font) !important;
  font-weight: 500 !important;
}

strong,
b,
.fw-bold {
  font-weight: 500 !important;
}

.header {
  top: 24px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.header::before,
.header::after {
  content: none !important;
}

.header > .container-xl {
  max-width: 1520px;
  padding-left: 20px;
  padding-right: 20px;
}

.header .header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 14px;
  min-height: 58px;
  padding: 9px 9px 9px 17px;
  border-radius: 100px;
  border: 1px solid rgba(253, 246, 252, 0.05);
  background: rgba(23, 24, 26, 0.8);
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}

.header .logo img {
  height: var(--header-logo-height) !important;
  width: calc(var(--header-logo-height) * 1.1) !important;
  object-fit: contain;
}

.header .header-shell .logo h1 .logo-dev {
  color: var(--accent-color) !important;
}

.header .header-shell .logo {
  position: relative;
  z-index: 2;
}

.header .header-shell .navmenu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.header .header-shell .navmenu ul {
  gap: 26px;
  justify-content: center;
}

.header .header-shell .navmenu a,
.header .header-shell .navmenu a:focus {
  color: rgba(255, 255, 255, 0.72);
}

.header .header-shell .navmenu .active,
.header .header-shell .navmenu .active:focus,
.header .header-shell .navmenu a.is-active,
.header .header-shell .navmenu a.is-active:focus,
.header .header-shell .navmenu li:hover > a {
  color: #ffffff;
}

.header .header-actions {
  gap: 10px;
  margin-left: auto;
  align-items: center;
  position: relative;
  z-index: 2;
}

.header .header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 9px;
  width: auto;
  min-width: 0;
  height: var(--header-btn-height);
  padding: var(--header-btn-padding);
  border-radius: 100px;
  line-height: 1;
  white-space: nowrap;
  font-family: var(--default-font);
  border: 1px solid var(--ui-btn-border) !important;
  border-bottom: 0 !important;
  background: var(--ui-btn-bg);
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
  color: #ffffff !important;
  text-decoration: none !important;
  outline: none !important;
  text-shadow: none !important;
  filter: none !important;
  appearance: none;
  -webkit-appearance: none;
}

.header .header-btn i {
  margin: 0 !important;
  line-height: 1;
}

.header .header-btn::before,
.header .header-btn::after {
  content: none !important;
  display: none !important;
}

.header .header-btn-login,
.header .header-btn-register,
.header .header-btn-admin,
.header .header-btn-logout,
.header .header-btn-accent,
.header .header-btn-dark {
  width: auto !important;
  min-width: 0 !important;
  background: var(--ui-btn-bg);
  border: 1px solid var(--ui-btn-border) !important;
  border-bottom: 0 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.header .header-btn-login:hover,
.header .header-btn-login:focus,
.header .header-btn-login:active,
.header .header-btn-register:hover,
.header .header-btn-register:focus,
.header .header-btn-register:active,
.header .header-btn-admin:hover,
.header .header-btn-admin:focus,
.header .header-btn-admin:active,
.header .header-btn-logout:hover,
.header .header-btn-logout:focus,
.header .header-btn-logout:active,
.header .header-btn-accent:hover,
.header .header-btn-accent:focus,
.header .header-btn-accent:active,
.header .header-btn-dark:hover,
.header .header-btn-dark:focus,
.header .header-btn-dark:active {
  background: var(--ui-btn-bg);
  border: 1px solid var(--ui-btn-border) !important;
  border-bottom: 0 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

.header .header-btn:hover,
.header .header-btn:focus,
.header .header-btn:active {
  transform: none !important;
  transition: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.header .header-btn-login::before,
.header .header-btn-login::after,
.header .header-btn-register::before,
.header .header-btn-register::after,
.header .header-btn-admin::before,
.header .header-btn-admin::after,
.header .header-btn-logout::before,
.header .header-btn-logout::after,
.header .header-btn-accent::before,
.header .header-btn-accent::after,
.header .header-btn-dark::before,
.header .header-btn-dark::after {
  content: none !important;
  display: none !important;
}

.btn-global {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: auto !important;
  min-width: 0 !important;
  height: var(--header-btn-height) !important;
  padding: var(--header-btn-padding) !important;
  border-radius: var(--ui-btn-radius) !important;
  border: 1px solid var(--ui-btn-border) !important;
  border-bottom: 0 !important;
  background: var(--ui-btn-bg) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
  text-decoration: none !important;
  text-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer !important;
}

.btn-global::before,
.btn-global::after {
  content: none !important;
  display: none !important;
}

.btn-global:hover,
.btn-global:focus,
.btn-global:active {
  border: 1px solid var(--ui-btn-border) !important;
  border-bottom: 0 !important;
  background: var(--ui-btn-bg) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

.secondButton {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: auto !important;
  min-width: 0 !important;
  height: var(--header-btn-height) !important;
  padding: var(--header-btn-padding) !important;
  border-radius: var(--ui-btn-radius) !important;
  border: 1px solid rgba(253, 246, 252, 0.1) !important;
  background: linear-gradient(180deg, rgba(239, 97, 121, 0.05) 0%, rgba(23, 24, 26, 0.05) 100%) !important;
  color: rgba(253, 246, 252, 0.5) !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: none !important;
  transition: none !important;
  text-decoration: none !important;
  text-shadow: none !important;
  cursor: pointer !important;
}

.secondButton::before,
.secondButton::after {
  content: none !important;
  display: none !important;
}

.secondButton:hover,
.secondButton:focus,
.secondButton:active {
  border: 1px solid rgba(253, 246, 252, 0.1) !important;
  background: linear-gradient(180deg, rgba(239, 97, 121, 0.05) 0%, rgba(23, 24, 26, 0.05) 100%) !important;
  color: rgba(253, 246, 252, 0.5) !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

.hero-kicker {
  margin-bottom: 16px;
  color: #ef6179;
  font-size: clamp(13px, 0.82vw, 16px);
  line-height: 1.1;
  font-style: italic;
  font-weight: 500 !important;
  letter-spacing: 0;
}

.why-v2 {
  margin-top: 24px;
  padding-bottom: 120px;
}

.why-v2-head {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 28px;
}

.why-v2-kicker {
  color: #ef6179;
  font-style: italic;
  font-size: 18px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.why-v2-head h2 {
  margin: 0;
  color: #f3edf6;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 400;
}

.why-v2-head p {
  margin: 18px auto 0;
  max-width: 720px;
  color: rgba(240, 240, 240, 0.6);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.why-v2-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.why-v2-shot {
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(253, 246, 252, 0.22);
  overflow: hidden;
  background: rgba(17, 18, 20, 0.88);
}

.why-v2-shot img {
  display: block;
  width: 100%;
  height: clamp(290px, 24vw, 430px);
  object-fit: cover;
}

.why-v2-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.why-v2-actions i,
.hero-actions i {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(253, 246, 252, 0.16);
  color: #fdf6fc;
  font-size: 12px;
  line-height: 1;
}

.why-v2-update {
  margin-top: 170px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: center;
}

.why-v2-update-copy h3 {
  margin: 0;
  color: #f3edf6;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 500;
}

.why-v2-update-copy p {
  margin: 20px 0 0;
  max-width: 720px;
  color: rgba(240, 240, 240, 0.6);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.why-v2-update-copy .why-v2-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.why-v2-update-art {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.why-v2-update-art img {
  width: 100%;
  max-width: 740px;
  height: auto;
  transform: translateY(-18px);
}

.why-v2-split {
  margin-top: 120px;
  display: grid;
  gap: 120px;
}

.why-v2-row {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
  align-items: center;
}

.why-v2-row-reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.why-v2-copy h3 {
  margin: 0;
  color: #f3edf6;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 500;
}

.why-v2-copy p {
  margin: 20px 0 0;
  max-width: 720px;
  color: rgba(240, 240, 240, 0.6);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.why-v2-copy .why-v2-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.why-v2-screen {
  margin: 0;
  border-radius: 24px;
  border: 1px solid rgba(239, 97, 121, 0.78);
  box-shadow: 0 0 0 8px rgba(239, 97, 121, 0.06), 0 22px 56px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  background: rgba(17, 18, 20, 0.92);
}

.why-v2-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.why-v2-screen-right img {
  min-height: 360px;
  object-fit: cover;
}

#faq.section {
  margin-top: 300px;
}

#cards.shop-section {
  margin-top: 190px;
}

.shop-v2 {
  max-width: 1240px;
  margin: 0 auto;
}

.shop-v2-head {
  text-align: center;
  max-width: 930px;
  margin: 0 auto 34px;
}

.shop-v2-kicker {
  color: #ef6179;
  font-style: italic;
  font-size: 18px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.shop-v2-head h2 {
  margin: 0;
  color: #f3edf6;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 500;
}

.shop-v2-head p {
  margin: 14px auto 0;
  max-width: 760px;
  color: rgba(240, 240, 240, 0.6);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.shop-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shop-v2-card {
  border-radius: 22px;
  border: 1px solid rgba(253, 246, 252, 0.12);
  background: linear-gradient(180deg, rgba(23, 24, 26, 0.72) 0%, rgba(17, 18, 20, 0.76) 100%);
  box-shadow: inset 0 0 0 1px rgba(253, 246, 252, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.shop-v2-card-featured {
  border-color: rgba(239, 97, 121, 0.5);
  box-shadow: 0 0 0 1px rgba(239, 97, 121, 0.35), inset 0 0 0 1px rgba(253, 246, 252, 0.05);
}

.shop-v2-media {
  margin: 0;
  border-bottom: 1px solid rgba(253, 246, 252, 0.09);
  overflow: hidden;
}

.shop-v2-media img {
  display: block;
  width: 100%;
  height: 215px;
  object-fit: cover;
  object-position: center center;
}

.shop-v2-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.shop-v2-plan {
  color: rgba(253, 246, 252, 0.58);
  font-size: 13px;
  line-height: 1;
  margin-bottom: 12px;
}

.shop-v2-body h3 {
  margin: 0;
  color: #f3edf6;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 500;
}

.shop-v2-brand {
  color: #ef6179;
}

.shop-v2-body p {
  margin: 12px 0 0;
  color: rgba(240, 240, 240, 0.6);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.shop-v2-bottom {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.shop-v2-price {
  color: #ef6179;
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
}

.shop-v2-bottom .btn-global {
  height: 50px !important;
  border-radius: 12px !important;
}

#video.video-showcase {
  margin-top: 210px !important;
}

.video-head-v2 {
  text-align: center;
  max-width: 930px;
  margin: 0 auto 36px;
}

.video-kicker {
  color: #ef6179;
  font-style: italic;
  font-size: 18px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.video-head-v2 h2 {
  margin: 0;
  color: #f3edf6;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 500;
}

.video-head-v2 p {
  margin: 14px auto 0;
  max-width: 720px;
  color: rgba(240, 240, 240, 0.6);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.video-grid-v2 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.video-card-v2 {
  min-height: 235px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(253, 246, 252, 0.14) !important;
  background: rgba(17, 18, 20, 0.86) !important;
  box-shadow: inset 0 0 0 1px rgba(253, 246, 252, 0.05) !important;
  overflow: hidden !important;
}

.video-card-v2 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.84);
}

.video-card-v2::after {
  background: linear-gradient(180deg, rgba(7, 6, 11, 0.25) 0%, rgba(7, 6, 11, 0.46) 100%) !important;
}

.faq-v2-wrap {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.faq-v2-kicker {
  color: #ef6179;
  font-style: italic;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  font-synthesis: none;
  margin-bottom: 18px;
}

.faq-v2-title {
  margin: 0;
  color: #f3edf6;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 500;
}

.faq-v2-subtitle {
  margin: 14px auto 0;
  max-width: 720px;
  color: rgba(240, 240, 240, 0.55);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.faq-v2-panel {
  margin-top: 44px;
  border-radius: 34px;
  border: 1px solid rgba(253, 246, 252, 0.06);
  background: rgba(23, 24, 26, 0.78);
  overflow: hidden;
}

.faq-v2-item + .faq-v2-item {
  border-top: 1px solid rgba(253, 246, 252, 0.08);
}

.faq-v2-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #f3edf6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 26px 28px;
  text-align: left;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
}

.faq-v2-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(253, 246, 252, 0.08);
  color: rgba(253, 246, 252, 0.9);
  font-size: 22px;
  line-height: 1;
  flex: 0 0 auto;
}

.faq-v2-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 28px;
  text-align: left;
  color: rgba(240, 240, 240, 0.55);
  font-size: 15px;
  line-height: 1.35;
  transition: max-height 0.34s ease, opacity 0.26s ease, padding 0.34s ease;
}

.faq-v2-item.is-open .faq-v2-answer {
  max-height: 420px;
  opacity: 1;
  padding: 0 28px 24px;
}

.faq-v2-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.why-card,
.shop-v2-card,
#faq .faq-modern-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.why-card:hover,
.shop-v2-card:hover,
#faq .faq-modern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.faq-v2-item {
  transition: background 0.28s ease;
}

.faq-v2-item.is-open {
  background: rgba(253, 246, 252, 0.03);
}

.faq-v2-question {
  transition: color 0.24s ease, padding 0.24s ease;
}

@media (max-width: 1199.98px) {
  .why-v2-head h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .why-v2-head p {
    font-size: 15px;
    line-height: 1.3;
  }

  .why-v2-kicker {
    font-size: 14px;
  }

  .why-v2-gallery {
    grid-template-columns: 1fr;
  }

  .why-v2-shot img {
    height: auto;
  }

  .why-v2-update {
    margin-top: 80px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-v2-update-copy h3 {
    font-size: 34px;
    line-height: 1.15;
  }

  .why-v2-update-copy p {
    font-size: 15px;
    line-height: 1.3;
  }

  .why-v2-update-copy .why-v2-actions {
    justify-content: center;
  }

  .why-v2-update-art {
    justify-content: center;
  }

  .why-v2-update-art img {
    transform: none;
  }

  .why-v2-split {
    margin-top: 68px;
    gap: 62px;
  }

  .why-v2-row,
  .why-v2-row-reverse {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-v2-copy h3 {
    font-size: 34px;
    line-height: 1.15;
  }

  .why-v2-copy p {
    font-size: 15px;
    line-height: 1.3;
  }

  .why-v2-copy .why-v2-actions {
    justify-content: center;
  }

  .why-v2-screen-right img {
    min-height: 0;
  }

  #faq.section {
    margin-top: 170px;
  }

  #cards.shop-section {
    margin-top: 130px;
  }

  .shop-v2-kicker {
    font-size: 14px;
  }

  .shop-v2-head h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .shop-v2-head p {
    font-size: 15px;
    line-height: 1.3;
  }

  .shop-v2-grid {
    grid-template-columns: 1fr;
  }

  .shop-v2-media img {
    height: auto;
    max-height: 260px;
  }

  .shop-v2-body h3 {
    font-size: 25px;
  }

  .shop-v2-price {
    font-size: 30px;
  }

  .shop-v2-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-v2-bottom .btn-global {
    width: 100%;
    justify-content: center !important;
  }

  #video.video-showcase {
    margin-top: 145px !important;
  }

  .video-kicker {
    font-size: 14px;
  }

  .video-head-v2 h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .video-head-v2 p {
    font-size: 15px;
    line-height: 1.3;
  }

  .video-grid-v2 {
    grid-template-columns: 1fr !important;
  }

  .faq-v2-kicker {
    font-size: 14px;
  }

  .faq-v2-title {
    font-size: 34px;
    line-height: 1.15;
  }

  .faq-v2-subtitle {
    font-size: 15px;
    line-height: 1.3;
  }

  .faq-v2-panel {
    margin-top: 28px;
    border-radius: 24px;
  }

  .faq-v2-question {
    font-size: 18px;
    padding: 18px 16px;
  }

  .faq-v2-answer {
    padding: 0 16px;
    font-size: 14px;
  }

  .faq-v2-item.is-open .faq-v2-answer {
    max-height: 440px;
    padding: 0 16px 18px;
  }

  .faq-v2-actions {
    margin-top: 26px;
    flex-direction: column;
    align-items: stretch;
  }

}

@media (max-width: 1199.98px) {
  .header .header-shell {
    min-height: 64px;
    padding: 10px 12px;
  }

  .header .header-shell .navmenu {
    position: static;
    left: auto;
    transform: none;
    margin-left: auto;
  }
}

.btn-getstarted2,
.btn-getstarted2:focus {
  font-weight: 500;
}

.feature-icon {
  font-size: 24px;
  margin-right: 10px;
}

.card-icon {
  margin-bottom: 15px;
  font-size: 32px;
}

.nav-icon {
  margin-right: 5px;
}

.hero-icon {
  font-size: 32px;
  margin-right: 15px;
}

.shared-modal-host {
  position: relative;
  z-index: 20;
}

body.auth-page {
  color: var(--default-color);
  background: transparent !important;
  font-family: var(--default-font);
  font-weight: 500;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body.auth-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-color: var(--bg-base);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='440' height='650' viewBox='0 0 440 650'%3E%3Cg fill='%23FDF6FC' fill-opacity='0.045' font-family='YETEST,Georgia,serif' font-size='136' font-style='italic'%3E%3Ctext x='88' y='218' transform='rotate(-24 88 218)'%3ELC%3C/text%3E%3Ctext x='240' y='522' transform='rotate(-24 240 522)'%3ELC%3C/text%3E%3C/g%3E%3C/svg%3E");
  background-size: 440px 650px;
  background-position: 22px 14px;
  background-repeat: repeat;
}

body.auth-page::after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  background:
    radial-gradient(1180px 1180px at -14% 86%, rgba(239, 97, 121, 0.34), transparent 72%),
    radial-gradient(1120px 1120px at 109% 12%, rgba(239, 97, 121, 0.34), transparent 70%);
  transform: none;
  opacity: 1;
  filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}

.legal-page {
  background: transparent !important;
  color: #e9e9e9;
}

.legal-wrap {
  max-width: 980px;
  margin: 120px auto 40px;
  padding: 24px;
  background: #151923;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-wrap h1,
.legal-wrap h2 {
  color: #fff;
}

.legal-wrap p,
.legal-wrap li {
  color: #c9c9c9;
  line-height: 1.6;
}

.legal-wrap ul {
  padding-left: 22px;
}

.legal-top-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-top-links .btn-getstarted,
.legal-top-links .btn-other {
  min-width: 190px;
  text-align: center;
  padding: 10px 16px;
  border-radius: 6px;
}

.footer.footer-global {
  position: relative;
  margin-top: 28px !important;
  padding: 16px 0 14px !important;
  border-top: 1px solid rgba(253, 246, 252, 0.16) !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #f3edf6 !important;
  overflow: visible;
}

.footer.footer-global::before {
  content: none;
}

.footer.footer-global .footer-global__container {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.footer.footer-global .footer-global__grid {
  display: grid;
  grid-template-columns: minmax(190px, 1.45fr) repeat(4, minmax(120px, 1fr));
  gap: 10px 26px;
  align-items: start;
}

.footer.footer-global .footer-global__brand {
  padding-right: 10px;
}

.footer.footer-global .footer-global__logo {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  line-height: 1;
}

.footer.footer-global .footer-global__logo-main {
  color: #f3edf6;
  font-size: clamp(18px, 1.45vw, 24px);
  letter-spacing: -0.02em;
  font-weight: 600;
}

.footer.footer-global .footer-global__logo-accent {
  color: #ef6179;
  font-size: clamp(18px, 1.45vw, 24px);
  letter-spacing: -0.02em;
  font-weight: 600;
}

.footer.footer-global .footer-global__tagline {
  margin: 4px 0 0;
  color: rgba(243, 237, 246, 0.58);
  font-size: 13px;
  line-height: 1.25;
}

.footer.footer-global .footer-global__title {
  margin: 0 0 6px !important;
  color: #f3edf6 !important;
  font-size: 16px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer.footer-global .footer-global__title i {
  font-size: 12px;
  color: rgba(247, 164, 235, 0.82);
}

.footer.footer-global .footer-global__list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.footer.footer-global .footer-global__list li + li {
  margin-top: 3px;
}

.footer.footer-global .footer-global__list a {
  color: rgba(243, 237, 246, 0.58) !important;
  text-decoration: none !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  transition: color 0.2s ease;
}

.footer.footer-global .footer-global__list a:hover,
.footer.footer-global .footer-global__list a:focus {
  color: #f3edf6 !important;
}

@media (max-width: 1399.98px) {
  .footer.footer-global .footer-global__grid {
    grid-template-columns: minmax(180px, 1.35fr) repeat(4, minmax(110px, 1fr));
    gap: 10px 18px;
  }
}

@media (max-width: 991.98px) {
  .footer.footer-global {
    margin-top: 24px !important;
    padding: 14px 0 12px !important;
  }

  .footer.footer-global .footer-global__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .footer.footer-global .footer-global__brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .footer.footer-global .footer-global__title {
    font-size: 15px !important;
  }

  .footer.footer-global .footer-global__list a {
    font-size: 14px !important;
  }
}

@media (max-width: 575.98px) {
  .footer.footer-global .footer-global__container {
    width: calc(100% - 24px);
  }

  .footer.footer-global .footer-global__grid {
    grid-template-columns: 1fr;
  }

  .footer.footer-global .footer-global__logo-main,
  .footer.footer-global .footer-global__logo-accent {
    font-size: 22px;
  }

  .footer.footer-global .footer-global__tagline {
    font-size: 12px;
  }
}

.buy-page .footer.footer-global {
  margin-top: 18px !important;
  min-height: 0 !important;
}

.buy-page .footer.footer-global .footer-global__logo-accent,
.buy-page .footer.footer-global .footer-global__title i {
  color: #ed4561;
}

@media (max-width: 1199.98px) {
  .buy-page .footer.footer-global .footer-global__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .buy-page .footer.footer-global .footer-global__brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

:root {
  --accent-color: #ed4561;
  --color: #ed4561;
  --bg-base: #17181a;
  --ui-btn-bg: linear-gradient(180deg, #ed4561 0%, #ef6179 100%);
  --ui-btn-border: rgba(255, 214, 214, 0.24);
  --brand-image-filter: hue-rotate(-35deg) saturate(1.35) brightness(0.96);
}

body::before,
body.auth-page::before {
  background-color: var(--bg-base) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='440' height='650' viewBox='0 0 440 650'%3E%3Cg fill='%23FDF6FC' fill-opacity='0.045' font-family='YETEST,Georgia,serif' font-size='136' font-style='italic'%3E%3Ctext x='88' y='218' transform='rotate(-24 88 218)'%3ELC%3C/text%3E%3Ctext x='240' y='522' transform='rotate(-24 240 522)'%3ELC%3C/text%3E%3C/g%3E%3C/svg%3E") !important;
}

body::after,
body.auth-page::after {
  background:
    radial-gradient(1180px 1180px at -14% 86%, rgba(237, 69, 97, 0.28), transparent 72%),
    radial-gradient(1120px 1120px at 109% 12%, rgba(237, 69, 97, 0.22), transparent 70%) !important;
}

.header .header-shell {
  background: rgba(23, 24, 26, 0.84) !important;
}

.brand-logo-img,
.header .logo img,
.brand-logo-img:hover {
  filter: none !important;
}

.brand-you {
  color: #f3edf6 !important;
}

.brand-game,
.header .header-shell .logo h1 .logo-dev,
.shop-v2-brand,
.shop-v2-price,
.hero-kicker,
.why-v2-kicker,
.faq-v2-kicker,
.footer.footer-global .footer-global__logo-accent,
.footer.footer-global .footer-global__title i,
.buy-page .footer.footer-global .footer-global__logo-accent,
.buy-page .footer.footer-global .footer-global__title i {
  color: #ed4561 !important;
}

.hero-slogan-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  color: inherit !important;
}

.hero-slogan-brand-you {
  color: #f0f0f0 !important;
}

.hero-slogan-brand-game {
  color: #ed4561 !important;
}

.secondButton,
.secondButton:hover,
.secondButton:focus,
.secondButton:active {
  background: linear-gradient(180deg, rgba(237, 69, 97, 0.06) 0%, rgba(23, 24, 26, 0.1) 100%) !important;
  border-color: rgba(255, 214, 214, 0.12) !important;
  color: rgba(255, 240, 240, 0.78) !important;
}

.why-v2-screen {
  border-color: rgba(237, 69, 97, 0.72) !important;
  box-shadow: 0 0 0 8px rgba(237, 69, 97, 0.07), 0 22px 56px rgba(0, 0, 0, 0.35) !important;
  background: rgba(17, 18, 20, 0.92) !important;
}

.shop-v2-card {
  background: linear-gradient(180deg, rgba(23, 24, 26, 0.78) 0%, rgba(17, 18, 20, 0.84) 100%) !important;
}

.shop-v2-card-featured {
  border-color: rgba(237, 69, 97, 0.48) !important;
  box-shadow: 0 0 0 1px rgba(237, 69, 97, 0.28), inset 0 0 0 1px rgba(253, 246, 252, 0.05) !important;
}

.shop-v2-plan {
  color: rgba(255, 226, 226, 0.72) !important;
}

.shop-v2-body h3 {
  color: #fff6f6 !important;
}

.shop-v2-media img,
.product-item img,
.summary-card img {
  filter: none !important;
}

.faq-v2-panel {
  background: rgba(28, 16, 16, 0.8) !important;
}

.faq-v2-item.is-open {
  background: rgba(237, 69, 97, 0.04) !important;
}

.footer.footer-global {
  border-top-color: rgba(255, 214, 214, 0.14) !important;
}
