* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	background: #F6F7F9;                
	color: #0E1217;                    
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.header {
	background: #172436;                 
	color: #FFFFFF;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header a,
.header a:visited {                    
	color: #FFFFFF;
}
.header__bar {
	max-width: 1300px;
	margin: 0 auto;
	padding: 10px 16px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 16px;
}

/* Бургер */
.burger {
	display: none;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.10);
	background: rgba(255,255,255,0.04);
}
.burger span {
	display: block;
	width: 18px;
	height: 2px;
	background: #FFFFFF;
	border-radius: 2px;
	position: relative;
}
.burger span::before,
.burger span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: #FFFFFF;
	border-radius: 2px;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

/* Лого */
.logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.logo img {
	height: 22px;                       
	display: block;
}

/* Навигация (десктоп) */
.nav--desktop { 
	justify-self: center; 
}
.nav--desktop ul {
	list-style: none;
	display: flex;
	gap: 24px;
}
.nav--desktop a {
	font-weight: 600;
	opacity: 0.95;
	transition: opacity .15s ease;
}
.nav--desktop a:hover { 
	opacity: 1; 
}

.actions {
	display: flex;
	align-items: center;
	gap: 12px;
}
.promo-links {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-right: 12px;
	margin-right: 12px;
	border-right: 1px solid rgba(255,255,255,0.10);
}
.promo-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 10px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.10);
}
.promo-link svg {
	width: 16px;
	height: 16px;
}

.lang {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.10);
	background: rgba(255,255,255,0.04);
	margin-right: 6px;
}
.lang svg { 
	width: 18px; 
	height: 18px; 
}

.auth-inline {
	display: flex;
	gap: 8px;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	min-width: 112px;
	border-radius: 12px;
	font-weight: 700;
}
.btn--ghost {
	color: #E6ECF3;                     
	background: #233044;                 
	border: 1px solid #2C3A50;
}
.btn--primary {
	background: #FF3B30;                 
	color: #FFFFFF;
	border: 1px solid #FF3B30;
}

.drawer {
	position: fixed;
	inset: 0 auto 0 0;
	width: 86%;
	max-width: 340px;
	background: #1F2530;                 
	border-right: 1px solid rgba(255,255,255,0.10);
	transform: translateX(-100%);
	transition: transform .25s ease;
	z-index: 1001;
	display: flex;
	flex-direction: column;
}
.drawer__head {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 10px;
	padding: 14px 14px 8px 14px;
	border-bottom: 1px solid rgba(255,255,255,0.10);
}
.drawer__close {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.04);
    color: #ffffff;
}
.drawer__body {
	padding: 12px 14px 16px 14px;
	overflow: auto;
}
.nav--mobile ul {
	list-style: none;
	display: grid;
	gap: 8px;
}
.nav--mobile a {
	display: block;
	padding: 12px 12px;
	border-radius: 10px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.10);
	color: #FFFFFF;
    text-decoration: none;
}


.auth-mobile {
	display: none;
	max-width: 1300px;
	margin: 0 auto;
	padding: 10px 16px 12px 16px;
	gap: 10px;
}
.auth-mobile .btn { 
	flex: 1 1 0; 
}


.backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.45);
	backdrop-filter: blur(2px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
	z-index: 1000;  
}


.is-open .drawer { 
	transform: translateX(0); 
}
.is-open .backdrop { 
	opacity: 1; 
	visibility: visible; 
}

@media (max-width: 1024px) {
	.nav--desktop { display: none; }
	.burger { display: inline-flex; }
	.header__bar {
		grid-template-columns: auto 1fr auto; 
	}
	.logo { justify-self: center; }
	.auth-inline { display: none; }
	.actions { gap: 8px; }
	.auth-mobile {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.promo-links { display: none; }
	.lang { margin-right: 0; }
	.btn { min-width: unset; }
}

.header a,
.header a:visited {
	text-decoration: none;
}

.header a:hover,
.header a:focus-visible {
	text-decoration: none;
	opacity: 1;
	outline: none;
}


.header .nav--desktop a,
.header .nav--desktop a:visited {
	text-decoration: none;
}

.hero-slider {
	max-width: 1300px;
	margin: 0px auto;
	position: relative;
	margin-bottom: 20px;
}

.hero-slider__viewport {
	overflow: hidden;
	position: relative;
}

.hero-slider__track {
	display: flex;             
	will-change: transform;
	transition: transform .35s ease;
	touch-action: pan-y;          
}

.hero-slide {
	flex: 0 0 100%;
	position: relative;
	height: 440px;               
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

	display: flex;                
	align-items: center;
}

.hero-slide__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45); 
}

.hero-slide__content {
	position: relative;           
	max-width: 760px;
	padding: 28px;               
	color: #ffffff;
}

.hero-slide__title {
	display: inline-block;        
	font-size: 28px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 10px;
}

.hero-slide__text {
	font-size: 16px;
	line-height: 1.55;
	opacity: 0.95;
	margin-bottom: 16px;
}

.hero-slide__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	background: #FF3B30;        
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid #FF3B30;
}

.hero-slider__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 12px;
	display: flex;
	justify-content: center;
	gap: 8px;
	pointer-events: auto;
}

.hero-slider__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,0.45);
	border: 0;
	padding: 0;
	cursor: pointer;
}
.hero-slider__dot[aria-current="true"] {
	background: #FFFFFF;
}

@media (max-width: 1024px) {
	.hero-slide { height: 380px; }
	.hero-slide__title { font-size: 24px; }
}

@media (max-width: 640px) {
	.hero-slide { height: 320px; }
	.hero-slide__content { padding: 18px; }
	.hero-slide__title { font-size: 20px; }
	.hero-slide__text { font-size: 14px; }
	.hero-slider__dots { bottom: 10px; }
}

.sports-nav {
	max-width: 1300px;
	margin: 24px auto;
	padding: 24px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 1px 0 rgba(16,24,40,0.04), 0 1px 2px rgba(16,24,40,0.06);
	display: grid;
	row-gap: 16px;
}

.sports-nav__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.sports-nav__title {
	font-size: 28px;
	font-weight: 800;
	color: #0e1217;
}

.sports-nav__search {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 540px;
}

.sports-nav__field {
	flex: 1 1 auto;
	height: 40px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 0 12px;
	font-size: 14px;
	color: #0e1217;
	background: #f8fafc;
}

.sports-nav__button {
	height: 40px;
	padding: 0 14px;
	border-radius: 10px;
	border: 1px solid #e5e7eb;
	background: #f3f4f6;
	color: #0e1217;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
}
.sports-nav__button a {
    text-decoration: none;
    color: #0e1217;
}
.sports-nav__viewport {
	overflow: hidden;
}

.sports-nav__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
}
.sports-nav__track::-webkit-scrollbar { display: none; }

.sports-card {
	flex: 0 0 260px;
	height: 120px;
	border-radius: 12px;
	position: relative;
	color: #ffffff;
	background: linear-gradient(180deg, #8e98a6 0%, #6f7885 100%);
	display: flex;
}

.sports-card__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding-left: 14px;
}

.sports-card__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sports-card__league {
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 6px;
}

.sports-card__sport {
	font-size: 13px;
	opacity: 0.9;
}

.sports-card__media {
	height: 100%;
	display: flex;
	align-items: center;
}
.sports-card__media img {
	display: block;
	height: 100%;
	width: auto;
	border-radius: 10px;
}

.sports-card--live {
	background: linear-gradient(90deg, #d9343a 0%, #b51f25 100%);
}

.sports-card--epl {
	background: linear-gradient(180deg, #7e56d9 0%, #5b36b1 100%);
}

.sports-nav__bottom {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.sports-nav__pager {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	border: 1px solid #e5e7eb;
	background: #f3f4f6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

@media (max-width: 768px) {
	.sports-nav {
		padding: 16px;
	}
	.sports-nav__title {
		font-size: 22px;
	}
	.sports-card {
		flex: 0 0 220px;
		height: 110px;
	}
	.sports-card__media img {
		border-radius: 8px;
	}

    .sports-nav__bottom {
        display: none;
    }
}

main.content {
	max-width: 1300px;
	margin: 24px auto;
	padding: 24px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 1px 0 rgba(16,24,40,0.04), 0 1px 2px rgba(16,24,40,0.06);
	color: #0e1217;
	font-family: "Inter", sans-serif;
}

main.content h1 {
	font-size: 36px;
	font-weight: 900;
	line-height: 1.15;
	margin-bottom: 16px;
}

main.content h2 {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.2;
	margin: 28px 0 12px;
}

main.content h3 {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.25;
	margin: 24px 0 10px;
}

main.content p {
	font-size: 16px;
	line-height: 1.65;
	margin: 12px 0;
	color: #1b2330;
}

main.content img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 16px auto;
}

main.content ul,
main.content ol {
	margin: 12px 0 12px 22px;
}

main.content li {
	margin: 6px 0;
}

/* обёртка под таблицу */
main.content  div {
	overflow-x: auto;
	background: #f6f7f9;
	border: 1px solid #e6ebf1;
	border-radius: 12px;
	padding: 12px;
}

/* сама таблица — всегда на всю ширину контейнера */
main.content div > table {
	width: 100%;
	min-width: 1100px;          /* можно менять порог */
	table-layout: fixed;
	border-collapse: separate;
	border-spacing: 0;
	background: #ffffff;
	border: 1px solid #e6ebf1;
	border-radius: 10px;
}

/* ячейки */
main.content thead th,
main.content tbody td {
	padding: 12px 14px;
	font-size: 14px;
	text-align: left;
	border-bottom: 1px solid #e6ebf1;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

main.content thead th {
	position: sticky;
	top: 0;
	background: #f3f5f8;
}

main.content tbody tr:last-child td { border-bottom: none; }

.site-footer {
	background: #f3f6f9;
	color: #0e1217;
}

.site-footer__inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 28px 16px 18px;
	display: grid;
	row-gap: 20px;
}

.site-footer__top {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 24px;
}

.site-footer__heading {
	display: block;
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 10px;
}

.site-footer__links {
	display: grid;
	gap: 8px;
}

.site-footer__links a {
	color: #3a4656;
	text-decoration: none;
	font-size: 14px;
}

.site-footer__support {
	text-align: right;
}

.site-footer__support-title {
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 8px;
}

.site-footer__phone {
	font-size: 16px;
	font-weight: 800;
}

.site-footer__note {
	font-size: 12px;
	color: #748295;
	margin-top: 2px;
}

.site-footer__email {
	margin-top: 8px;
	font-size: 14px;
	color: #3a4656;
}

.site-footer__messengers {
	margin-top: 12px;
	display: grid;
	gap: 8px;
	justify-content: end;
}

.site-footer__chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	border: 1px solid #e3e7ec;
	border-radius: 999px;
	padding: 8px 12px;
	color: #2a3342;
	text-decoration: none;
	font-size: 14px;
}

.site-footer__divider {
	height: 1px;
	background: #e7ecf2;
	margin-top: 6px;
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 16px;
}

.site-footer__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.app-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	border: 1px solid #e3e7ec;
	border-radius: 999px;
	padding: 8px 12px;
	text-decoration: none;
	color: #2a3342;
	font-size: 13px;
}

.site-footer__socials {
	display: flex;
	gap: 10px;
}

.site-footer__icon {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid #e3e7ec;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #2a3342;
}

@media (max-width: 900px) {
	.site-footer__top {
		grid-template-columns: 1fr 1fr;
	}
	.site-footer__support {
		text-align: left;
		grid-column: 1 / -1;
	}
	.site-footer__messengers {
		justify-content: start;
	}
}

@media (max-width: 560px) {
	.site-footer__bottom {
		grid-template-columns: 1fr;
		row-gap: 12px;
	}
	.site-footer__socials {
		justify-content: flex-start;
	}
}

@media (max-width: 768px) {
	.sports-nav__top {
		flex-wrap: nowrap;
		gap: 8px;
	}

	.sports-nav__title {
		font-size: 22px;
		white-space: nowrap;
	}

	.sports-nav__search {
		flex: 0 0 auto;
		max-width: none;
	}


	.sports-nav__field {
		height: 36px;
		font-size: 14px;
		padding: 0 10px;
		width: clamp(140px, 38vw, 240px);
	}

	.sports-nav__button {
		height: 36px;
		padding: 0 10px;
		font-size: 14px;
	}
}


@media (max-width: 420px) {
	.sports-nav__title { font-size: 20px; }
	.sports-nav__field  { width: clamp(120px, 42vw, 200px); }
	.sports-nav__button span { display: none; }       
	.sports-nav__button svg { margin: 0; }            
}


.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 900;                   
	background: #172436;
	color: #FFFFFF;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}


.header__bar {
	min-height: 56px;
}


body {
	padding-top: 62px;             
}


@media (max-width: 1024px) {
	body { padding-top: 120px; }     
}


@media (max-width: 480px) {
	.auth-mobile { padding-top: 8px; padding-bottom: 10px; }
}


.sports-card {
	text-decoration: none;
	color: #ffffff;
}
.sports-card:focus-visible {
	outline: 2px solid rgba(43,102,246,.8);
	outline-offset: 2px;
}

.sports-nav__button {
	text-decoration: none;
}
