*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	background-color: #000;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	max-width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
}

.page {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.page__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.page__bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	pointer-events: none;
}

.page__bg-glow {
	position: absolute;
	width: 1407px;
	height: 1407px;
	border-radius: 50%;
	background: radial-gradient(ellipse 45.79% 45.79% at 50% 50%,
			rgba(228, 40, 96, 0.60) 0%,
			rgba(126, 22, 53, 0) 100%);
}

.page__bg-glow--left {
	left: -22px;
	top: 290px;
}

.page__bg-glow--right {
	left: 906px;
	top: -832px;
}

.page__bg-fade {
	position: absolute;
	inset: auto 0 0 0;
	height: 753px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

.main {
	position: relative;
	z-index: 1;
	flex: 1;
}

.news {
	padding: 80px 85px 60px;
}

.news__inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 100px;
}

.news__media {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 960px;
	width: 100%;
	max-height: 540px;
	aspect-ratio: 16/9;
}

.news__media iframe {
	width: 100%;
	height: 100%;
}

.news__video-link {
	position: relative;
	z-index: 2;
	display: block;
	border-radius: 4px;
	overflow: hidden;
	transition: opacity 0.2s ease, transform 0.15s ease
}

.news__video-link:hover {
	opacity: 0.9;
	transform: scale(1.01);
}

.news__video-thumb {
	width: 100%;
	height: auto;
	display: block;

}

.news__video-thumb--mobile {
	display: none;
}

.news__content {
	width: 100%;
	flex-shrink: 0;
	max-width: 671px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.news__title {
	font-family: "Triumvirate CG Inserat", "Impact", sans-serif;
	font-style: italic;
	font-weight: 400;
	font-size: 100px;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 18px;
	position: relative;
	z-index: 1;
	margin-bottom: 90px;
}

.news__title-accent {
	color: #FF4179;
}

.news__text {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	color: #fff;
	margin-bottom: 80px;
	border-radius: 4px;
	position: relative; 
  z-index: 1; 
	max-width: 560px;
	align-self: center;
}

.news__text::before {
  content: '';
	width: 802px;
	height: 130%;
  position: absolute;
  background: url('../images/football_news/text_background.png') center/100% 100% no-repeat;
  z-index: -1;
	top: 50%; 
	left: 50%; 
	transform: translate(-50%, -50%);
	overflow: hidden;
}


.news__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 46px;
	position: relative;
	z-index: 1;
}

.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 491px;
	padding: 24px 17px;
	background: linear-gradient(90deg, #A00D3B 0%, #F4185D 100%);
	border-radius: 12px;
	outline: 2px solid #EF3F76;
	outline-offset: -2px;
	cursor: pointer;
	transition: filter 0.2s ease, transform 0.15s ease;
}

.btn:hover {
	filter: brightness(1.15);
	transform: translateY(-2px);
}

.btn:active {
	transform: translateY(0);
	filter: brightness(0.95);
}

.btn__label {
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.news__back-link {
	display: flex;
	align-items: center;
	gap: 13px;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.news__back-link:hover {
	opacity: 0.75;
}

.news__back-arrow {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.news__back-text {
	font-size: 18px;
	font-weight: 500;
	color: #ACACAC;
}

.footer {
	position: relative;
	z-index: 1;
	background: rgba(0, 0, 0, 0.77);
	border-top: 2px solid #E11555;
	padding: 32px 24px;
	min-height: 181px;
}

.footer__inner {
	max-width: 498px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 21px;
}

.footer__social {
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s ease, transform 0.15s ease;
	padding-inline: 20px;
}

.footer__social-link:hover {
	opacity: 0.8;
	transform: translateY(-2px);
}

.footer__social-icon {
	width: auto;
	height: 43px;
	object-fit: contain;
}

.footer__contact {
	text-align: center;
	line-height: 1.5;
}

.footer__contact-text {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
}

.footer__contact-email {
	font-size: 20px;
	font-weight: 600;
	color: #EC175A;
	transition: opacity 0.2s ease;
}

.footer__contact-email:hover {
	opacity: 0.8;
}

.footer__lang {
	display: flex;
	gap: 30px;
}

.footer__lang-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.45;
	transition: opacity 0.2s ease, transform 0.15s ease;
}

.footer__lang-btn:hover {
	opacity: 0.75;
	transform: translateY(-2px);
}

.footer__lang-btn--active {
	opacity: 1;
}

.footer__lang-icon {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

@media (max-width: 1450px) {
	.news__inner {
		flex-direction: column;
		align-items: center;
		gap: 48px;
	}

	.news__media {
		width: 100%;
		max-width: 600px;
	}

	.news__content {
		padding-top: 0;
		max-width: 100%;
		text-align: center;
	}

	.news__actions {
		align-items: center;
	}

	.btn {
		width: 100%;
		max-width: 491px;
	}
}

@media (max-width: 590px) {
	.page {
		background-image: url(../images/football_news/line_bg.png);
		background-repeat: no-repeat;
		background-size: contain;
	}

	.page__bg-img {
		display: none;
	}
	.news {
		padding: 40px 26px 60px;
	}

	.news__video-thumb--desktop {
		display: none;
	}

	.news__video-thumb--mobile {
		display: block;
	}

	.page__bg-glow--left {
		left: -496px;
		top: 675px;
	}

	.news__content {
		width: 100%;
	}

	.news__title {
		font-size: 52px;
	}

	.news__text {
		font-size: 15px;
		text-align: left;
	}

	.btn {
		width: 100%;
		height: 61px;
		padding: 12px 17px;
	}

	.news__back-text {
		font-size: 14px;
	}

	.footer {
		min-height: 231px;
	}

	.footer__inner {
		max-width: 296px;
	}

	.footer__contact-text,
	.footer__contact-email {
		font-size: 15px;
	}
}

@media (max-width: 414px) {
	.btn {
		width: 100%;
	}
}