@import url("css2.css");

:root {
	--primary-bg: #0F172A;
	--secondary-bg: #1E293B;
	--card-bg: rgba(30, 41, 59, 0.8);
	--text-primary: #F1F5F9;
	--text-secondary: #CBD5E1;
	--accent-primary: #06B6D4;
	--accent-secondary: #0891B2;
	--accent-glow: #67E8F9;
	--button-primary: #06B6D4;
	--button-secondary: #1E293B;
	--border-color: rgba(6, 182, 212, 0.3);
	--border-glow: rgba(6, 182, 212, 0.6);
	
	--shadow-glow: 0 0 20px rgba(6, 182, 212, 0.4);
	--shadow-deep: 0 10px 30px rgba(0, 0, 0, 0.6);
	--shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
	--gradient-primary: linear-gradient(135deg, #06B6D4, #0891B2, #06B6D4);
	--gradient-bg: linear-gradient(135deg, #0F172A, #1E293B, #0F172A);
	--gradient-glass: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
}

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

p {
	margin: 0;
}

a,
button,
input,
textarea {
	outline: 0;
	transition: all .5s ease;
}

a {
	text-decoration: none !important;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-secondary, "Inter Tight", sans-serif);
	font-weight: 400;
	font-style: normal;
	background: var(--gradient-bg);
	color: var(--text-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-primary, "Black Ops One", system-ui);
	font-weight: 700;
}


header,
.banner,
.section,
.h2,
.para,
.flexbox,
footer {
	width: 100%;
	float: left;
}

.logo {
	color: var(--text-primary);
	font-family: var(--font-primary, "Black Ops One", system-ui);
	font-size: 2rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.logo img {
	width: 200px;
}

header {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 15px;
	font-size: 30px;
	font-weight: 800;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .1);

}

.navbar {
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(20px);
	color: var(--text-primary);
	padding: 1.2rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	float: left;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	border-bottom: 2px solid var(--accent-primary);
	box-shadow: var(--shadow-glow);
}

.logo {
	font-size: 1.5rem;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 1.5rem;
	margin: 0;
}

.nav-links li a {
	color: var(--text-primary);
	text-decoration: none;
	padding: 0.7rem 1.5rem;
	border-radius: 30px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.nav-links li a:hover {
	color: var(--accent-primary);
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow);
	border-color: var(--border-color);
	background: rgba(6, 182, 212, 0.1);
}

/* Navigation Icons */
.nav-icon {
	width: 18px;
	height: 18px;
	margin-right: 0.5rem;
	transition: all 0.3s ease;
}

.nav-links li a:hover .nav-icon {
	transform: scale(1.1) rotate(5deg);
	filter: drop-shadow(0 0 5px rgba(6, 182, 212, 0.6));
}

.hamburger {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Responsive Part */
@media (max-width: 768px) {
	.nav-links {
		display: none;
		flex-direction: column;
		background-color: #3b5d2a;
		position: absolute;
		top: 70px;
		right: 10px;
		width: 200px;
		padding: 1rem;
		z-index: +999;
	}

	.nav-links.show {
		display: flex;
	}

	.hamburger {
		display: block;
	}
}

.container {
	width: 100%;
	max-width: 1300px;
	padding: 0 15px;
}

.banner {
	position: relative;
	padding: 120px 0 40px 0;
	background: var(--gradient-bg);
	color: var(--text-primary);
	margin-top: 80px;
}

.banner .container {
	min-height: 300px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.h-low .container {
	min-height: 100px;
}

.bannercontent {
	width: 600px;
	max-width: 100%;
	padding: 40px;
	float: left;
	position: relative;
}

.bannercontent:after {
	content: "";
	width: 50px;
	height: 50px;
	background-color: transparent;
	border-right: #fff solid 4px;
	border-bottom: #fff solid 4px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.bannercontent::before {
	content: "";
	width: 50px;
	height: 50px;
	background-color: transparent;
	border-left: #fff solid 4px;
	border-top: #fff solid 4px;
	position: absolute;
	top: 0;
	left: 0;
}

h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin: 0 0 1.5rem;
	float: left;
	text-align: center;
	width: 100%;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

h1:last-child {
	margin: 0 !important;
}

.banner p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: var(--text-secondary);
}

.section {
	padding: 20px 0;
	position: relative;
}

.section .container {
	position: relative;
	z-index: 2;
}

.h2 {
	font-size: 2.2rem;
	font-weight: 600;
	margin: 0 0 1.5rem;
	color: var(--text-primary);
}

.para {
	font-size: 1.1rem;
	line-height: 1.7;
	margin: 0 0 1.5rem;
	color: var(--text-secondary);
}

.para:last-child {
	margin: 0;
}

.flexbox {
	display: flex;
	align-items: center;
	margin: 0 0 20px;
}

.flexbox:last-child {
	margin: 0;
}

.flexbox>p,
.flexbody {
	flex: 1;
}

.flexbox>p:first-child,
.flexbody:first-child {
	margin: 0 30px 0 0;
}

.flexbox>p:last-child,
.flexbody:last-child {
	margin: 0 0 0 30px;
}

.flexbox>img {
	width: 100%;
	max-width: 45%;
	border-radius: 25px;
	box-shadow: var(--shadow-card);
	border: 2px solid var(--border-color);
}

/* SVG Icons Styling */
.svg-icon {
	width: 100%;
	max-width: 45%;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-glass);
	backdrop-filter: blur(20px);
	border-radius: 30px;
	border: 2px solid var(--border-color);
	box-shadow: var(--shadow-card);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.svg-icon::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(from 0deg, transparent, var(--accent-primary), transparent);
	animation: rotate 8s linear infinite;
	opacity: 0.1;
	z-index: -1;
}

.svg-icon:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: var(--shadow-glow), var(--shadow-card);
	border-color: var(--border-glow);
}

.svg-icon svg {
	width: 200px;
	height: 200px;
	filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.3));
	transition: all 0.3s ease;
}

.svg-icon:hover svg {
	filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.6));
	transform: scale(1.05);
}

@keyframes rotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.clr {
	color: var(--accent-primary);
}

.h2 span {
	font-size: 1rem;
	display: block;
	font-weight: 400;
	margin: 0 0 0.5rem;
	color: var(--text-secondary);
}

.section6 {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/img-2.jpg") center fixed;
	background-size: cover;
	color: #fff;
}

.video {
	width: 700px;
	max-width: 100%;
	height: 400px;
	float: left;
	margin: 0 0 20px;
	position: relative;
}

iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	float: left;
	top: 0;
	left: 0;
}

.btn-cu {
	width: auto;
	padding: 1.2rem 2.5rem !important;
	background: var(--gradient-primary);
	backdrop-filter: blur(20px);
	float: left;
	color: var(--primary-bg) !important;
	font-size: 1.1rem;
	font-weight: 800;
	border-radius: 30px;
	text-align: center;
	border: 2px solid var(--border-glow);
	box-shadow: var(--shadow-glow);
	transition: all 0.3s ease;
}

.btn-cu:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 15px 40px rgba(6, 182, 212, 0.5);
}

/* Play Button with Icon */
.play-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
}

.btn-icon {
	width: 20px;
	height: 20px;
	transition: all 0.3s ease;
}

.play-button:hover .btn-icon {
	transform: scale(1.2) rotate(5deg);
}

.btn-cus {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff !important;
}

.btn-cu-black {
	background-color: #3e4b31;
	color: #fff !important;
}

.btn-cus-black {
	background-color: transparent;
	border: 1px solid #3e4b31;
	color: #3e4b31 !important;
}

.btn-box {
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin: 0 0 20px;
}

.h2:last-child {
	margin: 0;
}

.section2 {
	background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url("../images/banner.jpg");
	background-size: cover;
}


.table-flex {
	width: 100%;
	float: left;
	background-color: #3e4b31;
	color: #fff;
}

h4:last-child {
	margin: 0 !important;
}

ul {
	list-style: none;
	padding: 0;
	margin-top: 10px;
	text-align: left;
}

ul li {
	color: #4CAF50;
	margin-bottom: 6px;
	font-size: 14px;
}

ul li span {
	color: #444;
}

.numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0 0 15px;
	width: 100%;
	float: left;
}

.section3 {
	background: #2b225e;
	color: #fff;
}

.center {
	width: 100%;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	margin: 0 0 20px;
}

.center:last-child {
	margin: 0 !important;
}

.center>img {
	width: auto;
	max-width: 100%;
	float: left;
}

.container>img {
	width: 100%;
	float: left;
	margin: 0 0 20px;
}

.flexgroup>img {
	width: 33%;
	margin: 0 0 20px;
}

.flexgroup {
	width: 100%;
	float: left;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flexgroupbox {
	width: 33%;
	padding: 15px;
	margin: 0 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	color: #000;
	background-color: #fff;
	text-align: center;
	box-shadow: rgba(0, 0, 0, .1) 2px 2px 2px 2px;
}

.img-holder {
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 20px;
}

.img-holder>img {
	width: 100px;
	max-width: 100%;
	float: left;
}

.flex-cu {
	width: 49%;
	align-items: flex-start;
	text-align: left;
}

.flexgroupbox>img {
	width: 100%;
	float: left;
	object-fit: cover;
	height: 300px;
	margin: 0 0 20px;
}

h4 {
	font-size: 20px;
}

.flex {
	width: 100%;
	float: left;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: flex-start;
	border-left: 6px solid #fff;
	padding: 15px;
	margin: 0 0 20px;
}

.content {
	width: 800px;
	float: left;
	max-width: 100%;
	text-align: center;
	background: var(--gradient-glass);
	backdrop-filter: blur(20px);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	color: var(--text-primary);
	border: 2px solid var(--border-color);
	box-shadow: var(--shadow-card);
}

.formsection {
	background: #fff;
	background-size: cover;
	color: #000;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
}

.formsection .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 3;
}

.formsection .para {
	text-align: center;
	font-size: 14px;
	line-height: 1.5;
}

.formbox {
	width: 100%;
	float: left;
	max-width: 800px;
	background: #fff;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.formfield {
	width: 100%;
	height: 50px;
	margin: 0 0 10px;
	padding: 0 10px;
	border: none;
	background: #f3f3f3;
	border: solid 1px #333;
	color: #000;
	font-size: 15px;
}

.textarea-cu {
	width: 100%;
	height: 100px;
	margin: 0 0 10px;
	padding: 10px;
	border: none;
	background: #f3f3f3;
	border: solid 1px #333;
	color: #000;
	font-size: 15px;
}

.formfield::placeholder,
.textarea-cu::placeholder {
	color: #333;
}

.formbutton {
	width: 100%;
	float: left;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: none;
	background: #2b225e;
	color: #fff;
	cursor: pointer;
	outline: 0 !important;
}

footer {
	background: var(--secondary-bg);
	padding: 3rem 0;
	color: var(--text-primary);
	border-top: 2px solid var(--border-color);
}

footer .footer-text {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	float: left;
}

.footerlinks {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 20px;
	flex-wrap: wrap;
	margin: 0 0 20px;
}

footer .para>a {
	color: var(--accent-primary);
	text-decoration: underline !important;
}

.footerlinks img {
	width: 90px;
}

.img3 {
	width: 160px !important;
}

.ssl-img img {
	width: 90px;
}

.footerlinks a {
	font-size: 1rem;
	color: var(--text-primary);
	margin: 0 1rem;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	transition: all 0.3s ease;
}

.footerlinks a:hover {
	color: var(--accent-primary);
	background: rgba(6, 182, 212, 0.1);
	transform: translateY(-2px);
}

.footerlinks a:hover {
	text-decoration: underline !important;
}

.copyrights {
	font-size: 14px;
	color: #fff;
}

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

.div {
	width: 100%;
	float: left;
	height: 1px;
	background-color: #fff;
	margin: 0 0 20px;
}

.cookiesection {
	width: 100%;
	float: left;
	min-height: calc(100vh - 126px);
	padding: 40px 0;
	margin-top: 72px;
}

.cookiesection h2 {
	font-size: 22px;
	font-weight: 600;
}

.cookiesection p {
	font-size: 14px;
	line-height: 20px;
}

.cookiesection p strong {
	font-weight: 600;
}

.cookiesection p .bolder {
	display: block;
	margin: 30px 0 10px;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
}

.backbutton {
	float: left;
	display: inline-flex;
	align-items: center;
	margin: 30px 0 20px;
	padding: 6px 8px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	color: var(--blue-dark) !important;
	border: solid 1px var(--blue-dark);
	;
}

.backbutton img {
	width: 15px;
	margin: 0 5px 0 0;
	transition: all .3s ease;
}

.backbutton:hover {
	background: var(--blue-dark);
	;
	color: #fff !important;
}

.backbutton:hover img {
	filter: saturate(0) brightness(10);
}

.alert {
	background: var(--gradient-glass) !important;
	backdrop-filter: blur(20px) !important;
	color: var(--text-primary) !important;
	position: fixed !important;
	bottom: 20px;
	margin-bottom: 0 !important;
	left: 26px;
	max-width: 100%;
	text-align: center;
	width: 350px;
	margin: auto;
	display: none;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	padding: 2rem;
	border-radius: 25px;
	border: 2px solid var(--border-color);
	box-shadow: var(--shadow-card);
}

.alert-dismissible {
	z-index: +3;
}

.alert-close {
	border: 2px solid var(--border-color);
	border-radius: 20px;
	background: var(--gradient-primary);
	color: var(--primary-bg);
	padding: 0.8rem 1.5rem !important;
	width: auto;
	height: auto;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.alert-close:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow);
}

.hide {
	display: none;
}

span {
	font-weight: bold;
}

.alert p {
	font-size: 1rem;
	margin: 0 0 1.5rem !important;
	width: 100%;
	float: left;
	color: var(--text-secondary);
}

.hide {
	display: none;
}

.alert-close {
	padding: 0px 9px !important;
	border: 1px solid transparent;
	border-radius: 4px;
	background: #862041;
	color: white;
	margin: 0 !important;
	font-size: 14px;
}


@media (max-width:800px) {

	.banner .container {
		min-height: 250px;
	}

	.carousel-item {
		height: 250px;
	}

	.desktop {
		display: none;
	}

	h1 {
		font-size: 2.5rem;
	}

	.h2 {
		font-size: 1.8rem;
	}

	.para {
		font-size: 1rem;
	}

	.flexbox {
		flex-direction: column;
	}

	.flexbox>img {
		max-width: 100%;
		order: 1;
		margin: 0 0 2rem;
	}

	.svg-icon {
		max-width: 100%;
		height: 250px;
		order: 1;
		margin: 0 0 2rem;
	}

	.svg-icon svg {
		width: 150px;
		height: 150px;
	}

	.flexbody,
	.flexbox>.para {
		padding: 0 !important;
		order: 2;
	}

	footer .footer-text {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.flexgroupbox {
		width: 100%;
	}

	.formfield {
		width: 100%;
	}

	.formbutton {
		width: 100%;
	}

	.flexbody {
		margin: 0 !important;
		padding: 2rem !important;
	}

	.img-size {
		width: 100%;
		margin: 0 0 2rem;
	}

	.footerlinks {
		justify-content: center;
		margin: 1.5rem 0;
	}

	.hilight-font {
		font-size: 1rem;
	}

	.flexbody {
		margin: 0 !important;
		padding: 2rem !important;
		width: 100%;
		float: left;
	}

	.step {
		width: 100%;
	}

	.footerlinks:first-child {
		width: 100%;
	}

	.form-box,
	.info-box {
		width: 100%;
	}

	.alert {
		width: 90%;
		left: 5%;
		padding: 1.5rem;
	}

}

.agebtn{
  width:auto;
  height:56px;
  border-radius:4px;
  padding:0 65px 0 20px;
    margin-top: 20px;
    display: inline-flex;
  align-items: center;
    background: #3ea810;
    color: #fff!important;
  position: relative;
  font:600 18px 'Roboto',sans-serif;
  text-transform: uppercase;
  overflow: hidden;
  transition: all .3s ease;
 text-decoration: none;
      
}
.agebtn:before{
  content:'';
  width:45px;
  height:100%;
  background:#49c214;
  position: absolute;
  right: 0;
  top: 0;
}
.agebtn:after{
    content:'';
    top:30px;
    right:4px;
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #fff;
    border-width: 12px;
    margin-top: -15px;
}

.agebtn:hover{ background:#50cb19;}
.modal-open .modal { background: #000;}
.modal-custom{
  padding: 80px;
  max-width: 780px !important;
}
.modal-content h3{
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.age-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}
.age-text {
    color: var(--text-secondary);
    font-size: 1.4rem;
    margin-bottom: 2rem;
}
.age-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.age-btn {
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    flex: 1 1;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.2rem 2rem;
    transition: all .3s ease;
    backdrop-filter: blur(10px);
}
.yes-btn {
    background: var(--gradient-primary);
    color: var(--primary-bg);
    border-color: var(--border-glow);
}
.no-btn {
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}
.age-disclaimer {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}
.modal-content{
	background: var(--gradient-glass) !important; 
	border-radius: 30px;
	backdrop-filter: blur(20px); 
	border: 2px solid var(--border-color); 
	padding: 3rem 2rem; 
	color: var(--text-primary);
	text-align: center;
	box-shadow: var(--shadow-card);
}

/* Скрытие поп-апов по умолчанию */
.modal {
    display: none !important;
}

.modal.show {
    display: block !important;
}
.modal-content h2{ font:600 22px 'Roboto',sans-serif;}
.modal-content h2 span{ font-size:18px; font-weight:400; display:block; margin:10px 0 0;}
.yes-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-glow);
}
.no-btn:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

.modal-custom{ padding: 50px !important;}