:root {
	--pin-up-red: #ff2400;
	--pin-up-green: #00cfa6;
	--pin-up-dark: #001a14;
	--pin-up-light: #f8fded;
}

body {
	font-family: 'Roboto', sans-serif;
	color: #333;
	background-color: #003329;
	position: relative;
}

.pin-up-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.header {
	background-color: var(--pin-up-dark);
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 50;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-primary {
	background-color: var(--pin-up-red);
	color: white;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 1.5px solid transparent;
	animation: 1.5s infinite glowing1;
}

.btn-primary:hover {
	border: 1.5px solid #71251b;
	background-color: var(--pin-up-light);
	color: #333;
}

.btn-secondary {
	background-color: var(--pin-up-green);
	color: white;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 1.5px solid transparent;
	animation: 1.5s infinite glowing2;
}

.btn-secondary:hover {
	border: 1.5px solid #2d7061;
	background-color: var(--pin-up-light);
	color: #333;
}

.content-section h2 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	margin: 2rem 0;
	color: var(--pin-up-dark);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.pageMenu li a {
	color: #003329;
}
.pageMenu li a:hover {
	color: #1ca085;
}

.content-section h3 {
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.75rem;
	margin-bottom: 1rem;
}

.content-section ul {
	list-style: disc;
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

.content-section ol {
	list-style: auto;
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}
.content-section p {
	margin-bottom: 1rem;
}

.game-card {
	background-color: #10151e;
	border: 3px solid #001a14;
	border-radius: 1.2rem;
	overflow: hidden;
	transition: transform 0.3s ease;
	position: relative;
	animation: 2s infinite pulse;
}

.game-card::before {
	content: '';
	position: absolute;
	border-radius: 1.2rem;
	padding: 3px;
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	background: linear-gradient(98.86deg, #00cfa6 0, rgba(0, 207, 166, 0.2) 100%);
	z-index: 0;
}

.game-card:hover {
	transform: scale(1.03);
}

.feature-card {
	background-color: var(--pin-up-dark);
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	color: white;
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 200px;
	justify-content: center;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-card i {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--pin-up-green);
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background-color: rgba(16, 21, 30, 0.8);
	color: white;
	border-radius: 10px;
	overflow: hidden;
}

th {
	background-color: #00997b;
	color: white;
	padding: 15px;
	text-align: center;
	font-size: 18px;
	border: 1px solid #f6f8d6;
}

td {
	padding: 15px;
	border: 1px solid #f6f8d6;
	background-color: #171f2ecc;
	font-size: 18px;
}

td:hover {
	background-color: #e3e3e3;
	color: #333;
}

.hero-section {
	min-height: 500px;
	display: flex;
	align-items: center;
	background-color: #001a14;
	border-radius: 15px;
	margin: 20px 0;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.bonus-section {
	background-color: rgba(203, 45, 24, 0.1);
	padding: 2rem;
	border-radius: 15px;
	margin: 3rem 0;
	border: 1px solid rgba(203, 45, 24, 0.3);
}

.provider-logo {
	height: 40px;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.provider-logo:hover {
	filter: grayscale(0%);
	opacity: 1;
}

footer {
	background-color: var(--pin-up-dark);
	color: white;
	padding: 3rem 0 1rem;
	margin-top: 3rem;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow:
			1px 0 1px #473e12,
			0 1px 1px #39ffa4,
			-1px 0 1px #473e12,
			0 -1px 1px #ffdf39;
	}

	50% {
		transform: scale(1.02);
		box-shadow: 0 0 0 10px transparent;
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 transparent;
	}
}

@keyframes glowing1 {
	0%,
	100% {
		box-shadow: 0 0 5px #4d4d4d;
	}

	50% {
		box-shadow: 0 0 20px #ff2400;
	}
}

@keyframes glowing2 {
	0%,
	100% {
		box-shadow: 0 0 5px #4d4d4d;
	}

	50% {
		box-shadow: 0 0 20px #1380e7;
	}
}

.tag {
	display: inline-block;
	padding: 5px 10px;
	background-color: var(--pin-up-green);
	color: white;
	border-radius: 15px;
	font-size: 12px;
	margin-right: 5px;
	margin-bottom: 5px;
}

.content-section {
	background-color: white;
	padding: 2rem;
	border-radius: 15px;
	margin-bottom: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--pin-up-red);
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.game-image-container:hover .play-button {
	opacity: 1;
}

.accordion-header {
	background-color: var(--pin-up-dark);
	color: white;
	padding: 15px;
	cursor: pointer;
	border-radius: 8px;
	margin-bottom: 2px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.accordion-content {
	background-color: #f9f9f9;
	padding: 15px;
	display: none;
	border-radius: 0 0 8px 8px;
	margin-bottom: 10px;
}

.accordion-header.active {
	background-color: var(--pin-up-green);
	border-radius: 8px 8px 0 0;
}

.accordion-header.active + .accordion-content {
	display: block;
}

body {
	margin: 0;
	min-width: 320px;
}

#yandex-cache-hdr {
	background: #f2f2f2;
	font:
		14px arial,
		sans-serif;
	text-align: left;
	color: #151a1f;
	line-height: 18px;
	margin: 0;
	padding: 6px 16px 16px;
	border: 0;
	border-bottom: 1px solid #c9cdd1;
	overflow: hidden;
}

#yandex-cache-hdr * {
	display: inline;
	font: inherit;
	text-align: inherit;
	color: inherit;
	line-height: inherit;
	background: 0 0;
	border: 0;
	margin: 0;
	padding: 0;
	letter-spacing: 0;
}

#yandex-cache-hdr a {
	text-decoration: none;
	color: #969a9e;
	font-weight: 700;
}

#yandex-cache-hdr > div > * {
	margin-left: 16px;
	padding: 8px 0;
}

#yandex-cache-hdr b {
	font-weight: 700;
	color: #151a1f;
}

#yandex-cache-hdr div {
	display: block;
	margin-top: 8px;
}

#yandex-cache-hdr > div {
	margin: 14px -16px -30px -32px;
	padding: 0 16px 30px 16px;
	clear: both;
}

#yandex-cache-hdr > div svg {
	vertical-align: text-top;
	margin-right: 5px;
}

#yandex-cache-hdr > span:nth-child(2) {
	clear: left;
}

#yandex-cache-hdr > div > * {
	position: relative;
}

#yandex-cache-hdr > div b::after {
	position: absolute;
	bottom: -9px;
	left: 0;
	display: block;
	width: 100%;
	content: '';
	border-top: 3px solid #000;
}

@media (min-width: 850px) {
	#yandex-cache-hdr {
		padding: 14px 32px 16px;
	}

	#yandex-cache-hdr > div > * {
		margin-left: 24px;
	}

	#yandex-cache-hdr i {
		display: none;
	}

	#yandex-cache-hdr a:hover,
	#yandex-cache-hdr a:hover svg {
		fill: #65686b;
		color: #65686b;
	}

	#yandex-cache-hdr > span:nth-child(2) {
		clear: unset;
		margin-top: 8px;
	}

	#yandex-cache-hdr > span:nth-child(2)::first-letter {
		text-transform: lowercase;
	}

	#yandex-cache-hdr > span:nth-child(4) {
		float: right;
		margin-top: 14px;
	}

	#yandex-cache-hdr > div {
		margin: 14px -16px -30px -40px;
		clear: left;
		float: left;
	}
}

.img-cov {
	width: 100%;
	height: 100%;
	max-width: 900px;
	margin: 15px auto;
}
.img-cov img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}
.block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.block .img-cov {
	max-width: 300px;
}

.table {
	width: 100%;
	overflow-x: auto;
	display: block;
}

.header__list li a {
	color: white;
}

@media (max-width: 768px) {
	.block {
		flex-direction: column;
	}
	.btn-primary,
	.btn-secondary {
		width: 100%;
		text-align: center;
	}
	.header__buttons {
		width: 100%;
	}
}
