/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	line-height: 1.6;
}

body {
	font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
	background: #0a0a0a;
	color: #00ff41;
	overflow-x: hidden;
	position: relative;
}

/* Matrix Background Effect */
.matrix-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
	z-index: -2;
	animation: matrixPulse 4s ease-in-out infinite alternate;
}

/* Matrix Rain Effect */
.matrix-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(90deg, transparent 98%, rgba(0, 255, 65, 0.03) 100%),
		linear-gradient(180deg, transparent 98%, rgba(0, 255, 65, 0.03) 100%);
	background-size: 50px 50px;
	animation: matrixGrid 20s linear infinite;
	z-index: -1;
}

/* Header */
.header {
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 2px solid #00ff41;
	box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.header__logo-link {
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
}

.header__logo-text {
	font-size: 28px;
	font-weight: bold;
	color: #00ff41;
	text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
	letter-spacing: 2px;
}

.header__logo-accent {
	font-size: 28px;
	font-weight: bold;
	color: #00ffff;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
	letter-spacing: 2px;
}

.header__nav-list {
	display: flex;
	list-style: none;
	gap: 40px;
}

.header__nav-link {
	color: #00ff41;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	padding: 12px 20px;
	border: 2px solid transparent;
	border-radius: 0;
	transition: all 0.3s ease;
	position: relative;
	text-transform: uppercase;
}

.header__nav-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 255, 65, 0.2), rgba(0, 255, 255, 0.2));
	transition: width 0.3s ease;
	z-index: -1;
}

.header__nav-link:hover::before {
	width: 100%;
}

.header__nav-link:hover {
	color: #ffffff;
	text-shadow: 0 0 10px rgba(0, 255, 65, 1);
	border-color: #00ff41;
	box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

.header__nav-link--active {
	color: #000000;
	background: #00ff41;
	border-color: #00ff41;
	box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}

.header__nav-link--active:hover {
	color: #000000;
	background: #00ffff;
	border-color: #00ffff;
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.header__burger {
	display: none;
	flex-direction: column;
	background: none;
	border: 2px solid #00ff41;
	cursor: pointer;
	padding: 10px;
	gap: 4px;
	border-radius: 0;
	transition: all 0.3s ease;
}

.header__burger:hover {
	box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

.header__burger-line {
	width: 25px;
	height: 3px;
	background: #00ff41;
	transition: all 0.3s ease;
	box-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.header__burger--active .header__burger-line:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
	background: #00ffff;
}

.header__burger--active .header__burger-line:nth-child(2) {
	opacity: 0;
}

.header__burger--active .header__burger-line:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
	background: #00ffff;
}

/* Main Content */
.main {
	min-height: calc(100vh - 80px - 100px);
	padding: 60px 0;
}

/* Article Styles */
.article {
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(15px);
	border: 2px solid #00ff41;
	border-radius: 0;
	box-shadow: 0 0 30px rgba(0, 255, 65, 0.3), inset 0 0 30px rgba(0, 255, 65, 0.1);
	margin-bottom: 40px;
	position: relative;
}

.article::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #00ff41, #00ffff, #ff00ff, #00ff41);
	background-size: 400% 400%;
	animation: borderGlow 3s ease-in-out infinite;
	z-index: -1;
	border-radius: 0;
}

.article__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px;
	position: relative;
}

.article__title {
	font-size: 3rem;
	font-weight: bold;
	color: #000;
	margin-bottom: 40px;
	line-height: 1.2;
	text-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
	letter-spacing: 2px;
	text-transform: uppercase;
	position: relative;
}

.article__title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, #00ff41, #00ffff);
	box-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.article__subtitle {
	font-size: 2rem;
	font-weight: 600;
	color: #00ffff;
	margin: 50px 0 30px 0;
	line-height: 1.3;
	text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
	letter-spacing: 1px;
	text-transform: uppercase;
	border-left: 4px solid #00ffff;
	padding-left: 20px;
}

.article__subheading {
	font-size: 1.5rem;
	font-weight: 600;
	color: #ff00ff;
	margin: 40px 0 20px 0;
	line-height: 1.3;
	text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.article__intro {
	font-size: 1.2rem;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 30px;
	line-height: 1.8;
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
	padding: 20px;
	border: 1px solid #00ff41;
	background: rgba(0, 255, 65, 0.1);
}

.article__content p {
	margin-bottom: 25px;
	line-height: 1.8;
	color: #000;
	font-size: 1.1rem;
	text-shadow: 0 0 3px rgba(204, 204, 204, 0.5);
}

.article__section {
	margin-bottom: 50px;
	padding: 30px;
	border: 1px solid rgba(0, 255, 65, 0.3);
	background: rgba(0, 255, 65, 0.05);
	position: relative;
}

.article__section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #00ff41, #00ffff);
	box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.article__image {
	margin: 40px 0;
	text-align: center;
	position: relative;
}

.article__img {
	max-width: 620px;
	height: auto;
	border: 2px solid #00ff41;
	box-shadow: 0 0 30px rgba(0, 255, 65, 0.5), inset 0 0 20px rgba(0, 255, 65, 0.1);
	filter: brightness(0.8) contrast(1.2) hue-rotate(90deg);
	transition: all 0.3s ease;
}

.article__img:hover {
	filter: brightness(1) contrast(1.3) hue-rotate(0deg);
	box-shadow: 0 0 50px rgba(0, 255, 65, 0.8), inset 0 0 30px rgba(0, 255, 65, 0.2);
	transform: scale(1.02);
}

.article__list {
	margin: 30px 0;
	padding: 25px;
	border: 1px solid #00ffff;
	background: rgba(0, 255, 255, 0.05);
}

.article__list h4 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #00ffff;
	margin-bottom: 20px;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.article__list ul,
.article__list ol {
	margin-left: 30px;
	margin-bottom: 20px;
}

.article__list li {
	margin-bottom: 15px;
	line-height: 1.7;
	color: #fff;
	position: relative;
}

.article__list li::before {
	content: '▶';
	color: #00ff41;
	font-weight: bold;
	position: absolute;
	left: -20px;
	text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.article__list li strong {
	color: #00ff41;
	text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.article__table {
	margin: 40px 0;
	overflow-x: auto;
	border: 2px solid #00ff41;
	background: rgba(0, 0, 0, 0.8);
}

.article__table table {
	width: 100%;
	border-collapse: collapse;
	background: transparent;
}

.article__table th,
.article__table td {
	padding: 20px;
	text-align: left;
	border-bottom: 1px solid rgba(0, 255, 65, 0.3);
	color: #cccccc;
}

.article__table th {
	background: rgba(0, 255, 65, 0.2);
	font-weight: 600;
	color: #00ff41;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.article__table tr:hover {
	background: rgba(0, 255, 65, 0.1);
}

.article__table tr:last-child td {
	border-bottom: none;
}

/* Page Styles */
.page {
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(15px);
	border: 2px solid #00ff41;
	box-shadow: 0 0 30px rgba(0, 255, 65, 0.3), inset 0 0 30px rgba(0, 255, 65, 0.1);
	margin-bottom: 40px;
	position: relative;
}

.page::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #00ff41, #00ffff, #ff00ff, #00ff41);
	background-size: 400% 400%;
	animation: borderGlow 3s ease-in-out infinite;
	z-index: -1;
}

.page__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px;
}

.page__title {
	font-size: 3rem;
	font-weight: bold;
	color: #00ff41;
	margin-bottom: 50px;
	line-height: 1.2;
	text-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
}

/* FAQ Styles */
.faq__item {
	margin-bottom: 30px;
	border: 2px solid #00ff41;
	background: rgba(0, 0, 0, 0.6);
	transition: all 0.3s ease;
	position: relative;
}

.faq__item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: rgba(0, 255, 65, 0.1);
	transition: width 0.3s ease;
	z-index: -1;
}

.faq__item:hover::before {
	width: 100%;
}

.faq__item:hover {
	box-shadow: 0 0 25px rgba(0, 255, 65, 0.5);
	border-color: #00ffff;
}

.faq__question {
	font-size: 1.3rem;
	font-weight: 600;
	color: #00ff41;
	padding: 25px;
	margin: 0;
	background: rgba(0, 255, 65, 0.1);
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
	position: relative;
}

.faq__question::after {
	content: '▼';
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
	color: #00ffff;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.faq__question:hover {
	background: rgba(0, 255, 255, 0.1);
	color: #00ffff;
}

.faq__answer {
	padding: 25px;
	background: rgba(0, 0, 0, 0.8);
	border-top: 1px solid rgba(0, 255, 65, 0.3);
}

.faq__answer p {
	margin: 0;
	line-height: 1.8;
	color: #cccccc;
	font-size: 1.1rem;
}

/* Privacy Styles */
.privacy__section {
	margin-bottom: 50px;
	padding: 30px;
	border: 1px solid rgba(0, 255, 65, 0.3);
	background: rgba(0, 255, 65, 0.05);
}

.privacy__subtitle {
	font-size: 1.8rem;
	font-weight: 600;
	color: #00ffff;
	margin-bottom: 25px;
	text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.privacy__subheading {
	font-size: 1.4rem;
	font-weight: 600;
	color: #fff;
	margin: 25px 0 15px 0;
	text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
	text-transform: uppercase;
}

.privacy p {
	margin-bottom: 20px;
	line-height: 1.8;
	color: #fff;
	font-size: 1.1rem;
}

.privacy ul {
	margin-left: 30px;
	margin-bottom: 20px;
}

.privacy li {
	margin-bottom: 10px;
	line-height: 1.7;
	color: #fff;
	position: relative;
}

.privacy li::before {
	content: '▶';
	color: #00ff41;
	font-weight: bold;
	position: absolute;
	left: -20px;
	text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.privacy__contact {
	background: rgba(0, 255, 65, 0.1);
	padding: 25px;
	border: 2px solid #00ff41;
	margin: 25px 0;
	box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.privacy__contact p {
	margin: 0;
	line-height: 1.7;
	color: #ffffff;
}

/* Contact Styles */
.contact__image {
	margin-bottom: 40px;
	text-align: center;
}

.contact__img {
	max-width: 100%;
	height: auto;
	border: 2px solid #00ff41;
	box-shadow: 0 0 30px rgba(0, 255, 65, 0.5), inset 0 0 20px rgba(0, 255, 65, 0.1);
	filter: brightness(0.8) contrast(1.2) hue-rotate(90deg);
	transition: all 0.3s ease;
}

.contact__img:hover {
	filter: brightness(1) contrast(1.3) hue-rotate(0deg);
	box-shadow: 0 0 50px rgba(0, 255, 65, 0.8), inset 0 0 30px rgba(0, 255, 65, 0.2);
	transform: scale(1.02);
}

.contact__intro {
	font-size: 1.2rem;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 50px;
	line-height: 1.8;
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
	padding: 25px;
	border: 1px solid #00ff41;
	background: rgba(0, 255, 65, 0.1);
}

.contact__section {
	margin-bottom: 40px;
	padding: 25px;
	border: 1px solid rgba(0, 255, 255, 0.3);
	background: rgba(0, 255, 255, 0.05);
}

.contact__subtitle {
	font-size: 1.5rem;
	font-weight: 600;
	color: #00ffff;
	margin-bottom: 20px;
	text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.contact__info p {
	margin-bottom: 15px;
	line-height: 1.7;
	color: #cccccc;
	font-size: 1.1rem;
}

.contact__social {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.contact__social-link {
	display: inline-block;
	padding: 15px 25px;
	background: rgba(0, 255, 65, 0.2);
	color: #00ff41;
	text-decoration: none;
	border: 2px solid #00ff41;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
	position: relative;
	overflow: hidden;
}

.contact__social-link::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 ease;
}

.contact__social-link:hover::before {
	left: 100%;
}

.contact__social-link:hover {
	background: rgba(0, 255, 255, 0.2);
	color: #00ffff;
	border-color: #00ffff;
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
	transform: translateY(-3px);
}

.contact__link {
	color: #00ff41;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.contact__link:hover {
	color: #00ffff;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* Footer */
.footer {
	background: rgba(0, 0, 0, 0.9);
	border-top: 2px solid #00ff41;
	box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
	padding: 30px 0;
}

.footer__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.footer__text {
	margin: 0;
	font-size: 1rem;
	color: #00ff41;
	text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
	.header__nav {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background: rgba(0, 0, 0, 0.95);
		backdrop-filter: blur(15px);
		border-right: 2px solid #00ff41;
		box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
		transition: left 0.3s ease;
		z-index: 99;
	}

	.header__nav--active {
		left: 0;
	}

	.header__nav-list {
		flex-direction: column;
		gap: 0;
		padding: 60px 40px;
		height: 100%;
	}

	.header__nav-item {
		width: 100%;
	}

	.header__nav-link {
		display: block;
		padding: 20px;
		border-bottom: 1px solid rgba(0, 255, 65, 0.3);
		font-size: 16px;
	}

	.header__burger {
		display: flex;
	}

	.article__container,
	.page__container {
		padding: 30px;
	}

	.article__title,
	.page__title {
		font-size: 2.2rem;
	}

	.article__subtitle {
		font-size: 1.6rem;
	}

	.article__subheading {
		font-size: 1.3rem;
	}

	.article__table {
		font-size: 0.9rem;
	}

	.article__table th,
	.article__table td {
		padding: 15px 10px;
	}

	.contact__social {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact__social-link {
		width: fit-content;
	}

	.faq__question {
		font-size: 1.1rem;
		padding: 20px;
	}

	.faq__answer {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.header__container {
		padding: 0 16px;
	}

	.article__container,
	.page__container {
		padding: 20px;
	}

	.article__title,
	.page__title {
		font-size: 1.8rem;
	}

	.article__subtitle {
		font-size: 1.4rem;
	}

	.article__subheading {
		font-size: 1.2rem;
	}

	.footer__container {
		padding: 0 16px;
	}

	.footer__text {
		font-size: 0.9rem;
	}

	.header__logo-text,
	.header__logo-accent {
		font-size: 24px;
	}
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Focus States */
a:focus,
button:focus {
	outline: 2px solid #00ff41;
	outline-offset: 2px;
	box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

.article,
.page {
	animation: fadeInUp 0.8s ease-out;
}

.article__title:hover,
.page__title:hover {
	animation: glitch 0.3s ease-in-out;
}

/* Hover Effects */
.article__section:hover {
	border-color: #00ffff;
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Print Styles */
@media print {
	.header,
	.footer,
	.matrix-bg {
		display: none;
	}

	.article,
	.page {
		box-shadow: none;
		border: 1px solid #000;
		background: #fff;
	}

	.article__title,
	.page__title,
	.article__subtitle,
	.article__subheading {
		color: #000;
		text-shadow: none;
	}

	.article__content p,
	.faq__answer p,
	.privacy p {
		color: #000;
	}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* High contrast mode */
@media (prefers-contrast: high) {
	.header__nav-link {
		border: 2px solid #00ff41;
	}

	.article__img {
		filter: contrast(2);
	}
}
