@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins/Poppins-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

:root {
  --fx-bg: #eef3ff;
  --fx-surface: #ffffff;
  --fx-surface-soft: #f8faff;
  --fx-text: #121a31;
  --fx-muted: #5c6789;
  --fx-brand: #0d2a66;
  --fx-accent: #7c3aed;
  --fx-accent-2: #0ea5a4;
  --fx-line: #d8e2f4;
  --fx-radius-lg: 24px;
  --fx-radius-md: 18px;
  --fx-shadow: 0 20px 44px rgba(14, 32, 74, 0.11);
  --fx-shadow-soft: 0 10px 26px rgba(18, 34, 69, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: var(--fx-text);
  background: var(--fx-bg);
  background-image:
    radial-gradient(980px 560px at 2% -14%, rgba(14, 165, 164, 0.17), transparent 64%),
    radial-gradient(780px 420px at 100% 0%, rgba(124, 58, 237, 0.15), transparent 58%);
}

html {
  scroll-behavior: smooth;
}

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

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

.fx-wrap {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
}

.fx-section {
  margin-top: 28px;
}

.fx-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--fx-line);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(17, 24, 42, 0.06);
}

.fx-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.fx-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--fx-brand);
}

.fx-brand__dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--fx-accent);
}

.fx-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: #3f4153;
  font-size: 14px;
  font-weight: 500;
}

.fx-nav a:hover {
  color: var(--fx-accent);
}

.fx-nav a {
  position: relative;
}

.fx-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--fx-accent);
  transition: width 0.2s ease;
}

.fx-nav a:hover::after {
  width: 100%;
}

.fx-updated {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  color: #0f3f3f;
  background: #d9f5f5;
  border: 1px solid #b4e7e6;
}

.fx-hero {
  position: relative;
  border-radius: var(--fx-radius-lg);
  overflow: hidden;
  margin: 20px auto 0;
  width: min(1120px, calc(100% - 32px));
  min-height: 340px;
  display: flex;
  align-items: center;
  box-shadow: 0 24px 56px rgba(15, 31, 72, 0.24);
}

.fx-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fx-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(9, 24, 57, 0.86) 0%, rgba(22, 39, 93, 0.62) 46%, rgba(35, 23, 79, 0.35) 100%);
}

.fx-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 48px;
  max-width: 760px;
}

.fx-hero__badge {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.88), rgba(14, 165, 164, 0.88));
}

.fx-hero h1 {
  margin: 0;
  line-height: 1.15;
  font-size: clamp(30px, 4vw, 42px);
}

.fx-hero p {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.6;
  color: #f5f5fb;
}

.fx-section__head h2 {
  margin: 0;
  font-size: 32px;
}

.fx-section__head p {
  margin: 8px 0 0;
  color: var(--fx-muted);
  font-size: 16px;
}

.fx-card {
  margin-top: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid var(--fx-line);
  border-radius: var(--fx-radius-md);
  box-shadow: var(--fx-shadow-soft);
  padding: 18px 14px 14px;
  display: grid;
  grid-template-columns: minmax(280px, 1.8fr) minmax(110px, auto) minmax(180px, 1fr);
  align-items: center;
  gap: 14px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fx-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(31, 45, 79, 0.13);
  border-color: #cfdaf0;
}

.fx-card--featured {
  border: 2px solid #c8b1ff;
  box-shadow: 0 22px 44px rgba(98, 70, 196, 0.2);
}

.fx-card__label {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 7px 16px 8px;
  border-radius: 12px 0 12px 0;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #7c3aed, #0ea5a4);
  letter-spacing: 0.01em;
}

.fx-card__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fx-card__left img {
  width: 180px;
  height: 56px;
  border-radius: 6px;
  object-fit: contain;
  border: 1px solid #d8dfed;
  background: #fff;
  padding: 3px 7px;
  box-shadow: inset 0 0 0 1px #eef2fb;
}

.fx-card__left h3 {
  margin: 0 0 8px;
  font-size: 30px;
  display: none;
}

.fx-card__desc {
  margin: 0;
  font-size: 26px;
  line-height: 1.24;
  color: #4e5568;
  letter-spacing: -0.01em;
}

.fx-stars {
  font-size: 18px;
}

.fx-stars span {
  color: #f2b100;
  letter-spacing: 2px;
  font-size: 28px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.fx-stars small {
  display: block;
  margin-top: 2px;
  color: var(--fx-muted);
}

.fx-card__meta {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.fx-card__score {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 2px solid #5f72ca;
  background: radial-gradient(circle at 28% 22%, #8294f4, #5a69c7 68%);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(74, 121, 222, 0.34);
}

.fx-card__score span {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(19, 31, 61, 0.25);
}

.fx-card__actions {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
}

.fx-card__pick {
  padding: 9px 18px;
  border-radius: 28px;
  border: 1px solid #bbbcc2;
  color: #3a3a3f;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  box-shadow: 0 8px 16px rgba(20, 20, 36, 0.12);
  position: relative;
}

.fx-card__pick::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #bbbcc2;
}

.fx-card__pick::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #fff;
  z-index: 1;
}

.fx-btn {
  border: 0;
  border-radius: 999px;
  min-width: 150px;
  padding: 12px 18px;
  font-size: 24px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.fx-btn:hover {
  transform: translateY(-1px);
  opacity: 0.97;
  box-shadow: 0 12px 22px rgba(124, 58, 237, 0.3);
}

.fx-btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #7c3aed 0%, #5d2cc4 100%);
  box-shadow: 0 12px 22px rgba(93, 44, 196, 0.33);
}

.fx-btn--ghost {
  color: #344055;
  background: #eef2f8;
}

.fx-content {
  background: var(--fx-surface);
  border-radius: var(--fx-radius-md);
  border: 1px solid var(--fx-line);
  box-shadow: var(--fx-shadow);
  padding: 24px;
  line-height: 1.7;
  position: relative;
}

.fx-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  border-radius: var(--fx-radius-md) var(--fx-radius-md) 0 0;
  background: linear-gradient(90deg, rgba(14, 165, 164, 0.85), rgba(124, 58, 237, 0.85));
}

.fx-content h2 {
  margin: 14px 0 10px;
  font-size: 26px;
  letter-spacing: -0.01em;
}

.fx-content p,
.fx-content li {
  color: #2f3140;
  font-size: 17px;
}

.fx-content ul {
  margin: 8px 0 18px;
  padding-left: 20px;
}

.fx-legal-pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.72;
  color: #303446;
  max-width: 980px;
}

.fx-table-wrap {
  margin-top: 12px;
  border-radius: var(--fx-radius-md);
  overflow: auto;
  border: 1px solid var(--fx-line);
  background: var(--fx-surface);
  box-shadow: var(--fx-shadow);
}

.fx-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.fx-table th,
.fx-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #ececf4;
  text-align: left;
}

.fx-table th {
  color: #3a3c4f;
  background: #f8f8fc;
}

.fx-table td:last-child {
  font-weight: 700;
  color: #3850b0;
}

.fx-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fx-panel {
  background: var(--fx-surface);
  border: 1px solid var(--fx-line);
  border-radius: var(--fx-radius-md);
  box-shadow: var(--fx-shadow);
  padding: 22px;
}

.fx-panel h2 {
  margin: 0 0 10px;
  font-size: 23px;
}

.fx-panel p,
.fx-panel li {
  line-height: 1.62;
  color: #303243;
}

.fx-panel ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.fx-faq {
  display: grid;
  gap: 12px;
}

.fx-faq__item {
  background: var(--fx-surface);
  border: 1px solid #dfe6f3;
  border-radius: var(--fx-radius-md);
  box-shadow: var(--fx-shadow-soft);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fx-faq__item:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(23, 34, 64, 0.1);
  border-color: #d2ddef;
}

.fx-faq__q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1f2130;
  cursor: pointer;
}

.fx-faq__q span {
  width: 24px;
  height: 24px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #5e74ad;
  transition: transform 0.24s ease, background 0.24s ease;
}

.fx-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s ease;
}

.fx-faq__a p {
  margin: 0;
  padding: 0 18px 18px;
  color: #383b4b;
  line-height: 1.6;
}

.fx-faq__item.fx-faq__item--open .fx-faq__a {
  max-height: 320px;
}

.fx-faq__item.fx-faq__item--open .fx-faq__q span {
  background: var(--fx-accent);
  transform: rotate(180deg);
}

.fx-footer {
  margin-top: 26px;
  background: linear-gradient(180deg, #1c2437 0%, #171e2d 100%);
  color: #d8deee;
  padding: 34px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fx-footer__top {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(220px, 320px);
  gap: 34px;
  align-items: start;
}

.fx-footer__logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fx-footer__logo-dot {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: linear-gradient(145deg, #f36ac0, #7a3ff2);
}

.fx-footer__logo-row h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.fx-footer__logo-row h3 span {
  color: #7a57f7;
  text-shadow: 0 0 22px rgba(122, 87, 247, 0.25);
}

.fx-footer__brand-col p {
  margin: 12px 0 0;
  max-width: 560px;
  color: #b0b7c8;
  font-size: 15px;
  line-height: 1.6;
}

.fx-footer__trust {
  margin: 10px 0 0;
  max-width: 640px;
  color: #d5deef;
  font-size: 13px;
  line-height: 1.6;
}

.fx-footer__trust a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fx-footer__nav-col h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 17px;
}

.fx-footer__nav-col ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.fx-footer__nav-col li {
  margin-bottom: 6px;
}

.fx-footer__nav-col a,
.fx-footer__nav-col li {
  color: #e2e7f4;
  font-size: 15px;
  line-height: 1.35;
}

.fx-footer__nav-col a:hover {
  color: #ffffff;
}

.fx-footer__social {
  display: flex;
  gap: 10px;
}

.fx-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  text-transform: lowercase;
  color: #ffffff;
  background: #3a4358;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: var(--fx-shadow-soft);
}

.fx-footer__social a:hover {
  background: #4a5570;
  transform: translateY(-1px);
}

.fx-footer__copy {
  margin: 24px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #f3f6ff;
  font-size: 13px;
}

@media (max-width: 930px) {
  .fx-nav {
    display: none;
  }

  .fx-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fx-card__actions {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .fx-card__desc {
    font-size: 24px;
  }

  .fx-stars span {
    font-size: 30px;
  }

  .fx-btn {
    font-size: 22px;
  }

  .fx-grid-two {
    grid-template-columns: 1fr;
  }

  .fx-footer__top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fx-footer__nav-col ul {
    margin-bottom: 12px;
  }
}

@media (max-width: 640px) {
  .fx-wrap {
    width: min(1120px, calc(100% - 18px));
  }

  .fx-hero {
    min-height: 280px;
    width: min(1120px, calc(100% - 20px));
  }

  .fx-hero__content {
    padding: 28px 24px;
  }

  .fx-section__head h2 {
    font-size: 28px;
  }

  .fx-content p,
  .fx-content li {
    font-size: 16px;
  }

  .fx-content,
  .fx-panel {
    padding: 17px;
  }

  .fx-card__left {
    flex-direction: column;
    align-items: flex-start;
  }

  .fx-card__label {
    font-size: 24px;
  }

  .fx-card__left img {
    width: 100%;
    max-width: 260px;
  }

  .fx-footer {
    padding-top: 24px;
  }

  .fx-footer__logo-row h3 {
    font-size: 20px;
  }

  .fx-footer__brand-col p {
    font-size: 14px;
  }

  .fx-footer__nav-col h4 {
    font-size: 16px;
  }

  .fx-footer__nav-col a,
  .fx-footer__nav-col li {
    font-size: 14px;
  }

  .fx-footer__copy {
    font-size: 13px;
  }
}
