/* /design_sandbox/assets/css/sandbox.css */

/* ===============================
   TOKENS
   =============================== */
   :root{
    --color-white:#fff;
    --color-nav-text:#fff;
    --color-cta-text:#E10600;
  
  --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --font-body: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --font-script: "Lobster", "LilyScriptOneRegular", "BerkshireSwash-Regular", Georgia, serif;
    --font-footer: "Candarab", "Candara", var(--font-ui);
  
    /* Header */
    --header-h: 146.57px;
    --header-bar-w: 1440px;
  
    /* Global paddings */
    --page-pad: 48px;
    --page-max: 1440px;
  
    /* Menu */
    --menu-gap: clamp(16px, 2.2vw, 42px);
  
    /* Header guards (IMPORTANT) */
    --nav-guard-left: clamp(240px, 18vw, 300px);   /* minim ca să nu intre peste logo */
    --nav-guard-right: clamp(240px, 18vw, 300px);  /* îl ținem egal ca să rămână nav-ul centrat real */
  
    /* CTA */
    --cta-w: 185px;
    --cta-h: 44px;
    --cta-radius: 49px;
  
    /* Click-area logo */
    --logo-hit-x: 28px;
    --logo-hit-y: 6px;
    --logo-hit-w: 280px;
    --logo-hit-h: 130px;
  
    .products__carousel-wrap{
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 26px;
      width: 100%;
    }
    /* Site BG (full width) */
    --site-bg: radial-gradient(71.75% 71.75% at 50% 50%, #E20613 0%, #8D1003 76%, #8D1003 100%);
    --site-bg-shadow: drop-shadow(0 4px 4px rgba(0,0,0,.25));
  
    /* Hero */
    --hero-bg: #BDE7F1;
    --btn-blue: #043C7A;
  
    /* Hero paddings */
    --hero-pad-top: 78px;
    --hero-pad-bot: 84px;
  
    /* Hero layout */
    --hero-gap: 45px;
    --hero-left-w: clamp(320px, 38vw, 520px);
    --hero-right-w: clamp(380px, 46vw, 640px);
  }
  
  /* ===============================
     RESET / BASE
     =============================== */
  *{ box-sizing:border-box; }
  html,body{ height:100%; }
  body{
    margin:0;
    font-family:var(--font-body);
    color:#111;
    background: var(--site-bg);
    filter: var(--site-bg-shadow);
    overflow-x: hidden;
  }
  
  /* ===============================
     HEADER (full width, bar left, sliver repeat)
     =============================== */
  .site-header{
    position:relative;
    width:100%;
    height:var(--header-h);
    overflow:visible; /* permite “bula” peste hero */
    z-index: 50;      /* peste hero */
  }
  
  /* Layer 1: sliver repeat-x full width */
  .site-header__bg{
    position:absolute;
    inset:0;
    z-index:0;
    background-image: url("/assets/ui/desktop/sliver.png");
    background-repeat: repeat-x;
    background-position: left top;
    background-size: auto 100%;
  }
  
  /* Layer 2: meniu_logo.png fix 1440px, aliniat la stânga */
  .site-header__bg::after{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:var(--header-bar-w);
    height:100%;
    background-image: url("/assets/ui/desktop/meniu_logo.png");
    background-repeat:no-repeat;
    background-position:left top;
    background-size: var(--header-bar-w) 100%;
  }
  
  /* Click area invizibil peste logo */
  .site-header__logo-hit{
    position:absolute;
    left:var(--logo-hit-x);
    top:var(--logo-hit-y);
    width:var(--logo-hit-w);
    height:var(--logo-hit-h);
    z-index:60;
    text-decoration:none;
  }
  
  /* content over bg */
  .site-header__content{
    position:relative;
    z-index:2;
    height:100%;
    width:100%;
  }
  
    .products__nav:active{ transform: translateY(-50%); }
  
    /* Swiper overrides (desktop locked) */
    .products__carousel.products-swiper { display: block; max-width: 1097px; margin: 0 auto; }
    .products__list.swiper-wrapper {
      display: flex;
      gap: 0;
      justify-content: flex-start;
      width: auto;
      flex-wrap: nowrap;
    }
    .products-swiper { overflow: hidden; position: relative; }
    .products-swiper .swiper-wrapper { display: flex; }
    .products-swiper .swiper-slide { width: 349.632px; height: auto; }
    .product-card.swiper-slide { height: auto; }
  
    /* dacă ai overflow hidden undeva pe carousel și îți taie săgețele */
    .products__carousel:not(.products-swiper) { overflow: visible; }
  /*
    GRID: [guard stânga] [NAV] [guard dreapta]
    Guard-urile egale => NAV rămâne centrat “real” în viewport.
  */
  .site-header__inner{
    height:100%;
    width:100%;
    display:grid;
    grid-template-columns:
      minmax(var(--nav-guard-left), 1fr)
      auto
      minmax(var(--nav-guard-right), 1fr);
    align-items:center;
    padding: 0 var(--page-pad);
  }
  
  /* NAV în coloana centrală */
  .site-header__nav{
    grid-column: 2;
    display:flex;
    justify-content:center;
    align-items:center;
    min-width:0;
  }
  
  .site-header__menu{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    align-items:center;
    gap:var(--menu-gap);
  }
  
  .site-header__menu a{
    color:var(--color-nav-text);
    text-decoration:none;
    font-family:var(--font-ui);
    font-size:clamp(14px, 1.1vw, 18px);
    font-weight:400;
    text-transform:uppercase;
    letter-spacing:0.15px;
    white-space:nowrap;
  }
  
  .site-header__menu a:hover{
    text-decoration:underline;
    text-underline-offset:6px;
  }
  
  /* CTA “stă” în dreapta, dar fără să strice centrul */
  .site-header__cta{
    grid-column: 3;
    display:flex;
    justify-content:flex-end;
    align-items:center;
  }
  
  /* Mobile header/menu hidden by default (enabled in mobile CSS at <=900px) */
  .site-header__mobile,
  .site-header__mobile-menu{
    display:none;
  }
  
  .btn-cta{
    width:var(--cta-w);
    height:var(--cta-h);
    border-radius:var(--cta-radius);
    background:var(--color-white);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
  
    color:var(--color-cta-text);
    font-family:var(--font-ui);
    font-size:18px;
    font-weight:500;
    text-transform:uppercase;
  
    box-shadow:0 6px 18px rgba(0,0,0,.18);
  }
  .btn-cta:hover{ filter:brightness(.98); }
  .btn-cta:active{ transform:translateY(1px); }
  
  /* ===============================
     HERO BLUE
     =============================== */
  .hero-blue{
    width:100%;
    background:var(--hero-bg);
    position:relative;
    overflow:hidden;
  
    /* lipire de linia aurie */
    margin-top:-27px;
    z-index:10; /* sub header */
  }
  
  /* 2 coloane, full width, fără “centrare de container” care să taie dreapta */
  .hero-blue__inner{
    width:100%;
    max-width: var(--page-max);
    margin: 0 auto;
    display:grid;
    grid-template-columns: auto auto;
    gap: var(--hero-gap);
    align-items:flex-start;
    justify-content:center;
    padding: var(--hero-pad-top) var(--page-pad) var(--hero-pad-bot);
  }
  
  /* LEFT block: offset mare (tu ai cerut ~200px) */
  .hero-blue__left{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    max-width: var(--hero-left-w);
  }
  
  /* prize group wrapper */
  .hero-blue__prizes{
    width:100%;
    display:flex;
    justify-content:center;
    margin: 0 0 18px;
  }
  
  /* IMPORTANT: fără limitări de mărime (cum ai cerut) */
  .hero-blue__prizes-img{
    display:block;
    width: 100%;
    height: auto;
    margin: 0;
    user-select:none;
    -webkit-user-drag:none;
  }
  
  /* buttons */
  .hero-blue__actions{
    display:flex;
    gap:34px;
    justify-content:center;
    align-items:flex-start;
    margin-top:10px;
    width: 100%;
  }
  
  .hero-blue__action{ text-align:center; }
  
  .hero-blue__btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:44px;
    padding:0 26px;
    border-radius:100px;
    background:var(--btn-blue);
    color:#FFF;
    text-decoration:none;
  
    font-family:var(--font-ui);
    font-size:18px;
    font-weight:500;
    text-transform:uppercase;
    white-space:nowrap;
  }
  
  .hero-blue__sub{
    margin-top:10px;
    color:var(--btn-blue);
    text-align:center;
    font-family:var(--font-ui);
    font-size:18px;
    font-weight:500;
    line-height:normal;
  }
  
  /* RIGHT: lipit de dreapta (cum ai cerut) */
  .hero-blue__right{
    position:relative;
    z-index:1;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    max-width: var(--hero-right-w);
  }
  
  /* IMPORTANT: fără max-height / max-width */
  .hero-blue__scene{
    display:block;
    width: 100%;
    height: auto;
    max-width:none;
    margin: 0;
  }
  
  /* Mobile hero layout hidden on desktop */
  .hero-blue__mobile{
    display:none;
  }
  
  /* Viewport 1920x1080 @ 125% (~1536px wide) */
  @media (max-width: 1600px){
    :root{
      --hero-pad-top: 60px;
      --hero-pad-bot: 64px;
      --hero-gap: 36px;
    }
  
    .hero-blue__prizes-img{
      max-width: none;
    }
  
    .hero-blue__actions{ gap: 28px; }
  
    .hero-blue__btn{
      height: 40px;
      padding: 0 22px;
      font-size: 16px;
    }
  
    .hero-blue__sub{ font-size: 16px; }
  
    .hero-blue__scene{
      max-width: none;
    }
  }
  
  
  /* ===============================
     “DESKTOP ÎNGUST” (ex. 1280 la zoom 150%)
     - micșorăm MENIUL și ajustăm offset-urile,
       fără să stricăm PNG-urile din hero.
     =============================== */
  @media (max-width: 1360px){
    :root{
      --page-pad: 28px;
  
      --menu-gap: 26px;
  
      --hero-gap: 28px;
      --hero-pad-top: 52px;
  
      /* CTA puțin mai mic */
      --cta-w: 160px;
    }
  
    .site-header__menu a{ font-size:16px; }
  }
  
  /* dacă chiar se strânge tare, mai reducem gap-ul */
  @media (max-width: 1280px){
    :root{
      --menu-gap: 20px;
      --nav-guard-left: 260px;
      --nav-guard-right: 260px;
      --hero-pad-top: 48px;
      --hero-pad-bot: 78px;
    }
  
    .site-header__menu a{ font-size:14px; }
  
    .hero-blue__inner{
      gap: 24px;
    }
  }
  
  /* Menu tightening around 14" laptop widths (e.g. 1440/1512 wide) */
  @media (max-width: 1550px){
    :root{
      --menu-gap: 22px;
    }
    .site-header__menu a{ font-size:16px; }
  }
  /* Mobile fallback (tu deja ascunzi nav la <900) */
  @media (max-width: 900px){
    .site-header__nav{ display:none; }
  
    .hero-blue__inner{
      grid-template-columns: 1fr;
      gap: 18px;
    }
  
    .hero-blue__right{
      margin-right: 0;
      justify-content:center;
    }
  
    .hero-blue__scene{
      max-width: 92vw; /* aici e ok să limitezi ca să nu rupă layout-ul pe mobile */
    }
  
    .hero-blue__left{
      padding-left: 16px;
      max-width: none;
    }
  
    .hero-blue__prizes{
      justify-content:center;
    }
  
    .hero-blue__actions{
      margin-left: 0;
      justify-content:center;
      flex-wrap:wrap;
    }
  }
  
  @media (max-width: 520px){
    :root{
      --logo-hit-w: 220px;
      --logo-hit-h: 110px;
    }
  
    .hero-blue__actions{
      flex-direction:column;
      gap:18px;
    }
  }
  /* ===============================
     MID CARD (cutia albă peste albastru + roșu)
     =============================== */
  
  :root{
    --mid-card-max: 1180px;
    --mid-card-radius: 17px;
    --mid-card-pad-y: 26px;
    --mid-card-pad-x: 34px;
  
    /* cât intră peste albastru (negativ = urcă în albastru) */
    --mid-card-overlap: 52px;
  
    --mid-card-gap: 36px;
    --mid-step-gap: 42px;
  
    --mid-icon-size: 44px;
    --mid-packshots-w: 360px;
  }
  
  .mid-card{
    position: relative;
    z-index: 30;                 /* peste hero + roșu */
    margin-top: calc(var(--mid-card-overlap) * -1);
    margin-bottom: 34px;         /* spațiu până la conținutul roșu */
  }
  
  .mid-card__inner{
    max-width: var(--mid-card-max);
    margin: 0 auto;
    background: #FFF;
    border-radius: var(--mid-card-radius);
    padding: var(--mid-card-pad-y) var(--mid-card-pad-x);
    display: grid;
    grid-template-columns: var(--mid-packshots-w) 1fr;
    gap: var(--mid-card-gap);
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
  }
  
  .mid-card__packshots img{
    display:block;
    width: 100%;
    height: auto;
  }
  
  .mid-card__steps{
    display:flex;
    align-items:flex-start;
    justify-content: space-between;
    gap: var(--mid-step-gap);
  }
  
  .mid-card__step{
    flex: 1 1 0;
    min-width: 0;
    display:flex;
    flex-direction: column;
    align-items:center;
    text-align:center;
  }
  
  .mid-card__icon{
    width: var(--mid-icon-size);
    height: auto;
    display:block;
    margin-bottom: 12px;
  }
  
  .mid-card__txt{
    color: #043C7A;
    text-align: center;
    font-family: var(--font-ui);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  
  .mid-card__u{
    color: inherit;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }
  .mid-card__u:visited,
  .mid-card__u:hover,
  .mid-card__u:active,
  .mid-card__u:focus{
    color: inherit;
  }
  
  /* ===============================
     Desktop îngust (zoom 150% ~ 1280)
     =============================== */
  @media (max-width: 1280px){
    :root{
      --mid-card-max: 1040px;
      --mid-packshots-w: 320px;
      --mid-card-gap: 26px;
      --mid-step-gap: 28px;
      --mid-icon-size: 40px;
      --mid-card-overlap: 44px;
    }
  
    .mid-card__txt{ font-size: 16px; }
  }
  
  /* ===============================
     Sub 980px: stack elegant
     =============================== */
  @media (max-width: 980px){
    :root{
      --mid-card-max: 92vw;
      --mid-packshots-w: 1fr;
      --mid-card-overlap: 36px;
    }
  
    .mid-card__inner{
      grid-template-columns: 1fr;
      justify-items: center;
      text-align:center;
    }
  
    .mid-card__packshots img{
      width: min(420px, 90%);
    }
  
    .mid-card__steps{
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
      gap: 22px 26px;
    }
  
    .mid-card__step{
      flex: 0 1 220px;
    }
  }
  /* ===============================
     FORM (MECANISM) — Figma match
     =============================== */
  
  :root{
    --form-max: 593px;
    --form-field-h: 58px;
  
    --form-border: #EC1C24;
    --form-input-text: #3E3E3E;
  
    --form-btn-w: 217px;
    --form-btn-h: 47px;
  
    --form-btn-text: #77101E;
    --form-btn-gold: #FFED9B;
  }
  
  .bp-form{
    position: relative;
    width: 100%;
    padding: 64px 0 96px;
    color: #fff;
  }
  
  .bp-form__inner{
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .bp-form__header{
    text-align: center;
    margin-bottom: 26px;
  }
  
  .bp-form__title{
    color: #FFF;
    text-align: center;
    font-family: "Henriette", Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  
  .bp-form__subtitle{
    margin-top: 4px;
    color: #FFF;
    text-align: center;
    font-family: "Henriette", Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 700;
    line-height: 140%;
  }
  
  .bp-form__form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .bp-form__grid{
    width: min(100%, calc(var(--form-max) * 1));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    align-items: center;
  }
  
  .bp-field--full{ grid-column: 1 / -1; }
  .bp-field--half{ grid-column: auto; }
  
  .bp-input{
    width: 100%;
    height: var(--form-field-h);
    border-radius: 10px;
    border: 2px solid var(--form-border);
    background: #FFF;
  
    padding: 0 22px;
  
    color: var(--form-input-text);
    font-family: var(--font-ui);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
  
    outline: none;
  }
  
  .bp-input::placeholder{
    color: var(--form-input-text);
    opacity: 1;
  }
  
  .bp-input:focus{
    box-shadow: 0 0 0 3px rgba(236, 28, 36, 0.18);
  }
  
  .bp-form .invalid-feedback{
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  }
  
  /* Captcha row */
  .bp-captcha{
    width: 100%;
    height: var(--form-field-h);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .bp-captcha__img{
    height: var(--form-field-h);
    width: auto;
    border-radius: 10px;
    display: block;
  }
  
  .bp-captcha__reload{
    height: var(--form-field-h);
    width: var(--form-field-h);
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    background: var(--form-btn-gold);
    color: #111;
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 18px rgba(0,0,0,.18);
  }
  
  .bp-captcha__reload:active{ transform: translateY(1px); }
  
  /* Checks */
  .bp-check{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  /* ensure label behaves like a block row (some browsers) */
  label.bp-check{
    width: 100%;
  }

  /* keep link clickable inside label without toggling issues */
  .bp-check a{
    pointer-events: auto;
  }
  
  .bp-form__checks{
    width: min(100%, var(--form-max));
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .bp-check__box{
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    border-radius: 4px;
    -webkit-appearance: checkbox;
    appearance: auto;
    accent-color: #fff; /* ok modern browsers */
    touch-action: manipulation; /* ok și aici */
  }
  
  .bp-check__text{
    color: #FFF;
    font-family: var(--font-ui);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    user-select: none;
    cursor: pointer;
  }
  
  .bp-link{
    color: #FFF;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  
  .bp-link--gold{
    color: gold;
  }
  
  /* Disclaimer */
  .bp-form__disclaimer{
    width: min(100%, var(--form-max));
    margin: 10px 0 0;
    color: rgba(255,255,255,.9);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
  }
  
  .bp-form__status{
    width: min(100%, var(--form-max));
    margin-top: 10px;
    min-height: 20px;
  }
  
  /* Actions */
  .bp-form__actions{
    width: min(100%, var(--form-max));
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 22px;
  }
  
  .bp-btn{
    width: var(--form-btn-w);
    height: var(--form-btn-h);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    border: 0;
  
    color: var(--form-btn-text);
    text-align: center;
    font-family: var(--font-ui);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
  
    box-shadow: 0 10px 18px rgba(0,0,0,.22);
  }
  
  .bp-btn--white{ background: #FFF; }
  .bp-btn--gold{ background: var(--form-btn-gold); }
  
  .bp-btn:active{ transform: translateY(1px); }
  
  /* Desktop îngust (zoom 150% / ~1280) */
  @media (max-width: 1280px){
    .bp-form{ padding: 54px 0 82px; }
  
    .bp-form__grid{
      width: min(100%, 560px);
      gap: 12px 14px;
    }
  
    :root{
      --form-max: 560px;
    }
  }
  
  /* Dacă se strânge prea tare (fără a intra în mobile) */
  @media (max-width: 980px){
    .bp-form__grid{
      grid-template-columns: 1fr;
    }
    .bp-field--half{ grid-column: 1 / -1; }
    .bp-form__actions{
      flex-direction: column;
      align-items: center;
    }
  }
  /* ===============================
     DAILY GAME (Maestrul Brânzeturilor)
     =============================== */
  
  .daily-game{
    padding: 56px 0 90px;
  }
  
  .daily-game__head{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
  }
  
  .daily-game__title{
    color:#FFF;
    text-align:center;
    font-family: Henriette, Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  
  .daily-game__subtitle{
    margin-top: 6px;
    color:#FFF;
    font-family: Henriette, Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 700;
    line-height: 140%;
  }
  .daily-game__highlight{
    color: #FBE06F;
  }
  
  .daily-game__card{
    position: relative;
    max-width: 980px;
    margin: 26px auto 0;
    border-radius: 17px;
    background: #FFF url("/assets/ui/desktop/fundal text.png") center/cover no-repeat;
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
    padding: 52px 70px 60px;
    overflow: hidden;
  }
  
  .daily-game__flags{
    position: absolute;
    top: 0;
    height: 110px;
    width: auto;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
  }
  
  .daily-game__flags--left{
    left: 0;
  }
  
  .daily-game__flags--right{
    right: 0;
  }
  
  .daily-game__bonjour{
    display:block;
    margin: 0 auto 18px;
    width: auto;
    height: auto;
    user-select:none;
    -webkit-user-drag:none;
  }
  
  .daily-game__h2{
    margin: 0 0 18px;
    color: #77101E;
    text-align: center;
    font-family: Henriette, Georgia, "Times New Roman", serif;
    font-size: 55px;
    font-style: normal;
    font-weight: 700;
    line-height: 94%;
  }
  
  .daily-game__p{
    margin: 0 auto 26px;
    max-width: 720px;
    color: #77101E;
    text-align: center;
    font-family: var(--font-ui);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
  }
  
  .daily-game__btn{
    width: 211px;
    height: 50px;
    margin: 0 auto;
    border-radius: 100px;
    background: #77101E;
  
    display: flex;
    
    align-items: center;
    justify-content: center;
  
    color: #FFF;
    text-align: center;
    font-family: var(--font-ui);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
  }
  
  .daily-game__btn:hover{ filter: brightness(1.05); }
  .daily-game__btn:active{ transform: translateY(1px); }
  
  /* Desktop îngust (ex. 1280 la zoom 150%) */
  @media (max-width: 1280px){
    .daily-game{
      padding: 46px 0 76px;
    }
  
    .daily-game__head{
      padding: 0 28px;
    }
  
    .daily-game__card{
      max-width: 920px;
      padding: 44px 46px 52px;
    }
  
    .daily-game__flags{
      height: 96px;
    }
  
    .daily-game__h2{
      font-size: 46px;
    }
  
    .daily-game__p{
      font-size: 18px;
    }
  }
  
  /* Tablet-ish */
  @media (max-width: 900px){
    .daily-game__head{
      padding: 0 16px;
    }
  
    .daily-game__card{
      margin-top: 18px;
      padding: 34px 22px 40px;
    }
  
    .daily-game__flags{
      display: none;
    }
  
    .daily-game__h2{
      font-size: 40px;
    }
  
    .daily-game__title,
    .daily-game__subtitle{
      font-size: 26px;
    }
  }
  
  /* ===============================
     PRODUSE PARTICIPANTE
     =============================== */
  .products{
    width:100%;
    background:#F1E4DF;
    padding: 56px 0 72px;
  }
  
  .products__inner{
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 0 var(--page-pad);
    text-align: center;
    position: relative;
  }
  
  .products__title{
    margin: 0 0 8px;
    color:#77101E;
    text-align:center;
    font-family: Henriette, serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%;
  }
  
  .products__subtitle{
    margin: 0 0 28px;
    color:#77101E;
    text-align:center;
    font-family: var(--font-ui);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  
  .products__carousel-wrap{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    width: 100%;
  }
  
  .products__carousel{
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .products__list{
    display:flex;
    align-items:stretch;
    justify-content:center;
    gap: 26px;
    width: 100%;
  }
  
  .products__nav{
    appearance:none;
    border:0;
    background:transparent;
    color:#E10600;
    font-size: 28px;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor:pointer;
    user-select:none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .products__nav:active{ transform: translateY(-50%); }
  
  .products__nav--prev { left: 8px; }
  .products__nav--next { right: 8px; }
  .products__nav svg { width: 15px; height: 15px; display: block; }
  .products__nav path { fill: #ED1C2E; stroke: #ED1C2E; stroke-width: 2px; }
  
  .product-card{
    width: 349.632px;
    height: 364px;
    border-radius: 10px;
    background:#FFF;
    box-shadow: 0 4px 10px rgba(0,0,0,.25);
    overflow:hidden;
    text-align:left;
    display:flex;
    flex-direction: column;
  }
  
  .product-card__img{
    height: 210px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 18px 18px 10px;
  }
  
  .product-card__img img{
    display:block;
    max-width: 100%;
    max-height: 100%;
    width:auto;
    height:auto;
  }
  
  .product-card__meta{
    padding: 10px 18px 18px;
  }
  
  .product-card__name{
    color:#77101E;
    font-family: var(--font-ui);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin: 0 0 4px;
  }
  
  .product-card__size{
    color:#77101E;
    font-family: var(--font-ui);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
  }
  
  /* Swiper overrides (desktop locked) */
  .products__carousel.products-swiper { display: block; max-width: 1097px; margin: 0 auto; }
  .products__list.swiper-wrapper {
    display: flex;
    gap: 0;
    justify-content: flex-start;
    width: auto;
    flex-wrap: nowrap;
  }
  .products-swiper { overflow: hidden; position: relative; }
  .products-swiper .swiper-wrapper { display: flex; }
  .products-swiper .swiper-slide { width: 349.632px; height: auto; }
  .product-card.swiper-slide { height: auto; }
  
  /* dacă ai overflow hidden undeva pe carousel și îți taie săgețele */
  .products__carousel:not(.products-swiper) { overflow: visible; }
  @media (max-width: 1280px){
    .products{
      padding: 46px 0 64px;
    }
    .products__list{
      gap: 18px;
    }
    .product-card{
      width: 320px;
      height: 340px;
    }
  }
  
  /* sub ~980: 2 pe rând (fără carousel JS) */
  @media (max-width: 980px){
    .products__carousel{
      gap: 12px;
    }
    .products__list{
      flex-wrap: wrap;
    }
    .product-card{
      width: min(360px, 92vw);
      height: auto;
    }
  }
  
  /* pe mobil: ascund săgețele (orice “carusel” real îl facem după) */
  @media (max-width: 640px){
    .products__nav{ display:none; }
  }
  
  /* ===============================
     PAGINI: CÂȘTIGĂTORI / COOKIES
     =============================== */
  .mecanica-castigatori{
    max-width: 1440px;
    margin: 30px auto 24px;
    padding: 24px 24px 18px;
    background: #FFF;
    border-radius: 10px;
  }
  
  .mecanica-castigatori .title-castigatori{
    margin: 0 auto;
  }
  /* ===============================
     FOOTER (full width + bg image + inner radial card)
     =============================== */
  
  .site-footer{
    width:100%;
    position:relative;
    padding: 470px 0 80px;
  
    background-image: url("/assets/ui/desktop/RGB%20Paris%201.png");
    background-repeat: no-repeat;
    background-position: center top;
  
    /* NU mai taie lateralele */
    background-size: 100% auto; /* echivalent “folosește toată lățimea” */
    /* alternativ: background-size: contain; */
  }
  
  
  .site-footer__inner{
    width: 100%;
    padding: 0 var(--page-pad);
    display: flex;
    justify-content: center;
  }
  
  .site-footer__card{
    width: min(1321px, 100%);
    border-radius: 17px;
    background: radial-gradient(71.75% 71.75% at 50% 50%, #E20613 0%, #8D1003 76%, #8D1003 100%);
    padding: 34px 56px 30px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
  }
  
  .site-footer__text{
    margin: 0;
    color: #FFF;
    text-align: center;
    font-family: var(--font-ui);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  
  .site-footer__social{
    margin-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
  }
  
  .site-footer__social-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    text-decoration: none;
  }
  
  .site-footer__social-link img{
    display: block;
    width: auto;
    height: 28px;
    user-select: none;
    -webkit-user-drag: none;
  }
  
  .site-footer__divider{
    margin: 18px auto 16px;
    width: min(860px, 100%);
    height: 1px;
    background: #FFF;
    opacity: .9;
  }
  
  .site-footer__links{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
  }
  
  .site-footer__link,
  .site-footer__sep{
    color: #FFF;
    font-family: var(--font-ui);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.18px;
  }
  
  .site-footer__link{
    text-decoration: none;
  }
  
  .site-footer__link:hover{
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  
  /* îngustări (desktop mic / zoom) */
  @media (max-width: 1280px){
    .site-footer{
      padding: 254px 0 66px;
    }
    .site-footer__card{
      padding: 28px 30px 26px;
    }
    .site-footer__link,
    .site-footer__sep{
      font-size: 16px;
    }
  }
  
  /* ===============================
     SANDBOX PLACEHOLDERS (dev only)
     =============================== */
  .sandbox-main{
    width:100%;
    padding: 32px 0 0;
    position:relative;
    z-index:1;
  }
  
  .sandbox-card{
    max-width:var(--page-max);
    margin: 0 auto;
    padding:18px var(--page-pad);
    background:#dbe8ff;
    border-radius:10px;
    min-height:240px;
    box-shadow:0 2px 0 rgba(0,0,0,.04) inset;
  }
  .sandbox-card__title{
    font-size:12px;
    opacity:.75;
  }
  
  .sandbox-footer{
    padding:36px 0 60px;
    text-align:center;
    color:#eee;
    font-size:11px;
  }
  @media (min-width: 1920px) and (min-height: 1080px), (min-width: 1536px) and (min-height: 864px){
    :root{
      --actions-ml: 100px;
    }
  }

/* ===============================
   GALBANI INDEX 2026
   =============================== */
:root{
  --galbani-navy:#012b60;
  --galbani-blue:#0181c8;
  --galbani-sky:#13a8dd;
  --galbani-red:#d80d2b;
  --galbani-green:#008a3d;
  --galbani-main-bg: linear-gradient(180deg, #0D5698 0%, #0181C8 53%, #0D5698 100%);
  --site-bg: var(--galbani-main-bg);
}

body{
  background: var(--site-bg);
  filter: none;
}

#all,
.page-desktop-figma,
.galbani-index{
  background: var(--site-bg);
}

.page-desktop-figma{
  min-height: 0;
}

.site-header{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 132px;
  z-index: 80;
  overflow: visible;
  background: transparent;
}

.site-header__bg{
  display: none;
}

.site-header__logo-hit{
  left: clamp(22px, 4.2vw, 82px);
  top: 14px;
  width: clamp(132px, 14vw, 235px);
  height: clamp(142px, 15vw, 250px);
  background: url("/assets/ui/galbani/figma/logo.png") center top / contain no-repeat;
  z-index: 90;
}

.site-header__inner{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 31px clamp(24px, 5vw, 96px) 0;
}

.site-header__menu{
  gap: clamp(18px, 2.1vw, 42px);
}

.site-header__menu a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 19px;
  border-radius: 999px;
  background: #fff;
  color: var(--galbani-navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 10px 20px rgba(1, 43, 96, .18);
}

.site-header__menu a:hover{
  text-decoration: none;
  color: var(--galbani-red);
}

.galbani-hero{
  min-height: 1030px;
  padding: 138px 0 132px;
  background: transparent;
  overflow: hidden;
}

.galbani-hero::before{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 76%, rgba(255,255,255,.18), transparent 7%),
    radial-gradient(circle at 90% 30%, rgba(255,255,255,.12), transparent 9%);
  opacity:.8;
}

.galbani-hero__inner{
  width: min(1565px, calc(100% - 96px));
  min-height: 760px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(560px, 1fr);
  gap: clamp(48px, 5vw, 110px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.galbani-hero__copy{
  padding-top: 84px;
  color: #fff;
}

.galbani-hero__logo{
  display: none;
}

.galbani-hero__eyebrow{
  margin: 0 0 16px;
  color: rgba(255,255,255,.82);
  font: 800 14px/1.2 var(--font-ui);
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.galbani-hero__title{
  max-width: 560px;
  margin: 0;
  color:#fff;
  font-family: var(--font-script);
  font-size: clamp(66px, 5.8vw, 108px);
  font-weight: 400;
  line-height: .88;
}

.galbani-hero__lead{
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.92);
  font: 400 22px/1.45 var(--font-ui);
}

.galbani-hero__actions{
  margin-top: 42px;
  justify-content: flex-start;
  gap: 26px;
  margin-left: 0;
}

.hero-blue__btn{
  min-width: 174px;
  width: auto;
  padding: 0 28px;
  height: 44px;
  background: var(--galbani-navy);
  color:#fff;
  box-shadow: 0 12px 24px rgba(1,43,96,.26);
}

.hero-blue__btn--light{
  background:#fff;
  color: var(--galbani-navy);
}

.hero-blue__sub{
  color: rgba(255,255,255,.86);
  font-size: 15px;
}

.galbani-mobile-prizes{
  display: none;
}

.galbani-hero__visual{
  position: relative;
  min-height: 640px;
}

.galbani-hero__kv{
  position:absolute;
  right: -10vw;
  top: 30px;
  width: min(980px, 72vw);
  max-width: none;
  filter: drop-shadow(0 26px 42px rgba(1,43,96,.28));
}

.galbani-hero__prize{
  position:absolute;
  left: 0;
  bottom: 4px;
  width: clamp(230px, 24vw, 390px);
  filter: drop-shadow(0 22px 38px rgba(1,43,96,.34));
}

.galbani-steps{
  z-index: 4;
  margin-top: -148px;
  padding: 0 0 84px;
  background: transparent;
}

.galbani-steps__inner{
  width: min(1565px, calc(100% - 96px));
  max-width: none;
  padding: 0;
  border-radius: 16px;
  background: transparent;
  box-shadow: 0 24px 46px rgba(1,43,96,.22);
  overflow: hidden;
}

.galbani-steps__art{
  display:block;
  width:100%;
  height:auto;
}

.galbani-steps__mobile{
  display:none;
}

.galbani-steps__mobile-row{
  display: none;
}

.galbani-game-promo{
  padding: 54px 0 92px;
  background: transparent;
  color:#fff;
}

.galbani-game-promo__inner{
  width: min(1565px, calc(100% - 96px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: minmax(360px, 620px) minmax(420px, 1fr);
  align-items:center;
  gap: clamp(54px, 7vw, 132px);
}

.galbani-game-promo__copy h2{
  margin:0;
  color:#fff;
  font-family: var(--font-script);
  font-size: clamp(52px, 5vw, 92px);
  font-weight:400;
  line-height:.9;
}

.galbani-game-promo__copy p{
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.92);
  font: 300 22px/1.5 var(--font-ui);
}

.galbani-game-promo__copy strong{
  font-weight:800;
  font-style: italic;
}

.galbani-game-promo__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top: 32px;
  min-width: 210px;
  min-height: 52px;
  border-radius: 999px;
  background:#fff;
  color: var(--galbani-navy);
  text-decoration:none;
  text-transform:uppercase;
  font: 800 14px/1 var(--font-ui);
}

.galbani-game-promo__visual{
  position:relative;
  min-height: 470px;
}

.galbani-game-promo__card{
  position:absolute;
  left: 2%;
  top: 30px;
  width: min(640px, 95%);
  min-height: 360px;
  padding: 54px;
  border-radius: 30px;
  background:
    linear-gradient(140deg, rgba(255,255,255,.28), rgba(255,255,255,.06)),
    rgba(255,255,255,.11);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25), 0 30px 55px rgba(1,43,96,.26);
  transform: rotate(3.75deg);
}

.galbani-game-promo__card span,
.galbani-game-promo__card strong{
  display:block;
  transform: rotate(-3.75deg);
}

.galbani-game-promo__card span{
  color: rgba(255,255,255,.72);
  font: 800 14px/1 var(--font-ui);
  letter-spacing:2px;
  text-transform:uppercase;
}

.galbani-game-promo__card strong{
  max-width: 380px;
  margin-top: 24px;
  color:#fff;
  font: 800 48px/1.05 var(--font-ui);
}

.galbani-game-promo__visual img{
  position:absolute;
  right: 0;
  bottom: -16px;
  width: clamp(180px, 20vw, 310px);
  transform: rotate(12deg);
  filter: drop-shadow(0 24px 36px rgba(1,43,96,.32));
}

.bp-form{
  padding: 76px 0 126px;
}

.bp-form__title{
  font-family: var(--font-ui);
  font-size: 27px;
  font-weight: 300;
  line-height:1.35;
}

.bp-form__subtitle{
  font-family: var(--font-ui);
  font-size: 34px;
  font-weight: 900;
  line-height:1.1;
}

.bp-input{
  height: 54px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  color: var(--galbani-navy);
}

.bp-input:focus{
  box-shadow: 0 0 0 4px rgba(255,255,255,.28);
}

.bp-captcha__img,
.bp-captcha__reload{
  border-radius: 999px;
}

.bp-captcha__reload,
.bp-btn--gold{
  background:#9dd9ef;
  color: var(--galbani-navy);
}

.bp-btn{
  box-shadow: none;
  font-size: 14px;
  font-weight: 800;
}

.bp-btn--white{
  background: var(--galbani-navy);
  color:#fff;
}

.products--galbani{
  position: relative;
  isolation: isolate;
  margin-top: 0;
  padding: 132px 0 98px;
  background:
    radial-gradient(58% 46% at 50% 47%, rgba(0, 102, 166, .78) 0%, rgba(0, 70, 125, .48) 48%, rgba(1,43,96,0) 100%),
    linear-gradient(180deg, #012B60 0%, #003D78 48%, #006EA4 100%);
}

.products--galbani::before{
  content: none;
}

.products--galbani .products__inner{
  position: relative;
  z-index: 1;
  max-width: 1620px;
}

.products--galbani .products__title{
  color:#fff;
  font: 500 44px/1.2 var(--font-ui);
  margin-bottom: 70px;
}

.products--galbani .products__subtitle{
  display: none;
}

.products--galbani .products__carousel.products-swiper{
  max-width: min(1120px, calc(100vw - 360px));
}

.products--galbani .products-swiper .swiper-slide{
  width: auto;
}

.products--galbani .products__list{
  gap: 0;
  justify-content: flex-start;
}

.products--galbani .products__carousel-wrap{
  width: min(1500px, calc(100vw - 96px));
  margin: 0 auto;
}

.products--galbani .product-card{
  height: 340px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  text-align:center;
}

.products--galbani .product-card__img{
  height: 250px;
  padding: 0 12px 18px;
}

.products--galbani .product-card__img img{
  max-height: 245px;
  filter: drop-shadow(0 22px 22px rgba(0,0,0,.22));
}

.products--galbani .product-card__meta{
  padding: 0 10px;
}

.products--galbani .product-card__name,
.products--galbani .product-card__size{
  color:#fff;
  font-size: 15px;
  line-height:1.25;
}

.products--galbani .product-card__name{
  font-weight:800;
}

.products--galbani .products__nav path{
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
}

.products--galbani .products__nav{
  width: 62px;
  height: 82px;
  color: #fff;
}

.products--galbani .products__nav--prev{
  left: 0;
}

.products--galbani .products__nav--next{
  right: 0;
}

.products--galbani .products__nav svg{
  width: 32px;
  height: 54px;
}

.products--galbani .products__legal{
  max-width: 1480px;
  margin: 96px auto 0;
  color: rgba(255,255,255,.92);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.32;
}

.galbani-campaign-legal{
  box-sizing: border-box;
  width: min(1480px, calc(100% - 48px));
  max-width: 1480px;
  margin: 74px auto 0;
  padding: 0;
  color: rgba(255,255,255,.96);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.32;
}

.site-footer{
  padding: 0;
  background: #012B60;
  background-image: none;
  border-top: 0;
}

.site-footer__inner{
  padding: 24px 48px 28px;
}

.site-footer__card{
  width: min(1500px, 100%);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer__text{
  color: rgba(255,255,255,.9);
  font-size: 12px;
}

.site-footer__divider{
  display:none;
}

.site-footer__links{
  margin-top: 0;
  gap: 8px;
}

.site-footer__link,
.site-footer__sep{
  color:#fff;
  font-family: var(--font-footer);
  font-size: 13px;
  font-weight: 700;
}

.site-footer__social{
  margin-top: 14px;
  gap: 24px;
}

.site-footer__social-link{
  width: 32px;
  height: 32px;
}

.site-footer__social-link img{
  width: 28px;
  height: 28px;
}

.site-footer__copyright{
  margin-top: 8px;
  font-size: 11px;
}

/* Galbani top hero refinement */
.galbani-sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0, 0, 0, 0);
  white-space:nowrap;
  border:0;
}

.site-header{
  height: 104px;
}

.site-header__logo-hit{
  left: calc(100vw * 61 / 1920);
  top: 0;
  width: clamp(360px, calc(100vw * 557 / 1920), 620px);
  height: clamp(390px, calc(100vw * 616 / 1920), 670px);
  background: none;
}

.site-header__inner{
  justify-content: flex-start;
  align-items: flex-start;
  padding: 36px 0 0 calc(100vw * 783 / 1920);
}

.site-header__menu{
  gap: clamp(32px, calc(100vw * 44 / 1920), 52px);
}

.site-header__menu li:nth-child(1) a{
  min-width: clamp(136px, calc(100vw * 157 / 1920), 176px);
}

.site-header__menu li:nth-child(2) a,
.site-header__menu li:nth-child(3) a{
  min-width: clamp(160px, calc(100vw * 187 / 1920), 210px);
}

.site-header__menu li:nth-child(4) a{
  min-width: clamp(252px, calc(100vw * 296 / 1920), 330px);
}

.site-header__menu a{
  min-height: clamp(36px, calc(100vw * 41 / 1920), 44px);
  padding: 8px 22px;
  font-size: clamp(11px, calc(100vw * 12 / 1920), 13px);
}

.galbani-hero{
  min-height: clamp(760px, calc(100vw * 975 / 1920), 1000px);
  padding: 0;
  background: transparent;
}

.galbani-hero::before{
  display: none;
}

.galbani-hero__inner{
  width: 100%;
  max-width: none;
  min-height: clamp(760px, calc(100vw * 975 / 1920), 1000px);
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
}

.galbani-hero__copy{
  position:absolute;
  left: calc(100vw * 177 / 1920);
  top: clamp(390px, calc(100vw * 560 / 1920), 585px);
  z-index: 4;
  width: clamp(260px, calc(100vw * 330 / 1920), 340px);
  padding: 0;
}

.galbani-hero__eyebrow{
  display:none;
}

.galbani-hero__title{
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.galbani-hero__title-art{
  display:block;
  width: 100%;
  height:auto;
}

.galbani-hero__actions{
  margin-top: clamp(20px, calc(100vw * 30 / 1920), 34px);
}

.galbani-hero .hero-blue__btn{
  min-width: clamp(205px, calc(100vw * 265 / 1920), 285px);
  height: clamp(44px, calc(100vw * 58 / 1920), 60px);
  padding: 0 28px;
  border-radius: 999px;
  font-size: clamp(12px, calc(100vw * 16 / 1920), 16px);
}

.galbani-hero .hero-blue__sub{
  display:none;
}

.galbani-hero__visual{
  position:absolute;
  inset:0;
  min-height: 0;
  z-index: 2;
  pointer-events:none;
}

.galbani-hero__shadow{
  position: absolute;
  left: calc(100vw * -28 / 1920);
  top: calc(100vw * -173 / 1920);
  z-index: 1;
  display: block;
  width: calc(100vw * 432.275 / 1920);
  height: calc(100vw * 1130.4 / 1920);
  max-width: none;
  overflow: hidden;
  mix-blend-mode: multiply;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(138% 90% at 0% 68%, #000 0%, #000 44%, rgba(0, 0, 0, .55) 61%, rgba(0, 0, 0, 0) 78%);
  mask-image: radial-gradient(138% 90% at 0% 68%, #000 0%, #000 44%, rgba(0, 0, 0, .55) 61%, rgba(0, 0, 0, 0) 78%);
}

.galbani-hero__top{
  left: 0;
  top: 0;
  z-index: 2;
  position:absolute;
  display:block;
  max-width:none;
  width: 100vw;
  height: auto;
}

.galbani-hero__top img{
  display:block;
  width: 100%;
  height:auto;
  max-width:none;
}

.galbani-hero__brand,
.galbani-hero__kv{
  display:none;
}

.galbani-hero__prize{
  position:absolute;
  z-index: 3;
  max-width:none;
  filter: drop-shadow(0 22px 38px rgba(1,43,96,.34));
}

.galbani-hero__prize--italia{
  left: calc(100vw * 690 / 1920);
  top: clamp(315px, calc(100vw * 488 / 1920), 500px);
  width: clamp(245px, calc(100vw * 360 / 1920), 385px);
  bottom: auto;
}

.galbani-hero__prize--cooler{
  left: calc(100vw * 1181 / 1920);
  top: clamp(365px, calc(100vw * 548 / 1920), 565px);
  width: clamp(170px, calc(100vw * 248 / 1920), 260px);
}

.galbani-hero__prize--cutter{
  left: calc(100vw * 1517 / 1920);
  top: clamp(352px, calc(100vw * 532 / 1920), 550px);
  width: clamp(130px, calc(100vw * 180 / 1920), 190px);
}

@media (min-width: 901px) and (max-width: 1700px){
  .galbani-hero,
  .galbani-hero__inner{
    min-height: clamp(680px, 56vw, 835px);
  }

  .galbani-hero__copy{
    top: clamp(470px, 31vw, 500px);
    width: clamp(250px, 19.5vw, 315px);
  }

  .galbani-hero__prize--italia{
    top: clamp(315px, 31vw, 430px);
    width: clamp(245px, 23vw, 340px);
  }

  .galbani-hero__prize--cooler{
    top: clamp(365px, 34vw, 485px);
    width: clamp(170px, 16vw, 238px);
  }

  .galbani-hero__prize--cutter{
    top: clamp(352px, 33vw, 468px);
    width: clamp(130px, 12vw, 178px);
  }
}

@media (min-width: 901px) and (max-width: 1400px){
  .galbani-hero,
  .galbani-hero__inner{
    min-height: clamp(650px, 52vw, 730px);
  }

  .galbani-hero__copy{
    top: clamp(420px, 32vw, 440px);
    width: clamp(245px, 19vw, 270px);
  }

  .galbani-hero__actions{
    margin-top: 18px;
  }

  .galbani-hero .hero-blue__btn{
    min-width: 205px;
    height: 44px;
    font-size: 12px;
  }

  .galbani-hero__prize--italia{
    top: clamp(285px, 29vw, 382px);
    width: clamp(220px, 21vw, 292px);
  }

  .galbani-hero__prize--cooler{
    top: clamp(328px, 32vw, 430px);
    width: clamp(158px, 14vw, 196px);
  }

  .galbani-hero__prize--cutter{
    top: clamp(318px, 31vw, 416px);
    width: clamp(118px, 10.4vw, 146px);
  }
}

@media (min-width: 1701px) and (max-height: 860px){
  .galbani-hero,
  .galbani-hero__inner{
    min-height: 840px;
  }

  .galbani-hero__copy{
    top: 552px;
    width: 300px;
  }

  .galbani-hero__actions{
    margin-top: 22px;
  }

  .galbani-hero__prize--italia{
    top: 432px;
    width: 330px;
  }

  .galbani-hero__prize--cooler{
    top: 482px;
    width: 232px;
  }

  .galbani-hero__prize--cutter{
    top: 466px;
    width: 170px;
  }
}

@media (min-width: 1900px) and (max-width: 2399px) and (min-height: 820px){
  .galbani-hero,
  .galbani-hero__inner{
    min-height: 980px;
  }

  .galbani-hero__copy{
    top: 658px;
    width: 285px;
  }

  .galbani-hero__actions{
    margin-top: 22px;
  }

  .galbani-hero .hero-blue__btn{
    min-width: 232px;
    height: 50px;
    font-size: 13px;
  }
}

@media (min-width: 2400px) and (min-height: 1000px){
  .site-header{
    height: calc(100vw * 104 / 1920);
  }

  .site-header__logo-hit{
    left: calc(100vw * 61 / 1920);
    width: calc(100vw * 557 / 1920);
    height: calc(100vw * 616 / 1920);
  }

  .site-header__inner{
    padding-top: calc(100vw * 36 / 1920);
    padding-left: calc(100vw * 783 / 1920);
  }

  .site-header__menu{
    gap: calc(100vw * 44 / 1920);
  }

  .site-header__menu li:nth-child(1) a{
    min-width: calc(100vw * 157 / 1920);
  }

  .site-header__menu li:nth-child(2) a,
  .site-header__menu li:nth-child(3) a{
    min-width: calc(100vw * 187 / 1920);
  }

  .site-header__menu li:nth-child(4) a{
    min-width: calc(100vw * 296 / 1920);
  }

  .site-header__menu a{
    min-height: calc(100vw * 41 / 1920);
    padding: calc(100vw * 8 / 1920) calc(100vw * 22 / 1920);
    font-size: calc(100vw * 12 / 1920);
  }

  .galbani-hero,
  .galbani-hero__inner{
    min-height: calc(100vw * 975 / 1920);
  }

  .galbani-hero__copy{
    left: calc(100vw * 177 / 1920);
    top: calc(100vw * 560 / 1920);
    width: calc(100vw * 330 / 1920);
  }

  .galbani-hero__actions{
    margin-top: calc(100vw * 30 / 1920);
  }

  .galbani-hero .hero-blue__btn{
    min-width: calc(100vw * 265 / 1920);
    height: calc(100vw * 58 / 1920);
    font-size: calc(100vw * 16 / 1920);
  }

  .galbani-hero__shadow{
    width: calc(100vw * 432.275 / 1920);
    height: calc(100vw * 1130.4 / 1920);
  }

  .galbani-hero__prize--italia{
    top: calc(100vw * 488 / 1920);
    width: calc(100vw * 360 / 1920);
  }

  .galbani-hero__prize--cooler{
    top: calc(100vw * 548 / 1920);
    width: calc(100vw * 248 / 1920);
  }

  .galbani-hero__prize--cutter{
    top: calc(100vw * 532 / 1920);
    width: calc(100vw * 180 / 1920);
  }
}

.galbani-steps{
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: 0 0 calc(100vw * 112 / 1920);
  background: transparent;
}

.galbani-steps__stage{
  position: relative;
  width: calc(100vw * 1565 / 1920);
  height: calc(100vw * 271 / 1920);
  margin: 0 auto;
}

.galbani-steps__panel{
  position: absolute;
  left: 0;
  top: calc(100% * 9 / 271);
  width: 100%;
  height: calc(100% * 222 / 271);
  border-radius: 8px;
  background: #012b60;
  box-shadow: 0 28px 48px rgba(1, 43, 96, .24);
}

.galbani-steps__asset{
  position: absolute;
  z-index: 2;
  display: block;
  max-width: none;
}

.galbani-steps__asset img{
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.galbani-steps__asset--products{
  left: calc(100% * 58 / 1565);
  top: 0;
  width: calc(100% * 456 / 1565);
}

.galbani-steps__asset--buy{
  left: calc(100% * 623 / 1565);
  top: calc(100% * 53 / 271);
  width: calc(100% * 190 / 1565);
}

.galbani-steps__asset--register{
  left: calc(100% * 904 / 1565);
  top: calc(100% * 55 / 271);
  width: calc(100% * 154 / 1565);
}

.galbani-steps__asset--play{
  left: calc(100% * 1152 / 1565);
  top: calc(100% * 55 / 271);
  width: calc(100% * 321 / 1565);
  pointer-events: auto;
  transition: filter .18s ease, transform .18s ease;
}

.galbani-steps__asset--play:hover,
.galbani-steps__asset--play:focus-visible{
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.galbani-steps__link-disabled{
  cursor: default;
}

.galbani-steps__link-disabled:hover,
.galbani-steps__link-disabled:focus-visible{
  filter: none;
  transform: none;
}

.galbani-index{
  background: var(--galbani-main-bg);
}

.galbani-game-promo{
  background: transparent;
}

.bp-form{
  position: relative;
  overflow: hidden;
  padding: clamp(24px, calc(100vw * 34 / 1920), 42px) 0 calc(100vw * 114 / 1920);
  background: transparent;
  font-family: var(--font-ui);
}

.bp-form__decor{
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.bp-form__decor img{
  display: block;
  width: 100%;
  height: auto;
}

.bp-form__decor--left{
  left: clamp(18px, 2.2vw, 42px);
  top: calc(100vw * 128 / 1920);
  width: clamp(172px, calc(100vw * 351 / 1920), 351px);
}

.bp-form__decor--right{
  right: 0;
  top: calc(100vw * 102 / 1920);
  width: clamp(245px, calc(100vw * 485 / 1920), 485px);
}

.bp-form__inner{
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.bp-form__header{
  margin-bottom: calc(100vw * 22 / 1920);
  font-family: var(--font-ui);
}

.bp-form__title{
  font-family: var(--font-ui);
  font-size: clamp(18px, calc(100vw * 29 / 1920), 30px);
  font-weight: 400;
  line-height: 1.35;
}

.bp-form__subtitle{
  margin-top: 2px;
  font-family: var(--font-ui);
  font-size: clamp(23px, calc(100vw * 35 / 1920), 36px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.12;
}

.bp-form__intro{
  width: min(100%, 560px);
  margin: 18px auto 0;
  color: rgba(255,255,255,.92);
  font-family: var(--font-ui);
  font-size: clamp(10px, calc(100vw * 14 / 1920), 14px);
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.bp-form__intro strong{
  font-weight: 800;
  font-style: italic;
}

.bp-form__form{
  font-family: var(--font-ui);
}

.bp-form__grid,
.bp-form__checks,
.bp-form__disclaimer,
.bp-form__status,
.bp-form__actions{
  width: min(100%, 593px);
}

.bp-form__grid{
  gap: 14px 16px;
}

.bp-form .bp-input{
  height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #3e3e3e;
  font: 400 15px/1.4 var(--font-ui);
}

.bp-form .bp-input::placeholder{
  color: #3e3e3e;
  opacity: 1;
}

.bp-form .bp-captcha__img{
  height: 54px;
  min-width: 178px;
  object-fit: cover;
  border-radius: 999px;
  background: #fff;
}

.bp-form .bp-captcha__reload{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #9dd9ef;
  color: var(--galbani-navy);
  box-shadow: none;
}

.bp-form__checks{
  margin-top: 14px;
  gap: 9px;
}

.bp-form__checks > div{
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.bp-form .bp-check__box{
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  border-radius: 2px;
}

.bp-form .bp-check__text{
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.bp-form__disclaimer{
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.38;
}

.bp-form__actions{
  margin-top: calc(100vw * 52 / 1920);
  gap: 34px;
}

.bp-form .bp-btn{
  width: 255px;
  height: 50px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
}

.bp-form .bp-btn--white{
  background: #003776;
  color: #fff;
}

.bp-form .bp-btn--gold{
  background: #9dd9ef;
  color: var(--galbani-navy);
}

.galbani-game-promo{
  padding: 0 0 clamp(12px, calc(100vw * 20 / 1920), 24px);
}

.galbani-game-promo__inner{
  position: relative;
  display: block;
  width: min(1565px, calc(100vw * 1565 / 1920));
  min-height: clamp(390px, calc(100vw * 548 / 1920), 760px);
}

@media (min-width: 901px){
  .bp-form{
    margin-top: clamp(-14px, calc(-100vw * 10 / 1920), 0px);
  }
}

.galbani-game-promo__copy{
  position: absolute;
  left: 0;
  top: calc(100vw * 20 / 1920);
  width: min(624px, calc(100vw * 624 / 1920));
}

.galbani-game-promo__copy h2{
  display: block;
  max-width: none;
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.galbani-game-promo__title picture,
.galbani-game-promo__title img{
  display: block;
  width: 100%;
  height: auto;
}

.galbani-game-promo__title span{
  display: none;
}

.galbani-game-promo__copy p{
  max-width: min(470px, calc(100vw * 470 / 1920));
  margin-top: calc(100vw * 44 / 1920);
  font-size: clamp(13px, calc(100vw * 18 / 1920), 18px);
  line-height: 1.45;
}

.galbani-game-promo__visual{
  position: absolute;
  left: calc(100vw * 548 / 1920);
  top: calc(100vw * -18 / 1920);
  width: calc(100vw * 1043 / 1920);
  min-height: 0;
}

.galbani-game-promo__art,
.galbani-game-promo__art img{
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.galbani-game-promo__visual .galbani-game-promo__art img{
  position: static;
  right: auto;
  bottom: auto;
  transform: none;
  filter: none;
}

@media (max-width: 900px){
  .galbani-hero__top{
    display: none;
  }

  .galbani-hero__shadow{
    display: none;
  }

  .galbani-steps{
    padding: 0 16px 48px;
  }

  .galbani-steps__stage{
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 18px 18px 20px;
    border-radius: 12px;
    background: #012b60;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .galbani-steps__panel{
    display: none;
  }

  .galbani-steps__asset{
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .galbani-steps__asset--products{
    width: min(100%, 320px);
  }

  .galbani-steps__asset--buy,
  .galbani-steps__asset--register,
  .galbani-steps__asset--play{
    width: min(100%, 300px);
  }

  .galbani-game-promo{
    padding: 8px 16px 56px;
  }

  .galbani-game-promo__inner{
    width: 100%;
    min-height: 0;
  }

  .galbani-game-promo__copy,
  .galbani-game-promo__visual{
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }

  .galbani-game-promo__copy h2{
    font-size: 36px;
  }

  .galbani-game-promo__copy p{
    max-width: none;
    margin-top: 18px;
    font-size: 15px;
  }

  .galbani-game-promo__visual{
    margin-top: 24px;
  }
}

@media (min-width: 901px) and (max-width: 1280px){
  .site-header__inner{
    padding-left: 290px;
    padding-right: 24px;
  }

  .site-header__menu{
    gap: 12px;
  }

  .site-header__menu li:nth-child(1) a,
  .site-header__menu li:nth-child(2) a,
  .site-header__menu li:nth-child(3) a,
  .site-header__menu li:nth-child(4) a{
    min-width: auto;
  }

  .site-header__menu a{
    padding: 8px 14px;
    font-size: 10px;
  }
}

/* Simple content pages: winners and cookies */
body.galbani-simple-body,
body.galbani-simple-body #all,
body.galbani-simple-body .page-desktop-figma{
  background: #0D5698;
  filter: none;
}

body.galbani-simple-body .site-header{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 132px;
  z-index: 80;
  overflow: visible;
  background: transparent;
}

body.galbani-simple-body .site-header__bg{
  display: none;
}

body.galbani-simple-body .site-header__logo-hit{
  left: calc(100vw * 104 / 1920);
  top: 0;
  width: calc(100vw * 235 / 1920);
  min-width: 188px;
  max-width: 235px;
  height: calc(100vw * 259 / 1920);
  min-height: 207px;
  max-height: 259px;
  background: url("/assets/ui/galbani/game/intro/logo.png") left top / contain no-repeat;
  z-index: 90;
}

body.galbani-simple-body .site-header__inner{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 36px 0 0 calc(100vw * 783 / 1920);
}

body.galbani-simple-body .site-header__menu{
  gap: clamp(32px, calc(100vw * 44 / 1920), 52px);
}

body.galbani-simple-body .site-header__menu li:nth-child(1) a{
  min-width: clamp(136px, calc(100vw * 157 / 1920), 176px);
}

body.galbani-simple-body .site-header__menu li:nth-child(2) a,
body.galbani-simple-body .site-header__menu li:nth-child(3) a{
  min-width: clamp(160px, calc(100vw * 187 / 1920), 210px);
}

body.galbani-simple-body .site-header__menu li:nth-child(4) a{
  min-width: clamp(252px, calc(100vw * 296 / 1920), 330px);
}

body.galbani-simple-body .site-header__menu a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(36px, calc(100vw * 41 / 1920), 44px);
  padding: 8px 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--galbani-navy);
  font-family: var(--font-ui);
  font-size: clamp(11px, calc(100vw * 12 / 1920), 13px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(1, 43, 96, .18);
}

body.galbani-simple-body .site-header__menu a:hover{
  color: var(--galbani-red);
  text-decoration: none;
}

.galbani-simple-page,
body.galbani-simple-body .mecanica-castigatori{
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-height: 640px;
  margin: 0;
  padding: clamp(172px, 13vw, 230px) 24px 96px;
  border-radius: 0;
  background: var(--galbani-main-bg);
  color: #fff;
}

body.galbani-simple-body #screen-1{
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--galbani-main-bg);
}

.galbani-simple-section{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.galbani-simple-title,
body.galbani-simple-body .title-castigatori{
  margin: 0 0 26px;
  padding: 0 !important;
  text-align: center;
}

.galbani-simple-title h1,
body.galbani-simple-body .title-castigatori h1{
  margin: 0;
  color: #fff !important;
  font-family: var(--font-ui);
  font-size: clamp(32px, 3vw, 52px) !important;
  font-weight: 800;
  line-height: 1.12;
}

.galbani-simple-panel,
body.galbani-simple-body .gdpr{
  width: min(1000px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
  padding: clamp(28px, 3vw, 48px) !important;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  color: #012b60;
  box-shadow: 0 20px 42px rgba(1, 43, 96, .22);
}

.galbani-simple-panel.castigatori-table{
  width: min(1100px, calc(100% - 48px)) !important;
  padding: clamp(18px, 2.2vw, 32px) !important;
}

body.galbani-simple-body .castigatori-table .table{
  margin: 0;
  color: #012b60;
  font-family: var(--font-ui);
  vertical-align: middle;
}

body.galbani-simple-body .castigatori-table th{
  color: #004ea8;
  font-weight: 900;
}

body.galbani-simple-body .gdpr,
body.galbani-simple-body .gdpr span,
body.galbani-simple-body .gdpr div{
  font-family: var(--font-ui);
}

body.galbani-simple-body .gdpr .blue-color,
body.galbani-simple-body .gdpr .custom-link{
  color: #004ea8 !important;
}

body.galbani-simple-body .gdpr hr{
  border-color: rgba(1, 43, 96, .18);
  opacity: 1;
}

.galbani-simple-page--document{
  padding-bottom: 72px;
}

.galbani-document-section{
  width: min(1220px, calc(100% - 48px));
}

.galbani-pdf-panel{
  padding: 22px !important;
}

.galbani-pdf-viewer{
  width: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  overflow: visible;
  border-radius: 6px;
  background: #fff;
}

.galbani-pdf-page{
  width: 100%;
  display: flex;
  justify-content: center;
  background: #fff;
  box-shadow: 0 10px 28px rgba(1, 43, 96, .14);
}

.galbani-pdf-page canvas{
  display: block;
  max-width: 100%;
  height: auto !important;
}

.galbani-pdf-loading{
  width: 100%;
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 28px;
  color: #012b60;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.galbani-pdf-fallback{
  margin: 16px 0 0;
  color: #012b60;
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.galbani-pdf-fallback a{
  color: #004ea8;
  font-weight: 800;
  text-decoration: underline;
}

body.galbani-simple-body .btn-submit-2024,
body.galbani-simple-body .btn-submit-send{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: #012b60;
  color: #fff !important;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

@media (min-width: 901px) and (max-width: 1280px){
  body.galbani-simple-body .site-header__inner{
    padding-left: 290px;
    padding-right: 24px;
  }

  body.galbani-simple-body .site-header__menu{
    gap: 12px;
  }

  body.galbani-simple-body .site-header__menu li:nth-child(1) a,
  body.galbani-simple-body .site-header__menu li:nth-child(2) a,
  body.galbani-simple-body .site-header__menu li:nth-child(3) a,
  body.galbani-simple-body .site-header__menu li:nth-child(4) a{
    min-width: auto;
  }

  body.galbani-simple-body .site-header__menu a{
    padding: 8px 14px;
    font-size: 10px;
  }
}

@media (max-width: 900px){
  body.galbani-simple-body .site-header{
    position: absolute;
    height: 88px;
    background: transparent;
  }

  body.galbani-simple-body .site-header__logo-hit,
  body.galbani-simple-body .site-header__content{
    display: none;
  }

  body.galbani-simple-body .site-header__mobile{
    position: absolute;
    inset: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    height: 88px;
    padding: 31px 36px 0 0;
    background: transparent;
  }

  body.galbani-simple-body .site-header__mobile-logo-hit{
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 128px;
    height: 142px;
    background: url("/assets/ui/galbani/game/intro/logo.png") left top / contain no-repeat;
  }

  body.galbani-simple-body .site-header__burger{
    position: absolute;
    right: 36px;
    top: 32px;
    width: 34px;
    height: 25px;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  body.galbani-simple-body .site-header__burger span{
    display: block;
    width: 32px;
    height: 3px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(1, 43, 96, .42);
  }

  body.galbani-simple-body .site-header__mobile-menu{
    top: 78px;
    left: 18px;
    right: 18px;
    z-index: 90;
    border-radius: 14px;
    background: #012b60;
    box-shadow: 0 18px 38px rgba(1, 43, 96, .26);
  }

  .galbani-simple-page,
  body.galbani-simple-body .mecanica-castigatori{
    min-height: 520px;
    padding: 150px 18px 56px;
  }

  .galbani-simple-section,
  .galbani-simple-panel,
  body.galbani-simple-body .gdpr,
  .galbani-simple-panel.castigatori-table{
    width: 100% !important;
  }

  .galbani-document-section{
    width: 100% !important;
  }

  .galbani-simple-page--document{
    padding-bottom: 44px;
  }

  .galbani-pdf-panel{
    padding: 10px !important;
  }

  .galbani-pdf-viewer{
    min-height: 380px;
    gap: 10px;
    border-radius: 4px;
  }

  .galbani-pdf-page{
    box-shadow: 0 6px 18px rgba(1, 43, 96, .12);
  }

  .galbani-pdf-loading{
    min-height: 300px;
    font-size: 14px;
  }

  .galbani-pdf-fallback{
    font-size: 12px;
  }

  .galbani-simple-title h1,
  body.galbani-simple-body .title-castigatori h1{
    font-size: 28px !important;
  }
}
