/* ============================================================
   CasinoLab — recensioni indipendenti dei giocatori (stylesheet)
   Tema CHIARO. Palette: lavanda #EEEFF8 / bianco #FFFFFF /
   navy #1E2148 / oro-ambra #F6A623→#F8C447 / lavanda #B0A8E8
   Font di sistema (no webfont) per PageSpeed. Prefisso: cla
   ============================================================ */

:root {
    --cla-bg:        #EEEFF8;
    --cla-bg-2:      #E5E6F3;
    --cla-card:      #FFFFFF;
    --cla-card-2:    #F6F6FB;
    --cla-navy:      #1E2148;
    --cla-navy-2:    #2B2F60;
    --cla-mute:      #6D7090;
    --cla-gold:      #F6A623;
    --cla-gold-2:    #F8C447;
    --cla-lav:       #B0A8E8;
    --cla-lav-deep:  #8C81D6;
    --cla-sky:       #9CD7F0;
    --cla-line:      rgba(30,33,72,.10);
    --cla-line-2:    rgba(30,33,72,.17);
    --cla-rad:       17px;
    --cla-rad-s:     11px;
    --cla-bar:       64px;
    --cla-font:      Verdana,Geneva,system-ui,sans-serif;
    --cla-ease:      .23s ease;
    --cla-sh:        0 12px 32px rgba(30,33,72,.09);
    --cla-sh-s:      0 4px 15px rgba(30,33,72,.06);
    --cla-iris:      linear-gradient(125deg,#F6A623,#F8C447,#B0A8E8,#9CD7F0,#F6A623);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }
body {
    font-family: var(--cla-font);
    background: var(--cla-bg);
    color: var(--cla-navy);
    line-height: 1.63;
    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: .4; z-index: -1; pointer-events: none;
}
h1, h2, h3 { font-family: var(--cla-font); font-weight: 800; line-height: 1.2; color: var(--cla-navy); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
strong, b { font-weight: 700; color: var(--cla-navy); }
hr { border: 0; border-top: 1px solid var(--cla-line); margin: 34px 0; }

/* ===== Buttons ===== */
.cla-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: 999px;
    padding: 13px 26px; font-size: 14px;
    transition: transform var(--cla-ease), box-shadow var(--cla-ease), background var(--cla-ease);
    white-space: nowrap;
}
.cla-btn-amber {
    background: linear-gradient(135deg, var(--cla-gold), var(--cla-gold-2));
    color: #3a2406;
    box-shadow: 0 6px 20px rgba(246,166,35,.34);
}
.cla-btn-amber:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(246,166,35,.45); }
.cla-btn-lila { background: var(--cla-lav); color: #221c46; box-shadow: 0 6px 18px rgba(176,168,232,.4); }
.cla-btn-lila:hover { background: var(--cla-lav-deep); color: #fff; transform: translateY(-2px); }
.cla-btn-soft { background: #fff; color: var(--cla-navy); border: 1px solid var(--cla-line-2); }
.cla-btn-soft:hover { background: var(--cla-card-2); border-color: var(--cla-lav); }
.cla-btn-mini { padding: 9px 18px; font-size: 12.5px; }

/* ===== Top bar (desktop) ===== */
.cla-bar {
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    height: var(--cla-bar); padding: 0 30px;
    background: rgba(255,255,255,.93); backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid var(--cla-line);
    position: sticky; top: 0; z-index: 60;
}
.cla-brand { display: inline-flex; align-items: center; }
.cla-brand img { height: 47px; width: auto; display: block; }
.cla-menu { display: flex; gap: 6px; align-items: center; }
.cla-menu a {
    padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--cla-mute);
    transition: background var(--cla-ease), color var(--cla-ease);
}
.cla-menu a:hover { background: var(--cla-bg-2); color: var(--cla-navy); }
.cla-menu a.cla-cur { color: var(--cla-lav-deep); }
.cla-bar-cta { display: flex; align-items: center; }

/* ===== Mobile header ===== */
.cla-mbar {
    display: none; align-items: center; justify-content: space-between; gap: 12px;
    height: 56px; padding: 0 16px; background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--cla-line); position: sticky; top: 0; z-index: 60;
}
.cla-burger { width: 40px; height: 40px; background: #fff; border: 1px solid var(--cla-line-2); border-radius: 9px; display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center; cursor: pointer; }
.cla-burger span { width: 18px; height: 2px; background: var(--cla-navy); border-radius: 2px; }
.cla-mbrand { display: inline-flex; align-items: center; }
.cla-mbrand img { height: 47px; width: auto; display: block; }
.cla-drawer {
    position: fixed; top: 0; left: -300px; width: 280px; height: 100%; z-index: 80;
    background: #fff; border-right: 1px solid var(--cla-line);
    padding: 22px 16px; display: flex; flex-direction: column; gap: 4px;
    transition: left .28s ease; box-shadow: 12px 0 40px rgba(30,33,72,.12);
}
.cla-drawer.cla-open { left: 0; }
.cla-drawer a { padding: 13px 12px; border-radius: 9px; font-weight: 600; color: var(--cla-navy); }
.cla-drawer a:hover, .cla-drawer a.cla-flag { background: rgba(176,168,232,.16); color: var(--cla-lav-deep); }
.cla-scrim { position: fixed; inset: 0; background: rgba(30,33,72,.35); z-index: 70; opacity: 0; visibility: hidden; transition: opacity .28s; }
.cla-scrim.cla-show { opacity: 1; visibility: visible; }

/* ===== Hero ===== */
.cla-hero {
    position: relative;
    background:
        radial-gradient(880px 460px at 80% 14%, rgba(176,168,232,.46), transparent 62%),
        radial-gradient(680px 420px at 10% 88%, rgba(156,215,240,.30), transparent 60%),
        var(--cla-bg);
    overflow: hidden;
    border-bottom: 1px solid var(--cla-line);
}
.cla-hero-bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .9;
}
.cla-hero::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(238,239,248,.28) 0%, rgba(238,239,248,.55) 70%, var(--cla-bg) 100%);
}
.cla-hero-wrap {
    position: relative; z-index: 2; max-width: 1180px; margin: 0 auto;
    padding: 84px 30px 76px; text-align: center;
}
.cla-tag {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.85); border: 1px solid var(--cla-lav);
    color: var(--cla-lav-deep); padding: 6px 15px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .6px; margin-bottom: 20px; box-shadow: var(--cla-sh-s);
}
.cla-hero h1 {
    font-size: clamp(40px, 8vw, 74px); letter-spacing: .3px; margin-bottom: 6px;
    text-shadow: 0 2px 0 #fff;
}
.cla-hero h1 b {
    background: linear-gradient(120deg,var(--cla-gold),var(--cla-lav-deep));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    font-weight: 900;
}
.cla-hero-rate { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.cla-hero-rate .cla-st { color: var(--cla-gold); letter-spacing: 2px; font-size: 19px; }
.cla-hero-rate b { color: var(--cla-navy); font-size: 16px; }
.cla-hero-rate small { color: var(--cla-mute); font-size: 13px; }
.cla-hero-off { font-size: clamp(20px, 4vw, 30px); font-weight: 800; color: var(--cla-navy); margin-bottom: 6px; }
.cla-hero-off b { color: var(--cla-gold); }
.cla-hero-sub { color: var(--cla-navy-2); font-size: 16px; margin-bottom: 28px; font-weight: 500; }
.cla-hero-cta { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cla-hero-note { margin-top: 22px; color: var(--cla-mute); font-size: 13px; }
.cla-hero-note b { color: var(--cla-navy); }

/* ===== Section frame ===== */
.cla-box { max-width: 1180px; margin: 0 auto; padding: 56px 30px; }
.cla-box h2 { font-size: clamp(25px, 4vw, 33px); margin-bottom: 14px; }
.cla-box h3 { font-size: 20px; margin: 26px 0 9px; color: var(--cla-navy); }
.cla-box p { margin-bottom: 14px; color: var(--cla-navy-2); }
.cla-box a.cla-ln { color: var(--cla-lav-deep); font-weight: 600; }
.cla-box a.cla-ln:hover { text-decoration: underline; }
.cla-title { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.cla-title h2 { margin: 0; }

/* ===== Verdict / review intro layout ===== */
.cla-split { display: grid; grid-template-columns: 1fr 344px; gap: 34px; align-items: start; }
.cla-copy p { margin-bottom: 14px; color: var(--cla-navy-2); }
.cla-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 24px 0; }
.cla-metric { background: #fff; border: 1px solid var(--cla-line); border-radius: var(--cla-rad-s); padding: 14px; display: flex; flex-direction: column; gap: 3px; box-shadow: var(--cla-sh-s); }
.cla-metric .cla-lb { font-size: 11px; text-transform: uppercase; letter-spacing: .8px; color: var(--cla-mute); font-weight: 700; }
.cla-metric .cla-val { font-size: 17px; font-weight: 800; color: var(--cla-lav-deep); }

/* sidebar verdict card */
.cla-panel { background: #fff; border: 1px solid var(--cla-line-2); border-radius: var(--cla-rad); padding: 20px; position: sticky; top: 82px; box-shadow: var(--cla-sh); }
.cla-panel-tag { display: inline-block; background: linear-gradient(135deg, var(--cla-gold), var(--cla-gold-2)); color: #3a2406; font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: .6px; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.cla-panel-name { font-size: 24px; font-weight: 900; }
.cla-panel-name span { background: linear-gradient(120deg,var(--cla-gold),var(--cla-lav-deep)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cla-panel-lic { color: var(--cla-mute); font-size: 13px; margin-bottom: 14px; }
.cla-rating { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--cla-line); border-bottom: 1px solid var(--cla-line); margin-bottom: 14px; }
.cla-rating .cla-big-n { font-size: 34px; font-weight: 900; color: var(--cla-gold); }
.cla-st-row { color: var(--cla-gold); letter-spacing: 2px; }
.cla-rating small { display: block; color: var(--cla-mute); font-size: 11.5px; }
.cla-keyfacts { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }
.cla-keyfacts li { display: flex; justify-content: space-between; font-size: 13.5px; border-bottom: 1px dashed var(--cla-line-2); padding-bottom: 8px; }
.cla-keyfacts li span:first-child { color: var(--cla-mute); }
.cla-keyfacts li span:last-child { color: var(--cla-navy); font-weight: 700; }
.cla-plus { margin-bottom: 16px; }
.cla-plus .cla-lb { font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--cla-lav-deep); margin-bottom: 8px; letter-spacing: .6px; }
.cla-plus ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.cla-plus li { font-size: 13.5px; padding-left: 22px; position: relative; color: var(--cla-navy-2); }
.cla-plus li::before { content: "✓"; position: absolute; left: 0; color: var(--cla-lav-deep); font-weight: 800; }

/* ===== Player voices (reviews) ===== */
.cla-voices { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 16px; margin-top: 22px; }
.cla-voice { background: #fff; border: 1px solid var(--cla-line); border-radius: var(--cla-rad); padding: 18px; box-shadow: var(--cla-sh-s); }
.cla-voice-h { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.cla-ava { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--cla-gold), var(--cla-lav)); color: #fff; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.cla-voice-h .cla-nm { font-weight: 700; color: var(--cla-navy); }
.cla-voice-h .cla-dt { font-size: 12px; color: var(--cla-mute); }
.cla-voice .cla-st-row { color: var(--cla-gold); letter-spacing: 2px; margin-bottom: 8px; }
.cla-voice p { font-size: 13.5px; color: var(--cla-navy-2); }
.cla-score-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 22px; margin: 22px 0 4px; padding: 16px 18px; background: #fff; border: 1px solid var(--cla-line); border-radius: var(--cla-rad); box-shadow: var(--cla-sh-s); }
.cla-score-bar .cla-sc-big { font-size: 30px; font-weight: 900; color: var(--cla-gold); }
.cla-score-bar .cla-st-row { font-size: 18px; }
.cla-score-bar small { color: var(--cla-mute); font-size: 12.5px; }

/* ===== Games carousel ===== */
.cla-games {    }
.cla-games-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.cla-nav-arrows { display: flex; gap: 8px; }
.cla-arr { width: 42px; height: 42px; border-radius: 50%; background: #fff; border: 1px solid var(--cla-line-2); color: var(--cla-navy); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--cla-ease), color var(--cla-ease); box-shadow: var(--cla-sh-s); }
.cla-arr:hover:not(:disabled) { background: linear-gradient(135deg,var(--cla-gold),var(--cla-gold-2)); color: #3a2406; }
.cla-arr:disabled { opacity: .4; cursor: default; }
.cla-arr svg { width: 15px; height: 15px; fill: currentColor; }
.cla-strip { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
.cla-strip::-webkit-scrollbar { display: none; }
.cla-tile {
    flex: 0 0 200px; scroll-snap-align: start;
    background: #fff; border: 1px solid var(--cla-line); border-radius: var(--cla-rad);
    overflow: hidden; transition: transform var(--cla-ease), border-color var(--cla-ease), box-shadow var(--cla-ease);
    box-shadow: var(--cla-sh-s);
}
.cla-tile:hover { transform: translateY(-4px); border-color: var(--cla-lav); box-shadow: var(--cla-sh); }
.cla-tile-img { position: relative; aspect-ratio: 1/1; background: linear-gradient(135deg, var(--cla-bg-2), #fff); }
.cla-tile-img img { width: 100%; height: 100%; object-fit: cover; }
.cla-tile-go { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--cla-ease); }
.cla-tile:hover .cla-tile-go { opacity: 1; }
.cla-tile-go span { width: 48px; height: 48px; border-radius: 50%; background: rgba(246,166,35,.95); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(246,166,35,.5); }
.cla-tile-go svg { width: 20px; height: 20px; fill: #3a2406; }
.cla-tile-cap { padding: 11px 13px; }
.cla-tile-cap strong { display: block; font-size: 14px; color: var(--cla-navy); }
.cla-tile-cap small { color: var(--cla-mute); font-size: 12px; }

/* ===== Bonus banner ===== */
.cla-promo {    }
.cla-promo-card {
    max-width: 880px; margin: 0 auto; text-align: center;
    border: 2px solid var(--cla-gold); border-radius: var(--cla-rad);
    padding: 34px 26px; min-height: 340px; position: relative; overflow: hidden;
    background: url('../img/promo-hero.webp') right center/cover no-repeat, #EEEFF8;
    box-shadow: 0 14px 40px rgba(246,166,35,.16);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.cla-promo-card::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: linear-gradient(to right, #EEEFF8 0%, #EEEFF8 35%, transparent 75%);
}
.cla-promo-card > * { position: relative; z-index: 1; }
.cla-promo-card::after { content: ""; position: absolute; inset: 0; box-shadow: 0 0 60px rgba(176,168,232,.30) inset; pointer-events: none; z-index: 0; }
.cla-promo-card .cla-eyebrow { text-transform: uppercase; letter-spacing: 1px; color: var(--cla-lav-deep); font-weight: 800; font-size: 13px; }
.cla-promo-card .cla-headline { font-size: clamp(26px, 5vw, 40px); font-weight: 900; color: var(--cla-navy); margin: 6px 0; }
.cla-promo-card .cla-headline em { font-style: normal; color: var(--cla-gold); }
.cla-promo-card .cla-fine { color: var(--cla-mute); margin-bottom: 18px; }

/* ===== Steps ===== */
.cla-steps { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 24px 0; }
.cla-step { flex: 1 1 200px; max-width: 240px; background: #fff; border: 1px solid var(--cla-line); border-radius: var(--cla-rad); padding: 20px; text-align: center; box-shadow: var(--cla-sh-s); }
.cla-step .cla-num { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,var(--cla-gold),var(--cla-gold-2)); color: #3a2406; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.cla-step strong { display: block; color: var(--cla-navy); margin-bottom: 4px; }
.cla-step small { color: var(--cla-mute); font-size: 12.5px; }

/* ===== Withdrawal bars ===== */
.cla-cash { display: flex; flex-direction: column; gap: 14px; margin: 22px 0; }
.cla-cash-row { background: #fff; border: 1px solid var(--cla-line); border-radius: var(--cla-rad-s); padding: 14px 16px; box-shadow: var(--cla-sh-s); }
.cla-cash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 14px; }
.cla-cash-top strong { color: var(--cla-navy); }
.cla-chip { font-size: 12px; font-weight: 700; padding: 3px 11px; border-radius: 999px; }
.cla-chip-fast { background: rgba(176,168,232,.22); color: var(--cla-lav-deep); }
.cla-chip-mid { background: rgba(246,166,35,.18); color: #b9760e; }
.cla-chip-slow { background: rgba(30,33,72,.07); color: var(--cla-mute); }
.cla-meter { height: 8px; border-radius: 6px; background: var(--cla-bg-2); overflow: hidden; }
.cla-meter i { display: block; height: 100%; border-radius: 6px; }
.cla-fill-fast { background: #27c24c; }
.cla-fill-mid { background: var(--cla-gold); }
.cla-fill-slow { background: #c98aa6; }

/* ===== Trust seals ===== */
.cla-seals { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 14px; margin: 24px 0; }
.cla-seal { background: #fff; border: 1px solid var(--cla-line); border-radius: var(--cla-rad); padding: 18px; text-align: center; box-shadow: var(--cla-sh-s); }
.cla-seal .cla-glyph { width: 44px; height: 44px; margin: 0 auto 10px; color: var(--cla-lav-deep); }
.cla-seal .cla-glyph svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; }
.cla-seal strong { display: block; color: var(--cla-navy); margin-bottom: 5px; }
.cla-seal small { color: var(--cla-mute); font-size: 12.5px; }

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

/* ===== Footer ===== */
.cla-foot { background: #fff; border-top: 1px solid var(--cla-line); padding: 44px 30px 26px; }
.cla-foot-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.cla-foot-brand .cla-brand { margin-bottom: 12px; }
.cla-foot-brand .cla-brand img { height: 56px; width: auto; display: block; }
.cla-foot-brand p { color: var(--cla-mute); font-size: 12.5px; line-height: 1.7; }
.cla-foot-col span.cla-col-h { display: block; font-weight: 800; color: var(--cla-navy); text-transform: uppercase; font-size: 12px; letter-spacing: .8px; margin-bottom: 12px; }
.cla-foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cla-foot-col a { color: var(--cla-mute); font-size: 13.5px; }
.cla-foot-col a:hover { color: var(--cla-lav-deep); }
.cla-paylist { max-width: 1180px; margin: 26px auto 0; padding-top: 22px; border-top: 1px solid var(--cla-line); display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cla-paylist span { background: var(--cla-card-2); border: 1px solid var(--cla-line); border-radius: 7px; padding: 6px 12px; font-size: 12px; font-weight: 700; color: var(--cla-navy-2); }
.cla-foot-legal { max-width: 1180px; margin: 22px auto 0; padding-top: 20px; border-top: 1px solid var(--cla-line); text-align: center; }
.cla-foot-legal p { color: var(--cla-mute); font-size: 12px; line-height: 1.7; margin-bottom: 10px; }
.cla-foot-legal .cla-copy-line { color: #9094b3; }

/* ===== Cookie banner ===== */
.cla-cookie {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
    max-width: 560px; margin: 0 auto;
    background: #fff; border: 1px solid var(--cla-gold); border-radius: var(--cla-rad);
    padding: 18px 20px; box-shadow: 0 16px 44px rgba(30,33,72,.22);
    transform: translateY(140%); transition: transform .35s ease;
}
.cla-cookie.cla-up { transform: translateY(0); }
.cla-cookie .cla-ck-h { font-weight: 800; color: var(--cla-navy); margin-bottom: 6px; }
.cla-cookie .cla-ck-t { font-size: 13px; color: var(--cla-navy-2); margin-bottom: 14px; }
.cla-cookie .cla-ck-t a { color: var(--cla-lav-deep); }
.cla-cookie-row { display: flex; gap: 10px; }

/* ===== Legal / generic pages ===== */
.cla-doc { max-width: 820px; margin: 0 auto; padding: 50px 30px 60px; }
.cla-doc h1 { font-size: 30px; margin-bottom: 8px; }
.cla-doc .cla-stamp { color: var(--cla-mute); font-size: 13px; margin-bottom: 26px; }
.cla-doc h2 { font-size: 20px; margin: 26px 0 10px; color: var(--cla-lav-deep); }
.cla-doc p, .cla-doc li { color: var(--cla-navy-2); margin-bottom: 12px; font-size: 14.5px; }
.cla-doc ul { padding-left: 22px; margin-bottom: 12px; }
.cla-crumb { font-size: 13px; color: var(--cla-mute); margin-bottom: 18px; }
.cla-crumb a { color: var(--cla-lav-deep); }

/* ===== 404 ===== */
.cla-404 { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 24px; }
.cla-404 h1 { font-size: clamp(70px, 18vw, 140px); background: linear-gradient(120deg,var(--cla-gold),var(--cla-lav-deep)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.cla-404 p { color: var(--cla-navy-2); margin: 12px 0 24px; max-width: 460px; }

/* ===== Redirect interstitial ===== */
.cla-redirect { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.cla-redirect-box { max-width: 420px; }
.cla-loader { width: 54px; height: 54px; border: 5px solid rgba(176,168,232,.3); border-top-color: var(--cla-gold); border-radius: 50%; margin: 0 auto 22px; animation: cla-spin 1s linear infinite; }
@keyframes cla-spin { to { transform: rotate(360deg); } }
.cla-redirect h1 { font-size: 26px; margin-bottom: 8px; }
.cla-redirect p { color: var(--cla-mute); }
.cla-redirect a { color: var(--cla-lav-deep); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .cla-split { grid-template-columns: 1fr; }
    .cla-panel { position: static; }
    .cla-foot-grid { grid-template-columns: 1fr 1fr; }
    .cla-foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .cla-bar { display: none; }
    .cla-mbar { display: flex; }
    /* dvh-fit hero: blocco + pulsante in una schermata */
    .cla-hero-wrap {
        min-height: calc(100svh - 56px);
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        padding: 30px 20px;
    }
    .cla-box, .cla-faq { padding: 40px 18px; }
    .cla-metrics { grid-template-columns: 1fr; }
    .cla-foot-grid { grid-template-columns: 1fr; gap: 22px; text-align: center; }
    .cla-foot-col ul { align-items: center; }
}

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

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

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

/*BONUSLEFT*/
@media (min-width:761px){ .cla-promo-card{ text-align:left; align-items:flex-start; justify-content:center; } .cla-promo-card > *{ max-width:62%; margin-left:0; margin-right:auto; } }

/*PAYBRAND*/
.cla-pay span, .cla-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){ .cla-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; } .cla-hero > div > *{ margin-left:0 !important; } }

/*HEROFADE*/
@media (min-width:761px){ .cla-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%); } }

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

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

/*HEROTEXT*/
.cla-hero h1{ line-height:1.08 !important; margin-bottom:12px !important; }
.cla-hero-off{ line-height:1.12 !important; margin-bottom:10px !important; }
.cla-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){ .cla-hero > div h1, .cla-hero > div p{ max-width:720px !important; } }

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

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

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

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

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

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

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

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

/*BOXWIDE*/
@media (min-width:761px){ .cla-promo-card{ max-width:1080px !important; } }

/*BONUSBB*/
.cla-promo-card{ transition:box-shadow .35s ease, border-color .35s ease; }
.cla-promo-card:hover{ box-shadow:0 0 50px rgba(246,166,35,0.5), inset 0 0 70px rgba(246,166,35,0.16); border-color:#F6A623 !important; }
.cla-promo-card .cla-big{ color:#F6A623 !important; text-transform:uppercase; letter-spacing:.5px; }
.cla-promo-card a{ animation:clapulse 1.7s ease-in-out infinite; }
.cla-promo-card a:hover{ animation-play-state:paused; }

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

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

/*BTNPULSE*/
.cla-promo-card [class*="btn"]{ animation:clapulse 1.7s ease-in-out infinite; }
.cla-promo-card: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){
  .cla-hero-inner, .cla-hero > div{ min-height:calc(75svh - 42px) !important; justify-content:flex-end !important; padding-bottom:40px !important; }
  .cla-hero-img{ object-position:top center !important; }
}

/*RESTTXT*/
@media (max-width:760px){
  .cla-hero h1{ font-size:clamp(44px,13vw,54px) !important; }
  .cla-hero-off{ font-size:clamp(46px,14vw,58px) !important; }
  .cla-hero-bg{ background-position:top center !important; }
  .cla-hero{ min-height:calc(75svh - 42px) !important; }
}

/*RESTREV*/
@media (max-width:760px){
  .cla-split{ display:flex !important; flex-direction:column !important; }
  .cla-panel{ order:-1 !important; margin-bottom:8px; }
}

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

/*STEPSBB*/
.cla-steps{ display:flex !important; flex-wrap:nowrap !important; justify-content:space-between !important; align-items:flex-start !important; gap:22px !important; }
.cla-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; }
.cla-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, #F6A623, #996716) !important; box-shadow:0 8px 24px rgba(246,166,35,0.38) !important; margin:0 auto 14px !important; }
.cla-step strong{ text-transform:uppercase !important; color:#F6A623 !important; letter-spacing:1px !important; font-size:14px !important; }
.cla-step:not(:last-child)::after{ content:''; position:absolute; top:32px; right:-16px; width:13px; height:13px; border-top:3px solid #F6A623; border-right:3px solid #F6A623; border-radius:2px; transform:rotate(45deg); }
@media (max-width:760px){
  .cla-steps{ flex-direction:column !important; align-items:center !important; gap:22px !important; }
  .cla-step{ max-width:320px !important; }
  .cla-step:not(:last-child)::after{ top:auto !important; bottom:-16px !important; right:50% !important; transform:translateX(50%) rotate(135deg) !important; }
}

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

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

/*MOBH2*/
@media (max-width:760px){
  section:has(> .cla-split){ display:flex !important; flex-direction:column !important; }
  .cla-split{ display:contents !important; }
  .cla-panel{ order:1 !important; }
  section:has(> .cla-split) > h2{ order:2 !important; margin-top:14px !important; margin-bottom:10px !important; }
  .cla-split > :not(.cla-panel){ order:3 !important; }
}

/*MOBCARD*/
@media (max-width:760px){
  .cla-panel{ align-self:center !important; max-width:430px !important; width:100% !important; margin-left:auto !important; margin-right:auto !important; }
}

/*MOBH2FIX*/
@media (max-width:760px){
  section:has(> .cla-split) > :not(h2):not(.cla-split){ order:4 !important; }
}

/*CARDNAME*/
.cla-panel-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*/
.cla-nav a.cla-on{ color:#0a0a0a !important; background:#F6A623; border-radius:999px; padding:7px 17px !important; font-weight:800; box-shadow:0 0 18px rgba(246,166,35,0.7); text-shadow:none !important; }
.cla-nav a.cla-on:hover{ filter:brightness(1.08); }

/*BONUSIMG*/
.cla-promo-card{ 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*/
.cla-nav a.cla-on{ background:#2F6FED !important; color:#fff !important; box-shadow:0 0 16px rgba(47,111,237,.55) !important; }
.cla-nav a.cla-on:hover{ filter:brightness(1.08); background:#2F6FED !important; }

/*BONUSIMG2*/
.cla-promo-card{ 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){
  .cla-promo-card{ background:url('../img/promo-hero.webp') center center/cover no-repeat !important; }
  .cla-promo-card p{ text-shadow:0 2px 10px rgba(0,0,0,.95), 0 1px 4px rgba(0,0,0,.88) !important; }
}

/*MENUPRETTY*/
.cla-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(246,166,35,0.1) !important; transition:left .34s cubic-bezier(.4,0,.2,1) !important; }
.cla-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; }
.cla-mnav a::before{ content:''; position:absolute; left:7px; top:50%; transform:translateY(-50%) scaleY(0); width:3px; height:56%; background:#F6A623; border-radius:3px; transition:transform .2s ease; }
.cla-mnav a:hover{ background:rgba(246,166,35,0.16) !important; color:#fff !important; padding-left:23px !important; }
.cla-mnav a:hover::before{ transform:translateY(-50%) scaleY(1); }
.cla-mnav a.cla-hot{ background:#F6A623 !important; color:#0a0a0a !important; font-weight:800 !important; box-shadow:0 6px 18px rgba(246,166,35,0.5) !important; margin-top:8px; padding-left:16px !important; }
.cla-mnav a.cla-hot::before{ display:none; }
.cla-mnav a.cla-hot:hover{ filter:brightness(1.08); padding-left:16px !important; }
.cla-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*/
.cla-mnav{ left:-360px; }
.cla-mnav.cla-open{ left:0; }

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

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

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

/*CARDCENTER*/
.cla-panel-name, .cla-panel-lic, .cla-panel-name, .cla-panel-sub{ text-align:center !important; }
.cla-panel-tag{ display:block !important; width:max-content; max-width:100%; margin-left:auto !important; margin-right:auto !important; }

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

/*CLABHERO*/
.cla-hero-bg{ position:absolute !important; inset:0 !important; width:100% !important; height:100% !important; max-width:none !important; min-width:100% !important; margin:0 !important; object-fit:cover !important; text-align:initial !important; }
@media (min-width:761px){ .cla-hero-inner{ text-align:left !important; align-items:flex-start !important; display:flex !important; flex-direction:column !important; max-width:720px !important; margin-left:clamp(24px,6vw,140px) !important; margin-right:auto !important; margin-top:0 !important; } .cla-hero-inner > *{ margin-left:0 !important; margin-right:0 !important; } }
.cla-hero h1{ font-size:clamp(46px,6vw,76px) !important; line-height:1.05 !important; margin-bottom:6px !important; }
.cla-hero-off{ font-size:clamp(34px,4.6vw,56px) !important; line-height:1.1 !important; margin:4px 0 !important; }
@media (max-width:760px){ .cla-hero h1{ font-size:clamp(40px,12vw,58px) !important; } .cla-hero-off{ font-size:clamp(32px,10vw,48px) !important; } .cla-hero-inner{ max-width:100% !important; margin-left:0 !important; } }

/*CLABWRAP*/
@media (min-width:761px){ .cla-hero-wrap{ text-align:left !important; align-items:flex-start !important; display:flex !important; flex-direction:column !important; max-width:720px !important; margin-left:clamp(24px,6vw,140px) !important; margin-right:auto !important; margin-top:0 !important; } .cla-hero-wrap > *{ margin-left:0 !important; } }
@media (max-width:760px){ .cla-hero-wrap{ max-width:100% !important; margin-left:0 !important; align-items:flex-start !important; } }

/*CLABH1GOLD*/
.cla-hero h1, .cla-hero h1 b{ background:none !important; -webkit-background-clip:border-box !important; background-clip:border-box !important; -webkit-text-fill-color:#F6A623 !important; color:#F6A623 !important; -webkit-text-stroke:6px #000 !important; paint-order:stroke fill; text-shadow:0 4px 16px rgba(0,0,0,.55) !important; filter:none !important; }

/*CLABFIX2*/
.cla-hero-off{ color:#fff !important; -webkit-text-fill-color:#fff !important; -webkit-text-stroke:5px #000 !important; paint-order:stroke fill; text-shadow:0 3px 14px rgba(0,0,0,.5) !important; }
.cla-hero-off b, .cla-hero-off span{ color:#F6A623 !important; -webkit-text-fill-color:#F6A623 !important; }
@media (max-width:760px){ .cla-promo-card{ background-position:center center !important; background-size:cover !important; } }

/*HEROCLEAN*/
.cla-hero .cla-tag, .cla-hero .cla-hero-rate, .cla-hero .cla-hero-note{ display:none !important; }

/*CLABMOBCTR*/
@media (max-width:760px){ .cla-hero-wrap{ align-items:center !important; text-align:center !important; max-width:100% !important; margin-left:auto !important; margin-right:auto !important; } .cla-hero-wrap > *{ margin-left:auto !important; margin-right:auto !important; } }

/*CLAICONS*/
.cla-metric{ display:flex !important; flex-direction:column !important; align-items:flex-start; }
.cla-metric .stat-ic{ display:block !important; width:24px !important; height:24px !important; color:var(--cla-lav-deep) !important; margin-bottom:9px !important; }

/*CLABMOBH1*/
@media (max-width:760px){
  .cla-hero h1, .cla-hero h1 b{ -webkit-text-stroke:3px #000 !important; }
  .cla-hero-off, .cla-hero-off2, .cla-hero-line{ -webkit-text-stroke:3px #000 !important; }
  .cla-hero-inner, .cla-hero-wrap, .cla-hero-mid, .cla-hero > div{ min-height:calc(64svh - 30px) !important; padding-bottom:26px !important; gap:4px !important; }
  .cla-hero h1{ margin-bottom:4px !important; line-height:1.04 !important; }
  .cla-hero-off, .cla-hero-line, .cla-hero-off2{ margin:3px 0 !important; line-height:1.12 !important; }
}

/*METRICSCTR*/
.cla-metrics{ grid-template-columns:repeat(4,1fr) !important; gap:14px !important; }
.cla-metric{ align-items:center !important; text-align:center !important; justify-content:flex-start !important; padding:20px 14px !important; }
.cla-metric .stat-ic{ margin:0 auto 11px !important; width:30px !important; height:30px !important; }
.cla-lab, .cla-val{ text-align:center !important; width:100% !important; display:block !important; }
@media (max-width:760px){ .cla-metrics{ grid-template-columns:repeat(2,1fr) !important; } }

/*PROMOTXT*/
.cla-promo .cla-eyebrow, .cla-promo .cla-fine{ color:var(--cla-navy,#241a4d) !important; -webkit-text-fill-color:var(--cla-navy,#241a4d) !important; -webkit-text-stroke:0 !important; text-shadow:0 1px 2px rgba(255,255,255,.95), 0 0 6px rgba(255,255,255,.6) !important; }
.cla-promo .cla-headline{ color:var(--cla-navy,#241a4d) !important; -webkit-text-fill-color:var(--cla-navy,#241a4d) !important; -webkit-text-stroke:0 !important; text-shadow:0 1px 3px rgba(255,255,255,.9), 0 0 5px rgba(255,255,255,.55) !important; }
.cla-promo .cla-headline em{ color:#F6A623 !important; -webkit-text-fill-color:#F6A623 !important; text-shadow:0 1px 2px rgba(0,0,0,.25) !important; }
