* {
	box-sizing: border-box;
	font-family: Roboto, sans-serif;
}
* {
	box-sizing: border-box;
	margin: 0;
}
a {
	text-decoration: none;
	color: inherit;
	font-weight: bold;
}
html {
	scroll-behavior: smooth;
}

body {
	max-width: 1300px;
   margin: 0 auto;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	background-color: #001432;
	color: #ffffff;
	padding-top: 50px;
}
.conteiner {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 15px;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, #001432 0%, #004182 50%, #0066CC 100%);
	box-shadow: 0 4px 20px rgba(0, 20, 50, 0.3);
	padding: 5px 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
	border-bottom: 2px solid rgba(0, 102, 204, 0.3);
}
.header_conatiner {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 90px;
}
.header_logo img {
	height: 25px !important;
	width: auto !important;
	object-fit: contain;
	max-width: 120px;
}
/* Навигация */
.header_nav {
	display: flex;
	align-items: center;
	gap: 30px;
}

.nav_menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 25px;
}

.nav_menu li {
	position: relative;
}

.nav_menu a {
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 6px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.nav_menu a:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #00ff88, #0066CC);
	transition: width 0.3s ease;
}

.nav_menu a:hover:before {
	width: 100%;
}

.nav_menu a:hover {
	background: rgba(0, 102, 204, 0.15);
	color: #00ff88;
	transform: translateY(-2px);
}

.header_button {
	display: flex;
	gap: 12px;
	align-items: center;
}

@media (max-width: 1024px) {
	.nav_menu {
		gap: 15px;
	}
	.nav_menu a {
		font-size: 13px;
		padding: 6px 12px;
	}
}

@media (max-width: 768px) {
	.header_nav {
		flex-direction: column;
		gap: 15px;
	}
	.nav_menu {
		gap: 10px;
		flex-wrap: wrap;
		justify-content: center;
	}
	.nav_menu a {
		font-size: 12px;
		padding: 4px 8px;
	}
	.header_button {
		gap: 8px;
	}
}

/* Спортивные кнопки */
.btn {
	display: inline-block;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	background: linear-gradient(135deg, #0066CC, #004182);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn:before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.btn:hover:before {
	left: 100%;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 10px rgba(0, 102, 204, 0.3);
}

@media (max-width: 768px) {
	.btn {
		padding: 10px 18px;
		font-size: 12px;
	}
}

/* Анимация для главной кнопки регистрации */
@keyframes pulse {
	0% { 
		box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4); 
		background: linear-gradient(135deg, #00ff88, #0066CC);
	}
	50% { 
		box-shadow: 0 6px 25px rgba(0, 255, 136, 0.6); 
		background: linear-gradient(135deg, #0066CC, #00ff88);
	}
	100% { 
		box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4); 
		background: linear-gradient(135deg, #00ff88, #0066CC);
	}
}

.glowing {
	animation: pulse 2s infinite;
	background: linear-gradient(135deg, #00ff88, #0066CC) !important;
	border-color: #00ff88;
}

.button_1 {
	background: linear-gradient(135deg, #00ff88, #0066CC);
	border-color: #00ff88;
}

.button_2 {
	background: transparent;
	border: 2px solid #0066CC;
	color: #ffffff;
}

.button_2:hover {
	background: linear-gradient(135deg, #0066CC, #004182);
	border-color: #0066CC;
}

.button_3 {
	background: linear-gradient(135deg, #FF6B35, #F7931E);
	border-color: #FF6B35;
}

.button_3:hover {
	background: linear-gradient(135deg, #F7931E, #FF6B35);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

h1 {
	font-size: 50px;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.4;
}
@media (max-width: 768px) {
	h1 {
		font-size: 30px;
	}
}
h2 {
	font-size: 30px;
	font-weight: bold;
}
@media (max-width: 768px) {
	h2 {
		font-size: 26px;
		margin-top: 10px;
	}
}
.main_conteiner {
	position: relative;
	margin-top: 40px;
}
.main_text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
main img {
	display: flex;
	align-items: center;
	justify-content: center;
}
.main p {
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	line-height: 1.4;
}

.photo {
	margin: 0 auto;
	width: 70%;
	height: 80%;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 40px;
}
@media (max-width: 768px) {
	.photo {
		width: 100%;
		margin-bottom: 20px;
	}
}
.main h1 {
	margin-bottom: 50px;
}
@media (max-width: 768px) {
	.main h1 {
		margin-bottom: 20px;
	}
}
.popup {
	width: 470px;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #004182;
	color: #ffffff;
	border-radius: 20px;
	padding: 20px 25px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	gap: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
@media (max-width: 768px) {
	.popup {
		width: 95%;
		padding: 6px;
		gap: 10px;
		border-radius: 10px;
	}
}
.popup_block {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;	
}
@media (max-width: 768px) {
	.popup_block {
		display: flex;
		justify-content: space-around;	
	}
}

.popup.show {
	opacity: 1;
	visibility: visible;
}

.popup-close {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.476);
	font-size: 20px;
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 6px;
}
@media (max-width: 768px) {
	.popup-close {
		font-size: 16px;
		right: 6px;
		top: 3px;
	}
}
.block_txt {
	width: 40%;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.block_txt span {
	font-size: 35px;
	color: #ffffff;
	font-weight: 700;
}
@media (max-width: 768px) {
	.block_txt span {
		font-size: 24px;
	}
}
.block_txt p {
	color: #ffffff;
	font-size: 18px;
}
@media (max-width: 768px) {
	.block_txt p {
		font-size: 14px;
	}
}
.block_btn {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 18px;
}
@media (max-width: 768px) {
	.block_btn {
		font-size: 14px;
	}
}

/* FAQ стили */
.faq-section {
	margin-top: 40px;
}

.faq-item {
	background: rgba(0, 65, 130, 0.1);
	border: 1px solid rgba(0, 102, 204, 0.2);
	border-radius: 12px;
	padding: 25px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.faq-item:hover {
	background: rgba(0, 65, 130, 0.15);
	border-color: rgba(0, 102, 204, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 20, 50, 0.3);
}

.faq-item h2 {
	color: #00ff88;
	font-size: 22px;
	margin-bottom: 15px;
	font-weight: 600;
}

.faq-item p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
	color: #ffffff;
}

.faq-item ul {
	margin-left: 20px;
	color: #ffffff;
}

.faq-item li {
	margin-bottom: 8px;
	font-size: 15px;
	line-height: 1.5;
}

.faq-item li:before {
	content: '•';
	color: #00ff88;
	font-weight: bold;
	margin-right: 8px;
}

.cta-section {
	text-align: center;
	margin-top: 50px;
	padding: 40px 20px;
	background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 20, 50, 0.2));
	border-radius: 15px;
	border: 1px solid rgba(0, 102, 204, 0.3);
}

.cta-section h2 {
	color: #ffffff;
	font-size: 28px;
	margin-bottom: 15px;
}

.cta-section p {
	font-size: 18px;
	margin-bottom: 25px;
	color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
	.faq-item {
		padding: 20px;
	}
	
	.faq-item h2 {
		font-size: 18px;
	}
	
	.faq-item p {
		font-size: 14px;
	}
	
	.cta-section {
		padding: 30px 15px;
	}
	
	.cta-section h2 {
		font-size: 24px;
	}
	
	.cta-section p {
		font-size: 16px;
	}
}
