/* ============================================================
   betify — analyse indépendante (feuille de style)
   Palette : noir #0E0E0E / vert vif #2EE66E / cartes dégradées
   Pile de polices système (sans webfont) pour le PageSpeed. Préfixe : bfy
   ============================================================ */

:root {
    --bfy-bg:         #0E0E0E;
    --bfy-bg-2:       #151515;
    --bfy-card:       #1b1b1b;
    --bfy-bar:        #0a0a0a;
    --bfy-green:      #2EE66E;
    --bfy-green-soft: #66f49a;
    --bfy-green-dk:   #1eb857;
    --bfy-cyan:       #25d0c0;
    --bfy-violet:     #8b5cf6;
    --bfy-pink:       #f0508a;
    --bfy-amber:      #f5b13c;
    --bfy-white:      #ffffff;
    --bfy-mute:       #9aa3a0;
    --bfy-line:       rgba(255,255,255,.08);
    --bfy-r:          16px;
    --bfy-r-s:        10px;
    --bfy-bar-h:      66px;
    --bfy-font:       Calibri,"Segoe UI",system-ui,sans-serif;
    --bfy-ease:       .24s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }
body {
    font-family: var(--bfy-font);
    background: #0E0E0E;
    color: #e7ece9;
    line-height: 1.62;
    font-size: 15.5px;
    overflow-x: clip;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url('../img/body-bg.webp') center/cover no-repeat;
    opacity: .55;
    z-index: -1;
    pointer-events: none;
}
h1, h2, h3 { font-family: var(--bfy-font); font-weight: 800; line-height: 1.2; color: var(--bfy-white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
strong, b { font-weight: 700; color: #fff; }
hr { border: 0; border-top: 1px solid var(--bfy-line); margin: 34px 0; }

/* ===== Boutons ===== */
.bfy-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 800; letter-spacing: .3px; text-transform: uppercase;
    border: none; cursor: pointer; border-radius: 10px;
    padding: 13px 26px; font-size: 14px;
    transition: transform var(--bfy-ease), box-shadow var(--bfy-ease), background var(--bfy-ease);
    white-space: nowrap;
}
.bfy-btn-green {
    background: linear-gradient(135deg, var(--bfy-green), var(--bfy-green-soft));
    color: #06210f;
    box-shadow: 0 6px 22px rgba(46,230,110,.30);
}
.bfy-btn-green:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(46,230,110,.45); }
.bfy-btn-solid { background: var(--bfy-green-dk); color: #06210f; }
.bfy-btn-solid:hover { background: var(--bfy-green); transform: translateY(-2px); }
.bfy-btn-ghost { background: rgba(255,255,255,.05); color: #fff; border: 1px solid var(--bfy-line); }
.bfy-btn-ghost:hover { background: rgba(255,255,255,.11); }
.bfy-btn-sm { padding: 9px 18px; font-size: 12.5px; }

/* ===== Barre supérieure (bureau) ===== */
.bfy-top {
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    height: var(--bfy-bar-h); padding: 0 30px;
    background: var(--bfy-bar);
    border-bottom: 1px solid var(--bfy-line);
    position: sticky; top: 0; z-index: 60;
}
.bfy-logo { display: inline-flex; align-items: center; }
.bfy-logo img, .bfy-mlogo img { height: 47px; width: auto; display: block; }
.bfy-nav { display: flex; gap: 6px; align-items: center; }
.bfy-nav a {
    padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 600; color: #c4ccc8;
    transition: background var(--bfy-ease), color var(--bfy-ease);
}
.bfy-nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.bfy-nav a.bfy-on { color: var(--bfy-green); }
.bfy-top-cta { display: flex; align-items: center; }

/* ===== En-tête mobile ===== */
.bfy-mtop {
    display: none; align-items: center; justify-content: space-between; gap: 12px;
    height: 58px; padding: 0 16px; background: var(--bfy-bar);
    border-bottom: 1px solid var(--bfy-line); position: sticky; top: 0; z-index: 60;
}
.bfy-burger { width: 40px; height: 40px; background: transparent; border: 1px solid var(--bfy-line); border-radius: 10px; display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center; cursor: pointer; }
.bfy-burger span { width: 18px; height: 2px; background: #fff; border-radius: 2px; }
.bfy-mlogo { display: inline-flex; align-items: center; }
.bfy-mnav {
    position: fixed; top: 0; left: -300px; width: 280px; height: 100%; z-index: 80;
    background: var(--bfy-bg-2); border-right: 1px solid var(--bfy-line);
    padding: 22px 16px; display: flex; flex-direction: column; gap: 4px;
    transition: left .28s ease;
}
.bfy-mnav.bfy-open { left: 0; }
.bfy-mnav a { padding: 13px 12px; border-radius: 10px; font-weight: 600; color: #cdd6d2; }
.bfy-mnav a:hover, .bfy-mnav a.bfy-hot { background: rgba(46,230,110,.12); color: var(--bfy-green); }
.bfy-ovl { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 70; opacity: 0; visibility: hidden; transition: opacity .28s; }
.bfy-ovl.bfy-show { opacity: 1; visibility: visible; }

/* ===== Hero ===== */
.bfy-hero {
    position: relative;
    background:
        linear-gradient(180deg, rgba(14,14,14,.5) 0%, rgba(14,14,14,.85) 70%, var(--bfy-bg) 100%),
        radial-gradient(1100px 540px at 72% 16%, rgba(46,230,110,.20), transparent 60%),
        var(--bfy-bg);
    overflow: hidden;
}
.bfy-hero-img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .5;
}
.bfy-hero-inner {
    position: relative; z-index: 2; max-width: 1180px; margin: 0 auto;
    padding: 86px 30px 78px; text-align: center;
}
.bfy-hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(46,230,110,.14); border: 1px solid rgba(46,230,110,.5);
    color: var(--bfy-green-soft); padding: 6px 15px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .6px; margin-bottom: 20px;
}
.bfy-hero h1 {
    font-size: clamp(40px, 8vw, 74px); letter-spacing: .5px; margin-bottom: 6px;
    text-shadow: 0 3px 18px rgba(0,0,0,.55);
}
.bfy-hero h1 b {
    font-weight: 900;
    background: linear-gradient(135deg, var(--bfy-green), var(--bfy-cyan));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bfy-hero-off { font-size: clamp(20px, 4vw, 30px); font-weight: 800; color: #fff; margin-bottom: 6px; }
.bfy-hero-off b { color: var(--bfy-green); }
.bfy-hero-sub { color: #cdd6d2; font-size: 16px; margin-bottom: 28px; }
.bfy-hero-cta { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.bfy-hero-trust { margin-top: 22px; color: var(--bfy-mute); font-size: 13px; }
.bfy-hero-trust b { color: #fff; }

/* ===== Cadre de section ===== */
.bfy-sec { max-width: 1180px; margin: 0 auto; padding: 56px 30px; }
.bfy-sec h2 { font-size: clamp(25px, 4vw, 33px); margin-bottom: 14px; }
.bfy-sec h3 { font-size: 20px; margin: 26px 0 9px; color: #fff; }
.bfy-sec p { margin-bottom: 14px; color: #ccd5d0; }
.bfy-sec a.bfy-link { color: var(--bfy-green); font-weight: 600; }
.bfy-sec a.bfy-link:hover { text-decoration: underline; }
.bfy-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.bfy-head h2 { margin: 0; }

/* ===== Carrousel de jeux ===== */
.bfy-games {    }
.bfy-games-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.bfy-arrows { display: flex; gap: 8px; }
.bfy-arrow { width: 42px; height: 42px; border-radius: 50%; background: var(--bfy-card); border: 1px solid var(--bfy-line); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--bfy-ease); }
.bfy-arrow:hover:not(:disabled) { background: var(--bfy-green); color: #06210f; }
.bfy-arrow:disabled { opacity: .35; cursor: default; }
.bfy-arrow svg { width: 15px; height: 15px; fill: currentColor; }
.bfy-rail { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
.bfy-rail::-webkit-scrollbar { display: none; }
.bfy-card {
    flex: 0 0 200px; scroll-snap-align: start;
    background: var(--bfy-card); border: 1px solid var(--bfy-line); border-radius: var(--bfy-r);
    overflow: hidden; transition: transform var(--bfy-ease), border-color var(--bfy-ease);
}
.bfy-card:hover { transform: translateY(-4px); border-color: rgba(46,230,110,.5); }
.bfy-card-img { position: relative; aspect-ratio: 1/1; background: linear-gradient(135deg, var(--bfy-bg-2), var(--bfy-bar)); }
.bfy-card-img img { width: 100%; height: 100%; object-fit: cover; }
.bfy-card-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--bfy-ease); }
.bfy-card:hover .bfy-card-play { opacity: 1; }
.bfy-card-play span { width: 48px; height: 48px; border-radius: 50%; background: rgba(46,230,110,.92); display: flex; align-items: center; justify-content: center; }
.bfy-card-play svg { width: 20px; height: 20px; fill: #06210f; }
.bfy-card-meta { padding: 11px 13px; }
.bfy-card-meta strong { display: block; font-size: 14px; color: #fff; }
.bfy-card-meta small { color: var(--bfy-mute); font-size: 12px; }

/* ===== Cartes de catégories dégradées ===== */
.bfy-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; margin-top: 22px; }
.bfy-cat {
    position: relative; border-radius: var(--bfy-r); padding: 24px 20px; min-height: 150px;
    display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden;
    border: 1px solid var(--bfy-line); transition: transform var(--bfy-ease);
}
.bfy-cat:hover { transform: translateY(-4px); }
.bfy-cat-ic { font-size: 30px; margin-bottom: auto; }
.bfy-cat strong { display: block; color: #fff; font-size: 18px; }
.bfy-cat small { color: rgba(255,255,255,.82); font-size: 13px; }
.bfy-cat-a { background: linear-gradient(140deg, #103a25, #1eb857); }
.bfy-cat-b { background: linear-gradient(140deg, #0f3340, #25d0c0); }
.bfy-cat-c { background: linear-gradient(140deg, #2a1547, #8b5cf6); }
.bfy-cat-d { background: linear-gradient(140deg, #401530, #f0508a); }
.bfy-cat-e { background: linear-gradient(140deg, #3a2a0c, #f5b13c); }
.bfy-cat-f { background: linear-gradient(140deg, #122b1f, #2EE66E); }

/* ===== Bloc d'analyse ===== */
.bfy-grid { display: grid; grid-template-columns: 1fr 340px; gap: 34px; align-items: start; }
.bfy-prose p { margin-bottom: 14px; color: #ccd5d0; }
.bfy-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 24px 0; }
.bfy-stat { background: var(--bfy-card); border: 1px solid var(--bfy-line); border-radius: var(--bfy-r-s); padding: 14px; display: flex; flex-direction: column; gap: 3px; }
.bfy-stat .bfy-k { font-size: 11px; text-transform: uppercase; letter-spacing: .8px; color: var(--bfy-mute); font-weight: 700; }
.bfy-stat .bfy-v { font-size: 17px; font-weight: 800; color: var(--bfy-green); }

/* carte latérale */
.bfy-aside { background: var(--bfy-card); border: 1px solid var(--bfy-line); border-radius: var(--bfy-r); padding: 20px; position: sticky; top: 84px; }
.bfy-aside-tag { display: inline-block; background: linear-gradient(135deg, var(--bfy-green), var(--bfy-cyan)); color: #06210f; font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: .6px; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.bfy-aside-name { font-size: 24px; font-weight: 900; color: #fff; }
.bfy-aside-name span { background: linear-gradient(135deg, var(--bfy-green), var(--bfy-cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bfy-aside-lic { color: var(--bfy-mute); font-size: 13px; margin-bottom: 14px; }
.bfy-score { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--bfy-line); border-bottom: 1px solid var(--bfy-line); margin-bottom: 14px; }
.bfy-score .bfy-num { font-size: 34px; font-weight: 900; color: var(--bfy-green); }
.bfy-stars { color: var(--bfy-green); letter-spacing: 2px; }
.bfy-score small { display: block; color: var(--bfy-mute); font-size: 11.5px; }
.bfy-facts { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }
.bfy-facts li { display: flex; justify-content: space-between; font-size: 13.5px; border-bottom: 1px dashed var(--bfy-line); padding-bottom: 8px; }
.bfy-facts li span:first-child { color: var(--bfy-mute); }
.bfy-facts li span:last-child { color: #fff; font-weight: 700; }
.bfy-pros { margin-bottom: 16px; }
.bfy-pros .bfy-k { font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--bfy-cyan); margin-bottom: 8px; letter-spacing: .6px; }
.bfy-pros ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.bfy-pros li { font-size: 13.5px; padding-left: 22px; position: relative; color: #ccd5d0; }
.bfy-pros li::before { content: "✓"; position: absolute; left: 0; color: var(--bfy-green); font-weight: 800; }

/* ===== Bannière bonus ===== */
.bfy-bonus {    }
.bfy-bonus-box {
    max-width: 880px; margin: 0 auto; text-align: center;
    border: 2px solid var(--bfy-green); border-radius: var(--bfy-r);
    padding: 34px 26px; position: relative; overflow: hidden;
    background: linear-gradient(to right, #0E0E0E 0%, #0E0E0E 35%, transparent 75%), url('../img/promo-hero.webp') right center/cover no-repeat, #0E0E0E;
    min-height: 340px;
}
.bfy-bonus-box::after { content: ""; position: absolute; inset: 0; box-shadow: 0 0 60px rgba(46,230,110,.22) inset; pointer-events: none; }
.bfy-bonus-box .bfy-pre { text-transform: uppercase; letter-spacing: 1px; color: var(--bfy-green); font-weight: 800; font-size: 13px; }
.bfy-bonus-box .bfy-big { font-size: clamp(26px, 5vw, 40px); font-weight: 900; color: #fff; margin: 6px 0; }
.bfy-bonus-box .bfy-min { color: var(--bfy-mute); margin-bottom: 18px; }

/* ===== Split application/mobile ===== */
.bfy-app {  }
.bfy-app-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.bfy-app ul.bfy-feat { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 18px 0; }
.bfy-app ul.bfy-feat li { padding-left: 26px; position: relative; color: #ccd5d0; }
.bfy-app ul.bfy-feat li::before { content: "▸"; position: absolute; left: 4px; color: var(--bfy-green); }
.bfy-os { display: flex; gap: 12px; flex-wrap: wrap; }
.bfy-phone img { max-width: 420px; margin: 0 auto; }

/* ===== Étapes ===== */
.bfy-steps { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 24px 0; }
.bfy-step { flex: 1 1 200px; max-width: 240px; background: var(--bfy-card); border: 1px solid var(--bfy-line); border-radius: var(--bfy-r); padding: 20px; text-align: center; }
.bfy-step .bfy-n { width: 38px; height: 38px; border-radius: 50%; background: var(--bfy-green); color: #06210f; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.bfy-step strong { display: block; color: #fff; margin-bottom: 4px; }
.bfy-step small { color: var(--bfy-mute); font-size: 12.5px; }

/* ===== Barres de retrait ===== */
.bfy-pay { display: flex; flex-direction: column; gap: 14px; margin: 22px 0; }
.bfy-pay-row { background: var(--bfy-card); border: 1px solid var(--bfy-line); border-radius: var(--bfy-r-s); padding: 14px 16px; }
.bfy-pay-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 14px; }
.bfy-pay-top strong { color: #fff; }
.bfy-pill { font-size: 12px; font-weight: 700; padding: 3px 11px; border-radius: 999px; }
.bfy-pill-fast { background: #27c24c; color: var(--bfy-green-soft); }
.bfy-pill-mid { background: rgba(37,208,192,.16); color: var(--bfy-cyan); }
.bfy-pill-slow { background: rgba(255,255,255,.08); color: var(--bfy-mute); }
.bfy-track { height: 8px; border-radius: 6px; background: rgba(255,255,255,.07); overflow: hidden; }
.bfy-track i { display: block; height: 100%; border-radius: 6px; }
.bfy-fill-fast { background: #27c24c; }
.bfy-fill-mid { background: var(--bfy-cyan); }
.bfy-fill-slow { background: #c0506a; }

/* ===== Grille de confiance ===== */
.bfy-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 14px; margin: 24px 0; }
.bfy-trust-c { background: var(--bfy-card); border: 1px solid var(--bfy-line); border-radius: var(--bfy-r); padding: 18px; text-align: center; }
.bfy-trust-c .bfy-ic { width: 44px; height: 44px; margin: 0 auto 10px; color: var(--bfy-green); }
.bfy-trust-c .bfy-ic svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; }
.bfy-trust-c strong { display: block; color: #fff; margin-bottom: 5px; }
.bfy-trust-c small { color: var(--bfy-mute); font-size: 12.5px; }

/* ===== Avis ===== */
.bfy-revs { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 16px; margin-top: 22px; }
.bfy-rev { background: var(--bfy-card); border: 1px solid var(--bfy-line); border-radius: var(--bfy-r); padding: 18px; }
.bfy-rev-h { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.bfy-av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--bfy-green), var(--bfy-cyan)); color: #06210f; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.bfy-rev-h .bfy-who { font-weight: 700; color: #fff; }
.bfy-rev-h .bfy-when { font-size: 12px; color: var(--bfy-mute); }
.bfy-rev .bfy-rs { color: var(--bfy-green); letter-spacing: 2px; margin-bottom: 8px; }
.bfy-rev p { font-size: 13.5px; color: #ccd5d0; }

/* ===== FAQ ===== */
.bfy-faq { max-width:1180px; margin: 0 auto; padding: 56px 30px; }
.bfy-faq h2 { font-size: clamp(25px,4vw,33px); margin-bottom: 20px; text-align: center; }
.bfy-q { background: var(--bfy-card); border: 1px solid var(--bfy-line); border-radius: var(--bfy-r-s); margin-bottom: 10px; overflow: hidden; }
.bfy-q summary { padding: 16px 18px; font-weight: 700; color: #fff; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.bfy-q summary::-webkit-details-marker { display: none; }
.bfy-q summary::after { content: "+"; color: var(--bfy-green); font-weight: 900; }
.bfy-q[open] summary::after { content: "–"; }
.bfy-q .bfy-a { padding: 0 18px 16px; color: #c4ccc8; font-size: 14px; }

/* ===== Pied de page ===== */
.bfy-foot { background: var(--bfy-bar); border-top: 1px solid var(--bfy-line); padding: 44px 30px 26px; }
.bfy-foot-top { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.bfy-foot-brand .bfy-logo { margin-bottom: 12px; }
.bfy-foot-brand .bfy-logo img { height: 56px; }
.bfy-foot-brand p { color: var(--bfy-mute); font-size: 12.5px; line-height: 1.7; }
.bfy-foot-col span.bfy-ct { display: block; font-weight: 800; color: #fff; text-transform: uppercase; font-size: 12px; letter-spacing: .8px; margin-bottom: 12px; }
.bfy-foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.bfy-foot-col a { color: var(--bfy-mute); font-size: 13.5px; }
.bfy-foot-col a:hover { color: var(--bfy-green); }
.bfy-pays { max-width: 1180px; margin: 26px auto 0; padding-top: 22px; border-top: 1px solid var(--bfy-line); display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.bfy-pays span { background: rgba(255,255,255,.05); border: 1px solid var(--bfy-line); border-radius: 7px; padding: 6px 12px; font-size: 12px; font-weight: 700; color: #c4ccc8; }
.bfy-foot-bottom { max-width: 1180px; margin: 22px auto 0; padding-top: 20px; border-top: 1px solid var(--bfy-line); text-align: center; }
.bfy-foot-bottom p { color: var(--bfy-mute); font-size: 12px; line-height: 1.7; margin-bottom: 10px; }
.bfy-foot-bottom .bfy-cr { color: #7d847f; }

/* ===== Bannière cookies ===== */
.bfy-cookie {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
    max-width: 560px; margin: 0 auto;
    background: var(--bfy-bg-2); border: 1px solid var(--bfy-green); border-radius: var(--bfy-r);
    padding: 18px 20px; box-shadow: 0 16px 40px rgba(0,0,0,.55);
    transform: translateY(140%); transition: transform .35s ease;
}
.bfy-cookie.bfy-vis { transform: translateY(0); }
.bfy-cookie .bfy-ct { font-weight: 800; color: #fff; margin-bottom: 6px; }
.bfy-cookie .bfy-cx { font-size: 13px; color: #c4ccc8; margin-bottom: 14px; }
.bfy-cookie .bfy-cx a { color: var(--bfy-green); }
.bfy-cookie-btns { display: flex; gap: 10px; }

/* ===== Pages légales / génériques ===== */
.bfy-legal { max-width: 820px; margin: 0 auto; padding: 50px 30px 60px; }
.bfy-legal h1 { font-size: 30px; margin-bottom: 8px; }
.bfy-legal .bfy-upd { color: var(--bfy-mute); font-size: 13px; margin-bottom: 26px; }
.bfy-legal h2 { font-size: 20px; margin: 26px 0 10px; color: var(--bfy-green); }
.bfy-legal p, .bfy-legal li { color: #c4ccc8; margin-bottom: 12px; font-size: 14.5px; }
.bfy-legal ul { padding-left: 22px; margin-bottom: 12px; }
.bfy-bc { font-size: 13px; color: var(--bfy-mute); margin-bottom: 18px; }
.bfy-bc a { color: var(--bfy-green); }

/* ===== 404 ===== */
.bfy-404 { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 24px; }
.bfy-404 h1 { font-size: clamp(70px, 18vw, 140px); color: var(--bfy-green); line-height: 1; }
.bfy-404 p { color: #c4ccc8; margin: 12px 0 24px; max-width: 460px; }

/* ===== Interstitiel de redirection ===== */
.bfy-redir { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.bfy-redir-box { max-width: 420px; }
.bfy-spin { width: 54px; height: 54px; border: 5px solid rgba(46,230,110,.2); border-top-color: var(--bfy-green); border-radius: 50%; margin: 0 auto 22px; animation: bfy-rot 1s linear infinite; }
@keyframes bfy-rot { to { transform: rotate(360deg); } }
.bfy-redir h1 { font-size: 26px; margin-bottom: 8px; }
.bfy-redir p { color: var(--bfy-mute); }
.bfy-redir a { color: var(--bfy-green); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .bfy-grid { grid-template-columns: 1fr; }
    .bfy-aside { position: static; }
    .bfy-app-grid { grid-template-columns: 1fr; }
    .bfy-phone { order: -1; }
    .bfy-foot-top { grid-template-columns: 1fr 1fr; }
    .bfy-foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .bfy-top { display: none; }
    .bfy-mtop { display: flex; }
    /* hero ajusté au dvh : tout le bloc + le bouton tiennent sur un écran */
    .bfy-hero-inner {
        min-height: calc(100svh - 58px);
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        padding: 30px 20px;
    }
    .bfy-sec, .bfy-faq { padding: 40px 18px; }
    .bfy-stats { grid-template-columns: 1fr; }
    .bfy-foot-top { grid-template-columns: 1fr; gap: 22px; text-align: center; }
    .bfy-foot-col ul { align-items: center; }
}

@media (min-width: 761px) {
    .bfy-foot-top { text-align: center; }
    .bfy-foot-col ul { align-items: center; }
    .bfy-foot-brand { text-align: left; }
}

/*HEROFIX*/
@media (min-width:761px){ .bfy-hero{ min-height:940px; display:flex; align-items:center; } .bfy-hero-inner{ width:100%; } }

/*HEROLEFT*/
@media (min-width:761px){ .bfy-hero > div{ text-align:left; align-items:flex-start; } .bfy-hero > div h1, .bfy-hero > div p{ max-width:640px; } }

/*PAYBRAND*/
.bfy-pay span, .bfy-pays span{ border:none !important; color:#fff !important; font-weight:700 !important; }
.pay-visa{background:#1A1F71 !important}
.pay-mastercard{background:linear-gradient(90deg,#EB001B,#F79E1B) !important}
.pay-maestro{background:linear-gradient(90deg,#0099DF,#ED0006) !important}
.pay-skrill{background:#862165 !important}
.pay-neteller{background:#6FBF4F !important}
.pay-payz,.pay-ecopayz{background:#1F6FC4 !important}
.pay-usdt,.pay-tether{background:#26A17B !important}
.pay-bitcoin{background:#F7931A !important}
.pay-ethereum{background:#627EEA !important}
.pay-litecoin{background:#345D9D !important}
.pay-ideal{background:#C9216B !important}
.pay-bancontact{background:#005498 !important}
.pay-interac{background:#F6A01A !important;color:#1a1a1a !important}
.pay-upi{background:#0B6E4F !important}
.pay-paytm{background:#00BAF2 !important}
.pay-phonepe{background:#5F259F !important}
.pay-imps,.pay-netbanking,.pay-rupay{background:#1565C0 !important}
.pay-paysafecard,.pay-paysafe{background:#00A3E0 !important}
.pay-trustly{background:#14805E !important}
.pay-sofort{background:#EF809F !important}
.pay-applepay{background:#000 !important}
.pay-googlepay{background:#4285F4 !important}
.pay-mifinity{background:#0E2A57 !important}
.pay-jeton{background:#E2231A !important}

/*HEROLEFT2*/
@media (min-width:761px){ .bfy-hero > div{ text-align:left !important; align-items:flex-start !important; max-width:760px !important; margin-left:clamp(24px,6vw,150px) !important; margin-right:auto !important; } .bfy-hero > div > *{ margin-left:0 !important; } }

/*HEROFADE*/
@media (min-width:761px){ .bfy-hero{ -webkit-mask-image:linear-gradient(to bottom,#000 0%,#000 calc(100% - 170px),transparent 100%); mask-image:linear-gradient(to bottom,#000 0%,#000 calc(100% - 170px),transparent 100%); } }

/*CARDCENTER*/
.bfy-aside-name,.bfy-aside-lic{ text-align:center; }
.bfy-aside-tag{ display:block; width:fit-content; margin-left:auto; margin-right:auto; }

/*HBAR*/
.bfy-sec h2{ border-left:4px solid #2EE66E; padding-left:15px; }
.bfy-sec h3,.bfy-sec h4{ border-left:3px solid #2EE66E; padding-left:12px; }

/*BONUSPULSE*/
.bfy-hero-off{ font-size:clamp(26px,4.6vw,42px) !important; line-height:1.1 !important; }
@keyframes bfypulse{ 0%,100%{ transform:scale(1); box-shadow:0 0 0 0 rgba(46,230,110,.5);} 50%{ transform:scale(1.05); box-shadow:0 0 24px 5px rgba(46,230,110,.45);} }
.bfy-hero-cta a{ animation:bfypulse 1.7s ease-in-out infinite; }
.bfy-hero-cta a:hover{ animation-play-state:paused; }

/*HEROTEXT*/
.bfy-hero h1{ line-height:1.08 !important; margin-bottom:12px !important; }
.bfy-hero-off{ line-height:1.12 !important; margin-bottom:10px !important; }
.bfy-hero-off2{ font-size:clamp(16px,2.3vw,21px); font-weight:700; line-height:1.5; color:#fff; opacity:.92; margin-bottom:26px; max-width:560px; }
@media (min-width:761px){ .bfy-hero > div h1, .bfy-hero > div p{ max-width:720px !important; } }

/*BONUSBIG*/
@media (min-width:761px){ .bfy-hero h1{ font-size:clamp(34px,5.2vw,50px) !important; } .bfy-hero-off{ font-size:clamp(40px,6.6vw,64px) !important; } }
@media (max-width:760px){ .bfy-hero h1{ font-size:42px !important; } .bfy-hero-off{ font-size:48px !important; } }

/*NAVFIX*/
.bfy-nav{ flex:1; justify-content:center; }
.bfy-logo{ flex-shrink:0; }
.bfy-top-cta{ flex-shrink:0; }

/*STATSFACTS*/
.bfy-stats{ grid-template-columns:repeat(4,1fr) !important; }
@media (max-width:760px){ .bfy-stats{ grid-template-columns:repeat(2,1fr) !important; } }
.bfy-stat{ text-align:center; align-items:center !important; gap:5px !important; padding:18px 12px !important; }
.bfy-stat .stat-ic{ width:26px; height:26px; color:#2EE66E; margin-bottom:5px; }
.bfy-stat .bfy-k{ color:#2EE66E !important; font-size:13px !important; }
.bfy-stat .bfy-v{ color:#e8eef7 !important; font-size:13.5px !important; font-weight:700 !important; }
.bfy-stat:first-child{ border-color:#2EE66E !important; box-shadow:inset 0 0 0 1px #2EE66E55; }

/*HEROPOLISH*/
@media (min-width:761px){ .bfy-hero-off{ white-space:nowrap; } }
.bfy-hero-cta a{ border-radius:999px !important; }
.bfy-hero h1, .bfy-hero-off{ -webkit-text-stroke:6px #000; paint-order:stroke fill; text-shadow:0 4px 16px rgba(0,0,0,.55); }
.bfy-hero-off2, .bfy-hero-badge{ -webkit-text-stroke:4px #000; paint-order:stroke fill; text-shadow:0 2px 9px rgba(0,0,0,.7); }

/*TOPGLOW*/
.bfy-nav a.bfy-on{ color:#2EE66E !important; text-shadow:0 0 16px rgba(46,230,110,0.85), 0 0 6px rgba(46,230,110,0.6); }
.bfy-nav a:not([href*="#"]):not(.bfy-on){ color:#0a0a0a !important; background:#2EE66E; border-radius:999px; padding:7px 17px !important; font-weight:800; box-shadow:0 0 18px rgba(46,230,110,0.7); }
.bfy-nav a:not([href*="#"]):not(.bfy-on):hover{ filter:brightness(1.08); background:#2EE66E !important; }

/*HEROLLB*/
@media (min-width:761px){ .bfy-hero > div{ margin-left:clamp(16px,3vw,60px) !important; margin-top:11vh !important; } .bfy-hero h1, .bfy-hero-off, .bfy-hero-off2{ font-weight:900 !important; } }

/*PHONESAFE*/
.bfy-phone{ display:block; } .bfy-phone img{ display:block !important; max-width:420px; width:100%; height:auto; margin:0 auto; }

/*BONUSWIDE*/
.bfy-bonus .bfy-sec{ max-width:1120px !important; }

/*BOXWIDE*/
@media (min-width:761px){ .bfy-bonus-box{ max-width:1080px !important; } }

/*BONUSBB*/
.bfy-bonus-box{ transition:box-shadow .35s ease, border-color .35s ease; }
.bfy-bonus-box:hover{ box-shadow:0 0 50px rgba(46,230,110,0.5), inset 0 0 70px rgba(46,230,110,0.16); border-color:#2EE66E !important; }
.bfy-bonus-box .bfy-big{ color:#2EE66E !important; text-transform:uppercase; letter-spacing:.5px; }
.bfy-bonus-box a{ animation:bfypulse 1.7s ease-in-out infinite; }
.bfy-bonus-box a:hover{ animation-play-state:paused; }

/*TIGHTEN*/
.bfy-sec, .bfy-faq{ padding-top:30px !important; padding-bottom:30px !important; }
.bfy-stats{ margin:16px 0 !important; }
.bfy-bonus, .bfy-games, .bfy-app{ padding-top:6px; padding-bottom:6px; }

/*RADVAR*/
.bfy-card, .bfy-tile, .bfy-tile-c, .bfy-stat, .bfy-aside, .bfy-rev, .bfy-card-img, .bfy-tile-img{ border-radius:12px !important; }

/*BTNPULSE*/
.bfy-bonus-box [class*="btn"]{ animation:bfypulse 1.7s ease-in-out infinite; }
.bfy-bonus-box:hover [class*="btn"]{ animation-play-state:paused; }

/*PAYLOGO*/
span[class^="pay-"]{ background:#fff !important; padding:8px 12px !important; border-radius:7px !important; display:inline-flex !important; align-items:center; border:none !important; vertical-align:middle; box-shadow:0 1px 3px rgba(0,0,0,.25); }
span[class^="pay-"] svg{ height:20px; width:auto; display:block; }

/*MOBHERO*/
@media (max-width:760px){
  .bfy-hero-inner, .bfy-hero > div{ min-height:calc(75svh - 42px) !important; justify-content:flex-end !important; padding-bottom:40px !important; }
  .bfy-hero-img{ object-position:top center !important; }
}

/*MOBTEXT*/
@media (max-width:760px){
  .bfy-hero h1{ font-size:clamp(46px,14vw,56px) !important; }
  .bfy-hero-off{ font-size:clamp(48px,15vw,60px) !important; }
  .bfy-hero-off2{ font-size:19px !important; }
}

/*MOBFOOT*/
@media (max-width:760px){
  .bfy-foot-top{ grid-template-columns:repeat(3,1fr) !important; text-align:left !important; gap:22px 14px !important; }
  .bfy-foot-top > :first-child{ grid-column:1 / -1 !important; margin-bottom:4px; }
  .bfy-foot-top ul{ align-items:flex-start !important; }
  .bfy-foot-top h3, .bfy-foot-top h4, .bfy-foot-top li, .bfy-foot-top a, .bfy-foot-top p{ text-align:left !important; }
}

/*STEPSBB*/
.bfy-steps{ display:flex !important; flex-wrap:nowrap !important; justify-content:space-between !important; align-items:flex-start !important; gap:22px !important; }
.bfy-step{ flex:1 1 0 !important; max-width:200px !important; background:none !important; border:none !important; box-shadow:none !important; padding:10px 4px !important; position:relative !important; }
.bfy-step > :first-child{ width:64px !important; height:64px !important; min-width:64px !important; border-radius:50% !important; display:flex !important; align-items:center !important; justify-content:center !important; font-size:22px !important; font-weight:800 !important; color:#fff !important; background:linear-gradient(135deg, #2EE66E, #1d8f44) !important; box-shadow:0 8px 24px rgba(46,230,110,0.38) !important; margin:0 auto 14px !important; }
.bfy-step strong{ text-transform:uppercase !important; color:#2EE66E !important; letter-spacing:1px !important; font-size:14px !important; }
.bfy-step:not(:last-child)::after{ content:''; position:absolute; top:32px; right:-16px; width:13px; height:13px; border-top:3px solid #2EE66E; border-right:3px solid #2EE66E; border-radius:2px; transform:rotate(45deg); }
@media (max-width:760px){
  .bfy-steps{ flex-direction:column !important; align-items:center !important; gap:22px !important; }
  .bfy-step{ max-width:320px !important; }
  .bfy-step:not(:last-child)::after{ top:auto !important; bottom:-16px !important; right:50% !important; transform:translateX(50%) rotate(135deg) !important; }
}

/*STEPICON*/
.bfy-step > :first-child svg{ width:30px !important; height:30px !important; stroke:#fff !important; fill:none !important; }

/*STEPNEUTRAL*/
.bfy-step > :first-child{ background:linear-gradient(150deg, #333c4f, #1e2431) !important; border:2px solid #2EE66E !important; box-shadow:0 6px 18px rgba(0,0,0,.32), inset 0 0 14px rgba(46,230,110,0.12) !important; }
.bfy-step > :first-child svg{ stroke:#2EE66E !important; }

/*CARDNAME*/
.bfy-aside-name{ font-size:33px !important; font-weight:900 !important; letter-spacing:.3px !important; line-height:1.08 !important; text-shadow:0 1px 2px rgba(0,0,0,.28); }

/*HOMEPILL*/
.bfy-nav a.bfy-on{ color:#0a0a0a !important; background:#2EE66E; border-radius:999px; padding:7px 17px !important; font-weight:800; box-shadow:0 0 18px rgba(46,230,110,0.7); text-shadow:none !important; }
.bfy-nav a.bfy-on:hover{ filter:brightness(1.08); }

/*BONUSIMG*/
.bfy-bonus-box{ background:linear-gradient(180deg, rgba(8,12,20,.30), rgba(8,12,20,.50)), url('../img/promo-hero.webp') right center/cover no-repeat !important; }

/*HOMECLR*/
.bfy-nav a.bfy-on{ background:#2F6FED !important; color:#fff !important; box-shadow:0 0 16px rgba(47,111,237,.55) !important; }
.bfy-nav a.bfy-on:hover{ filter:brightness(1.08); background:#2F6FED !important; }

/*BONUSIMG2*/
.bfy-bonus-box{ background:linear-gradient(180deg, rgba(8,12,20,.10), rgba(8,12,20,.24)), url('../img/promo-hero.webp') right center/cover no-repeat !important; }
@media (max-width:760px){
  .bfy-bonus-box{ background:url('../img/promo-hero.webp') center center/cover no-repeat !important; }
  .bfy-bonus-box p{ text-shadow:0 2px 10px rgba(0,0,0,.95), 0 1px 4px rgba(0,0,0,.88) !important; }
}

/*MENUPRETTY*/
.bfy-mnav{ width:min(82vw,322px) !important; padding:20px 14px !important; gap:5px !important; border-right:none !important; box-shadow:10px 0 44px rgba(0,0,0,.55), inset 0 80px 80px -80px rgba(46,230,110,0.1) !important; transition:left .34s cubic-bezier(.4,0,.2,1) !important; }
.bfy-mnav a{ padding:14px 16px !important; border-radius:12px !important; font-weight:700 !important; position:relative !important; transition:background .2s ease, color .2s ease, padding-left .2s ease !important; }
.bfy-mnav a::before{ content:''; position:absolute; left:7px; top:50%; transform:translateY(-50%) scaleY(0); width:3px; height:56%; background:#2EE66E; border-radius:3px; transition:transform .2s ease; }
.bfy-mnav a:hover{ background:rgba(46,230,110,0.16) !important; color:#fff !important; padding-left:23px !important; }
.bfy-mnav a:hover::before{ transform:translateY(-50%) scaleY(1); }
.bfy-mnav a.bfy-hot{ background:#2EE66E !important; color:#0a0a0a !important; font-weight:800 !important; box-shadow:0 6px 18px rgba(46,230,110,0.5) !important; margin-top:8px; padding-left:16px !important; }
.bfy-mnav a.bfy-hot::before{ display:none; }
.bfy-mnav a.bfy-hot:hover{ filter:brightness(1.08); padding-left:16px !important; }
.bfy-ovl{ background:rgba(4,8,16,.5) !important; backdrop-filter:blur(4px) !important; -webkit-backdrop-filter:blur(4px) !important; transition:opacity .3s ease, visibility .3s ease !important; }

/*MENUHIDE*/
.bfy-mnav{ left:-360px; }
.bfy-mnav.bfy-open{ left:0; }

/*HEROBRIGHT*/
.bfy-hero-img{ opacity:.88 !important; }
.bfy-hero-bg{ opacity:1 !important; filter:none !important; }
.bfy-hero h1, .bfy-hero-off, .bfy-hero-off2{ text-shadow:0 2px 13px rgba(0,0,0,.7), 0 0 34px rgba(0,0,0,.45) !important; }

/*NAVCOLORS*/
.bfy-nav a:not([href*="#"]):not(.bfy-logo):nth-child(2){ background:#E0566A !important; color:#fff !important; box-shadow:0 0 14px rgba(224,86,106,0.5) !important; }
.bfy-nav a:not([href*="#"]):not(.bfy-logo):nth-child(3){ background:#2EBF7E !important; color:#06301f !important; box-shadow:0 0 14px rgba(46,191,126,0.5) !important; }
.bfy-nav a:not([href*="#"]):not(.bfy-logo):nth-child(4){ background:#F5A623 !important; color:#211500 !important; box-shadow:0 0 14px rgba(245,166,35,0.5) !important; }
.bfy-nav a:not([href*="#"]):not(.bfy-logo):nth-child(5){ background:#9B7BFF !important; color:#fff !important; box-shadow:0 0 14px rgba(155,123,255,0.5) !important; }
.bfy-nav a:not([href*="#"]):not(.bfy-logo):nth-child(6){ background:#17B6C9 !important; color:#04313a !important; box-shadow:0 0 14px rgba(23,182,201,0.5) !important; }

/*HEROBIG*/
.bfy-hero h1{ font-size:clamp(52px,7.6vw,88px) !important; line-height:1.04 !important; }
.bfy-hero-off{ font-size:clamp(42px,6vw,70px) !important; line-height:1.08 !important; }
@media (max-width:760px){ .bfy-hero h1{ font-size:clamp(46px,14vw,66px) !important; } .bfy-hero-off{ font-size:clamp(38px,12vw,58px) !important; } }

/*CARDCTR2*/
.bfy-aside-name{ justify-content:center !important; text-align:center !important; }
.bfy-aside-lic, .bfy-aside-sub{ text-align:center !important; justify-content:center !important; }

/*BFYH1*/
.bfy-hero h1{ color:#fff !important; -webkit-text-stroke:6px #000 !important; paint-order:stroke fill; text-shadow:0 4px 16px rgba(0,0,0,.6) !important; }
.bfy-hero-off{ color:#2EE66E !important; -webkit-text-stroke:4px #000; paint-order:stroke fill; }

/*BTFH1B*/
.bfy-hero h1, .bfy-hero h1 b{ background:none !important; -webkit-background-clip:border-box !important; background-clip:border-box !important; -webkit-text-fill-color:#fff !important; color:#fff !important; filter:none !important; }


/*CATTEXT*/
.bfy-cat-a{ position:relative !important; overflow:hidden !important; }
.bfy-cat-a::after{ content:"CRASH"; position:absolute; right:10px; bottom:-16px; font-family:Arial,Helvetica,sans-serif; font-size:72px; font-weight:900; font-style:italic; letter-spacing:-1px; color:rgba(255,255,255,.13); line-height:1; pointer-events:none; z-index:0; white-space:nowrap; }
.bfy-cat-a > *{ position:relative; z-index:1; }
.bfy-cat-b{ position:relative !important; overflow:hidden !important; }
.bfy-cat-b::after{ content:"SLOTS"; position:absolute; right:10px; bottom:-16px; font-family:Arial,Helvetica,sans-serif; font-size:72px; font-weight:900; font-style:italic; letter-spacing:-1px; color:rgba(255,255,255,.13); line-height:1; pointer-events:none; z-index:0; white-space:nowrap; }
.bfy-cat-b > *{ position:relative; z-index:1; }
.bfy-cat-c{ position:relative !important; overflow:hidden !important; }
.bfy-cat-c::after{ content:"LIVE"; position:absolute; right:10px; bottom:-16px; font-family:Arial,Helvetica,sans-serif; font-size:72px; font-weight:900; font-style:italic; letter-spacing:-1px; color:rgba(255,255,255,.13); line-height:1; pointer-events:none; z-index:0; white-space:nowrap; }
.bfy-cat-c > *{ position:relative; z-index:1; }
.bfy-cat-d{ position:relative !important; overflow:hidden !important; }
.bfy-cat-d::after{ content:"ESPORTS"; position:absolute; right:10px; bottom:-16px; font-family:Arial,Helvetica,sans-serif; font-size:56px; font-weight:900; font-style:italic; letter-spacing:-1px; color:rgba(255,255,255,.13); line-height:1; pointer-events:none; z-index:0; white-space:nowrap; }
.bfy-cat-d > *{ position:relative; z-index:1; }
.bfy-cat-e{ position:relative !important; overflow:hidden !important; }
.bfy-cat-e::after{ content:"SPORTS"; position:absolute; right:10px; bottom:-16px; font-family:Arial,Helvetica,sans-serif; font-size:56px; font-weight:900; font-style:italic; letter-spacing:-1px; color:rgba(255,255,255,.13); line-height:1; pointer-events:none; z-index:0; white-space:nowrap; }
.bfy-cat-e > *{ position:relative; z-index:1; }
.bfy-cat-f{ position:relative !important; overflow:hidden !important; }
.bfy-cat-f::after{ content:"CRYPTO"; position:absolute; right:10px; bottom:-16px; font-family:Arial,Helvetica,sans-serif; font-size:56px; font-weight:900; font-style:italic; letter-spacing:-1px; color:rgba(255,255,255,.13); line-height:1; pointer-events:none; z-index:0; white-space:nowrap; }
.bfy-cat-f > *{ position:relative; z-index:1; }

/*CATTEXT2*/
.bfy-cat-a::after{ left:50% !important; top:40% !important; right:auto !important; bottom:auto !important; transform:translate(-50%,-50%) !important; font-size:clamp(38px,11vw,66px) !important; color:rgba(255,255,255,.42) !important; text-shadow:0 2px 14px rgba(0,0,0,.35) !important; }
.bfy-cat-b::after{ left:50% !important; top:40% !important; right:auto !important; bottom:auto !important; transform:translate(-50%,-50%) !important; font-size:clamp(38px,11vw,66px) !important; color:rgba(255,255,255,.42) !important; text-shadow:0 2px 14px rgba(0,0,0,.35) !important; }
.bfy-cat-c::after{ left:50% !important; top:40% !important; right:auto !important; bottom:auto !important; transform:translate(-50%,-50%) !important; font-size:clamp(38px,11vw,66px) !important; color:rgba(255,255,255,.42) !important; text-shadow:0 2px 14px rgba(0,0,0,.35) !important; }
.bfy-cat-d::after{ left:50% !important; top:40% !important; right:auto !important; bottom:auto !important; transform:translate(-50%,-50%) !important; font-size:clamp(38px,11vw,66px) !important; color:rgba(255,255,255,.42) !important; text-shadow:0 2px 14px rgba(0,0,0,.35) !important; }
.bfy-cat-e::after{ left:50% !important; top:40% !important; right:auto !important; bottom:auto !important; transform:translate(-50%,-50%) !important; font-size:clamp(38px,11vw,66px) !important; color:rgba(255,255,255,.42) !important; text-shadow:0 2px 14px rgba(0,0,0,.35) !important; }
.bfy-cat-f::after{ left:50% !important; top:40% !important; right:auto !important; bottom:auto !important; transform:translate(-50%,-50%) !important; font-size:clamp(38px,11vw,66px) !important; color:rgba(255,255,255,.42) !important; text-shadow:0 2px 14px rgba(0,0,0,.35) !important; }

/*BFYMHERO*/
@media (max-width:760px){
  .bfy-hero{ overflow:hidden !important; }
  .bfy-hero-img{ position:absolute !important; inset:0 !important; width:100% !important; height:100% !important; max-width:none !important; object-fit:cover !important; object-position:center center !important; opacity:.9 !important; }
}

/*CATBIG*/
.bfy-cat strong, .bfy-cat small{ display:none !important; }
.bfy-cat{ min-height:120px !important; position:relative !important; }
.bfy-cat-ic{ position:absolute !important; top:14px !important; left:16px !important; margin:0 !important; z-index:2 !important; font-size:26px !important; }
.bfy-cat-a::after{ color:rgba(255,255,255,.92) !important; opacity:1 !important; left:50% !important; top:54% !important; right:auto !important; bottom:auto !important; transform:translate(-50%,-50%) !important; font-size:clamp(42px,14vw,76px) !important; font-weight:900 !important; font-style:italic !important; text-shadow:0 3px 18px rgba(0,0,0,.45) !important; white-space:nowrap !important; }
.bfy-cat-b::after{ color:rgba(255,255,255,.92) !important; opacity:1 !important; left:50% !important; top:54% !important; right:auto !important; bottom:auto !important; transform:translate(-50%,-50%) !important; font-size:clamp(42px,14vw,76px) !important; font-weight:900 !important; font-style:italic !important; text-shadow:0 3px 18px rgba(0,0,0,.45) !important; white-space:nowrap !important; }
.bfy-cat-c::after{ color:rgba(255,255,255,.92) !important; opacity:1 !important; left:50% !important; top:54% !important; right:auto !important; bottom:auto !important; transform:translate(-50%,-50%) !important; font-size:clamp(42px,14vw,76px) !important; font-weight:900 !important; font-style:italic !important; text-shadow:0 3px 18px rgba(0,0,0,.45) !important; white-space:nowrap !important; }
.bfy-cat-d::after{ color:rgba(255,255,255,.92) !important; opacity:1 !important; left:50% !important; top:54% !important; right:auto !important; bottom:auto !important; transform:translate(-50%,-50%) !important; font-size:clamp(42px,14vw,76px) !important; font-weight:900 !important; font-style:italic !important; text-shadow:0 3px 18px rgba(0,0,0,.45) !important; white-space:nowrap !important; }
.bfy-cat-e::after{ color:rgba(255,255,255,.92) !important; opacity:1 !important; left:50% !important; top:54% !important; right:auto !important; bottom:auto !important; transform:translate(-50%,-50%) !important; font-size:clamp(42px,14vw,76px) !important; font-weight:900 !important; font-style:italic !important; text-shadow:0 3px 18px rgba(0,0,0,.45) !important; white-space:nowrap !important; }
.bfy-cat-f::after{ color:rgba(255,255,255,.92) !important; opacity:1 !important; left:50% !important; top:54% !important; right:auto !important; bottom:auto !important; transform:translate(-50%,-50%) !important; font-size:clamp(42px,14vw,76px) !important; font-weight:900 !important; font-style:italic !important; text-shadow:0 3px 18px rgba(0,0,0,.45) !important; white-space:nowrap !important; }

/*BFYHCAP*/
@media (max-width:760px){
  .bfy-hero{ min-height:0 !important; height:auto !important; }
  .bfy-hero-inner{ min-height:calc(72svh - 40px) !important; }
  .bfy-hero-img{ height:100% !important; max-height:100% !important; }
}

/*CATFIT*/
.bfy-cat .bfy-cat-ic, .bfy-cat-ic{ display:none !important; }
.bfy-cat{ container-type:inline-size !important; }
.bfy-cat-a::after{ font-size:42px !important; font-size:17cqw !important; left:50% !important; top:50% !important; transform:translate(-50%,-50%) !important; max-width:94% !important; overflow:hidden !important; }
.bfy-cat-b::after{ font-size:42px !important; font-size:17cqw !important; left:50% !important; top:50% !important; transform:translate(-50%,-50%) !important; max-width:94% !important; overflow:hidden !important; }
.bfy-cat-c::after{ font-size:42px !important; font-size:17cqw !important; left:50% !important; top:50% !important; transform:translate(-50%,-50%) !important; max-width:94% !important; overflow:hidden !important; }
.bfy-cat-d::after{ font-size:42px !important; font-size:17cqw !important; left:50% !important; top:50% !important; transform:translate(-50%,-50%) !important; max-width:94% !important; overflow:hidden !important; }
.bfy-cat-e::after{ font-size:42px !important; font-size:17cqw !important; left:50% !important; top:50% !important; transform:translate(-50%,-50%) !important; max-width:94% !important; overflow:hidden !important; }
.bfy-cat-f::after{ font-size:42px !important; font-size:17cqw !important; left:50% !important; top:50% !important; transform:translate(-50%,-50%) !important; max-width:94% !important; overflow:hidden !important; }

/*BFYHT740*/
.bfy-hero{ min-height:740px !important; height:740px !important; }
.bfy-hero-inner{ min-height:0 !important; height:740px !important; }
@media (max-width:760px){
  .bfy-hero{ min-height:600px !important; height:600px !important; }
  .bfy-hero-inner{ height:600px !important; min-height:0 !important; }
  .bfy-hero-img{ height:100% !important; object-fit:cover !important; }
}

/*CMPTABLE*/
.cmp-table{ width:100%; border-collapse:collapse; margin:18px 0 6px; font-size:15px; }
.cmp-table th,.cmp-table td{ padding:11px 14px; text-align:left; border-bottom:1px solid rgba(128,128,128,.22); }
.cmp-table thead th{ font-weight:800; background:#2EE66E22; color:inherit; }
.cmp-table tbody td:first-child{ font-weight:600; }
.cmp-table tbody tr:hover{ background:rgba(128,128,128,.06); }
.cmp-table td:nth-child(2){ font-weight:600; color:#2EE66E; }
@media (max-width:600px){ .cmp-table{ font-size:13.5px; } .cmp-table th,.cmp-table td{ padding:9px 9px; } }
