/* BetWinner clone — rebuilt to match reference screenshot. All classes .bw-* */

:root{
  /* BetWinner brand palette — bright emerald green header + WHITE body (match real site) */
  --bw-header-bg:  #159447;                /* vibrant brand green (header) */
  --bw-header-hi:  #17a94f;                /* header hover */
  --bw-header-txt: #ffffff;                /* text on green header */
  --bw-green-deep: #0d2e1a;                /* deep forest green (sidebar/footer) */
  --bw-green-glow: rgba(21,148,71,.28);
  --bw-sub-bg:     #f2f4f5;                /* light-grey sub-nav */
  --bw-body-bg:    #ffffff;                /* WHITE body */
  --bw-body-hi:    #f6f8f9;                /* section stripe */
  --bw-card:       #ffffff;                /* game/provider card */
  --bw-card-2:     #f6f8f9;                /* hover state */
  --bw-border:     #e3e6e8;                /* light card border */
  --bw-border-hi:  rgba(21,148,71,.55);    /* green hover border */
  --bw-text:       #1b2e22;                /* dark text on white */
  --bw-muted:      #6b7580;                /* muted grey text */
  --bw-accent:     #ffc107;                /* yellow CTA */
  --bw-accent-2:   #f5b400;
  --bw-green:      #159447;                /* NEW badge (brand green) */
  --bw-red:        #e53935;                /* PROMO badge */
}

*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bw-body-bg);
  color:var(--bw-text);
  font-family:-apple-system,"Segoe UI",Roboto,"Malgun Gothic","Apple SD Gothic Neo",Arial,sans-serif;
  font-size:14px;line-height:1.5;
  min-height:100vh;overflow-x:hidden;
}
img,svg{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;background:none;border:0;color:inherit;padding:0}

/* ============ TOP HEADER (green bar) ============ */
.bw-topbar{
  background:var(--bw-header-bg);
  border-bottom:1px solid rgba(0,0,0,.25);
}
.bw-topbar__inner{
  max-width:1440px;margin:0 auto;
  padding:0 20px;
  display:flex;align-items:center;gap:8px;
  min-height:52px;
}
.bw-logo{display:inline-flex;align-items:center;margin-right:16px}
.bw-logo img{height:26px;width:auto}
.bw-topbar__nav{
  display:flex;align-items:center;gap:2px;
  flex:1 1 auto;overflow:hidden;
}
.bw-nav-item{
  position:relative;
  display:inline-flex;align-items:center;gap:6px;
  padding:8px 12px;color:#e6f2ec;font-weight:700;font-size:12.5px;
  letter-spacing:.3px;text-transform:uppercase;white-space:nowrap;
  border-radius:6px;transition:background .15s,color .15s;
}
.bw-nav-item:hover{background:var(--bw-header-hi);color:#fff}

.bw-topbar__right{
  display:flex;align-items:center;gap:8px;
  flex:0 0 auto;
}
.bw-icon-btn{
  width:36px;height:36px;border-radius:8px;
  display:inline-flex;align-items:center;justify-content:center;
  color:#fff;font-size:15px;font-weight:700;
  transition:background .15s;position:relative;
}
.bw-icon-btn:hover{background:rgba(255,255,255,.12)}
.bw-icon-btn__badge{
  position:absolute;top:2px;right:2px;
  min-width:16px;height:16px;padding:0 4px;
  border-radius:8px;background:var(--bw-red);color:#fff;
  font-size:10px;font-weight:800;
  display:inline-flex;align-items:center;justify-content:center;
  line-height:1;
}
.bw-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:8px 20px;border-radius:20px;
  font-weight:800;font-size:13px;letter-spacing:.3px;
  line-height:1;white-space:nowrap;
  transition:transform .12s,background .15s,color .15s,box-shadow .15s;
}
.bw-btn--yellow{
  background:var(--bw-accent);color:#111;
  box-shadow:0 3px 12px rgba(255,204,0,.35);
}
.bw-btn--yellow:hover{background:var(--bw-accent-2);transform:translateY(-1px)}
.bw-btn--ghost{
  background:transparent;color:#fff;padding:7px 14px;font-weight:700;
}
.bw-btn--ghost:hover{background:rgba(255,255,255,.12)}
.bw-topbar__meta{color:#e6f2ec;font-weight:700;font-size:12px;padding:0 8px}

/* ============ MENU BUTTON (compact dropdown, mobile only) ============ */
.bw-menu{position:relative;display:none;flex:0 0 auto;order:5}
.bw-menu__btn{
  display:inline-flex;align-items:center;gap:6px;
  padding:8px 12px;border-radius:20px;
  background:rgba(0,0,0,.18);color:#fff;
  font-weight:700;font-size:12.5px;letter-spacing:.3px;
  transition:background .15s;
}
.bw-menu__btn:hover,.bw-menu__btn[aria-expanded="true"]{background:rgba(0,0,0,.32)}
.bw-menu__ico{font-size:14px;line-height:1}
.bw-menu__lbl{line-height:1}
.bw-menu__drop{
  position:absolute;top:calc(100% + 8px);right:0;z-index:120;
  min-width:200px;
  background:#fff;color:var(--bw-text);
  border:1px solid var(--bw-border);border-radius:12px;
  box-shadow:0 12px 28px rgba(0,0,0,.15);
  padding:6px;
  display:none;flex-direction:column;
}
.bw-menu.is-open .bw-menu__drop{display:flex}
.bw-menu__link{
  display:block;padding:10px 14px;border-radius:8px;
  color:var(--bw-text);font-size:14px;font-weight:600;
  transition:background .15s,color .15s;
}
.bw-menu__link:hover{background:var(--bw-body-hi);color:var(--bw-green-deep)}
.bw-menu__link.is-active{background:var(--bw-green);color:#fff}
.bw-menu__link.is-active:hover{background:var(--bw-header-hi);color:#fff}

/* ============ HERO SLIDER (native image aspect: 1440:250) ============ */
.bw-hero{
  max-width:1440px;margin:0 auto;padding:20px 20px 0;
}
.bw-hero__slider{
  position:relative;overflow:hidden;
  border-radius:16px;
  aspect-ratio: 1440 / 250;    /* size = image proportions */
  background:var(--bw-header-bg);
}
.bw-hero__slide{
  position:absolute;inset:0;
  opacity:0;pointer-events:none;
  transition:opacity .45s ease;
  display:block;
}
.bw-hero__slide.is-active{opacity:1;pointer-events:auto}
.bw-hero__slide img,
.bw-hero__slide picture,
.bw-hero__slide picture>img{
  width:100%;height:100%;object-fit:cover;object-position:center;display:block;
}
/* Оверлей с текстом промо — гарантирует читаемость на любом фоне */
.bw-hero__over{
  position:absolute;left:0;top:0;bottom:0;
  display:flex;flex-direction:column;justify-content:center;align-items:flex-start;
  padding:22px 26px;
  min-width:52%;max-width:65%;
  color:#fff;z-index:2;pointer-events:none;
  background:linear-gradient(90deg,rgba(0,0,0,.78) 0%,rgba(0,0,0,.55) 45%,rgba(0,0,0,.15) 80%,transparent 100%);
}
.bw-hero__date{
  font-size:12px;font-weight:700;letter-spacing:.4px;
  color:#fff;opacity:.9;margin-bottom:6px;
  padding:3px 10px;border-radius:12px;background:rgba(255,255,255,.15);
}
.bw-hero__title{
  font-size:28px;font-weight:900;letter-spacing:.5px;line-height:1.05;
  text-shadow:0 2px 8px rgba(0,0,0,.5);
  margin-bottom:6px;
}
.bw-hero__prize{
  font-size:34px;font-weight:900;color:var(--bw-accent);
  text-shadow:0 2px 10px rgba(0,0,0,.6);
  margin-bottom:14px;line-height:1;
}
.bw-hero__cta{
  display:inline-block;padding:9px 22px;border-radius:20px;
  background:var(--bw-green);color:#fff;
  font-size:13px;font-weight:800;letter-spacing:1px;
  box-shadow:0 4px 12px rgba(21,148,71,.5);
  pointer-events:auto;
}
.bw-hero__slide:hover .bw-hero__cta{background:var(--bw-header-hi)}
@media (min-width:901px){
  .bw-hero__slide::after{
    content:"";position:absolute;inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.15),transparent 45%);
    pointer-events:none;
  }
}
.bw-hero__nav{
  position:absolute;bottom:12px;right:16px;z-index:3;
  display:flex;gap:8px;
}
.bw-hero__arrow{
  width:34px;height:34px;border-radius:50%;
  background:rgba(0,0,0,.5);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:16px;transition:background .15s,transform .12s;
  backdrop-filter:blur(4px);
}
.bw-hero__arrow:hover{background:rgba(0,0,0,.75);transform:scale(1.08)}
.bw-hero__dots{
  position:absolute;bottom:14px;left:50%;transform:translateX(-50%);z-index:3;
  display:flex;gap:6px;
}
.bw-hero__dot{
  width:22px;height:4px;border-radius:2px;
  background:rgba(255,255,255,.4);
  cursor:pointer;
  transition:background .15s,width .15s;
  border:0;padding:0;
}
.bw-hero__dot:hover{background:rgba(255,255,255,.7)}
.bw-hero__dot.is-active{background:#fff;width:32px}

/* ============ SECTION ============ */
.bw-section{
  max-width:1440px;margin:32px auto 0;padding:0 20px;
  position:relative;
}
.bw-section__head{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:14px;gap:16px;
}
.bw-section__title{
  font-size:18px;font-weight:800;color:var(--bw-green-deep);
  margin:0;letter-spacing:.2px;
  display:inline-flex;align-items:center;gap:10px;
  padding-left:12px;position:relative;
}
.bw-section__title::before{
  content:"";position:absolute;left:0;top:4px;bottom:4px;width:3px;
  background:var(--bw-green);border-radius:2px;
}
.bw-section__more{
  padding:6px 16px;border-radius:16px;
  background:var(--bw-green);color:#fff;font-weight:800;font-size:12px;
  transition:background .15s,transform .12s;
}
.bw-section__more:hover{background:var(--bw-header-hi);transform:translateY(-1px)}

/* ============ GAMES GRID (rows, no sidebar) ============ */
.bw-grid{
  position:relative;
}
.bw-grid__row{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
}
.bw-grid__row + .bw-grid__row{margin-top:12px}
.bw-card{
  position:relative;overflow:hidden;
  aspect-ratio:16/11;
  border-radius:12px;
  background:var(--bw-card);
  border:1px solid var(--bw-border);
  transition:transform .18s,border-color .18s,box-shadow .18s;
  display:block;
}
.bw-card:hover{
  transform:translateY(-3px);
  border-color:var(--bw-border-hi);
  box-shadow:0 10px 22px rgba(21,148,71,.18);
}
.bw-card__img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .3s ease;
}
.bw-card:hover .bw-card__img{transform:scale(1.04)}
.bw-card__badge{
  position:absolute;top:8px;right:8px;
  padding:3px 8px;border-radius:4px;
  font-size:10px;font-weight:800;letter-spacing:.5px;color:#111;line-height:1;
}
.bw-card__badge--new{background:var(--bw-green);color:#fff}
.bw-card__badge--promo{background:var(--bw-red);color:#fff}
.bw-card__badge--hit{background:var(--bw-accent);color:#111}

/* Carousel arrows on either side of the grid */
.bw-arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:5;
  width:44px;height:44px;border-radius:50%;
  background:var(--bw-green);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:22px;font-weight:700;
  box-shadow:0 6px 16px rgba(21,148,71,.35);
  transition:background .15s,transform .12s;
}
.bw-arrow:hover{background:var(--bw-header-hi);color:#fff;transform:translateY(-50%) scale(1.08)}
.bw-arrow--left{left:-18px}
.bw-arrow--right{right:-18px}

/* ============ PROVIDERS (2 rows × horizontal scroll) ============ */
.bw-providers-wrap{position:relative}
.bw-providers{
  display:grid;
  grid-template-rows:auto auto;
  grid-auto-flow:column;
  grid-auto-columns:minmax(160px,1fr);
  gap:10px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding:2px 0 12px;   /* room for shadows */
  scroll-snap-type:x mandatory;
}
.bw-providers::-webkit-scrollbar{display:none}
.bw-provider{
  aspect-ratio:2/1;
  background:var(--bw-card);border:1px solid var(--bw-border);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  padding:14px 18px;
  scroll-snap-align:start;
  transition:border-color .18s,background .18s,transform .18s;
}
.bw-provider:hover{border-color:var(--bw-border-hi);background:var(--bw-card-2);transform:translateY(-2px)}
.bw-provider img{max-height:32px;max-width:100%;width:auto;opacity:.75;filter:grayscale(1) brightness(.35);transition:opacity .18s,filter .18s}
.bw-provider:hover img{opacity:1;filter:grayscale(0) brightness(1)}

/* ============ SEO ============ */
.bw-seo{
  max-width:1200px;margin:56px auto 0;padding:36px 40px;
  background:#ffffff;
  border:1px solid var(--bw-border);border-radius:16px;position:relative;
  box-shadow:0 4px 18px rgba(21,148,71,.06);
}
.bw-seo::before{
  content:"";position:absolute;top:0;left:40px;right:40px;height:2px;
  background:linear-gradient(90deg,transparent,var(--bw-green),var(--bw-accent),transparent);
  opacity:.6;
}
.bw-seo h1{color:var(--bw-green-deep);font-size:26px;font-weight:800;margin:0 0 14px;line-height:1.3}
.bw-seo h2{color:var(--bw-green-deep);font-size:20px;font-weight:800;margin:22px 0 10px;padding-bottom:8px;border-bottom:1px solid var(--bw-border)}
.bw-seo p{color:var(--bw-text);line-height:1.7;margin:0 0 12px;text-align:justify;font-size:14.5px}
.bw-seo a{color:var(--bw-green);border-bottom:1px solid var(--bw-border-hi)}
.bw-seo a:hover{color:var(--bw-green-deep);border-bottom-color:var(--bw-green-deep)}
.bw-seo strong{color:var(--bw-green-deep)}
.bw-seo__author{
  display:flex;align-items:center;gap:14px;
  margin:16px 0 20px;padding:14px 16px;
  background:var(--bw-body-hi);border:1px solid var(--bw-border);border-radius:12px;
}
.bw-seo__avatar{
  width:52px;height:52px;border-radius:50%;
  background:linear-gradient(135deg,var(--bw-green),var(--bw-green-deep));
  color:#fff;font-weight:800;font-size:18px;
  display:flex;align-items:center;justify-content:center;flex:0 0 auto;
}
.bw-seo__name{color:var(--bw-green-deep);font-weight:700;margin:0}
.bw-seo__meta{color:var(--bw-muted);font-size:13px;margin:2px 0 0}
.bw-seo__cta{
  margin-top:22px;padding:22px;
  background:linear-gradient(135deg,rgba(21,148,71,.06),rgba(255,193,7,.05));
  border:1px solid var(--bw-border-hi);border-radius:12px;
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px;
}
.bw-seo__cta-text{margin:0;color:var(--bw-green-deep);font-weight:600}
.bw-seo__cta-btns{display:flex;gap:10px}

/* ============ SEO INNER CONTENT (from CSV) ============ */
.bw-seo__hero-text{
  font-size:15.5px;line-height:1.7;color:var(--bw-text);
  margin:16px 0 20px;text-align:justify;
}
.bw-seo__body{margin-top:8px}
.bw-seo__section{margin-top:26px;scroll-margin-top:80px}
.bw-seo__section h2{
  font-size:20px;font-weight:800;color:var(--bw-green-deep);
  margin:0 0 12px;padding-bottom:8px;border-bottom:1px solid var(--bw-border);
}
.bw-seo__section h3{
  font-size:16.5px;font-weight:700;color:var(--bw-green-deep);
  margin:18px 0 8px;
}
.bw-seo__section p{
  color:var(--bw-text);line-height:1.7;margin:0 0 12px;
  text-align:justify;font-size:14.5px;
}
.bw-seo__section ul,.bw-seo__section ol{
  margin:0 0 14px;padding-left:22px;color:var(--bw-text);line-height:1.65;
}
.bw-seo__section li{margin-bottom:6px}
.bw-seo__section strong{color:var(--bw-green-deep);font-weight:700}
.bw-seo__section a{color:var(--bw-green);border-bottom:1px solid var(--bw-border-hi)}
.bw-seo__section a:hover{color:var(--bw-green-deep);border-bottom-color:var(--bw-green-deep)}

/* Таблицы внутри контента — обёртка со скроллом + сама таблица нормальная */
.bw-table-wrap{
  width:100%;margin:12px 0 16px;
  overflow-x:auto;
  border:1px solid var(--bw-border);border-radius:8px;
  background:#fff;
  -webkit-overflow-scrolling:touch;
}
.bw-seo__section table{
  width:100%;border-collapse:collapse;
  font-size:14px;background:#fff;
  min-width:520px;                 /* заставляет включиться h-scroll на узких экранах */
}
.bw-seo__section thead th{
  background:var(--bw-green);color:#fff;font-weight:700;text-align:left;
  padding:10px 14px;font-size:13px;letter-spacing:.2px;white-space:nowrap;
}
.bw-seo__section tbody td{
  padding:10px 14px;border-top:1px solid var(--bw-border);color:var(--bw-text);
  vertical-align:top;line-height:1.55;
}
.bw-seo__section tbody tr:nth-child(even){background:var(--bw-body-hi)}
.bw-seo__section tbody tr:first-child td{border-top:0}

/* ============ TOC ============ */
.bw-toc{
  margin:22px 0 26px;padding:18px 20px;
  background:var(--bw-body-hi);
  border:1px solid var(--bw-border);border-radius:12px;
}
.bw-toc__title{
  font-size:14px;font-weight:800;color:var(--bw-green-deep);
  text-transform:uppercase;letter-spacing:.5px;margin-bottom:10px;
}
.bw-toc__list{
  columns:2;column-gap:28px;
  margin:0;padding-left:22px;
  color:var(--bw-text);font-size:14px;line-height:1.75;
}
.bw-toc__list li{break-inside:avoid;margin-bottom:2px}
.bw-toc__list a{color:var(--bw-green);border-bottom:1px dashed transparent;transition:border-color .15s,color .15s}
.bw-toc__list a:hover{color:var(--bw-green-deep);border-bottom-color:var(--bw-green-deep)}
@media (max-width:720px){ .bw-toc__list{columns:1} }

/* ============ FAQ ============ */
.bw-faq{
  max-width:1200px;margin:32px auto 0;padding:0 40px;
}
.bw-faq__title{
  font-size:22px;font-weight:800;color:var(--bw-green-deep);
  margin:0 0 16px;padding-bottom:10px;border-bottom:2px solid var(--bw-green);
}
.bw-faq__wrap{display:flex;flex-direction:column;gap:10px}
.bw-faq__item{
  background:#fff;border:1px solid var(--bw-border);border-radius:10px;
  padding:0;overflow:hidden;transition:border-color .18s,box-shadow .18s;
}
.bw-faq__item[open]{border-color:var(--bw-border-hi);box-shadow:0 6px 16px rgba(21,148,71,.1)}
.bw-faq__item summary{
  list-style:none;cursor:pointer;
  padding:14px 18px;color:var(--bw-green-deep);font-weight:700;font-size:15px;
  display:flex;justify-content:space-between;align-items:center;gap:12px;
}
.bw-faq__item summary::-webkit-details-marker{display:none}
.bw-faq__item summary::after{
  content:"+";color:var(--bw-green);font-weight:800;font-size:20px;line-height:1;
  transition:transform .2s;
}
.bw-faq__item[open] summary::after{content:"−"}
.bw-faq__item summary:hover{background:var(--bw-body-hi)}
.bw-faq__ans{
  padding:0 18px 16px;color:var(--bw-text);line-height:1.7;font-size:14.5px;
  text-align:justify;
}
.bw-faq__ans p{margin:0 0 10px}
.bw-faq__ans ul,.bw-faq__ans ol{margin:6px 0 10px;padding-left:22px}
.bw-faq__ans strong{color:var(--bw-green-deep)}

/* Active nav item в шапке */
.bw-nav-item.is-active{background:rgba(0,0,0,.18);color:#fff}
.bw-nav-item.is-active:hover{background:rgba(0,0,0,.28)}

/* ============ FOOTER ============ */
.bw-footer{
  background:var(--bw-green-deep);
  color:#e4ede7;
  border-top:1px solid rgba(0,0,0,.15);
  padding:40px 0 0;margin-top:56px;
}
.bw-footer__inner{
  max-width:1440px;margin:0 auto;padding:0 20px 28px;
  display:grid;grid-template-columns:1.4fr .9fr .9fr 1.6fr;gap:36px;
}
.bw-footer__title{display:block;color:#ffffff;font-weight:700;font-size:12px;text-transform:uppercase;letter-spacing:.06em;margin-bottom:14px;padding-bottom:8px;border-bottom:1px solid rgba(255,255,255,.1)}
.bw-footer__col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px}
.bw-footer__col a{color:#cfe0d5;font-size:13.5px;transition:color .18s,transform .18s;display:inline-block}
.bw-footer__col a:hover{color:#fff;transform:translateX(3px)}
.bw-footer__brand-logo img{height:24px;margin-bottom:14px;filter:brightness(0) invert(1)}
.bw-footer__tag{color:#a8c0b1;font-size:13.5px;line-height:1.6;margin:0;max-width:340px}
.bw-footer__chips{list-style:none;display:flex;flex-wrap:wrap;gap:8px;margin:0;padding:0}
.bw-footer__chips li{padding:6px 12px;border:1px solid rgba(255,255,255,.12);border-radius:20px;background:rgba(255,255,255,.04);color:#cfe0d5;font-size:12px;font-weight:500;transition:background .18s,color .18s,border-color .18s}
.bw-footer__chips li:hover{background:rgba(255,255,255,.1);color:#fff;border-color:rgba(255,255,255,.3)}
.bw-footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding:20px;text-align:center}
.bw-footer__legal{color:#a8c0b1;font-size:12px;max-width:900px;margin:0 auto 8px;line-height:1.5}
.bw-footer__copy{color:#ffffff;font-weight:600;font-size:13px}

.bw-scroll-top{
  position:fixed;right:20px;bottom:20px;width:44px;height:44px;border-radius:50%;
  background:var(--bw-green);color:#fff;font-size:20px;font-weight:800;
  box-shadow:0 8px 20px rgba(21,148,71,.4);z-index:80;
  display:flex;align-items:center;justify-content:center;
  transition:transform .15s,background .15s;
}
.bw-scroll-top:hover{transform:translateY(-2px);background:var(--bw-header-hi)}

/* ============ RESPONSIVE ============ */
@media (max-width:1400px){
  .bw-grid__row{grid-template-columns:repeat(5,1fr)}
}
@media (max-width:1200px){
  .bw-grid__row{grid-template-columns:repeat(4,1fr)}
  .bw-topbar__nav .bw-nav-item{padding:8px 8px;font-size:12px}
}
@media (max-width:1024px){
  .bw-grid__row{grid-template-columns:repeat(3,1fr)}
  .bw-arrow{display:none}
  .bw-footer__inner{grid-template-columns:1fr 1fr;gap:28px}
  .bw-footer__brand{grid-column:1/-1}
}
@media (max-width:900px){
  .bw-topbar__inner{padding:0 10px;gap:6px;min-height:52px}
  .bw-topbar__nav{display:none}
  .bw-menu{display:inline-flex}
  .bw-topbar__right .bw-icon-btn:not(.bw-icon-btn--gift){display:none}
  .bw-topbar__meta{display:none}
  .bw-logo img{height:22px}
  .bw-btn--ghost{padding:6px 10px;font-size:11px}
  .bw-btn--yellow{padding:6px 14px;font-size:12px}
  .bw-hero{padding:14px 14px 0}
  .bw-hero__slider{aspect-ratio:2/1}          /* достаточная высота, чтобы оверлей и CTA полностью влезали */
  .bw-hero__over{padding:14px 16px;min-width:58%;max-width:70%}
  .bw-hero__date{font-size:10px;padding:2px 8px;margin-bottom:5px}
  .bw-hero__title{font-size:16px;margin-bottom:3px;line-height:1.1}
  .bw-hero__prize{font-size:22px;margin-bottom:10px}
  .bw-hero__cta{padding:7px 16px;font-size:11px;letter-spacing:.6px}
  .bw-section{padding:0 14px;margin-top:24px}
  .bw-section__title{font-size:15px}
  /* Слоты — горизонтальный скролл-ряд вместо 2-колоночной сетки */
  .bw-grid__row{
    display:flex;
    gap:10px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding:2px 0 8px;
    scroll-padding-left:14px;
  }
  .bw-grid__row::-webkit-scrollbar{display:none}
  .bw-grid__row + .bw-grid__row{margin-top:10px}
  .bw-grid__row .bw-card{
    flex:0 0 46%;          /* карточка занимает почти половину экрана — видно, что можно скроллить */
    scroll-snap-align:start;
  }
  /* Стрелки скрываем — управление свайпом */
  .bw-grid .bw-arrow{display:none}
  .bw-providers{padding:0 14px;grid-template-columns:repeat(auto-fill,minmax(110px,1fr))}
  .bw-seo{padding:24px 20px;margin:32px 14px 0}
  .bw-seo h1{font-size:22px}
  .bw-faq{padding:0 14px}
  .bw-footer__inner{grid-template-columns:1fr;padding:0 14px 24px;gap:24px}
}
@media (max-width:480px){
  .bw-logo img{height:20px}
  .bw-btn--ghost{display:none}
  .bw-menu__lbl{display:none}
  .bw-menu__btn{padding:8px 10px;border-radius:50%}
  /* На маленьких экранах стрелки поменьше, но остаются */
  .bw-hero__arrow{width:28px;height:28px;font-size:14px}
  .bw-grid__row .bw-card{flex:0 0 60%}       /* видно 1.5 карты за раз */
  .bw-providers{grid-template-columns:repeat(3,1fr)}
}
.bw-footer{padding:44px 0 20px;margin-top:56px;background:linear-gradient(180deg,#0a1608,#050a04);border-top:1px solid rgba(59,207,139,.18)}
.bw-footer__inner{max-width:1440px;margin:0 auto;padding:0 20px;display:grid;grid-template-columns:1.6fr 1fr 1fr 1.4fr;gap:40px;align-items:start}
.bw-footer__brand{display:flex;flex-direction:column;gap:14px}
.bw-footer__brand-logo img{height:28px;width:auto;filter:brightness(0) invert(1);opacity:.95}
.bw-footer__tag{font-size:13.5px;color:rgba(255,255,255,.6);line-height:1.6;margin:0}
.bw-footer__col{display:flex;flex-direction:column;gap:12px}
.bw-footer__title{font-size:12px;font-weight:800;color:#fff;text-transform:uppercase;letter-spacing:.14em;margin-bottom:6px;padding-bottom:8px;position:relative;display:block}
.bw-footer__title::after{content:"";position:absolute;left:0;bottom:0;width:28px;height:2px;background:linear-gradient(90deg,#3bcf8b,transparent);border-radius:2px}
.bw-footer__col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:9px}
.bw-footer__col ul:not(.bw-footer__chips) li{padding:0;background:none;border:0}
.bw-footer__col ul:not(.bw-footer__chips) a{font-size:13.5px;color:rgba(255,255,255,.65);text-decoration:none;transition:color .18s,transform .18s;display:inline-block}
.bw-footer__col ul:not(.bw-footer__chips) a:hover{color:#3bcf8b;transform:translateX(3px)}
.bw-footer__col ul.bw-footer__chips{display:flex;flex-direction:row;flex-wrap:wrap;gap:6px 8px;margin:0 0 10px}
.bw-footer__col ul.bw-footer__chips li{display:inline-block;padding:6px 12px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:20px;font-size:12px;font-weight:600;color:rgba(255,255,255,.75);transition:background .18s,border-color .18s,color .18s}
.bw-footer__col ul.bw-footer__chips li:hover{background:rgba(59,207,139,.12);border-color:rgba(59,207,139,.35);color:#fff}
.bw-footer__bottom{max-width:1440px;margin:32px auto 0;padding:20px 20px 0;border-top:1px solid rgba(255,255,255,.06);text-align:center}
.bw-footer__legal{font-size:12px;color:rgba(255,255,255,.5);line-height:1.6;margin:0 0 8px}
.bw-footer__copy{font-size:12px;color:rgba(255,255,255,.4);margin:0;letter-spacing:.05em}
.bw-seo{max-width:1440px;padding:36px 20px}
@media (max-width:960px){.bw-footer__inner{grid-template-columns:1fr 1fr;gap:28px}.bw-footer__brand{grid-column:1/-1}}
@media (max-width:600px){.bw-footer{padding:32px 0 20px;margin-top:36px}.bw-footer__inner{grid-template-columns:1fr;gap:24px;padding:0 18px;text-align:center}.bw-footer__brand{align-items:center;text-align:center}.bw-footer__tag{max-width:340px;margin:0 auto}.bw-footer__col{align-items:center;text-align:center}.bw-footer__title::after{left:50%;transform:translateX(-50%)}.bw-footer__col ul:not(.bw-footer__chips){align-items:center}.bw-footer__col ul.bw-footer__chips{justify-content:center}.bw-footer__bottom{padding:20px 18px 0}}
