* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Roboto Condensed", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	background: #080B1B;
	color: #F3EEF3;
}

html, body{
	scrollbar-width: thin;                   
	scrollbar-color: rgba(255,255,255,.18) #0A0F22;
}
/* WebKit */
*::-webkit-scrollbar{
	width: 10px;           
	height: 8px;          
}
*::-webkit-scrollbar-track{
	background: #0A0F22;                 
}
*::-webkit-scrollbar-thumb{
	background: rgba(255,255,255,.18);       
	border: 2px solid #0A0F22;             
	border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover{
	background: linear-gradient(120deg,#DF236F,#7B61FF);
	box-shadow: 0 0 0 2px rgba(223,35,111,.25) inset;
}
*::-webkit-scrollbar-thumb:active{
	background: linear-gradient(120deg,#DF236F 20%,#7B61FF 80%);
}

*::-webkit-scrollbar-corner{
	background: #0A0F22;
}

.games__scroller{
	scrollbar-width: thin;                                
	scrollbar-color: rgba(255,255,255,.18) #0A0F22;
}
.games__scroller::-webkit-scrollbar{
	height: 8px;                                         
}
.games__scroller::-webkit-scrollbar-track{
	background: #0A0F22;
}
.games__scroller::-webkit-scrollbar-thumb{
	background: rgba(255,255,255,.18);
	border-radius: 8px;
	border: 2px solid #0A0F22;
}
.games__scroller:hover::-webkit-scrollbar-thumb{
	background: linear-gradient(120deg,#DF236F,#7B61FF);
	box-shadow: 0 0 0 2px rgba(223,35,111,.22) inset;
}

.drawer{
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,.16) #0B0F26;
}
.drawer::-webkit-scrollbar{
	width: 8px;
}
.drawer::-webkit-scrollbar-track{
	background: #0B0F26;
}
.drawer::-webkit-scrollbar-thumb{
	background: rgba(255,255,255,.16);
	border-radius: 8px;
	border: 2px solid #0B0F26;
}
.drawer:hover::-webkit-scrollbar-thumb{
	background: linear-gradient(120deg,#DF236F,#7B61FF);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #0e0f1d;
	border-bottom: 1px solid rgba(255,255,255,.06);
    	backdrop-filter: saturate(120%) blur(4px);
	padding-top: env(safe-area-inset-top);
}

.header-inner {
	margin: 0 auto;
	padding: 10px 16px;
	display: grid;
	align-items: center;
	gap: 16px;
	grid-template-columns: auto auto minmax(0, 1fr) auto auto;
}
.header-inner > * {
	min-width: 0;
}

.burger {
	width: 42px;
	height: 42px;
	display: none;
	place-content: center;
	background: #0F1733;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 10px;
	cursor: pointer;
	color: #F3EEF3;
	transition: transform .15s ease;
}
.burger:hover { transform: translateY(-1px); }
.burger__bar {
	display: block;
	width: 18px;
	height: 2px;
	background: #F3EEF3;
	margin: 3px 0;
}

.logo {
	display: inline-grid;
	align-items: center;
	text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    margin-left: 10px;
}

.primary-nav ul {
	list-style: none;
	display: grid;
	grid-auto-flow: column;
	gap: clamp(8px, 2vw, 18px);
	align-items: center;
	overflow: visible;
    margin-left: 40px;
}

.primary-nav a,
.drawer__nav a {
	text-decoration: none;
	color: #F3EEF3;
	font-weight: 700;
	letter-spacing: .3px;
	padding: 8px 4px;
	border-radius: 0;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	line-height: 1;
	transition: color .18s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.drawer__nav a:hover,
.drawer__nav a:focus-visible {
	color: #DF236F;
}

.primary-nav .nav-bonus .tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 900;
	padding: 2px 6px;
	margin-right: 6px;
	border-radius: 5px;
	color: #071A12;
	background: #06B581;
}

.spacer { display: none; }

.boost {
	display: inline-grid;
	grid-auto-flow: column;
	align-items: center;
	column-gap: 8px;
	height: 40px;
	padding: 0 12px;
	max-width: 220px;
	justify-self: end;
	text-decoration: none;
	color: #F3EEF3;
	background: #101738;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 10px;
}
.boost__icon { display: grid; place-items: center; }
.boost__icon svg { width: 18px; height: 18px; flex: 0 0 18px; }
.boost__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 170px;
}

.actions {
	display: inline-grid;
	grid-auto-flow: column;
	gap: 10px;
	justify-self: end;
}
.btn {
	display: inline-grid;
	place-items: center;
	height: 40px;
	padding: 0 14px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 800;
	letter-spacing: .4px;
	border: 1px solid rgba(255,255,255,.12);
	min-width: auto;
}
.btn-ghost { color: #F3EEF3; background: #0F1733; }
.btn-ghost:hover { background: #13204a; border-color: rgba(255,255,255,.18); }
.btn-primary { color: #071A12; background: #06B581; border-color: #06B581; }
.btn-primary:hover { filter: brightness(1.05); }

.drawer {
	position: fixed;
	inset: 0 auto 0 0;
	width: 320px;
	max-width: 86vw;
	background: #0B0F26;
	color: #F3EEF3;
	transform: translateX(-100%);
	transition: transform .22s ease-out;
	box-shadow: 4px 0 30px rgba(0,0,0,.45);
	z-index: 120;
	display: flex;
	flex-direction: column;
	border-right: 1px solid rgba(255,255,255,.06);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid rgba(255,255,255,.06);
	background: #0F1733;
	font-weight: 800;
}
.drawer__close {
	background: #0B3B98;
	color: #F3EEF3;
	border: none;
	border-radius: 8px;
	width: 36px;
	height: 32px;
	cursor: pointer;
}
.drawer__nav ul { list-style: none; padding: 10px 8px; overflow: visible; }
.drawer__nav li { margin: 4px 0; }
.drawer__nav a {
	display: block;
	padding: 12px 12px;
	border-radius: 10px;
	color: #F3EEF3;
	text-decoration: none;
	font-weight: 700;
}
.drawer__nav a:hover { background: #101738; }
.drawer__nav .nav-bonus .tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 900;
	padding: 2px 6px;
	margin-right: 6px;
	border-radius: 5px;
	color: #071A12;
	background: #06B581;
}

.scrim {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.5);
	backdrop-filter: saturate(120%) blur(1px);
	z-index: 110;
}

@media (max-width: 1100px) {
	.primary-nav ul { gap: 14px; }
}

@media (max-width: 900px) {
	.header-inner {
		gap: 10px;
		grid-template-columns: auto auto 1fr auto auto;
	}
	.burger { display: inline-grid; }
	.primary-nav { display: none; }
	.logo img { height: 40px; width: auto; }
	.boost { height: 34px; padding: 0 8px; max-width: 40px; justify-self: end; }
	.boost__label { display: none; }
	.boost__icon svg { width: 18px; height: 18px; }
	.actions { gap: 8px; justify-self: end; }
	.btn { height: 34px; padding: 0 10px; font-size: 13px; font-weight: 700; }
}

@media (max-width: 520px) {
	.header-inner { gap: 8px; }
	.logo img { height: 40px; width: auto; margin-left: 10px; }
	.boost { height: 32px; max-width: 36px; padding: 0 6px; }
	.boost__icon svg { width: 16px; height: 16px; }
	.actions { gap: 6px; }
	.btn { height: 32px; padding: 0 8px; font-size: 12px; }
}

.primary-nav a.nav-bonus,
.drawer__nav a.nav-bonus {
	position: relative;
	display: inline-block;
	padding: 8px 28px 8px 8px;
	border-radius: 6px;
	color: #F3EEF3;
	text-decoration: none;
	white-space: nowrap;
}
.primary-nav a.nav-bonus .text,
.drawer__nav a.nav-bonus .text {
	display: inline-block;
	line-height: 1.2;
	transition: color .18s ease;
}
.primary-nav a.nav-bonus .badge {
	position: absolute;
	top: 1px;
	right: 10px;
	transform: translate(45%,-65%);
	display: inline-block;
	padding: 2px 6px;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .3px;
	color: #071A12;
	background: #06B581;
	border-radius: 6px;
	box-shadow: 0 2px 10px rgba(0,0,0,.25);
	pointer-events: none;
	z-index: 10;
}

.primary-nav a.nav-bonus:hover .text,
.primary-nav a.nav-bonus:focus-visible .text,
.drawer__nav a.nav-bonus:hover .text,
.drawer__nav a.nav-bonus:focus-visible .text {
	color: #DF236F;
}

@media (max-width: 900px) {
	.drawer__nav a.nav-bonus {
		padding: 12px 32px 12px 12px;
	}
	.drawer__nav a.nav-bonus .badge { display: none; }
	.drawer__nav .nav-bonus .tag {
		position: absolute;
		top: 1px;
		right: 10px;
		transform: translate(45%,-65%);
		display: inline-block;
		padding: 2px 6px;
		font-size: 10px;
		font-weight: 900;
		letter-spacing: .3px;
		color: #071A12;
		background: #06B581;
		border-radius: 6px;
		box-shadow: 0 2px 10px rgba(0,0,0,.25);
		pointer-events: none;
		z-index: 10;
	}
}

.hero{
	max-width: 1300px;
	margin: 0 auto;
	position: relative;
	background: #0A0F22;
	overflow: hidden;
    height: 450px;
}

.hero__viewport{
	display: flex;
	scroll-snap-type: x mandatory;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
}
.hero__viewport::-webkit-scrollbar{ display:none; }

.hero__slide{
	position: relative;
	min-width: 100%;
	background-image: var(--bg);
	background-size: cover;
	background-position: center;
	scroll-snap-align: start;
	display: grid;
	place-items: center start;
    height: 450px;
}
.hero__overlay{
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.58));
}

.hero__content{
	position: relative;
	max-width: 560px;
	margin-left: clamp(16px, 6vw, 64px);
	display: grid;
	gap: 14px;
	text-align: left;
	align-items: start;
	justify-items: start;
}
.hero__title{
	font-size: clamp(24px, 4vw, 44px);
	line-height: 1.12;
	font-weight: 900;
	color: #F3EEF3;
	background: linear-gradient(transparent 60%, rgba(223,35,111,.25) 60%);
	padding: 0 .06em;
}
.hero__content p{
	font-size: clamp(14px, 1.4vw, 18px);
	line-height: 1.55;
	color: #E6E0E9;
	max-width: 58ch;
}

.hero__cta{
	align-self: start;
	color: #071A12;
	background: #06B581;
	border: 1px solid #06B581;
	border-radius: 10px;
	height: 40px;
	padding: 0 16px;
	display: inline-grid;
	place-items: center;
	font-weight: 800;
	letter-spacing: .4px;
	text-decoration: none;
	transition: filter .15s ease;
}
.hero__cta:hover{ filter: brightness(1.06); }

.hero__dots{
	position: absolute;
	left: 50%;
	bottom: 16px;
	transform: translateX(-50%);
	display: grid;
	grid-auto-flow: column;
	gap: 10px;
}
.hero__dot{
	width: 10px; height: 10px; border-radius: 50%;
	background: rgba(255,255,255,.35);
	border: 0; cursor: pointer;
	transition: transform .2s ease, background-color .2s ease;
}
.hero__dot:hover{ transform: scale(1.1); }
.hero__dot[aria-selected="true"]{ background: #DF236F; }

@media (max-width: 900px){
	.hero__slide{ min-height: clamp(300px, 56vw, 460px); }
	.hero__content{
		max-width: 86%;
		margin-right: 16px;
		gap: 12px;
	}
	.hero__title{ font-size: clamp(20px, 6vw, 32px); }
	.hero__content p{ font-size: clamp(13px, 3.6vw, 16px); max-width: 90%; }
	.hero__cta{ height: 36px; padding: 0 14px; }
}
@media (max-width: 520px){
	.hero__slide{ min-height: 300px; }
	.hero__content{ max-width: 92%; margin-right: 14px; }
	.hero__title{ font-size: 22px; }
	.hero__content p{ font-size: 14px; }
	.hero__cta{ height: 34px; padding: 0 12px; border-radius: 8px; }
}

.feature-grid{
	max-width:1300px;
	margin:32px auto;
	padding:0 16px;
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:28px;
}

.feature-card{
	position:relative;
	border-radius:14px;
	background:#0F1224;
	border:1px solid rgba(255,255,255,.08);
	transition: box-shadow .25s ease, border-image-source .25s ease, border-color .25s ease;
}

.feature-card__inner{
	padding:28px 28px 32px;
	min-height:180px;
	display:grid;
	gap:18px;
	place-items:center;     
	text-align:center;
}

.feature-title{
	font-weight:900;
	letter-spacing:.4px;
	font-size:clamp(20px,2.8vw,34px);
	color:#F3EEF3;
	transition: color .25s ease, text-shadow .25s ease;
}

.feature-text{
	color:#CFC9D7;
	line-height:1.5;
	max-width:36ch;
}

.btn-outline-green{
	display:inline-grid;
	place-items:center;
	height:44px;
	padding:0 18px;
	border-radius:10px;
	text-decoration:none;
	font-weight:800;
	letter-spacing:.4px;
	color:#06B581;
	border:1px solid #06B581;
	background:transparent;
	transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn-outline-green:hover{
	background:rgba(6,181,129,.08);
	box-shadow:0 0 0 3px rgba(6,181,129,.16) inset;
}

.feature-card:hover{
	border-image:linear-gradient(120deg,#DF236F,#7B61FF) 1;
	border-color:transparent;
	box-shadow:0 8px 30px rgba(0,0,0,.35);
}
.feature-card:hover .feature-title{
	color:#FFFFFF;
	text-shadow:0 0 18px rgba(223,35,111,.35);
}

@media (max-width:1024px){
	.feature-grid{ gap:20px; }
	.feature-card__inner{ padding:24px; }
}
@media (max-width:780px){
	.feature-grid{
		grid-template-columns:1fr;
		gap:16px;
	}
	.feature-card__inner{ min-height:auto; }
}

.games{
  max-width:1300px;
  margin:32px auto;
  padding:0 16px;
}
.games__head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:16px;
}
.games__title{
  font-weight:900; font-size:clamp(20px,2.6vw,28px); letter-spacing:.4px; color:#F3EEF3;
}
.games__all{ color:#9FB0C8; text-decoration:none; font-weight:700; }
.games__all:hover{ color:#DF236F; }

.games__scroller{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
  padding-bottom:6px;
  scroll-snap-type:x proximity;
}
.games__scroller::-webkit-scrollbar{ height:8px; }
.games__scroller::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.12); border-radius:6px; }

.games__track{
  display:grid;
  grid-template-rows:repeat(2,110px);
  grid-auto-columns:110px;
  grid-auto-flow:column dense;
  gap:14px 14px;
  padding:8px 2px;
}

.game-card{
  position:relative;
  width:110px; height:110px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:#0F1224;
  overflow:hidden;
  display:grid; place-items:center;
  scroll-snap-align:start;
}
.game-card img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0;
}
.game-card__overlay{
  position:absolute; inset:0;
  background:rgba(0,0,0,0);
  transition:background .2s ease, box-shadow .2s ease, border-color .2s ease;
  z-index:1;
}
.game-card__cta{
  position:relative; z-index:2;
  display:inline-grid; place-items:center;
  height:32px; padding:0 12px; border-radius:8px;
  font-weight:800; letter-spacing:.3px;
  color:#071A12; background:#06B581; border:1px solid #06B581;
  text-decoration:none;
  opacity:0; transform:translateY(6px);
  transition:opacity .18s ease, transform .18s ease;
}
.game-card:hover .game-card__overlay,
.game-card:focus-within .game-card__overlay{
  background:rgba(0,0,0,.55);
  box-shadow:0 0 0 2px rgba(223,35,111,.35) inset;
}
.game-card:hover .game-card__cta,
.game-card:focus-within .game-card__cta{
  opacity:1; transform:translateY(0);
}

@media (max-width:900px){
  .games__track{
    grid-template-rows:110px; /* 1 ряд */
    gap:12px;
  }
}
@media (max-width:520px){
  .games{ margin:24px auto; }
  .games__title{ font-size:20px; }
  .games__all{ font-size:14px; }
  .games__track{ gap:10px; }
}

.content{
  max-width: 1300px;
  margin: 32px auto;
  padding: 24px clamp(16px, 3vw, 32px);
  background: #0F1224;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  color: #F3EEF3;
}

.content h1{
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .4px;
  margin-bottom: 14px;
}
.content h2{
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
  font-weight: 800;
  margin: 28px 0 12px;
}
.content h3{
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.2;
  font-weight: 800;
  margin: 24px 0 10px;
}

.content p{
  color: #CFC9D7;
  line-height: 1.6;
  margin: 10px 0 0;
}
.content img{
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
  margin: 0 auto;
}

/* списки */
.content ul,
.content ol{
  margin: 14px 0 0 1.2em;
  display: grid;
  gap: 6px;
}
.content li{
  color: #DCD6E3;
  line-height: 1.55;
}


.content > div{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.18) #0A0F22;
  margin: 8px 0 0;
  padding-bottom: 6px; 
}
.content > div::-webkit-scrollbar{ height: 8px; }
.content > div::-webkit-scrollbar-track{ background: #0A0F22; }
.content > div::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.18);
  border-radius: 8px;
  border: 2px solid #0A0F22;
}
.content > div:hover::-webkit-scrollbar-thumb{
  background: linear-gradient(120deg,#DF236F,#7B61FF);
  box-shadow: 0 0 0 2px rgba(223,35,111,.22) inset;
}

.content table{
  width: 100%;
  min-width: 720px; 
  border-collapse: collapse;
  border: 1px solid rgba(255,255,255,.08);
  background: #0B0F26;
  border-radius: 10px;
  overflow: hidden; 
}
.content thead th{
  text-align: left;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .3px;
  color: #F3EEF3;
  background: #101738;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  white-space: nowrap;
}
.content tbody td{
  padding: 12px 12px;
  font-size: 14px;
  color: #E6E0E9;
  border-bottom: 1px solid rgba(255,255,255,.06);
  white-space: nowrap;
}
.content tbody tr:nth-child(odd){ background: rgba(255,255,255,.02); }
.content tbody tr:hover{ background: rgba(223,35,111,.06); }

.content h1 + img{ margin-top: 16px; }
.content h2 + p,
.content h3 + p{ margin-top: 6px; }

/* адаптив */
@media (max-width: 900px){
  .content{ padding: 20px 16px; }
  .content p{ max-width: 100%; }
  .content table{ min-width: 640px; }
}
@media (max-width: 520px){
  .content{ padding: 16px 14px; }
  .content h1{ font-size: 24px; }
  .content h2{ font-size: 20px; }
  .content h3{ font-size: 18px; }
}

.site-footer{
  position:relative;
  background:#0A0F22;
  border-top:1px solid rgba(255,255,255,.06);
  overflow:hidden;
}
.footer__lava{
  position:absolute;
  inset:-60px -40px auto -40px;
  height:140px;
  background:
    radial-gradient(1200px 120px at 50% 110%, rgba(223,35,111,.28), transparent 60%),
    radial-gradient(800px 100px at 30% 110%, rgba(123,97,255,.22), transparent 60%),
    radial-gradient(900px 120px at 70% 110%, rgba(255,86,86,.18), transparent 65%);
  filter:blur(20px) saturate(110%);
  pointer-events:none;
}

.footer__inner{
  max-width:1300px;
  margin:0 auto;
  padding:28px 16px 22px;
  position:relative;
  z-index:1;
  display:grid;
  gap:24px;
}

.footer__brand{ display:none; }
.footer__brand img{
  height:28px; width:auto; display:block;
  filter:drop-shadow(0 2px 10px rgba(0,0,0,.25));
}

.footer__cols{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:20px;
}
.footer__col{
  background:#0F1224;
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  padding:18px;
}
.footer__title{
  display:inline-block;
  font-weight:900;
  letter-spacing:.4px;
  font-size:16px;
  color:#F3EEF3;
  margin-bottom:10px;
}

.footer__nav{ display:grid; gap:8px; }
.footer__nav a{
  color:#BFC7D7;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.3px;
  line-height:1.35;
  transition:color .18s ease, background-size .18s ease;
  background-image:linear-gradient(#DF236F,#DF236F);
  background-repeat:no-repeat;
  background-position:0 100%;
  background-size:0% 2px;
}
.footer__nav a:hover{
  color:#FFFFFF;
  background-size:100% 2px;
}

.footer__social{
  display:grid;
  grid-auto-flow:column;
  gap:12px;
}
.footer__social a{
  width:38px; height:38px;
  display:grid; place-items:center;
  color:#C9D2E5;
  background:#0F1733;
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  transition:transform .15s ease, color .15s ease, box-shadow .2s ease, border-image-source .2s ease;
}
.footer__social a:hover{
  transform:translateY(-1px);
  color:#FFFFFF;
  border-image:linear-gradient(120deg,#DF236F,#7B61FF) 1;
  border-color:transparent;
  box-shadow:0 8px 24px rgba(0,0,0,.35);
}

.footer__badges{
  display:grid; grid-auto-flow:column; justify-content:start;
  gap:16px; align-items:center;
}
.footer__badges img{ height:22px; width:auto; opacity:.9; filter:grayscale(20%); }

.footer__legal{
  display:grid; gap:6px; color:#AAB4C8; font-size:13px;
}
.footer__legal a{
  color:#C9D2E5; text-decoration:none;
  transition:color .18s ease, background-size .18s ease;
  background-image:linear-gradient(#DF236F,#DF236F);
  background-repeat:no-repeat;
  background-position:0 100%;
  background-size:0% 2px;
}
.footer__legal a:hover{ color:#FFFFFF; background-size:100% 2px; }

@media (max-width:1024px){
  .footer__cols{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width:640px){
  .footer__inner{ gap:18px; padding:22px 14px 18px; }
  .footer__cols{ grid-template-columns:1fr; gap:14px; }

  .footer__brand{
    display:grid;
    place-items:center;
    order:-1;
  }
  .footer__brand img{ height:24px; }

  .footer__col{ padding:16px; text-align:center; }
  .footer__nav{ justify-items:center; }
  .footer__social{ justify-content:center; }
  .footer__legal{ text-align:center; }

  .footer__badges{ grid-auto-flow:row; gap:10px; }
}