﻿body.home-page {
	background-color: transparent;
}

body.home-page nav {
	background-color: transparent;
	position: relative;
	z-index: 2;
}

body.home-page nav::before {
	background: rgba(0, 0, 0, 0.2) !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

body.home-page nav a,
body.home-page footer {
	background-color: transparent;
	position: relative;
	z-index: 2;
	color: #d80505;
	text-shadow: 0 6px 8px rgba(0, 0, 0, 0.9);
}


body.home-page section {
	color: #fff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
	background: transparent;
	box-shadow: none;
	border-radius: 0;
	text-align: center;
}

body.home-page main {
	margin: 0;
	max-width: none;
	padding: 0;
	width: 100%;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.bg-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	pointer-events: none;
	z-index: 0;
}

.play-button {
	position: relative;
	color: #d80505;
	margin-bottom: 15rem;
	margin-right: 2rem;
	width: min(88vw, 250px);
	height: 60px;
	padding: 15px 40px;
	font-size: 24px;
	font-weight: bold;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
	border-radius: 2rem;
	opacity: .1;
	cursor: pointer;
	transition: opacity .28s ease, transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
	
}


.play-button:active {
	transform: scale(0.95);
}


.play-button:hover,
.play-button:focus-visible {
	
	opacity: 0.9;
	box-shadow: 0 12px 40px rgba(10, 14, 22, 0.32);
}

@media (max-width: 620px) {
	body.home-page nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 60;
	}

	.play-button {
		width: 86px;
		height: 86px;
		margin: 0;
		padding: 0;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 0;
		line-height: 1;
		opacity: 0.9;
		box-shadow: 0 12px 40px rgba(10, 14, 22, 0.32);
		transition: none;
	}

	.play-button:hover,
	.play-button:focus-visible {
		opacity: 0.9;
		box-shadow: 0 12px 40px rgba(10, 14, 22, 0.32);
		transform: none;
	}

	.play-button::before {
		content: "\23FB";
		font-size: 38px;
		font-weight: 700;
		color: #d80505;
	}
}



