body {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	margin: 0;
	padding: 0;
	background: #fff;
	color: #f5f5f5;
}

.navbar {
	background-color: #111173 !important;

	position: fixed;
	z-index: 10;
	width: 100%;
}

.navbar-brand,
.nav-link {
	color: #c8ff00 !important;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
}

.nav-link:hover {
	color: #ffffff !important;
}

#main {
	background: url('../images/img2.png') center center no-repeat;
	background-size: cover;
	position: relative;
}

#main::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
}

#main .container {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 80px 20px;
}

#main .container h1 {
	font-size: 3rem;
	font-weight: 700;
}

#main .container p {
	font-size: 1.25rem;
	font-weight: 600;
}

#main .container .btn-lg {
	font-size: 1.3rem;
	font-weight: 700;
	padding: 0.6rem 1.5rem;
	animation: pulse 1.5s ease-in-out infinite;
}

.age-warning {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	background: linear-gradient(90deg, #6d0000, #000);
	color: #fff;
	padding: 12px 20px;
	border-radius: 12px;
	font-family: 'Segoe UI', sans-serif;
	font-size: 180px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
	animation: pulse 2s infinite;
	max-width: 600px;
	margin: 20px auto;
	text-align: center;
}

.age-icon {
	background: #ff0000;
	color: #fff;
	font-weight: bold;
	/* font-size: 20px; */
	padding: 8px 14px;
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(255, 0, 0, 0.7);
	animation: shake 1.5s infinite;
}

/* Animations */
@keyframes pulse {
	0% {
		box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
	}
	50% {
		box-shadow: 0 0 20px rgba(255, 0, 0, 0.9);
	}
	100% {
		box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
	}
}

@keyframes shake {
	0%,
	100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-2px);
	}
	75% {
		transform: translateX(2px);
	}
}

@media (max-width: 850px) {
	.age-warning {
		flex-direction: column;
		font-size: 120px;
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

.about {
	background: #f5f5f5;
	color: #1a1a1a;
	padding: 100px 0;
	font-family: 'Roboto', sans-serif;
}

@media (min-width: 768px) {
	.about .container .row {
		display: flex;
		align-items: stretch;
	}

	.about .col-md-6 {
		flex: 1;
		display: flex;
		flex-direction: column;
	}
}

.about img {
	border-radius: 1rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	width: 100%;
	height: auto;
	object-fit: cover;
	flex: 1;
}
.about h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: #002e8b;
	margin-bottom: 1rem;
	position: relative;
}

.about p {
	line-height: 1.8;
	margin-bottom: 1rem;
}
.about .col-md-6:last-child {
	background: #c1c3c6;
	padding: 2rem;
	border-radius: 0.5rem;
	border: 2px solid #002e8b;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-section {
	max-width: 1000px;
	margin: 60px auto;
	background: #1a1a1a;
	color: #fff;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 0 20px rgba(255, 0, 120, 0.2);
	font-family: 'Segoe UI', sans-serif;
}

.faq-title {
	font-size: 28px;
	text-align: center;
	margin-bottom: 25px;
	color: #c8ff00;
}

.faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 15px;
	font-size: 18px;
	color: #c8ff00;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 20px;
	font-size: 22px;
	transition: transform 0.3s ease;
}

.faq-question.active::after {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.5s ease,
		padding 0.3s ease;
	padding: 0 15px;
}

.faq-answer p {
	margin: 10px 0;
	font-size: 16px;
	line-height: 1.5;
	color: #ccc;
}

.faq-question.active + .faq-answer {
	max-height: 300px;
	padding: 10px 15px 20px;
}

#reviews {
	background: #1e1e1e;
	padding: 80px 0;
}

#reviews .card {
	background-color: #2a2a2a;
	border: none;
	border-top: 3px solid #c8ff00;
}

#promo {
	background: linear-gradient(135deg, #2f2f2f, #3f3f3f);
	padding: 80px 0;
}

#faq {
	background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
	padding: 80px 0;
}

.accordion-button {
	background-color: #2a2a2a;
	color: #c8ff00;
	font-weight: bold;
	border-left: 4px solid #c8ff00;
}

.accordion-button:not(.collapsed) {
	background-color: #3a3a3a;
	color: #ffffff;
	border-left: 4px solid #c8ff00;
}

footer {
	background: #08082d;
	padding: 40px 0;
	border-top: 2px solid #c8ff00;
	text-align: center;
}

.btn-warning {
	background-color: #c8ff00;
	border: none;
	color: #1a1a1a;
	font-weight: bold;
	padding: 12px 30px;
	border-radius: 0;
	box-shadow: 0 0 10px rgba(4, 255, 0, 0.7);
}

.btn-warning:hover {
	background-color: rgb(0, 229, 46);
	color: #1a1a1a;
	box-shadow: 0 0 15px rgba(23, 229, 0, 0.7);
}

.light-block {
	background: #f5f5f5;
	color: #1a1a1a;
	padding: 40px 20px;
	border-radius: 0.5rem;
}

footer .align-items-center {
	justify-content: center;
}
.navbar-brand {
	font-size: 1.5rem;
}

.nav-link {
	font-size: 1.25rem !important;
}

#promo {
	background: #1a1a1a;
	color: #eaeaea;
	padding: 100px 0;
	font-family: 'Roboto', sans-serif;
}

#promo .container .row {
	display: flex;
	align-items: stretch;
}

#promo .col-md-6 {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem;
}

#promo h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.9rem;
	font-weight: 700;
	color: #c8ff00;
	margin-bottom: 1rem;
	position: relative;
}

#promo p {
	font-size: 1.25rem;
	line-height: 1.75;
	margin-bottom: 1rem;
}

#promo img {
	width: 100%;
	border-radius: 1rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
	object-fit: cover;
}
#cookieConsent {
	position: fixed;
	bottom: 20px;
	right: 20px;
	max-width: 320px;
	background: rgba(43, 43, 61, 0.95);
	color: #f5f5f5;
	padding: 1.5rem;
	border: 2px solid #c8ff00;
	border-radius: 0.75rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	font-family: 'Roboto', sans-serif;
	font-size: 0.9rem;
	z-index: 1050;
}
#cookieConsent p {
	margin: 0 0 1rem;
	line-height: 1.4;
}
#cookieConsent .btn {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	border-radius: 0.5rem;
	transition: transform 0.2s ease;
}
#cookieConsent .btn-warning {
	background-color: #c8ff00;
	border: none;
	color: #1a1a1a;
}
#cookieConsent .btn-warning:hover {
	transform: scale(1.05);
}
#cookieConsent .btn-secondary {
	background-color: #555;
	border: none;
	color: #f5f5f5;
}
#cookieConsent .btn-secondary:hover {
	background-color: #777;
}
/* Styles for Age Verification Modal */

#ageVerificationModal {
	display: none;
}
#ageVerificationModal .modal-content {
	border-radius: 1rem;
	padding: 1rem;
	background: #111173;
}
#ageVerificationModal .modal-header {
	border-bottom: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
#ageVerificationModal .modal-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #c8ff00;
}
#ageVerificationModal .modal-body {
	font-family: 'Roboto', sans-serif;
	font-size: 1.125rem;
	line-height: 1.6;
	color: #eaeaea;
	padding: 1rem 1.5rem;
}
#ageVerificationModal .modal-body ul {
	list-style: none;
	padding: 0;
	margin: 1rem 0;
}
#ageVerificationModal .modal-body li {
	display: flex;
	align-items: center;
	margin-bottom: 0.75rem;
}
#ageVerificationModal .modal-body li img {
	width: 28px;
	height: 28px;
	margin-right: 0.75rem;
}
#ageVerificationModal .modal-footer {
	border-top: none;
	padding: 1rem 1.5rem;
	display: flex;
	justify-content: center;
}
#ageVerificationModal .btn-warning {
	background-color: #c8ff00;
	border: none;
	color: #111173;
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	transition:
		background-color 0.3s ease,
		transform 0.2s ease;
}
#ageVerificationModal .btn-warning:hover {
	background-color: rgb(0, 229, 8);
	transform: scale(1.05);
}
/* Footer Section Styles */
footer {
	background: #111173;
	color: #eaeaea;
	padding: 40px 0;
	font-family: 'Roboto', sans-serif;
}
footer h5,
footer h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #c8ff00;
	margin-bottom: 1rem;
}
footer a {
	color: #eaeaea;
	text-decoration: none;
	transition: color 0.3s ease;
}
footer a:hover {
	color: #c8ff00;
}
footer .btn-warning {
	background-color: #c8ff00;
	border: none;
	color: #1a1a1a;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	transition: background-color 0.3s ease;
}
footer .btn-warning:hover {
	background-color: #e5c100;
}
footer .newsletter-form input {
	border-radius: 0.25rem;
}
footer .newsletter-form button {
	margin-top: 0.5rem;
}
footer .responsible-links ul {
	/* list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	gap: 1.5rem; */
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	justify-content: center;

	list-style: none;
	padding-left: 0;
	margin: 20px 0;
}
footer .responsible-links li {
	display: flex;
	align-items: center;
}
footer .responsible-links img {
	margin-right: 0.5rem;
}
footer .bottom-note {
	margin-top: 1.5rem;
	text-align: center;
	font-size: 0.9rem;
}
/* Contact Section Styles */
#contact {
	color: #eaeaea;
	padding: 130px 0 !important;
	font-family: 'Roboto', sans-serif;
}

#contact h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 2.75rem;
	color: #c8ff00;
	margin-bottom: 2rem;
	text-align: center;
	position: relative;
}

#contact .row.align-items-center {
	display: flex;
	flex-wrap: wrap;
}

#contact .col-md-6 {
	flex: 1;
	padding: 1rem;
}

/* Form block */
#contactForm {
	/* background: #2b2b3d;
	padding: 2rem;
	border-radius: 0.5rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); */

	background: #c1c3c6 !important;
	padding: 2rem;
	border-radius: 0.5rem;
	border: 2px solid #002e8b;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#contactForm .form-label {
	font-weight: 600;
	color: #c8ff00;
}

#contactForm .form-control {
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 0.5rem;
	color: #eaeaea;
	padding: 0.75rem;
	margin-bottom: 1.5rem;
}

#contactForm .form-control:focus {
	border-color: #c8ff00;
	box-shadow: none;
}

#contactForm .btn-warning {
	background-color: #c8ff00;
	border: none;
	color: #1a1a1a;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	padding: 0.75rem 2rem;
	border-radius: 0.5rem;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease;
}

#contactForm .btn-warning:hover {
	background-color: rgb(73, 229, 0);
	transform: translateY(-2px);
}

/* Image block */
#contact img {
	width: 100%;
	border-radius: 0.5rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
	object-fit: cover;
	display: block;
}

/* Responsive adjustments */
@media (max-width: 767px) {
	#contact h2 {
		font-size: 2.25rem;
	}
	#contact .btn-warning {
		width: 100%;
		text-align: center;
	}
}
/* Contact Section Styles - Light Background */
#contact {
	background: #f5f5f5;
	color: #333333;
	padding: 100px 0;
	font-family: 'Roboto', sans-serif;
}

#contact h2 {
	color: #2b2b3d;
}

#contact .form-control {
	background: #ffffff;
	border: 1px solid #cccccc;
	color: #333333;
}

#contactForm {
	background: #ffffff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#contactForm .form-label {
	color: #2b2b3d;
}

#contact img {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Privacy Policy Section Styles */
#privacy {
	background: #f5f5f5;
	color: #333333;
	padding: 140px 0 !important;
	font-family: 'Roboto', sans-serif;
}

#privacy h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.75rem;
	font-weight: 700;
	color: #2b2b3d;
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
}

#privacy h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #2b2b3d;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	position: relative;
}

#privacy p,
#privacy ul {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

#privacy ul {
	padding-left: 1.25rem;
}

#privacy ul li {
	margin-bottom: 0.5rem;
}

#privacy a {
	color: #007bff;
	text-decoration: underline;
}

#privacy a:hover {
	color: #0056b3;
}

@media (max-width: 767px) {
	#privacy h1 {
		font-size: 1.7rem;
	}
	#privacy h2 {
		font-size: 1.5rem;
	}
}
/* Terms & Conditions Section Styles */
#terms {
	background: #f5f5f5;
	color: #333333;
	padding: 140px 0 30px !important;
	font-family: 'Roboto', sans-serif;
}

#terms h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: #2b2b3d;
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
}

#terms h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #2b2b3d;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	position: relative;
}

#terms p,
#terms ul {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

#terms ul {
	padding-left: 1.25rem;
}

#terms ul li {
	margin-bottom: 0.5rem;
}

#terms a {
	color: #007bff;
	text-decoration: underline;
	transition: color 0.3s ease;
}

#terms a:hover {
	color: #0056b3;
}

@media (max-width: 767px) {
	#terms {
		padding: 140px 0 30px !important;
		font-family: 'Roboto', sans-serif;
	}
	#terms h1 {
		font-size: 1.8rem;
	}
	#terms h2 {
		font-size: 1.5rem;
	}
}
/* Cookie Policy Section Styles */
#cookie {
	background: #f5f5f5;
	color: #333333;
	padding: 140px 0 !important;
	font-family: 'Roboto', sans-serif;
}

#cookie h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.75rem;
	font-weight: 700;
	color: #2b2b3d;
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
}

#cookie h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #2b2b3d;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	position: relative;
}

#cookie p,
#cookie ul {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

#cookie ul {
	padding-left: 1.25rem;
}

#cookie ul li {
	margin-bottom: 0.5rem;
}

#cookie a {
	color: #007bff;
	text-decoration: underline;
	transition: color 0.3s ease;
}

#cookie a:hover {
	color: #0056b3;
}

@media (max-width: 767px) {
	#cookie h1 {
		font-size: 2.25rem;
	}
	#cookie h2 {
		font-size: 1.5rem;
	}
}
/* Disclaimer Section Styles */
#disclaimer {
	background: #f5f5f5;
	color: #333333;
	padding: 80px 0;
	font-family: 'Roboto', sans-serif;
}

#disclaimer h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.75rem;
	font-weight: 700;
	color: #2b2b3d;
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
}

#disclaimer h1::after {
	content: '';
	display: block;
	width: 100px;
	height: 4px;
	background: #c8ff00;
	margin: 0.5rem auto 0;
}

#disclaimer p {
	font-size: 1.125rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

#disclaimer p strong {
	color: #2b2b3d;
}

@media (max-width: 767px) {
	#disclaimer h1 {
		font-size: 2.25rem;
	}
	#disclaimer p {
		font-size: 1rem;
	}
}
/* Ответственные ссылки – адаптивное расположение иконок */
.responsible-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}

.responsible-links li {
	display: flex;
	align-items: center;
}

.responsible-links img {
	height: 100px;
	margin-right: 0.5rem;
	border-radius: 5px;
}

/* На мобильных экранах делаем чуть больше отступов и центруем */
@media (max-width: 576px) {
	.responsible-links ul {
		gap: 1rem;
	}
	.responsible-links li {
		flex: 0 1 45%;
		justify-content: center;
		margin-bottom: 1rem;
	}
}
