/* Chrome, Edge, Opera */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #1d1d20;
	/* фон трека — в тон фону сайта */
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #FF7C1E, #A53C00);
	/* градиент как у кнопки */
	border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #FFA347, #c94e00);
	/* при наведении чуть ярче */
}

/* --- Глобальные стили и переменные --- */
:root {
	--bg-color-main: #151415;
	--bg-color-header: #1d1d20;
	--primary-color: #ff7c1e;
	--text-color-primary: #ffffff;
	--text-color-secondary: #71717a;
	--color-pros: #00b82e;
	--color-cons: #ff453a;
	--container-width: 1440px;
	--border-color: #333;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	background-color: var(--bg-color-main);
	color: var(--text-color-primary);
	box-sizing: border-box;
	scrollbar-color: #FF7C1E #1d1d20;
	/* thumb + track */
	scrollbar-width: thin;
	padding-top: 64px; /* высота хедера */
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: color 0.3s ease;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
}

/* --- Хедер --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: var(--bg-color-header);
    z-index: 1000; /* чтобы был поверх остального контента */
}

.header__container {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 40px;
}

.logo img {
	width: 86px;
	display: block;
}

/* --- Навигация --- */
.nav__list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 20px;
}

.nav__link {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--text-color-secondary);
	font-size: 16px;
	font-weight: 500;
	position: relative;
	height: 64px;
	transition: color 0.3s ease;
}

.nav__link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: -8px;
	width: calc(100% + 16px);
	height: 3px;
	background-color: transparent;
	border-radius: 3px 3px 0 0;
	transition: background-color 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
	background-color: var(--primary-color);
}

.nav__link.active,
.nav__link:hover {
	color: var(--primary-color);
}

/* --- Иконки меню --- */
.nav__icon {
	width: 20px;
	height: 20px;
	filter: brightness(1.2) contrast(0.9);
	transition: filter 0.3s ease;
}

.nav__link:hover .nav__icon,
.nav__link.active .nav__icon {
	filter: brightness(0) saturate(100%) invert(60%) sepia(61%) saturate(5488%) hue-rotate(368deg) brightness(100%) contrast(104%);
}

.mobile-menu__header {
	display: none;
}

/* --- Правая часть хедера: действия --- */
.header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: auto;
}

.lang-switcher {
	display: block;
	font-weight: 500;
	cursor: pointer;
}

.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn--signup {
	min-width: 81px;
	height: 40px;
	background-color: var(--primary-color);
	color: var(--text-color-primary);
	border-radius: 8px;
	padding: 10px;
	font-size: 14px;
}

.btn--signup:hover {
	background-color: #e06a10;
	transform: scale(1.05);
}

/* --- Основной контент --- */
.main .container {
	padding-top: 40px;
	padding-bottom: 40px;
}

.hero-section {
	width: 100%;
	height: 340px;
	background-color: #2a2a2e;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
}

.hero-section img {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	object-fit: cover;
	/* Аналог background-size: cover для тега <img> */
}

.hero-section iframe {
    width: 100%;
    height: 100%;
    background-color: #151415;
    border: none; 
    border-radius: 13px;
}

.content {
	padding-top: 20px;
}

.content h1 {
	font-family: 'Roboto', sans-serif;
	font-size: 32px;
	font-weight: 800;
	line-height: 100%;
	letter-spacing: normal;
	color: var(--text-color-primary);
	margin-top: 0;
	margin-bottom: 24px;
}

.content p {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 0px;
	letter-spacing: normal;
	color: var(--text-color-primary);
}

/* --- Стили для блока Pros & Cons --- */
.pros-cons {
	padding-top: 30px;
}

.pros-cons h2 {
	font-size: 32px;
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 16px;
}

.pros-cons p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color-primary);
	margin-bottom: 32px;
}

.pros-cons__wrapper {
	display: flex;
	gap: 48px;
}

.pros-cons__column {
	flex: 1;
}

.pros-cons__column h3 {
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 100%;
	margin-top: 0;
	margin-bottom: 24px;
}

.pros-cons__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pros-cons__item {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	padding-left: 28px;
	position: relative;
}

.pros-cons__item:not(:last-child) {
	margin-bottom: 10px;
}

.pros-cons__item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 20px;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.pros-cons__item.pros::before {
	background-image: url('../img/plus.png');
}

.pros-cons__item.cons::before {
	background-image: url('../img/minus.png');
}

/* --- Стили для блока Common Information --- */
.common-info {
	padding-top: 40px;
}

.common-info h2 {
	font-size: 32px;
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 16px;
}

.common-info h3 {
	font-size: 24px;
	font-weight: 700;
	margin-top: 40px;
	margin-bottom: 16px;
}

.common-info>p {
	/* Стили для параграфов непосредственно внутри .common-info */
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color-primary);
	margin-bottom: 32px;
}

/* НОВЫЕ СТИЛИ ДЛЯ ТАБЛИЦЫ FEATURES/DETAILS */
.info-table__wrapper {
	display: flex;
	gap: 48px;
	/* Расстояние между колонками, как в Pros/Cons */
	padding-top: 0px;
}

.info-table__column {
	flex: 1;
	/* Колонки занимают равное пространство */
}

/* Стили для заголовков колонок "Features" и "Details" */
.info-table__column h3 {
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 100%;
	margin: 0 0 20px 0;
	/* Убрали верхний отступ, добавили нижний */
	color: var(--text-color-primary);
}

.info-table__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	/* Отступ между строками */
}

.info-table__list p {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
}

/* Стили для левой колонки (Features) */
.info-table__column:first-child .info-table__list p {
	font-weight: 500;
	color: var(--text-color-secondary);
}

/* Стили для правой колонки (Details) */
.info-table__column:last-child .info-table__list p {
	font-weight: 400;
	color: var(--text-color-primary);
}




.info-table-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  row-gap: 12px;
  column-gap: 48px;
  font-family: 'Roboto', sans-serif;
}

.info-table__title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
  color: #fff !important;
}
:root {
  --text-color-primary: #ffffff;
}

.info-table-grid > div {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color-primary);
}

.info-table-grid > div:nth-child(4n + 1),
.info-table-grid > div:nth-child(4n + 3) {
  color: var(--text-color-secondary);
  font-weight: 500;
}




/* --- Стили для нового блока More Info --- */
.more-info {
	padding-top: 0px;
}

.more-info h2 {
	font-size: 32px;
	font-weight: 800;
	margin-top: 20px;
	margin-bottom: 20px;
}

.more-info h3 {
	font-size: 24px;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 14px;
}

.more-info p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color-primary);
	margin-top: 0;
	margin-bottom: 18px;
}

.more-info ul {
	list-style: none;
	padding-left: 20px;
	margin: 0 0 20px 0;
}

.more-info ul li {
	position: relative;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color-primary);
}

.more-info ul li:not(:last-child) {
	margin-bottom: 4px;
}

/* Стили для маркеров списка (кружочков) */
.more-info ul li::before {
	content: '•';
	color: var(--text-color-primary);
	font-weight: bold;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}

/* Отдельные стили для списка "Legal Structure" */
.more-info .legal-structure-list {
	padding-left: 0;
	/* Убираем отступ для этого списка */
}

.more-info .legal-structure-list li::before {
	content: none;
	/* Убираем маркеры для этого списка */
}

.more-info .legal-structure-list strong {
	color: var(--text-color-primary);
	font-weight: 500;
	margin-right: 8px;
}


/* --- Стили для блока Average Margin --- */

.average-margin h2 {
	font-size: 32px;
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 10px;
}

.average-margin p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color-primary);
	margin-top: 20px;
}

.margin-table {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid #313135;
	/* Обновленный цвет обводки */
	border-radius: 8px;
	overflow: hidden;
}

.margin-table__header {
	background-color: #27272b;
	/* Обновленный фон заголовка */
	padding: 12px 16px;
	color: #fff;
	/* Обновленные стили текста */
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
}

.margin-table__cell {
	background-color: #1d1d20;
	/* Обновленный фон ячеек */
	padding: 12px 16px;
	/* Обновленные стили текста */
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
}

/* Стили для разделительных линий с новым цветом */
.margin-table>div:not(:nth-last-child(-n+2)) {
	border-bottom: 1px solid #313135;
}

.margin-table>div:nth-child(odd) {
	border-right: 1px solid #313135;
}

/* Стили для таблиц (объединены для .margin-table и .deposit-table) */
.data-table {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* Две равные колонки */
	border: 1px solid #313135;
	border-radius: 8px;
	overflow: hidden;
	/* Чтобы скругление углов работало */
	margin: 24px 0;
}

.data-table__header {
	background-color: #27272b;
	/* Фон для заголовков */
	padding: 12px 16px;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
}

.data-table__cell {
	background-color: #1d1d20;
	/* Фон ячеек */
	padding: 12px 16px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
}

/* Стили для разделительных линий */
.data-table>div:not(:nth-last-child(-n+2)) {
	border-bottom: 1px solid #313135;
}

.data-table>div:nth-child(odd) {
	border-right: 1px solid #313135;
}


/* --- Стили для блока Financial Operations --- */
.financial-ops {
	padding-top: 10px;
}

.financial-ops h2 {
	font-size: 32px;
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 10px;
}

.financial-ops h3 {
	font-size: 18px;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 8px;
}

.financial-ops h4 {
	font-size: 24px;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 8px;
}

.financial-ops p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color-primary);
	margin-top: 0;
	margin-bottom: 20px;
}

/* Основные стили для списка криптовалют */
.financial-ops .crypto-list {
  list-style-type: none; /* Убираем стандартные маркеры */
  padding-left: 0;       /* Убираем отступ слева */
  margin: 0 0 20px 0;
}

/* Стили для каждого элемента списка */
.financial-ops .crypto-list li {
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color-primary);
  margin-bottom: 6px; /* Задаем единый отступ снизу */
}

/* Убираем отступ у последнего элемента, чтобы было аккуратно */
.financial-ops .crypto-list li:last-child {
  margin-bottom: 0;
}

/* Стили для иконок валют */
.financial-ops .crypto-list img {
  width: 16px;
  height: 16px;
  margin-right: 8px;      /* Отступ справа от иконки */
  vertical-align: middle; /* Выравнивание иконки по центру текста */
}


/* Стили для списка с точками */
.crypto-list2 {
  /* Устанавливаем стиль маркера в виде стандартной точки (кружка) */
  list-style-type: disc;
  
  /* Добавляем внутренний отступ слева, чтобы точки не прилипали к краю */
  padding-left: 20px;

  /* Внешние отступы для всего блока списка */
  margin: 20px 0;
}

/* Стили для каждого элемента списка */
.crypto-list2 li {
  /* Цвет текста, как у основного контента */
  color: var(--text-color-primary);

  /* Типографика, соответствующая параграфам на сайте */
  font-size: 16px;
  line-height: 28px;
  
  /* Небольшой отступ снизу для каждого пункта, кроме последнего */
  margin-bottom: 8px;
}

.crypto-list2 li:last-child {
  margin-bottom: 0;
}


.bonus-table {
	display: grid;
	/* 4 колонки с разной шириной */
	grid-template-columns: 1fr 1.5fr 1.5fr 1fr;
	border: 1px solid #313135;
	border-radius: 8px;
	overflow: hidden;
}

.bonus-table__header {
	background-color: #27272b;
	padding: 12px 16px;
	color: var(--text-color-primary);
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
}

.bonus-table__cell {
	background-color: #1d1d20;
	padding: 12px 16px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	/* Немного увеличим для многострочного текста */
}

/* Горизонтальные линии */
.bonus-table>div:not(:nth-last-child(-n+4)) {
	border-bottom: 1px solid #313135;
}

/* Вертикальные линии (кроме последней колонки) */
.bonus-table>div:not(:nth-child(4n)) {
	border-right: 1px solid #313135;
}

.bonus-table-wrapper {
	width: 100%;
	overflow-x: auto;
	/* Включает горизонтальный скролл, если контент не помещается */
	-webkit-overflow-scrolling: touch;
	/* Плавный скролл на iOS */
}

.bonus-table {
	min-width: 650px;
}


.bonus-table-3col {
	display: grid;
	/* 3 equal-width columns */
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid #313135;
	border-radius: 8px;
	overflow: hidden;
}

.bonus-table-3col__header {
	background-color: #27272b;
	padding: 12px 16px;
	color: var(--text-color-primary);
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
}

.bonus-table-3col__cell {
	background-color: #1d1d20;
	padding: 12px 16px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
}

/* Horizontal lines for all but the last row */
.bonus-table-3col>div:not(:nth-last-child(-n+3)) {
	border-bottom: 1px solid #313135;
}

/* Vertical lines for all but the last column */
.bonus-table-3col>div:not(:nth-child(3n)) {
	border-right: 1px solid #313135;
}

.steps-list {
	/* Добавляем отступ слева, чтобы номера не прилипали к краю */
	padding-left: 20px;
	margin: 10px 0 0 0px;
}

.steps-list li {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color-primary);
	/* Добавляем отступ слева от номера до текста */
	padding-left: 8px;
}

.steps-list li:not(:last-child) {
	margin-bottom: 6px;
}

/* --- Стили для секции FAQ --- */
.faq-section {
	padding-top: 10px;
}

.faq-section h2 {
	font-size: 32px;
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 24px;
}

.faq-list {
	background-color: #1d1d20;
	/* Фон для всего блока */
	border-radius: 8px;
	/* Скругление для всего блока */
	padding: 0 24px;
	/* Внутренние отступы по бокам */
}

.faq-item {
	/* Возвращаем разделительную линию */
	border-bottom: 1px solid #313135;
}

/* Убираем линию у последнего элемента, чтобы не было двойной обводки */
.faq-item:last-child {
	border-bottom: none;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	cursor: pointer;
	list-style: none;

	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	color: var(--text-color-primary);
}

.faq-question::-webkit-details-marker {
	display: none;
}

.faq-icon {
	width: 20px;
	height: 20px;
	background-image: url('../img/fplus.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.2s ease;
}

.faq-item[open]>.faq-question .faq-icon {
	background-image: url('../img/fminus.png');
}

.faq-answer {
	padding-bottom: 20px;
}

.faq-answer p {
	margin: 0;
	max-width: 800px;

	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
	color: var(--text-color-secondary);
}


/* --- Стили для футера --- */
.footer {
	background-color: #1d1d20;
	padding: 40px 0;
	color: var(--text-color-secondary);
}

.footer__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.footer__logo img {
	width: 86px;
}

/* Убираем подчеркивание и другие эффекты для навигации в футере */
.footer__nav .nav__link::after {
	display: none;
}

.footer__nav .nav__link:hover,
.footer__nav .nav__link.active {
	/* Меняем цвет текста на основной (оранжевый) */
	color: var(--primary-color);
}

.footer__nav .nav__link:hover .nav__icon,
.footer__nav .nav__link.active .nav__icon {
	/* Применяем тот же фильтр, что и в хедере, для перекраски иконки в оранжевый */
	filter: brightness(0) saturate(100%) invert(60%) sepia(61%) saturate(5488%) hue-rotate(368deg) brightness(100%) contrast(104%);
}

.scroll-to-top {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	background-color: #2a2a2e;
	border-radius: 50%;
	transition: transform 0.2s ease;
}

.scroll-to-top:hover {
	transform: scale(1.1);
}

.footer__middle {
	text-align: center;
	margin: 0 auto;
	padding: 20px 0;
	border-top: 1px solid #313135;
	border-bottom: 1px solid #313135;
}

.footer__middle p {
	margin: 0;
	line-height: 1.6;
	font-size: 16px;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	font-size: 14px;
}

.footer__warning {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer__warning img {
	width: 36px;
	height: 36px;
}


.odds-list-container.loading .odds-list {
	filter: blur(6px);
	pointer-events: none;
	opacity: 0.5;
	transition: 0.3s ease;
	position: relative;
}

/* Спиннер загрузки */
.loading-spinner {
	position: absolute;
	top: 74%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 4px solid rgba(255, 255, 255, 0.2);
	border-top: 4px solid #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	z-index: 999;
}

@keyframes spin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}


.betting-odds {
	padding-top: 5px;
}

.betting-odds h2 {
	font-size: 32px;
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 24px;
}

.odds-list-container {
	background-color: #1d1d20;
	border-radius: 8px;
}

.odds-header {
	background-color: #27272b;
	padding: 4px 16px;
	border-radius: 8px 8px 0 0;
	/* Скругление только верхних углов */
}

.odds-filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: transparent;
	border: none;
	color: var(--text-color-primary);
	padding: 8px 0px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	border-radius: 6px;
}

.odds-filter-btn img {
	width: 16px;
	height: 16px;
}

.odds-list {
	display: flex;
	flex-direction: column;
}

.match-item {
	display: flex;
	align-items: center;
	padding: 16px;
	border-bottom: 1px solid #313135;
	height: 88px;
	/* Добавлена фиксированная высота строки */
}

.match-item:last-child {
	border-bottom: none;
}

.vertical-separator {
	width: 1px;
	background-color: #313135;
	height: 48px;
	/* Изменена высота линии */
	margin: 0 16px;
	/* Изменены отступы */
}

/* Левая часть: Время */
.match-time {
	display: flex;
	flex-direction: column;
	text-align: center;
	width: 60px;
}

.match-time__day {
	font-size: 12px;
	color: #71717a;
}

.match-time__hour {
	font-size: 16px;
	color: var(--text-color-primary);
}

/* Средняя часть: Детали матча и действия */
.match-main-content {
	flex-grow: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.match-details {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.match-league {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #71717a;
}

.match-league img {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 6px;
	vertical-align: middle;
}

.match-teams {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 500;
	color: var(--text-color-primary);
}

.match-teams img {
	width: 16px;
	height: 16px;
}

/* Иконки действий */
.match-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.match-actions img {
	width: 20px;
	height: 20px;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.2s ease;
}

.match-actions img:hover {
	opacity: 1;
}

/* Правая часть: Коэффициенты */
.match-odds {
	display: flex;
	align-items: center;
}

.odds-group {
	display: flex;
	gap: 12px;
}

.odds-btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 58px;
	height: 64px;
	border: none;
	padding: 0;
	background: transparent;
	border-radius: 4px;
	/* Изменено: Увеличено скругление */
	overflow: hidden;
	cursor: pointer;
	text-decoration: none !important;
}

.odds-label {
	background-color: #27272b;
	color: var(--text-color-primary);
	font-size: 12px;
	padding: 6px;
	transition: background-color 0.2s ease;
	text-align: center;
	/* Добавлено для центрирования */
}

.odds-value {
	background-color: #3f3f46;
	color: var(--text-color-primary);
	font-size: 14px;
	font-weight: 500;
	padding: 11px 6px;
	transition: background-color 0.2s ease;
	text-align: center;
	/* Добавлено для центрирования */
	flex-grow: 1;
	/* Позволяет этому блоку занять оставшееся место */
}

.odds-btn:hover .odds-label {
	background-color: #3a3a40;
}

.odds-btn:hover .odds-value {
	background-color: #52525a;
}

.odds-more-btn {
	width: auto;
	height: 58px;
	padding: 0 16px;
	font-size: 14px;
	font-weight: 500;
	border: none;
	background-color: #27272b;
	border-radius: 6px;
	color: var(--text-color-primary);
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.odds-more-btn:hover {
	background-color: #313135;
}


/* --- Стили для секции с бонусами (полностью переписаны) --- */
.bonuses-section {
	padding-top: 20px;
}

.bonuses-section h2 {
	font-size: 32px;
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 24px;
}

.bonus-grid {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

.bonus-card {
	width: 275px;
	height: 275px;
	border-radius: 8px;
	background-color: #1d1d20;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}

.network-warning {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(255, 80, 80, 0.08);
  border-left: 4px solid #ff4d4d;
  font-size: 14px;
  line-height: 1.5;
}

.network-warning strong {
  color: #ff4d4d;
}

.network-box {
  margin-top: 16px;
}

.network-box h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color-primary);
}

.network-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.network-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color-primary);
}

.network-list li:not(:last-child) {
  margin-bottom: 6px;
}

.network-list li strong {
  color: var(--text-color-primary);
  font-weight: 600;
}

.bonus-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.bonus-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: height 0.3s ease;
}

.bonus-card:hover img {
	height: 143px;
}

.bonus-card__content {
	height: 72px;
	flex-grow: 1;
	padding: 10px;
	/* Добавлены отступы для текста и кнопок */
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	transition: height 0.3s ease;
}

.bonus-card:hover .bonus-card__content {
	justify-content: center;
}

.bonus-card h3 {
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--text-color-primary);
	margin: 0 0 4px 0;
	line-height: 1.4;
}

.bonus-card p {
	font-size: 12px;
	color: var(--text-color-secondary);
	margin: 0;
	line-height: 1.5;
}

.bonus-card__actions {
	display: flex;
	gap: 8px;
	margin-top: 12px;
	opacity: 0;
	height: 0;
	overflow: hidden;
	transition: opacity 0.3s ease 0.1s, height 0s ease 0.3s;
}

.bonus-card:hover .bonus-card__actions {
	opacity: 1;
	height: auto;
	transition: opacity 0.3s ease 0.1s, height 0s ease;
}

.btn-bonus {
	flex: 1;
	padding: 14px;
	border-radius: 8px;
	border: none;
	height: 40px;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.btn-bonus--primary {
	background-color: #9948ff;
	color: var(--text-color-primary);
}

.btn-bonus--primary:hover {
	background-color: #ad70ff;
}

.btn-bonus--secondary {
	background-color: #3f3f46;
	color: var(--text-color-primary);
}

.btn-bonus--secondary:hover {
	background-color: #52525a;
}

.button-container {
  text-align: center; /* Это свойство центрирует все строчные элементы внутри, включая кнопку */
  margin: 15px 0; /* Добавляет отступы сверху и снизу для красоты */
}

.btn-bonus2 {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  border: none;
  background-color: #ff7c1e;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-bonus2:hover {
  background-color: #ff8a37;
  transform: translateY(-2px);
}


/* --- Стили для страницы "About Us" --- */

/* Секция "Who are we?" */
.about-intro {
	display: flex;
	align-items: center;
	gap: 60px;
}

.about-intro__text {
	flex: 1;
}

.about-intro__hero-section {
	width: 700px;
	height: 375px;
	background-color: #2a2a2e;
	border-radius: 8px;
	flex-shrink: 0;
}

.about-intro__hero-section img {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: cover;
}

.about-intro h2,
.offer-section h2 {
	font-weight: 600;
	font-size: 24px;
	line-height: 1;
	/* 100% */
}

/* --- Обновленные стили для параграфов под заголовком "Who are we?" --- */
.about-intro__text p {
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
}

/* --- Обновленные стили для секции "What do we offer?" --- */

/* Добавляем линию и отступ после секции */
.offer-section {
	padding-bottom: 40px;
	border-bottom: 1px solid var(--border-color);
}

.offer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

/* Стили для вводных параграфов */
.offer-column>p {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--text-color-primary);
}

.offer-list {
	list-style: none;
	padding-left: 20px;
	/* Уменьшаем отступ для точки */
	margin: 0;
}

.offer-list li {
	position: relative;
	color: var(--text-color-primary);
	line-height: 1.6;
	padding-left: 8px;
	/* Отступ от точки до текста */
}

.offer-list li:not(:last-child) {
	margin-bottom: 8px;
}

/* Меняем иконку-галочку на точку */
.offer-list li::before {
	content: '•';
	/* Изменено */
	position: absolute;
	left: -10px;
	/* Положение точки */
	color: var(--text-color-primary);
	/* Цвет как у текста */
	font-weight: bold;
	font-size: 16px;
}

/* Стиль для выделенного жирного текста в списке */
.offer-list li strong {
	font-weight: 500;
	color: var(--text-color-primary);
}

/* --- Стили для секции с 4-мя иконками --- */
.features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px 60px;
	/* Увеличил отступы для лучшего вида */
	padding: 40px 0;
	/* Добавил вертикальные отступы для секции */
}

.feature-item__icon {
	width: 48px;
	height: 48px;
	margin-bottom: 24px;
}

.feature-item h3 {
	/* Новые стили для заголовка */
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
	margin: 0 0 16px 0;
}

.feature-item p {
	/* Новые стили для текста */
	font-size: 16px;
	line-height: 28px;
	margin: 0;
}

/* --- Стили для сворачиваемой секции --- */
.collapsible-section {
	padding-top: 40px;
}

.collapsible-section details {
	background-color: #1d1d20;
	border-radius: 8px;
}

.collapsible-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 20px;
	cursor: pointer;
	list-style: none;
	/* Убираем стандартный маркер */
}

.collapsible-header::-webkit-details-marker {
	display: none;
	/* Убираем маркер для Chrome/Safari */
}

.collapsible-header h2 {
	font-weight: 600;
	font-size: 18px;
	margin: 0;
	/* Убираем отступы у заголовка внутри */
}

.collapsible-arrow {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
	/* По умолчанию стрелка смотрит вверх */
	transform: rotate(0deg);
}

/* Когда секция закрыта, переворачиваем стрелку */
.collapsible-section details:not([open]) .collapsible-arrow {
	transform: rotate(180deg);
}

.collapsible-content {
	padding: 0 20px 10px 20px;
	/* Отступы для контента */
}

.collapsible-content p,
.collapsible-content .styled-list li {
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
	margin-left: 0px;
	margin-top: 0px;
}

/* --- Стили для секции Security / Addiction --- */
.security-addiction-section {
	padding-top: 12px;
}

.security-addiction-section h2 {
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
}

.security-addiction-section p,
.security-addiction-section .styled-list li {
	font-size: 16px;
	line-height: 28px;
}


/* --- Стили для страницы Автора --- */
.breadcrumbs {
	font-size: 14px;
	color: var(--text-color-secondary);
	padding: 24px 0;
	margin-top: -38px;
}

.breadcrumbs a {
	color: var(--text-color-secondary);
	text-decoration: none;
}

.breadcrumbs a:hover {
	text-decoration: underline;
}

.breadcrumbs span {
	color: var(--text-color-primary);
}

.author-section {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.author-info-1 {
	flex: 1;
	/* Занимает оставшееся пространство */
}

.author-photo {
	width: 338px;
	height: 338px;
	flex-shrink: 0;
	/* Запрещает блоку сжиматься */
}

.author-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

/* Стили текста на странице автора */
.author-info h1 {
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
	margin: 0 0 32px 0;
}

.author-info h2 {
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
	margin: 32px 0 16px 0;
}

.author-info h2:first-of-type {
	margin-top: 0;
}

.author-info p {
	font-size: 16px;
	line-height: 28px;
	color: var(--text-color-primary);
	margin: 0;
}

/* Соцсети */
.author-socials {
	display: none;

	gap: 12px;
	margin: 24px 0;
}

.author-socials img {
	width: 40px;
	height: 40px;
	transition: transform 0.2s ease;
}

.author-socials a:hover img {
	transform: scale(1.1);
}


.burger-menu-btn {
	display: none;
	background-color: transparent;
	/* Убираем фон */
	border: none;
	/* Убираем рамку */
	padding: 0;
	/* Убираем внутренние отступы */
	cursor: pointer;
}

.close-menu-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}


.load-error,
.no-matches {
	text-align: center;
	color: #ccc;
	padding: 20px;
	font-size: 16px;
}


/* --- Стили для всплывающего окна (попапа) --- */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    
    display: none; /* По умолчанию скрыт */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Класс для отображения попапа */
.popup.is-open {
    display: flex;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.popup-content {
    position: relative;
    background-color: #27272b;
    padding: 15px;
    border-radius: 12px;
    max-width: 655px; /* Максимальная ширина окна */
    width: 100%;
    z-index: 1002;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.popup-close img {
    width: 24px;
    height: 24px;
    transition: opacity 0.2s;
}
.popup-close:hover img {
    opacity: 1;
}

.popup-content h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    margin: 0 0 24px 0;
}

.popup-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    counter-reset: steps-counter;
}

.popup-step img {
    width: 100%;
    max-width: 195px; /* Ограничиваем ширину картинок */
    border-radius: 12px;
    margin-bottom: 16px;
}

.popup-step p {
    position: relative;
    text-align: left;
    padding-left: 20px; 
}

.popup-step p::before {
    counter-increment: steps-counter; /* Увеличиваем счетчик на 1 */
    content: counter(steps-counter) "."; /* Выводим номер и точку */
    
    /* Стили для цифры */
    font-weight: bold;
    color: var(--text-color-primary);
    
    /* Позиционируем номер */
    position: absolute;
    left: 0;
}

.ico-ios  {
    width: 15px !important;
    height: 20px;
    margin-bottom: -2px !important;
}

/* Стили для затемняющего фона */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 999; /* Должен быть ниже меню, но выше остального контента */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Класс для отображения оверлея */
.overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Убедитесь, что у открытого меню z-index выше, чем у оверлея */
.header .nav.is-open {
  /* ...ваши существующие стили для .is-open... */
  z-index: 1000;
}


/* --- New styles for "Show More" functionality --- */
.odds-footer {
  text-align: center;
  margin-top: 20px;
}

#toggle-odds-btn {
  background: #3f3f46;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

#toggle-odds-btn:hover {
  background: #52525b;
  color: #ffffff;
}


@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



/* Styles for the separator line before the author block */
.line-separator {
    border-top: 1px solid #313135;
    margin: 20px 0;
}

/* Main container for the author block */
.author-block-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #1d1d20;
    border-radius: 8px;
    padding: 20px;
}

/* Styling for the author's avatar */
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* Styling for the author's name as specified */
.author-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-decoration: underline;
    margin: 0;
}

/* Styling for the author's description text */
.author-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}

@media (max-width: 768px) {
    .author-block-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-name {
        margin-top: 12px;
    }
}


/* Стили для контейнера с информацией об авторе и дате */
.article-meta {
    display: flex;
    justify-content: space-between; /* Размещает элементы по краям */
    align-items: flex-start;           /* Выравнивает по вертикали */
    padding: 16px 0;
    margin-bottom: 0px;
}

/* Левая часть: информация об авторе */
.author-info {
    display: flex;
    align-items: center;
    gap: 12px; /* Расстояние между аватаром и текстом */
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Делает изображение круглым */
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-role {
    font-size: 14px;
    color: var(--text-color-secondary); /* Серый цвет для роли */
}

.author-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color-primary); /* Белый цвет для имени */
    margin: 0;
}

/* Правая часть: дата публикации */
.publish-date span {
    font-size: 14px;
    color: var(--text-color-secondary);
}

/* ===== Articles grid ===== */
.articles-section { padding-top: 20px; }
.articles-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 24px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}





/* ===== Articles grid ===== */
.articles-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* ===== Article card (portal preview) ===== */
.article-card2{
  position: relative;
  background: #1d1d20;
  border: 1px solid #313135;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.article-card2:hover{
  transform: translateY(-4px);
  border-color: #3f3f46;
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
}

/* верх карточки кликабельный */
.article-card2__top{
  position: relative;
  padding: 16px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.article-card2__top:focus-visible{
  outline: 2px solid rgba(255,124,30,.65);
  outline-offset: 2px;
}

/* фон */
.article-card2__bg{
  position: absolute;
  inset: 0;
  opacity: .95;
  transform: scale(1.03);
}

.article-card2__overlay{
  position: absolute;
  inset: 0;
  height: 242px;
  background:
    radial-gradient(900px 280px at 10% 0%, rgba(255,124,30,.32), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.88) 80%),
    linear-gradient(180deg, rgba(29,29,32,.25), rgba(29,29,32,1));
}

.article-card2__head{
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* теги */
.article-card2__tag{
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.40);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
}

.article-card2__tag--muted{ color: #a1a1aa; }

/* иконка */
.article-card2__icon{
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: .5px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
}

/* заголовок */
.article-card2__title{
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
}

/* текст */
.article-card2__excerpt{
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #a1a1aa;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* низ карточки */
.article-card2__actions{
  margin-top: auto;
  padding: 14px 16px 16px;
  display: flex;
  gap: 12px;
  background: rgba(29,29,32,.95);
  border-top: 1px solid rgba(255,255,255,.08);
}

.article-card2__actions a{
  text-decoration: none !important;
}

/* кнопки */
.article-card2__actions .btn-article{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  flex: 1;
  white-space: nowrap;
  transition: .2s ease;
}

.article-card2__actions .btn-article--primary{
  background: var(--primary-color);
  color: #fff;
}
.article-card2__actions .btn-article--primary:hover{
  background: #ff8a37;
  transform: translateY(-1px);
}

.article-card2__actions .btn-article--secondary{
  background: #27272b;
  border-color: #313135;
  color: #fff;
}
.article-card2__actions .btn-article--secondary:hover{
  background: #313135;
  transform: translateY(-1px);
}

/* Coming soon */
.article-card2.is-disabled{ opacity: .92; }
.article-card2.is-disabled:hover{
  transform: none;
  box-shadow: none;
}

/* Background variants */
.bg-bnb{
  background:
    radial-gradient(600px 260px at 20% 10%, rgba(255,198,0,.55), rgba(0,0,0,0) 60%),
    radial-gradient(700px 260px at 80% 0%, rgba(255,124,30,.35), rgba(0,0,0,0) 55%),
    linear-gradient(135deg, #2b1c00, #1d1d20);
}

.bg-soon{
  background:
    radial-gradient(650px 260px at 15% 0%, rgba(153,72,255,.45), rgba(0,0,0,0) 60%),
    linear-gradient(135deg, #1b1430, #1d1d20);
}

.bg-soon2{
  background:
    radial-gradient(650px 260px at 15% 0%, rgba(0,255,170,.22), rgba(0,0,0,0) 60%),
    linear-gradient(135deg, #0a1f1a, #1d1d20);
}

/* Responsive */
@media (max-width: 1110px){
  .articles-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px){
  .articles-grid{ grid-template-columns: 1fr; }
}





/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .article-meta {
        flex-direction: column; /* Элементы встанут друг под друга */
        align-items: flex-start; /* Выравнивание по левому краю */
        gap: 12px;
    }
}


@media (max-width: 1440px) {
	.about-intro {
		display: flex;
		align-items: center;
		gap: 5px;
		flex-direction: column;
	}

	.container {
		width: 100%;
		max-width: var(--container-width);
		margin: 0 auto;
		padding: 0 20px;
	}
}


@media (max-width: 1280px) {
	.match-item {
		display: flex;
		align-items: center;
		padding: 8px;
		border-bottom: 1px solid #313135;
		height: 88px;
	}

	.match-time {
		display: flex;
		flex-direction: column;
		text-align: center;
		width: 36px;
	}

	.match-time__hour {
		font-size: 14px;
		color: var(--text-color-primary);
	}

	.match-main-content {
		flex-grow: 1;
		display: flex;
		width: 222px;
		justify-content: space-between;
		align-items: center;
	}

	.vertical-separator {
		width: 1px;
		background-color: #313135;
		height: 48px;
		margin: 0 8px;
	}

	.odds-group {
		display: flex;
		gap: 4px;
	}

	.odds-btn {
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-width: 50px;
		height: 64px;
		border: none;
		padding: 0;
		background: transparent;
		border-radius: 4px;
		overflow: hidden;
		cursor: pointer;
		text-decoration: none !important;
	}

	.match-teams {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 12px;
		font-weight: 500;
		color: var(--text-color-primary);
	}

	.match-league {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 12px;
		color: #71717a;
	}

	.match-actions {
		display: flex;
		align-items: center;
		gap: 2px;
	}

	.odds-label {
		background-color: #27272b;
		color: var(--text-color-primary);
		font-size: 10px;
		padding: 4px;
		transition: background-color 0.2s ease;
		text-align: center;
	}

	.odds-value {
		font-size: 12px;
	}
}

@media (max-width: 1110px) {
	.nav__link {
	font-size: 14px;
	}
	.nav__list {
    gap: 20px;
   }

    .about-intro {
    display: flex;
    gap: 5px;
    align-items: flex-start;
    flex-direction: row;
    }

	.about-intro__hero-section {
    width: 348px;
    height: 348px;
    background-color: #2a2a2e;
    border-radius: 8px;
    flex-shrink: 0;
}
}

@media (max-width: 980px) {
	.header__container {
    gap: 20px;
	}
	.logo img {
    width: 68px;
    display: block;
	}
}

@media (max-width: 940px) {
    .nav__list {
        gap: 10px;
    }
	.header__container {
        gap: 10px;
    }
	.nav__link {
        font-size: 12px;
    }

	.bonus-card {
    width: 232px;
    height: 275px;
	}
	.btn-bonus {
    padding: 14px 2px;
    }
}

@media (max-width: 768px) {

	.author-section {
        display: flex;
        gap: 20px;
        align-items: flex-end;
        flex-direction: column-reverse;
    }
	.author-info-1 {
    	flex: 1;
    	margin-top: -110px;
	}
	.author-photo {
    	width: 88px;
    	height: 88px;
	}

	.about-intro__hero-section {
		max-width: 700px;
		width: 100%;
		aspect-ratio: 700 / 375;
		background-color: #2a2a2e;
		border-radius: 8px;
		flex-shrink: 0;
	}

	.offer-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.features-grid {
		display: grid;
		grid-template-columns: 4fr;
		gap: 40px 60px;
		padding: 40px 0;
	}

	.footer__top {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: 20px;
		flex-direction: column;
	}

	.footer__nav .nav__list {
		display: flex;
		align-items: flex-start;
		list-style: none;
		margin: 0;
		padding: 0;
		gap: 0px;
		flex-direction: column;
	}

	.footer__bottom {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-top: 20px;
		gap: 15px;
		font-size: 14px;
		flex-direction: column;
	}

	.header__actions {
		display: flex;
		align-items: center;
		gap: 10px;
		margin-left: auto;
	}

	.header__container>.nav {
		display: none;
	}

	.burger-menu-btn {
		display: block;
	}

	.mobile-menu__header {
		display: none;
	}

	.nav.is-open {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		background-color: #1d1d20;
		padding: 16px;
		z-index: 1000;
		align-items: flex-start;
	}


	.nav.is-open .mobile-menu__header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		margin-bottom: 24px;
		padding-bottom: 24px;
		border-bottom: 1px solid #313135;
	}

	.nav.is-open .mobile-menu__actions {
		display: flex;
		align-items: center;
		gap: 16px;
	}

	.nav.is-open .close-menu-btn {
		display: block;
	}

	.nav__item {
		width: 100%;
	}

	.nav.is-open .nav__list {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin-top: 0;
	}

	.nav.is-open .nav__link {
		width: 100%;
		height: auto;
		padding: 16px;
		border-radius: 8px;
		font-size: 18px;
	}

	.nav.is-open .nav__link::after {
		display: none;
	}

	.nav.is-open .nav__link.active {
		background-color: var(--primary-color);
		color: var(--text-color-primary);
	}

	.nav.is-open .nav__link.active .nav__icon {
		filter: brightness(0) invert(1);
	}


	.odds-list-container {
		background-color: transparent;
		/* Убираем общий фон на мобильных */
	}

	.odds-header {
		border-radius: 8px;
		margin-bottom: 8px;
	}

	.odds-list {
		gap: 8px;
		/* Добавляем отступ между карточками матчей */
	}

	.match-time__day {
		font-size: 16px;
		color: #71717a;
	}

	.match-item {
		flex-direction: column;
		/* Ставим элементы друг под другом */
		height: auto;
		/* Высота теперь автоматическая */
		background-color: #1d1d20;
		/* Каждая карточка получает свой фон */
		border-radius: 8px;
		border-bottom: none;
		/* Горизонтальная линия больше не нужна */
		padding: 12px;
	}

	/* Скрываем все вертикальные разделители */
	.vertical-separator {
		display: none;
	}

	.match-main-content {
		width: 100%;
		padding: 12px 0;
		/* Добавляем линии сверху и снизу */
		border-top: 1px solid #313135;
		border-bottom: 1px solid #313135;
		margin: 12px 0;
	}

	.match-info {
		width: 100%;
	}

	.match-time {
		display: flex;
		text-align: right;
		flex-direction: row;
		width: 100%;
		gap: 8px;
		justify-content: space-between;
	}

	.match-details {
		flex-grow: 1;
		/* Занимает все доступное место слева от времени */
	}

	/* Растягиваем блок с коэффициентами на всю ширину */
	.match-odds {
		width: 100%;
		justify-content: space-between;
	}

	.odds-group {
		flex-grow: 1;
		/* Группы кнопок растягиваются */
		justify-content: space-between;
	}

	.odds-btn {
		flex-grow: 1;
		/* Кнопки внутри группы тоже растягиваются */
	}

	.match-odds {
		display: flex;
		align-items: center;
		flex-direction: column;
		gap: 12px;
	}

	.scroll-to-top {
		display: flex;
		position: absolute;
		right: 20px;
		margin-top: -5px;
	}

    .hero-section {
	    width: 100%;
	    height: 200px;
	    background-color: #2a2a2e;
	    background-size: cover;
	    background-position: center;
	    border-radius: 12px;
    }

.bonus-grid-wrapper {
  position: relative;
  padding-bottom: 16px; /* регулируй высоту отступа под скроллбар */
}

.bonus-grid {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  overflow-x: scroll;
  padding-bottom: 8px; /* это тоже поможет создать зазор внутри */
}

	.bonus-card {
    min-width: 280px;
    height: 260px;
    border-radius: 8px;
    background-color: #1d1d20;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
	}

	.container {
	padding: 0 12px;
    }
	.nav__link {
    font-size: 16px;
    }

	.about-intro {
        display: flex;
        gap: 5px;
        align-items: flex-start;
        flex-direction: column-reverse;
    }

	.info-table-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    row-gap: 12px;
    column-gap: 10px;
    font-family: 'Roboto', sans-serif;
}

}

@media (max-width: 500px) {
  .popup-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    max-height: 65vh; /* Ограничим по высоте и разрешим прокрутку */
    padding-right: 10px; /* небольшой отступ для скроллбара */
  }

   .popup-step img {
    max-width: 220px;
   }

  .popup-content {
    max-height: 80vh;
  }

  .popup-content h2 {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    margin: 0 0 24px 0;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
}


.tech-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-specs li {
    margin-bottom: 6px;
}


/* Article tables */
.more-info table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px 0;
  font-size: 15px;
  line-height: 1.5;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  overflow: hidden;
}

/* header */
.more-info table thead {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.more-info table th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* rows */
.more-info table td {
  padding: 12px 16px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* hover */
.more-info table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

/* last row remove border */
.more-info table tbody tr:last-child td {
  border-bottom: none;
}

.more-info h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.more-info h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}

.more-info p {
  margin-bottom: 16px;
}