

:root {
    --fb-bg: #0D0B1F;
    --fb-bg-card: #151230;
    --fb-bg-sub: #1A1638;
    --fb-bg-darker: #08071A;
    --fb-magenta: #EC4899;
    --fb-violet: #8B5CF6;
    --fb-violet-hover: #A78BFA;
    --fb-cyan: #22D3EE;
    --fb-text: #F5F3FF;
    --fb-text-2: #A8A3C7;
    --fb-border: #2A2450;
    --fb-grad-cta: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    --fb-font-h: 'Space Grotesk', sans-serif;
    --fb-font-b: 'Manrope', sans-serif;
    --fb-radius: 18px;
    --fb-radius-sm: 12px;
    --fb-radius-lg: 24px;
    --fb-header-h: 68px;
    --fb-stack: 1rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

h2[id], h3[id], section[id] {
    scroll-margin-top: 80px;
}

@media (max-width: 768px) {
    h2[id], h3[id], section[id] {
        scroll-margin-top: 76px;
    }
}

body {
    margin: 0;
    font-family: var(--fb-font-b);
    font-weight: 400;
    color: var(--fb-text);
    background: var(--fb-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--fb-header-h);
}

body.is-locked { overflow: hidden; }

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

a { color: var(--fb-violet-hover); text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--fb-magenta); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fb-font-h);
    color: var(--fb-text);
    margin-top: 0;
    margin-bottom: var(--fb-stack);
}
h1 { font-size: 2.25rem; line-height: 1.2; font-weight: 700; }
h2 { font-size: 1.75rem; line-height: 1.3; font-weight: 700; }
h3 { font-size: 1.375rem; line-height: 1.35; font-weight: 600; }
h4 { font-size: 1.125rem; line-height: 1.4; font-weight: 600; }
h5, h6 { font-size: 1rem; line-height: 1.4; font-weight: 600; }

p, ul, ol {
    margin-top: 0;
    margin-bottom: var(--fb-stack);
}
p { color: var(--fb-text); font-size: 1rem; line-height: 1.6; }
ul, ol { color: var(--fb-text); padding-left: 22px; font-size: 1rem; line-height: 1.6; }
li { font-size: 1rem; line-height: 1.6; }


.fb__container--narrow h2 { margin-top: 2.5rem; }
.fb__container--narrow h3 { margin-top: 1.75rem; }
.fb__container--narrow h2:first-child,
.fb__container--narrow h3:first-child { margin-top: 0; }


.fb__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}


.fb__prose {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--fb-text);
}
.fb__prose h2 { margin-top: 2.5rem; }
.fb__prose h3 { margin-top: 1.75rem; }
.fb__prose h2:first-child,
.fb__prose h3:first-child,
.fb__prose h1 + h2,
.fb__prose h1 + h3 { margin-top: 0; }
.fb__prose p { margin: 0 0 var(--fb-stack); }
.fb__prose ul, .fb__prose ol {
    margin: 0 0 var(--fb-stack);
    padding-left: 1.5em;
}
.fb__prose ul { list-style: disc; }
.fb__prose ol:not(.fb__toc__list) { list-style: decimal; }
.fb__prose ol.fb__toc__list {
    list-style: none;
    padding-left: 0;
}
.fb__prose li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}
.fb__prose li:last-child { margin-bottom: 0; }
.fb__prose a {
    color: var(--fb-magenta);
    text-decoration: underline;
}
.fb__prose a:hover { text-decoration: none; }

.fb__prose a.fb__btn {
    text-decoration: none;
}
.fb__prose a.fb__btn--primary,
.fb__prose a.fb__btn--primary:hover,
.fb__prose a.fb__btn--primary:focus {
    color: #FFFFFF;
    text-decoration: none;
}
.fb__prose a.fb__btn--secondary {
    color: var(--fb-violet-hover);
    text-decoration: none;
}
.fb__prose a.fb__btn--secondary:hover,
.fb__prose a.fb__btn--secondary:focus {
    color: var(--fb-text);
    text-decoration: none;
}
.fb__prose img {
    max-width: min(750px, 100%);
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 8px;
}
.fb__prose figure {
    margin: 1.5rem auto;
    max-width: min(750px, 100%);
}
.fb__prose figcaption {
    font-size: 0.875rem;
    color: var(--fb-text-2);
    margin-top: 0.5rem;
}
.fb__prose blockquote {
    margin: 0 0 var(--fb-stack);
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--fb-magenta);
    background: rgba(236, 72, 153, 0.08);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}
.fb__prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
}
.fb__prose th,
.fb__prose td {
    padding: 12px 14px;
    border: 1px solid var(--fb-border);
    text-align: left;
    vertical-align: top;
}
.fb__prose th {
    background: var(--fb-bg-sub);
    font-weight: 600;
    color: var(--fb-text);
    font-family: var(--fb-font-h);
}
.fb__prose tbody tr:nth-child(even) td { background: var(--fb-bg-card); }

@media (max-width: 640px) {
    .fb__prose { font-size: 0.95rem; }
    .fb__prose table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}


.fb-u-flex { display: flex; }
.fb-u-gap-16 { gap: 16px; }
.fb-u-mt-32 { margin-top: 32px; }


.fb__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: var(--fb-font-h);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 220ms ease, background 200ms ease, border-color 200ms ease, color 200ms ease;
    white-space: nowrap;
    text-decoration: none;
}

a.fb__btn:hover,
a.fb__btn:focus {
    text-decoration: none;
}
.fb__btn--primary {
    background: var(--fb-grad-cta);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(236, 72, 153, 0.28);
}
.fb__btn--primary:hover {
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
    transform: translateY(-1px);
    color: #FFFFFF;
}
.fb__btn--secondary {
    background: transparent;
    color: var(--fb-violet-hover);
    border: 1.5px solid var(--fb-violet);
}
.fb__btn--secondary:hover {
    background: rgba(139, 92, 246, 0.12);
    color: var(--fb-text);
    border-color: var(--fb-violet-hover);
}
.fb__btn--lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 14px;
}


.fb__badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(236, 72, 153, 0.10);
    color: var(--fb-magenta);
    border: 1px solid rgba(236, 72, 153, 0.30);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--fb-font-h);
}


.fb__header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--fb-header-h);
    background: rgba(13, 11, 31, 0.85);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--fb-border);
    z-index: 100;
}
.fb__header__inner {
    max-width: 1240px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}


.fb__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--fb-font-h);
    font-weight: 700;
    font-size: 24px;
    color: var(--fb-text);
    text-decoration: none;
    letter-spacing: -0.01em;
}
.fb__logo:hover { color: var(--fb-text); }
.fb__logo__text { display: inline-flex; }
.fb__logo__f { color: var(--fb-magenta); }
.fb__logo__un { color: #F472B6; }
.fb__logo__bet {
    background: var(--fb-grad-cta);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.fb__logo__spark { flex-shrink: 0; }
.fb__logo--sm { font-size: 20px; }


.fb__nav { display: flex; }
.fb__nav__list {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.fb__nav__link {
    position: relative;
    font-family: var(--fb-font-h);
    font-weight: 500;
    font-size: 15px;
    color: var(--fb-text-2);
    text-decoration: none;
    padding: 6px 0;
    transition: color 160ms ease;
}
.fb__nav__link:hover { color: var(--fb-text); }
.fb__nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--fb-grad-cta);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 220ms ease;
}
.fb__nav__link:hover::after { transform: scaleX(1); }
.fb__nav__link--active {
    color: var(--fb-text);
}
.fb__nav__link--active::after {
    transform: scaleX(1);
}

.fb__header__cta {
    display: flex;
    gap: 12px;
    align-items: center;
}


.fb__burger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.fb__burger span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--fb-grad-cta);
    transition: transform 220ms ease, opacity 220ms ease;
}


.fb__nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.fb__nav-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
}
.fb__nav-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 11, 31, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.fb__nav-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85vw;
    max-width: 380px;
    background: var(--fb-bg-card);
    border-left: 1px solid var(--fb-border);
    transform: translateX(100%);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.fb__nav-drawer.is-open .fb__nav-drawer__panel { transform: translateX(0); }

.fb__nav-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--fb-border);
    height: var(--fb-header-h);
}
.fb__nav-drawer__close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--fb-border);
    border-radius: 10px;
    color: var(--fb-text-2);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 150ms ease, border-color 150ms ease;
}
.fb__nav-drawer__close:hover { color: var(--fb-magenta); border-color: var(--fb-magenta); }

.fb__nav-drawer__nav { flex: 1; overflow-y: auto; }
.fb__nav-drawer__nav ul { list-style: none; margin: 0; padding: 0; }
.fb__nav-drawer__link {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0 20px;
    font-family: var(--fb-font-h);
    font-weight: 500;
    font-size: 16px;
    color: var(--fb-text);
    text-decoration: none;
    border-bottom: 1px solid var(--fb-border);
    transition: background 150ms ease, color 150ms ease;
}
.fb__nav-drawer__link:hover { background: var(--fb-bg-sub); color: var(--fb-violet-hover); }
.fb__nav-drawer__link--active {
    font-weight: 700;
    color: var(--fb-magenta);
}

.fb__nav-drawer__cta {
    display: flex;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid var(--fb-border);
    background: var(--fb-bg-darker);
}
.fb__nav-drawer__cta .fb__btn { flex: 1 1 50%; }


.fb__hero {
    position: relative;
    padding: 72px 0 64px;
    background:
        radial-gradient(60% 80% at 75% 30%, rgba(236, 72, 153, 0.13) 0%, transparent 60%),
        radial-gradient(50% 70% at 15% 80%, rgba(139, 92, 246, 0.13) 0%, transparent 60%),
        linear-gradient(180deg, #0D0B1F 0%, #151230 100%);
    overflow: hidden;
}
.fb__hero__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 48px;
    align-items: center;
}
.fb__hero__left { min-width: 0; }
.fb__hero__pretitle { margin-bottom: 20px; }
.fb__hero__title {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.fb__hero__bonus {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-bottom: 24px;
}
.fb__hero__bonus__amount {
    font-family: var(--fb-font-h);
    font-size: 56px;
    font-weight: 700;
    color: var(--fb-magenta);
    letter-spacing: -0.02em;
    line-height: 1;
}
.fb__hero__bonus__spins {
    font-family: var(--fb-font-h);
    font-size: 22px;
    font-weight: 600;
    color: var(--fb-violet-hover);
}
.fb__hero__lead {
    color: var(--fb-text-2);
    font-size: 17px;
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 28px;
}
.fb__hero__actions {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.fb__hero__disclaimer {
    font-size: 13px;
    color: var(--fb-text-2);
    margin: 0;
}


.fb__hero__right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.fb__hero__figure {
    margin: 0;
    max-width: 750px;
    width: 100%;
}
.fb__hero__img {
    width: 100%;
    max-width: 750px;
    height: auto;
    vertical-align: middle;
    border-radius: var(--fb-radius-lg);
    display: block;
    border: 1px solid rgba(236, 72, 153, 0.22);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(139, 92, 246, 0.12);
}


.fb__hero--compact { padding: 56px 0 40px; min-height: auto; }
.fb__hero__title--compact {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.fb__hero--compact .fb__hero__lead {
    font-size: 17px;
    line-height: 1.55;
    max-width: 62ch;
    margin-bottom: 0;
}


.fb__breadcrumbs {
    font-size: 14px;
    color: var(--fb-text-2);
    margin-bottom: 20px;
}
.fb__breadcrumbs a { color: var(--fb-violet-hover); }
.fb__breadcrumbs a:hover { color: var(--fb-magenta); }
.fb__breadcrumbs span { margin: 0 6px; color: var(--fb-text-2); }
.fb__breadcrumbs__current { color: var(--fb-text); }


.fb__perks-strip {
    background: var(--fb-bg-card);
    border-top: 1px solid var(--fb-border);
    border-bottom: 1px solid var(--fb-border);
    padding: 20px 0;
}
.fb__perks-strip__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.fb__perk {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--fb-text);
}
.fb__perk__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--fb-magenta);
    flex-shrink: 0;
}
.fb__perk__text { font-weight: 500; }


.fb__section { padding: 64px 0; }
.fb__section.fb__section--inner-single { padding: 44px 0; }
.fb__inner-chunk + .fb__inner-chunk { margin-top: 2rem; }
.fb__section--404 {
    padding: 120px 0;
    min-height: 60vh;
}

.fb__h2 {
    letter-spacing: -0.02em;
}
.fb__lead {
    color: var(--fb-text-2);
    font-size: 17px;
    max-width: 720px;
    margin-bottom: 32px;
}
.fb__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--fb-stack);
}
.fb__list li {
    position: relative;
    padding: 6px 0 6px 28px;
    margin-bottom: 0.5rem;
    color: var(--fb-text);
}
.fb__list li:last-child { margin-bottom: 0; }
.fb__list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--fb-magenta);
    font-size: 14px;
    line-height: 1.6;
}


.fb__section--toc { padding: 32px 0 0; }
.fb__toc {
    background: var(--fb-bg-sub);
    border: 1px solid var(--fb-border);
    border-left: 4px solid var(--fb-magenta);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}
.fb__toc summary {
    list-style: none;
}
.fb__toc summary::-webkit-details-marker {
    display: none;
}
.fb__toc__title {
    font-family: var(--fb-font-h);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--fb-text);
    margin: 0;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.fb__toc summary::after {
    content: "▾";
    transition: transform .2s ease;
    font-size: 0.9em;
    color: var(--fb-magenta);
}
.fb__toc[open] summary::after {
    transform: rotate(180deg);
}
.fb__toc[open] .fb__toc__list {
    margin-top: 14px;
}
.fb__toc__list {
    list-style: none;
    counter-reset: fb-toc;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
}
.fb__toc__list li {
    counter-increment: fb-toc;
    position: relative;
    padding: 4px 0 4px 34px;
}
.fb__toc__list li::before {
    content: counter(fb-toc, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 4px;
    font-family: var(--fb-font-h);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--fb-magenta);
}
.fb__toc__list a {
    color: var(--fb-text);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 150ms ease, border-color 150ms ease;
}
.fb__toc__list a:hover {
    color: var(--fb-violet-hover);
    border-bottom-color: var(--fb-violet);
    text-decoration: none;
}
.fb__prose .fb__toc__list a {
    color: var(--fb-text);
    text-decoration: none;
}
.fb__prose .fb__toc__list a:hover {
    color: var(--fb-violet-hover);
    text-decoration: none;
}


.fb__grid-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 24px;
}
.fb__slot {
    position: relative;
    background: var(--fb-bg-card);
    border: 1px solid var(--fb-border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 240ms ease, box-shadow 260ms ease, border-color 200ms ease;
    display: flex;
    flex-direction: column;
}
.fb__slot:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(139, 92, 246, 0.28);
    border-color: rgba(139, 92, 246, 0.45);
}
.fb__slot__thumb {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #2A1E4E 0%, #151230 100%);
}
.fb__slot--magenta .fb__slot__thumb { background: linear-gradient(135deg, #3B1A3A 0%, #2A1E4E 100%); }
.fb__slot--violet .fb__slot__thumb { background: linear-gradient(135deg, #2A1E4E 0%, #1E1A4A 100%); }
.fb__slot--cyan .fb__slot__thumb { background: linear-gradient(135deg, #1A2E4A 0%, #151230 100%); }
.fb__slot__thumb__name {
    font-family: var(--fb-font-h);
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    color: var(--fb-text);
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.fb__slot__body { padding: 18px 20px 20px; }
.fb__slot__title {
    margin: 0 0 4px;
    font-size: 18px;
    color: var(--fb-text);
}
.fb__slot__studio {
    margin: 0 0 14px;
    color: var(--fb-text-2);
    font-size: 13px;
}
.fb__slot__cta {
    color: var(--fb-magenta);
    font-weight: 600;
    font-size: 14px;
    font-family: var(--fb-font-h);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 200ms ease, color 150ms ease;
}
.fb__slot__cta:hover { color: var(--fb-violet-hover); gap: 10px; }


.fb__voices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 24px;
}
.fb__voice {
    background: var(--fb-bg-card);
    border: 1px solid var(--fb-border);
    border-radius: var(--fb-radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 220ms ease, box-shadow 260ms ease, border-color 200ms ease;
}
.fb__voice:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(139, 92, 246, 0.22);
    border-color: rgba(139, 92, 246, 0.35);
}
.fb__voice__stars {
    display: inline-flex;
    gap: 3px;
    color: var(--fb-magenta);
}
.fb__voice__text {
    margin: 0;
    color: var(--fb-text);
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}
.fb__voice__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}
.fb__voice__avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--fb-grad-cta);
    color: #FFFFFF;
    font-family: var(--fb-font-h);
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fb__voice__meta { display: flex; flex-direction: column; line-height: 1.2; }
.fb__voice__name { font-family: var(--fb-font-h); font-weight: 600; color: var(--fb-text); font-size: 15px; }
.fb__voice__role { color: var(--fb-text-2); font-size: 13px; margin-top: 3px; }


.fb__faq {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}
.fb__faq-row {
    background: var(--fb-bg-card);
    border: 1px solid var(--fb-border);
    border-radius: var(--fb-radius-sm);
    overflow: hidden;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}
.fb__faq-row.is-open {
    border-color: var(--fb-magenta);
    box-shadow: 0 0 0 1px rgba(236, 72, 153, 0.4);
}
.fb__faq-row__head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--fb-text);
}
.fb__faq-row__q {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    font-family: var(--fb-font-h);
    color: var(--fb-text);
    flex: 1;
}
.fb__faq-row__icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.fb__faq-row__icon::before,
.fb__faq-row__icon::after {
    content: '';
    position: absolute;
    background: var(--fb-magenta);
    border-radius: 2px;
    transition: transform 240ms ease, opacity 240ms ease;
}
.fb__faq-row__icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
}
.fb__faq-row__icon::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
}
.fb__faq-row.is-open .fb__faq-row__icon::after { transform: translateX(-50%) scaleY(0); }

.fb__faq-row__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease;
    padding: 0 22px;
}
.fb__faq-row.is-open .fb__faq-row__a {
    max-height: 500px;
    padding-bottom: 22px;
}
.fb__faq-row__a p {
    margin: 0;
    color: var(--fb-text-2);
    line-height: 1.7;
}


.fb__footer {
    background: var(--fb-bg-darker);
    border-top: 1px solid var(--fb-border);
    padding: 56px 0 28px;
    margin-top: 64px;
}
.fb__footer__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.fb__footer__top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--fb-border);
}
.fb__footer__tagline {
    color: var(--fb-text-2);
    font-size: 15px;
    margin: 0;
    max-width: 560px;
}
.fb__footer__socials { display: flex; gap: 10px; }
.fb__footer__social {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--fb-bg-card);
    border: 1px solid var(--fb-border);
    color: var(--fb-text-2);
    transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}
.fb__footer__social:hover { color: var(--fb-magenta); border-color: var(--fb-magenta); background: rgba(236, 72, 153, 0.08); }

.fb__footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 36px 0;
}
.fb__footer__title {
    font-family: var(--fb-font-h);
    font-size: 15px;
    font-weight: 600;
    color: var(--fb-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 16px;
}
.fb__footer__col ul { list-style: none; padding: 0; margin: 0; }
.fb__footer__col li { padding: 4px 0; }
.fb__footer__col a { color: var(--fb-text-2); font-size: 14px; }
.fb__footer__col a:hover { color: var(--fb-magenta); }

.fb__footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.fb__footer__badge {
    padding: 8px 12px;
    background: var(--fb-bg-card);
    border: 1px solid var(--fb-border);
    border-radius: 8px;
    color: var(--fb-text-2);
    font-size: 13px;
    font-family: var(--fb-font-h);
    font-weight: 500;
}

.fb__footer__bottom {
    padding-top: 20px;
    border-top: 1px solid var(--fb-border);
    text-align: center;
}
.fb__footer__bottom p {
    margin: 0;
    color: var(--fb-text-2);
    font-size: 13px;
}


.fb__404__num {
    font-size: clamp(5rem, 12vw, 8rem);
    background: var(--fb-grad-cta);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0 0 8px;
    letter-spacing: -0.03em;
}
.fb__404__msg {
    color: var(--fb-text-2);
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto 32px;
}


.fb__author-strip {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.11) 0%, rgba(21, 18, 48, 0.9) 45%, var(--fb-bg-card) 100%);
    border-top: 1px solid rgba(236, 72, 153, 0.32);
    padding: 36px 0 40px;
    margin-top: 56px;
    margin-bottom: 0;
}
.fb__author-strip + .fb__footer {
    margin-top: 0;
    padding-top: 48px;
    border-top: 1px solid var(--fb-border);
}
.fb__author-strip__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 24px 26px;
    background: linear-gradient(165deg, rgba(8, 7, 26, 0.72) 0%, rgba(21, 18, 48, 0.96) 100%);
    border: 1px solid rgba(139, 92, 246, 0.28);
    border-radius: var(--fb-radius);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.fb__author-strip__layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
}
.fb__author-strip__photo {
    width: 120px;
    height: 120px;
    border-radius: var(--fb-radius);
    object-fit: cover;
    border: 1px solid var(--fb-border);
    flex-shrink: 0;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.fb__author-strip__text { min-width: 0; }
.fb__author-strip__name {
    font-family: var(--fb-font-h);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--fb-text);
    margin: 0 0 4px;
}
.fb__author-strip__role {
    font-size: 0.9375rem;
    color: var(--fb-magenta);
    margin: 0 0 12px;
    font-weight: 600;
}
.fb__author-strip__bio {
    color: var(--fb-text-2);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0 0 12px;
}
.fb__author-strip__more {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--fb-cyan);
}
.fb__author-strip__more:hover { color: var(--fb-magenta); }

.fb__author-page { display: flex; flex-direction: column; gap: 32px; }
.fb__author-page__media { text-align: center; }
.fb__author-page__img {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: var(--fb-radius);
    border: 1px solid var(--fb-border);
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.fb__author-page__prose { max-width: 720px; }


@media (max-width: 1239px) {
    .fb__hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .fb__hero__right { order: 2; }
    .fb__grid-slots { grid-template-columns: repeat(2, 1fr); }
    .fb__voices { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 767px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .fb__nav, .fb__header__cta { display: none; }
    .fb__burger { display: inline-flex; }

    .fb__hero { padding: 48px 0 48px; }
    .fb__hero--compact { padding: 40px 0 28px; }
    .fb__hero__bonus__amount { font-size: 44px; }
    .fb__hero__bonus__spins { font-size: 18px; }
    .fb__hero__actions { flex-direction: column; align-items: stretch; }
    .fb__hero__actions .fb__btn { width: 100%; }

    .fb__perks-strip__inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 4px;
        padding-right: 24px;
    }
    .fb__perk {
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .fb__section { padding: 48px 0; }

    .fb__toc { padding: 20px; }
    .fb__toc__title { font-size: 1.05rem; }
    .fb__toc__list { grid-template-columns: 1fr; gap: 6px; }

    .fb__grid-slots { grid-template-columns: 1fr; }

    .fb__voices {
        grid-template-columns: none;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px;
        margin: 24px -24px 0;
        padding-left: 24px;
        padding-right: 24px;
    }
    .fb__voice {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .fb__footer { padding: 40px 0 24px; }
    .fb__footer__cols { grid-template-columns: 1fr; gap: 24px; padding: 28px 0; }

    .fb__author-strip { padding: 24px 0 28px; margin-top: 32px; }
    .fb__author-strip__inner { margin: 0 16px; padding: 20px 16px 22px; }
    .fb__author-strip__layout { flex-direction: column; align-items: flex-start; }
    .fb__author-strip__photo { width: 100px; height: 100px; }
}



.fb__main {
    display: block;
    min-height: 60vh;
}


.fb__img-placeholder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fb-bg-card) 0%, var(--fb-bg-sub) 100%);
    border: 1px solid var(--fb-border);
    border-radius: var(--fb-radius);
    color: var(--fb-text-2);
    padding: 32px;
    margin: 28px 0;
    min-height: 220px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.fb__img-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(236, 72, 153, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.22) 0%, transparent 55%);
    pointer-events: none;
}
.fb__img-placeholder--wide { min-height: 260px; }
.fb__img-placeholder--half { min-height: 240px; }
.fb__img-placeholder--left { margin-left: 0; }
.fb__img-placeholder--right { margin-right: 0; }
.fb__img-placeholder__label {
    position: relative;
    font-family: var(--fb-font-h);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-align: center;
    color: var(--fb-text-2);
    padding: 10px 16px;
    background: rgba(10, 8, 26, 0.55);
    border: 1px dashed rgba(139, 92, 246, 0.4);
    border-radius: 10px;
    z-index: 1;
}


.fb__illu {
    margin: 28px 0;
    border-radius: var(--fb-radius);
    overflow: hidden;
    border: 1px solid var(--fb-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    background: var(--fb-bg-card);
}
.fb__illu img {
    display: block;
    width: 100%;
    max-width: 750px;
    height: auto;
    margin: 0;
    border-radius: 0;
}


.fb__slot-card {
    position: relative;
    background: var(--fb-bg-card);
    border: 1px solid var(--fb-border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 240ms ease, box-shadow 260ms ease, border-color 200ms ease;
}
.fb__slot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(139, 92, 246, 0.28);
    border-color: rgba(139, 92, 246, 0.45);
}
.fb__slot-card__thumb {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #2A1E4E 0%, #151230 100%);
}
.fb__slot-card__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.fb__slot-card__thumb--1 { background: linear-gradient(135deg, #3B1A3A 0%, #2A1E4E 100%); }
.fb__slot-card__thumb--2 { background: linear-gradient(135deg, #2A1E4E 0%, #1E1A4A 100%); }
.fb__slot-card__thumb--3 { background: linear-gradient(135deg, #1A2E4A 0%, #151230 100%); }
.fb__slot-card__thumb--4 { background: linear-gradient(135deg, #3A1A2E 0%, #1F1545 100%); }
.fb__slot-card__thumb--5 { background: linear-gradient(135deg, #1F3A3A 0%, #1A1638 100%); }
.fb__slot-card__thumb--6 { background: linear-gradient(135deg, #2E1A4A 0%, #151230 100%); }
.fb__slot-card__thumb--cover {
    padding: 0;
    overflow: hidden;
}
.fb__slot-card__thumb--cover::after {
    display: none;
}
.fb__slot-card__thumb .fb__slot-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
}
.fb__slot-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.fb__slot-card__name {
    margin: 0;
    font-family: var(--fb-font-h);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--fb-text);
}
.fb__slot-card__studio {
    font-size: 0.85rem;
    color: var(--fb-text-2);
    margin-bottom: 8px;
}
.fb__slot-card__cta {
    color: var(--fb-magenta);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--fb-font-h);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 200ms ease, color 150ms ease;
}
.fb__slot-card__cta:hover { color: var(--fb-violet-hover); gap: 10px; }


.fb__table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border: 1px solid var(--fb-border);
    border-radius: var(--fb-radius);
    background: var(--fb-bg-card);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.fb__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.fb__table thead th {
    background: var(--fb-bg-sub);
    color: var(--fb-text);
    font-family: var(--fb-font-h);
    font-weight: 600;
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid var(--fb-border);
}
.fb__table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(42, 36, 80, 0.5);
    color: var(--fb-text);
    vertical-align: top;
}
.fb__table tbody tr:last-child td { border-bottom: none; }
.fb__table tbody tr:hover { background: rgba(139, 92, 246, 0.05); }
.fb__table__total td {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
    font-family: var(--fb-font-h);
    font-weight: 700;
    color: var(--fb-text);
    border-top: 1px solid rgba(236, 72, 153, 0.35);
}


.fb__cta-block {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
    border: 1px solid rgba(236, 72, 153, 0.35);
    border-radius: var(--fb-radius-lg);
    padding: 40px 32px;
    margin: 32px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.fb__cta-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 100%, rgba(139, 92, 246, 0.18) 0%, transparent 55%);
    pointer-events: none;
}
.fb__cta-block--alt {
    background: linear-gradient(135deg, var(--fb-bg-card) 0%, var(--fb-bg-sub) 100%);
    border-color: rgba(139, 92, 246, 0.35);
}
.fb__cta-block__content {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.fb__cta-block__pretitle {
    margin: 0;
    font-family: var(--fb-font-h);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fb-magenta);
}
.fb__cta-block__title {
    margin: 0;
    font-family: var(--fb-font-h);
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.25;
    color: var(--fb-text);
}
.fb__cta-block__text {
    margin: 0;
    color: var(--fb-text-2);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 560px;
}
.fb__cta-block__disclaimer {
    margin: 4px 0 0;
    font-size: 0.8rem;
    color: var(--fb-text-2);
    opacity: 0.8;
}
.fb__cta-block__disclaimer a {
    color: var(--fb-violet-hover);
    text-decoration: underline;
}


.fb__pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 28px 0;
}
.fb__pros,
.fb__cons {
    background: var(--fb-bg-card);
    border: 1px solid var(--fb-border);
    border-radius: var(--fb-radius);
    padding: 26px 24px;
}
.fb__pros { border-left: 3px solid #4ade80; }
.fb__cons { border-left: 3px solid #f87171; }
.fb__pros-cons__title {
    margin: 0 0 14px;
    font-family: var(--fb-font-h);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fb__pros-cons__title--pro { color: #4ade80; }
.fb__pros-cons__title--pro::before { content: "✔"; font-size: 1rem; }
.fb__pros-cons__title--con { color: #f87171; }
.fb__pros-cons__title--con::before { content: "✘"; font-size: 1rem; }
.fb__pros-cons__list {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}
.fb__pros-cons__list li {
    position: relative;
    padding: 6px 0 6px 22px;
    color: var(--fb-text);
    font-size: 0.95rem;
    line-height: 1.5;
}
.fb__pros-cons__list li::before {
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}
.fb__pros .fb__pros-cons__list li::before { content: "✔"; color: #4ade80; }
.fb__cons .fb__pros-cons__list li::before { content: "✘"; color: #f87171; }


.fb__steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 24px 0;
    counter-reset: fb-step;
}
.fb__step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--fb-bg-card);
    border: 1px solid var(--fb-border);
    border-radius: var(--fb-radius-sm);
    padding: 18px 20px;
    transition: border-color 200ms ease, transform 200ms ease;
}
.fb__step:hover {
    border-color: rgba(139, 92, 246, 0.45);
    transform: translateX(2px);
}
.fb__step__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--fb-grad-cta);
    color: #FFFFFF;
    font-family: var(--fb-font-h);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.35);
}
.fb__step__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fb__step__body strong {
    font-family: var(--fb-font-h);
    font-weight: 600;
    color: var(--fb-text);
    font-size: 1rem;
}
.fb__step__body p {
    margin: 0;
    color: var(--fb-text-2);
    font-size: 0.95rem;
    line-height: 1.55;
}


@media (max-width: 960px) {
    .fb__pros-cons { grid-template-columns: 1fr; }
    .fb__cta-block { padding: 32px 22px; }
    .fb__cta-block__title { font-size: 1.5rem; }
}

@media (max-width: 767px) {
    .fb__img-placeholder { min-height: 180px; padding: 22px; margin: 22px 0; }
    .fb__img-placeholder--wide { min-height: 200px; }
    .fb__img-placeholder--half { min-height: 180px; }
    .fb__illu { margin: 22px 0; }

    .fb__cta-block { padding: 26px 18px; border-radius: 18px; }
    .fb__cta-block__title { font-size: 1.35rem; }
    .fb__cta-block__text { font-size: 0.95rem; }

    .fb__table thead { display: none; }
    .fb__table tbody td {
        display: block;
        padding: 10px 16px;
    }
    .fb__table tbody tr {
        display: block;
        border-bottom: 1px solid var(--fb-border);
        padding: 8px 0;
    }

    .fb__step { padding: 14px 16px; gap: 12px; }
    .fb__step__num { width: 32px; height: 32px; font-size: 0.9rem; }
}

.fb__slots-picks {
    padding: 24px 0 28px;
    background: var(--fb-bg);
}
.fb__perks-strip + .fb__slots-picks {
    padding-top: 12px;
}
.fb__slots-picks-heading {
    margin: 0 0 14px;
    text-align: center;
    font-family: var(--fb-font-h);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fb-text-2);
}
.fb__slots-picks-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px 12px;
    align-items: stretch;
}
.fb__slots-picks-card {
    display: block;
    border-radius: var(--fb-radius-sm);
    overflow: hidden;
    border: 1px solid var(--fb-border);
    outline: none;
    transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
a.fb__slots-picks-card:hover,
a.fb__slots-picks-card:focus {
    color: inherit;
    text-decoration: none;
}
.fb__slots-picks-card:focus-visible {
    border-color: var(--fb-magenta);
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.35);
}
.fb__slots-picks-card:hover {
    border-color: rgba(236, 72, 153, 0.65);
    transform: translateY(-2px);
}
.fb__slots-picks-media {
    display: block;
    position: relative;
    aspect-ratio: 232 / 174;
    background: var(--fb-bg-card);
}
.fb__slots-picks-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fb__slots-picks-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 11, 31, 0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}
.fb__slots-picks-card:hover .fb__slots-picks-overlay,
.fb__slots-picks-card:focus-visible .fb__slots-picks-overlay {
    opacity: 1;
}
.fb__slots-picks-play {
    display: flex;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
@media (max-width: 900px) {
    .fb__slots-picks-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
}
@media (max-width: 520px) {
    .fb__slots-picks {
        padding: 20px 0 24px;
    }
    .fb__slots-picks-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .fb__slots-picks-play svg {
        width: 40px;
        height: 40px;
    }
}

