*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  color: #EAF0FF;
  background: #0B0F1A;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(234, 240, 255, 0.85);
  outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
}

p { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

::selection {
  background: rgba(138, 180, 255, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root{
  --bf-max: 980px;
  --bf-bar-bg: rgba(10, 12, 22, .88);
  --bf-bar-line: rgba(255,255,255,.14);
  --bf-bar-ink: rgba(255,255,255,.92);
  --bf-bar-ink-dim: rgba(255,255,255,.74);
  --bf-ink: #161A2B;
  --bf-ink-dim: rgba(22,26,43,.78);
  --bf-line: rgba(22,26,43,.12);
}

.bf-sentinel{
  background: var(--bf-bar-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bf-bar-line);
}

.bf-sentinel__wrap{
  max-width: var(--bf-max);
  margin: 0 auto;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bf-sentinel__badge{
  flex: 0 0 auto;
  width: 40px;
  height: 26px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.20);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}

.bf-sentinel__ico{
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
  color: rgba(255,255,255,.96);
}

.bf-sentinel__txt{
  margin: 0;
  max-width: 780px;
  font-size: 12.6px;
  line-height: 1.35;
  color: var(--bf-bar-ink-dim);
}

.bf-sentinel__txt strong{
  color: var(--bf-bar-ink);
  font-weight: 750;
}

.bf-sentinel__link{
  color: rgba(199, 255, 236, .95);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  opacity: .92;
}

.bf-sentinel__link:hover{ opacity: 1; }

.bf-hero{
  border-bottom: 1px solid var(--bf-line);
  background:
  linear-gradient(
    135deg,
    #2a2359 0%,
    #3a3180 45%,
    #4a3fa3 100%
  );
}

.bf-hero__wrap{
  max-width: var(--bf-max);
  margin: 0 auto;
  padding: 24px 14px 26px;
  text-align: center;
}

.bf-hero__title{
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.06;
  margin: 0 0 12px;
  color: var(--bf-bar-ink);
}

.bf-hero__lead{
  margin: 0 auto;
  max-width: 880px;
  font-size: 15px;
  line-height: 1.64;
  color: var(--bf-bar-ink);
}

.bf-hero__lead strong{
  color: var(--bf-bar-ink);
  font-weight: 750;
}

@media (max-width: 520px){
  .bf-sentinel__wrap{
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
  }
  .bf-sentinel__txt{ font-size: 12.25px; }
  .bf-hero__wrap{ padding: 20px 12px 22px; }
}

.bf-deck{
  background: #F7F9FF;
  padding: 18px 0 22px;
}

.bf-deck__wrap{
  max-width: var(--bf-max, 980px);
  margin: 0 auto;
  padding: 0 14px;
  text-align: center;
}

.bf-deck__title{
  margin: 0 0 14px;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.15;
  color: rgba(22,26,43,.96);
}

.bf-deck__stack{
  display: grid;
  gap: 10px;
}

.bf-chip{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(22,26,43,.12);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(16,24,40,.08);
  overflow: hidden;
}

.bf-chip--prime{
  border-color: rgba(110, 80, 255, .32);
  box-shadow:
    0 18px 46px rgba(16,24,40,.10),
    0 0 0 2px rgba(110, 80, 255, .10) inset,
    0 0 0 1px rgba(255, 123, 92, .06) inset;
}

.bf-chip__grid{
  display: grid;
  align-items: center;
  grid-template-columns: 54px 120px 1.2fr 1.5fr 172px 190px;
  gap: 10px;
  padding: 12px 12px;
  text-align: left;
}

.bf-chip__cell{ min-width: 0; }

.bf-chip__cell--rank{
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: .03em;
  color: rgba(22,26,43,.72);
  font-size: 16px;
  justify-self: center;
}

.bf-chip__cell--logo{
  display: flex;
  align-items: center;
  justify-content: center;
}

.bf-chip__logo{
  width: 106px;
  height: 34px;
  object-fit: contain;
  filter: saturate(1.06) contrast(1.05);
}

.bf-chip__name{
  font-weight: 800;
  color: rgba(22,26,43,.94);
  font-size: 15px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.bf-chip__score{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bf-stars{
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1px;
}

.bf-stars__off{
  color: rgba(22,26,43,.20);
}

.bf-stars__on{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  color: rgba(110, 80, 255, .92);
}

.bf-chip__ratio{
  font-size: 12.8px;
  color: rgba(22,26,43,.70);
  font-weight: 700;
}

.bf-chip__bonusLine{
  font-weight: 850;
  color: rgba(22,26,43,.92);
  font-size: 14px;
  line-height: 1.15;
}

.bf-chip__bonusLine--sub{
  margin-top: 6px;
  font-weight: 700;
  font-size: 12.8px;
  color: rgba(22,26,43,.72);
}

.bf-paygrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-items: center;
  justify-items: center;
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
}

.bf-paygrid__ico{
  width: 70px;
  height: 35px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(246,248,255,.9);
  border: 1px solid rgba(22,26,43,.10);
  padding: 4px 8px;
}

.bf-chip__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 850;
  letter-spacing: .01em;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(110,80,255,.98), rgba(79,209,197,.90));
  box-shadow: 0 16px 36px rgba(110,80,255,.18);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.bf-chip__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(110,80,255,.22);
  filter: saturate(1.05);
}

@media (max-width: 860px){
  .bf-chip__grid{
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 12px 14px;
    text-align: center;
  }

  .bf-chip__cell--rank{ order: 1; justify-self: center; }
  .bf-chip__cell--logo{ order: 2; }
  .bf-chip__cell--brand{ order: 3; }
  .bf-chip__score{ justify-content: center; }

  .bf-chip__cell--bonus{ order: 4; }

  .bf-chip__cell--pay{ order: 5; }

  .bf-chip__cell--cta{ order: 6; width: 100%; }

  .bf-paygrid{
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
  }
  .bf-paygrid__ico{
    width: 100%;
    max-width: 84px;
  }

  .bf-chip__btn{ max-width: 420px; margin: 0 auto; }
}

@media (max-width: 420px){
  .bf-paygrid__ico{ max-width: 80px; height: 40px; }
}

.bf-merits{
  background:
    radial-gradient(780px 420px at 16% 18%, rgba(110,80,255,.10), transparent 62%),
    radial-gradient(760px 420px at 86% 24%, rgba(79,209,197,.10), transparent 62%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAFF 100%);
  padding: 18px 0 22px;
}

.bf-merits__wrap{
  max-width: var(--bf-max, 980px);
  margin: 0 auto;
  padding: 0 14px;
  text-align: center;
}

.bf-merits__title{
  margin: 0 0 14px;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.15;
  color: rgba(22,26,43,.96);
}

.bf-merits__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
  text-align: left;
}

.bf-merits__col{
  border-radius: 16px;
  border: 1px solid rgba(22,26,43,.12);
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 40px rgba(16,24,40,.08);
  padding: 12px 12px;
}

.bf-merits__head{
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.15;
  color: rgba(22,26,43,.95);
}

.bf-merits__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.bf-merits__item{
  position: relative;
  padding-left: 18px;
  color: rgba(22,26,43,.78);
  font-size: 14px;
  line-height: 1.45;
}

.bf-merits__dot{
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(110,80,255,.95), rgba(255,123,92,.75));
  box-shadow: 0 10px 22px rgba(110,80,255,.18);
}

.bf-merits__dot--mint{
  background: linear-gradient(135deg, rgba(79,209,197,.95), rgba(110,80,255,.75));
  box-shadow: 0 10px 22px rgba(79,209,197,.18);
}

.bf-merits__note{
  margin: 12px auto 0;
  max-width: 920px;
  color: rgba(22,26,43,.76);
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 860px){
  .bf-merits__grid{
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 520px){
  .bf-merits{ padding: 16px 0 20px; }
  .bf-merits__col{ padding: 12px 12px; }
  .bf-merits__item{ font-size: 13.75px; }
  .bf-merits__note{ font-size: 14px; }
}

.bf-regul{
  background:
    radial-gradient(820px 420px at 14% 18%, rgba(110,80,255,.10), transparent 60%),
    radial-gradient(820px 420px at 86% 22%, rgba(79,209,197,.10), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F6F8FF 100%);
  padding: 20px 0 24px;
}

.bf-regul__wrap{
  max-width: var(--bf-max, 980px);
  margin: 0 auto;
  padding: 0 14px;
  text-align: center;
}

.bf-regul__title{
  margin: 0 0 10px;
  font-size: clamp(18px, 2.3vw, 22px);
  line-height: 1.15;
  color: rgba(22,26,43,.96);
}

.bf-regul__intro{
  margin: 0 auto 16px;
  max-width: 880px;
  font-size: 14.75px;
  line-height: 1.6;
  color: rgba(22,26,43,.78);
}

.bf-regul__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bf-regul__card{
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(22,26,43,.12);
  border-radius: 16px;
  padding: 14px 14px 16px;
  box-shadow: 0 16px 40px rgba(16,24,40,.08);
  text-align: center;
}

.bf-regul__icon{
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(110,80,255,.95), rgba(79,209,197,.85));
  box-shadow: 0 14px 30px rgba(110,80,255,.22);
  position: relative;
}

.bf-regul__icon::before{
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.bf-regul__icon--shield::before{
  border-radius: 50% 50% 40% 40%;
}

.bf-regul__icon--glass::before{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: 10px 10px 0 -6px #fff;
}

.bf-regul__icon--check::before{
  width: 16px;
  height: 10px;
  border: none;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

.bf-regul__head{
  margin: 6px 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: rgba(22,26,43,.94);
}

.bf-regul__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(22,26,43,.74);
}

@media (max-width: 860px){
  .bf-regul__grid{
    grid-template-columns: 1fr;
  }
}

.bf-rplay{
  background:
    radial-gradient(860px 520px at 18% 10%, rgba(110,80,255,.35), transparent 60%),
    radial-gradient(820px 520px at 86% 18%, rgba(79,209,197,.30), transparent 62%),
    radial-gradient(760px 520px at 52% 120%, rgba(255,123,92,.22), transparent 62%),
    linear-gradient(180deg, #0B1022 0%, #0A0E1B 100%);
  padding: 22px 0 24px;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.bf-rplay__wrap{
  max-width: var(--bf-max, 980px);
  margin: 0 auto;
  padding: 0 14px;
  text-align: center;
}

.bf-rplay__title{
  margin: 0 0 10px;
  font-size: clamp(18px, 2.3vw, 22px);
  line-height: 1.15;
  color: rgba(255,255,255,.96);
}

.bf-rplay__lead{
  margin: 0 auto 14px;
  max-width: 900px;
  font-size: 14.75px;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
}

.bf-rplay__lead strong{
  color: rgba(255,255,255,.95);
  font-weight: 800;
}

.bf-rplay__panel{
  max-width: 920px;
  margin: 0 auto 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 46px rgba(0,0,0,.35);
  padding: 14px 14px 12px;
  text-align: left;
}

.bf-rplay__hint{
  margin: 0 0 10px;
  color: rgba(255,255,255,.86);
  font-weight: 850;
  letter-spacing: .01em;
  font-size: 13.5px;
}

.bf-rplay__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bf-rplay__item{
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
}

.bf-rplay__txt{
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.55;
}

.bf-rplay__txt strong{
  color: rgba(255,255,255,.95);
  font-weight: 850;
}

.bf-rplay__ico{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 34px rgba(0,0,0,.28);
  position: relative;
}

.bf-rplay__ico--lock::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 14px;
  height: 10px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 4px;
}
.bf-rplay__ico--lock::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 34%;
  width: 12px;
  height: 10px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255,255,255,.92);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  opacity: .95;
}

.bf-rplay__ico--scale::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 22%;
  width: 16px;
  height: 2px;
  transform: translateX(-50%);
  background: rgba(255,255,255,.92);
  border-radius: 2px;
}
.bf-rplay__ico--scale::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  width: 18px;
  height: 12px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255,255,255,.92);
  border-top: none;
  border-radius: 0 0 10px 10px;
  opacity: .95;
}

.bf-rplay__ico--help::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  border: 3px solid rgba(255,255,255,.92);
  border-radius: 50%;
}
.bf-rplay__ico--help::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  opacity: .18;
}

.bf-rplay__note{
  margin: 0 auto;
  max-width: 920px;
  color: rgba(255,255,255,.76);
  font-size: 14.5px;
  line-height: 1.65;
}

.bf-rplay__link{
  color: rgba(199,255,236,.96);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.bf-rplay__link:hover{ opacity: 1; }

@media (max-width: 520px){
  .bf-rplay{ padding: 20px 0 22px; }
  .bf-rplay__panel{ padding: 12px 12px 10px; }
  .bf-rplay__item{ grid-template-columns: 36px 1fr; }
  .bf-rplay__txt{ font-size: 13.75px; }
}

.bf-footer{
  background:
    radial-gradient(860px 520px at 18% 10%, rgba(110,80,255,.22), transparent 62%),
    radial-gradient(820px 520px at 86% 16%, rgba(79,209,197,.18), transparent 64%),
    linear-gradient(180deg, #0A0E1B 0%, #070A12 100%);
  color: rgba(255,255,255,.82);
  padding: 22px 0 18px;
}

.bf-footer__wrap{
  max-width: var(--bf-max, 980px);
  margin: 0 auto;
  padding: 0 14px;
}

.bf-footer__top{
  display: grid;
  grid-template-columns: 1.7fr .8fr;
  gap: 14px;
  align-items: start;
}

.bf-footer__head{
  margin: 0 0 10px;
  color: rgba(255,255,255,.95);
  font-size: 15px;
  font-weight: 900;
}

.bf-footer__sub{
  margin: 12px 0 6px;
  color: rgba(255,255,255,.92);
  font-size: 13.5px;
  font-weight: 850;
}

.bf-footer__p{
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 13.5px;
  line-height: 1.6;
}

.bf-footer__p strong{
  color: rgba(255,255,255,.94);
  font-weight: 850;
}

.bf-footer__link{
  color: rgba(199,255,236,.96);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.bf-footer__link:hover{ opacity: 1; }

.bf-footer__nav{
  display: grid;
  gap: 8px;
  padding: 10px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 46px rgba(0,0,0,.35);
}

.bf-footer__navlink{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.bf-footer__navlink::after{
  content: "→";
  opacity: .75;
}

.bf-footer__navlink:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
}

.bf-footer__rule{
  height: 1px;
  margin: 14px 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
}

.bf-footer__logos{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.bf-footer__logo{
  display: grid;
  place-items: center;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
  min-height: 54px;
}

.bf-footer__logo:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

.bf-footer__logo img{
  width: 100%;
  height: 90px;
  object-fit: contain;
  filter: brightness(1.05) contrast(1.05);
}

.bf-footer__copy{
  text-align: center;
  font-size: 12.75px;
  color: rgba(255,255,255,.70);
}

@media (max-width: 860px){
  .bf-footer__top{
    grid-template-columns: 1fr;
  }
  .bf-footer__nav{
    max-width: 520px;
    margin: 0 auto;
  }
  .bf-footer__logos{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bf-footer__logo img{
    height: 50px;
  }
}

@media (max-width: 420px){
  .bf-footer__logo{ min-height: 52px; }
}

.bf-cookieveil{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 120;
  display: none;
  justify-content: center;
  pointer-events: none;
}

.bf-cookieveil.is-on{
  display: flex;
}

.bf-cookieveil__card{
  pointer-events: auto;
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(22,26,43,.14);
  box-shadow: 0 22px 60px rgba(16,24,40,.18);
  padding: 12px 12px 10px;
}

.bf-cookieveil__top{
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
}

.bf-cookieveil__mark{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(110,80,255,.95), rgba(79,209,197,.88));
  box-shadow: 0 16px 34px rgba(110,80,255,.20);
  position: relative;
}

.bf-cookieveil__mark::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.92);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.14);
}

.bf-cookieveil__ttl{
  font-weight: 900;
  color: rgba(22,26,43,.95);
  font-size: 14.5px;
  line-height: 1.2;
}

.bf-cookieveil__sub{
  margin-top: 4px;
  color: rgba(22,26,43,.74);
  font-size: 13.25px;
  line-height: 1.45;
}

.bf-cookieveil__actions{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.bf-cookieveil__btn{
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  min-height: 40px;
  font-weight: 850;
  letter-spacing: .01em;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease, background .16s ease;
}

.bf-cookieveil__btn--main{
  padding: 0 40px;
  color: #fff;
  background: linear-gradient(135deg, rgba(110,80,255,.98), rgba(79,209,197,.90));
  box-shadow: 0 16px 36px rgba(110,80,255,.18);
}

.bf-cookieveil__btn--ghost{
  color: rgba(22,26,43,.90);
  background: rgba(22,26,43,.06);
  border: 1px solid rgba(22,26,43,.12);
}

.bf-cookieveil__btn:hover{
  transform: translateY(-1px);
  filter: saturate(1.04);
}

.bf-cookieveil__meta{
  margin-top: 8px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  color: rgba(22,26,43,.60);
  font-size: 12.5px;
}

.bf-cookieveil__link{
  color: rgba(22,26,43,.72);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.bf-cookieveil__link:hover{ color: rgba(22,26,43,.88); }

.bf-ageglaze{
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: rgba(8, 10, 18, .35);
  backdrop-filter: blur(3px);
}

.bf-ageglaze.is-on{
  display: flex;
}

.bf-ageglaze__card{
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.22);
  background:
    radial-gradient(860px 420px at 18% 10%, rgba(110,80,255,.22), transparent 60%),
    radial-gradient(820px 420px at 86% 18%, rgba(79,209,197,.18), transparent 62%),
    linear-gradient(180deg, rgba(12,16,30,.94), rgba(10,12,22,.92));
  box-shadow: 0 28px 70px rgba(0,0,0,.42);
  color: rgba(255,255,255,.84);
  padding: 14px 14px 12px;
}

.bf-ageglaze__cap{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.bf-ageglaze__badge{
  width: 44px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.20);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 800;
  color: rgba(255,255,255,.92);
}

.bf-ageglaze__title{
  margin: 0;
  font-size: 16px;
  line-height: 1.15;
  color: rgba(255,255,255,.96);
}

.bf-ageglaze__text{
  margin: 0;
  font-size: 13.7px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}

.bf-ageglaze__text strong{
  color: rgba(255,255,255,.95);
  font-weight: 850;
}

.bf-ageglaze__list{
  margin: 10px 0 10px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.bf-ageglaze__item{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
}

.bf-ageglaze__liTxt{
  font-size: 13.6px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}

.bf-ageglaze__ico{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 34px rgba(0,0,0,.28);
  position: relative;
}

.bf-ageglaze__ico--spark::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 2px solid rgba(199,255,236,.95);
  border-radius: 4px;
}
.bf-ageglaze__ico--spark::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 18px;
  transform: translate(-50%, -50%);
  background: rgba(199,255,236,.75);
  border-radius: 2px;
  opacity: .35;
}

.bf-ageglaze__ico--shield::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 16px;
  height: 18px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 10px 10px 12px 12px;
}
.bf-ageglaze__ico--shield::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 6px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-left: 2px solid rgba(79,209,197,.95);
  border-bottom: 2px solid rgba(79,209,197,.95);
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: .9;
}

.bf-ageglaze__ico--bolt::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 18px;
  transform: translate(-50%, -50%) skewX(-12deg);
  background: linear-gradient(180deg, rgba(255,187,92,.95), rgba(110,80,255,.85));
  clip-path: polygon(40% 0%, 100% 0%, 55% 48%, 92% 48%, 20% 100%, 45% 56%, 10% 56%);
  border-radius: 2px;
}

.bf-ageglaze__actions{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 10px;
  margin-top: 8px;
}

.bf-ageglaze__btn{
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  min-height: 42px;
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease, background .16s ease, opacity .16s ease;
}

.bf-ageglaze__btn--ok{
  color: #0B1022;
  background: linear-gradient(135deg, rgba(199,255,236,.96), rgba(255,255,255,.88));
  box-shadow: 0 18px 44px rgba(79,209,197,.18);
}

.bf-ageglaze__btn--no{
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.bf-ageglaze__btn:hover{
  transform: translateY(-1px);
  filter: saturate(1.05);
}

.bf-ageglaze__fine{
  margin-top: 10px;
  font-size: 12.6px;
  line-height: 1.45;
  color: rgba(255,255,255,.68);
  text-align: center;
}

@media (max-width: 420px){
  .bf-cookieveil__card{ padding: 12px 12px 10px; }
  .bf-ageglaze__card{ padding: 13px 12px 12px; }
  .bf-ageglaze__actions{ grid-template-columns: 1fr; }
}

.bf-legal{
  background: #F7F9FF;
}

.bf-legal__hero{
  background: linear-gradient(
    135deg,
    #2a2359 0%,
    #3a3180 45%,
    #4a3fa3 100%
  );
  border-bottom: 1px solid rgba(22,26,43,.10);
  padding: 20px 0 18px;
}

.bf-legal__wrap{
  max-width: var(--bf-max, 980px);
  margin: 0 auto;
  padding: 0 14px;
  text-align: center;
}

.bf-legal__title{
  margin: 0 0 10px;
  color: var(--bf-bar-ink);
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.08;
}

.bf-legal__lead{
  margin: 0 auto 12px;
  max-width: 860px;
  color: var(--bf-bar-ink);
  font-size: 14.75px;
  line-height: 1.62;
}

.bf-legal__meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.bf-legal__pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(22,26,43,.12);
  box-shadow: 0 14px 34px rgba(16,24,40,.06);
  color: rgba(22,26,43,.72);
  font-size: 12.5px;
  white-space: nowrap;
}

.bf-legal__body{
  padding: 14px 0 22px;
}

.bf-legal__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  text-align: left;
}

.bf-legal__card{
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(22,26,43,.12);
  box-shadow: 0 16px 40px rgba(16,24,40,.08);
  padding: 14px 14px 12px;
}

.bf-legal__h2{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 900;
  color: rgba(22,26,43,.94);
}

.bf-legal__p{
  margin: 0;
  color: rgba(22,26,43,.78);
  font-size: 14px;
  line-height: 1.65;
}

.bf-legal__p + .bf-legal__p{
  margin-top: 10px;
}

.bf-legal__ul{
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.bf-legal__li{
  position: relative;
  padding-left: 18px;
  color: rgba(22,26,43,.78);
  font-size: 14px;
  line-height: 1.55;
}

.bf-legal__li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(110,80,255,.95), rgba(79,209,197,.80));
  box-shadow: 0 10px 22px rgba(110,80,255,.14);
}

.bf-legal__note{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(22,26,43,.18);
  color: rgba(22,26,43,.72);
  font-size: 13.75px;
  line-height: 1.6;
}

.bf-legal__a{
  color: rgba(22,26,43,.92);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 520px){
  .bf-legal__hero{ padding: 18px 0 16px; }
  .bf-legal__card{ padding: 13px 12px 11px; }
  .bf-legal__p, .bf-legal__li{ font-size: 13.75px; }
}
