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

:root {
	--dark-bg: #10041c;
	--neon-green: #a0ff00;
	--neon-green-dim: #7fc700;
	--white: #ffffff;
	--gray-100: #f3f4f6;
	--gray-300: #d1d5db;
	--gray-500: #6b7280;
	--gray-700: #374151;
	--dark-purple: #1a0a2e;
	--glass-bg: rgba(26, 10, 46, 0.95);
	--content-bg: rgba(255, 255, 255, 0.03);
	--max-content-width: 800px;
	--content-spacing: 2rem;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--dark-bg);
	color: var(--white);
	line-height: 1.7;
	min-height: 100vh;
	overflow-x: hidden;
	font-size: 18px;
}

/* Animated Background */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 80%, rgba(160, 255, 0, 0.08) 0%, transparent 40%),
		radial-gradient(circle at 80% 20%, rgba(160, 255, 0, 0.04) 0%, transparent 40%),
		radial-gradient(circle at 50% 50%, rgba(160, 255, 0, 0.02) 0%, transparent 70%);
	pointer-events: none;
	z-index: 1;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

/* Navigation */
.floating-nav {
	position: fixed;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	padding: 1rem 3rem;
	border-radius: 50px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	z-index: 1000;
	border: 1px solid rgba(160, 255, 0, 0.3);
	display: flex;
	align-items: center;
	gap: 3rem;
	width: auto;
	max-width: 90%;
}

.nav-logo {
	font-size: 1.2rem;
	font-weight: 900;
	color: var(--neon-green);
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 0 20px rgba(160, 255, 0, 0.5);
}

.nav-items {
	display: flex;
	gap: 2rem;
}

.nav-items a {
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	position: relative;
}

.nav-items a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--neon-green);
	transition: width 0.3s ease;
}

.nav-items a:hover {
	color: var(--neon-green);
}

.nav-items a:hover::after {
	width: 100%;
}

/* Main Content Area */
main {
	padding: 140px 0 80px;
	position: relative;
	z-index: 2;
}

.content-wrapper {
	max-width: var(--max-content-width);
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography - Headings */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	margin: 0 0 1.5rem 0;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 900;
	margin-bottom: 2.5rem;
	background: linear-gradient(135deg, var(--neon-green), var(--neon-green-dim), var(--neon-green));
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradient 4s ease infinite;
	text-align: center;
	padding: 0 0 1rem 0;
}

@keyframes gradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	color: var(--white);
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	position: relative;
	padding-left: 20px;
}

h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 100%;
	background: var(--neon-green);
	box-shadow: 0 0 20px rgba(160, 255, 0, 0.5);
}

h3 {
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	color: var(--gray-100);
	margin-top: 2.5rem;
	margin-bottom: 1.2rem;
}

h4 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	color: var(--gray-300);
	margin-top: 2rem;
	margin-bottom: 1rem;
}

/* Paragraphs */
p {
	margin-bottom: 1.5rem;
	color: var(--gray-300);
	font-weight: 400;
	text-align: justify;
	hyphens: auto;
}

p:last-child {
	margin-bottom: 0;
}

/* Strong emphasis */
strong {
	color: var(--gray-100);
	font-weight: 700;
}

/* Emphasis */
em {
	color: var(--neon-green);
	font-style: italic;
}

/* Lead paragraph - first paragraph after h1 */
h1 + p {
	font-size: 1.25rem;
	line-height: 1.8;
	color: var(--gray-100);
	margin-bottom: 2rem;
	font-weight: 500;
	text-align: left;
}

/* Links in content */
.content-wrapper a:not(.button) {
	color: var(--neon-green);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
}

.content-wrapper a:not(.button)::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--neon-green);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s ease;
}

.content-wrapper a:not(.button):hover {
	color: var(--neon-green-dim);
	text-shadow: 0 0 20px rgba(160, 255, 0, 0.5);
}

.content-wrapper a:not(.button):hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* Lists */
ul, ol {
	margin-bottom: 1.5rem;
	padding-left: 0;
	list-style: none;
}

ul li, ol li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 0.75rem;
	color: var(--gray-300);
}

/* Unordered list styling */
ul li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--neon-green);
	font-size: 1.2em;
	line-height: 1.4;
}

/* Special styling for review lists */
ul li strong:first-child {
	color: var(--neon-green);
	display: block;
	margin-bottom: 0.25rem;
}

/* Ordered list styling */
ol {
	counter-reset: list-counter;
}

ol li {
	counter-increment: list-counter;
	padding-left: 2.5rem;
}

ol li::before {
	content: counter(list-counter);
	position: absolute;
	left: 0;
	top: 0;
	color: var(--dark-bg);
	background: var(--neon-green);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	font-size: 0.875rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 20px rgba(160, 255, 0, 0.5);
}

/* Nested lists */
ul ul, ul ol, ol ul, ol ol {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
}

/* Blockquotes */
blockquote {
	margin: 2rem 0;
	padding: 1.5rem 2rem;
	background: var(--content-bg);
	border-left: 4px solid var(--neon-green);
	border-radius: 8px;
	font-style: italic;
	color: var(--gray-100);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
}

blockquote::before {
	content: '"';
	position: absolute;
	top: -20px;
	left: 10px;
	font-size: 100px;
	color: var(--neon-green);
	opacity: 0.1;
	font-family: Georgia, serif;
}

blockquote p:last-child {
	margin-bottom: 0;
}

blockquote cite {
	display: block;
	margin-top: 1rem;
	font-size: 0.875rem;
	color: var(--gray-500);
	font-style: normal;
}

/* Code blocks */
pre {
	margin: 2rem 0;
	padding: 1.5rem;
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(160, 255, 0, 0.2);
	border-radius: 12px;
	overflow-x: auto;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--gray-100);
}

code {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.875em;
	color: var(--neon-green);
	background: rgba(160, 255, 0, 0.1);
	padding: 0.2em 0.4em;
	border-radius: 4px;
}

pre code {
	background: none;
	padding: 0;
	color: inherit;
}

/* Tables */
table {
	width: 100%;
	margin: 2rem 0;
	border-collapse: collapse;
	background: rgba(255, 255, 255, 0.98);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

thead {
	background: linear-gradient(135deg, #10041c 0%, #1a0a2e 100%);
}

th {
	color: var(--neon-green);
	padding: 1rem 1.5rem;
	text-align: left;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	text-shadow: 0 0 10px rgba(160, 255, 0, 0.5);
}

td {
	padding: 1rem 1.5rem;
	color: #333;
	border-bottom: 1px solid rgba(16, 4, 28, 0.1);
}

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

tbody tr:hover td {
	background: rgba(160, 255, 0, 0.05);
}

/* Images */
img {
	max-width: 100%;
	height: auto;
	margin: 2rem 0;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

figure {
	margin: 2rem 0;
	text-align: center;
}

figcaption {
	margin-top: 1rem;
	font-size: 0.875rem;
	color: var(--gray-500);
	font-style: italic;
}

/* Horizontal rule */
hr {
	margin: 3rem 0;
	border: none;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--neon-green), transparent);
	opacity: 0.3;
}

/* Details/Summary (FAQ) */
details {
	margin-bottom: 1rem;
	padding: 1rem 1.5rem;
	background: var(--content-bg);
	border: 1px solid rgba(160, 255, 0, 0.2);
	border-radius: 12px;
	transition: all 0.3s ease;
}

details:hover {
	border-color: rgba(160, 255, 0, 0.4);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

details[open] {
	background: rgba(160, 255, 0, 0.05);
	border-color: var(--neon-green);
}

summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--gray-100);
	list-style: none;
	position: relative;
	padding-right: 2rem;
	user-select: none;
}

summary::-webkit-details-marker {
	display: none;
}

summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--neon-green);
	font-size: 1.5rem;
	font-weight: 400;
	transition: transform 0.3s ease;
}

details[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

details p {
	margin-top: 1rem;
	color: var(--gray-300);
}

/* Footer */
.floating-footer {
	position: relative;
	margin: 60px auto 30px;
	max-width: 800px;
	display: flex;
	gap: 3rem;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	padding: 1.5rem 3rem;
	border-radius: 50px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(160, 255, 0, 0.3);
	justify-content: center;
	align-items: center;
}

.footer-section {
	display: flex;
	gap: 1.5rem;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.footer-section a:hover {
	color: var(--neon-green);
	text-shadow: 0 0 10px rgba(160, 255, 0, 0.5);
}

.footer-divider {
	width: 1px;
	background: rgba(160, 255, 0, 0.3);
	height: 20px;
}

.age-badge {
	background: rgba(255, 71, 87, 0.2);
	border: 1px solid #ff4757;
	padding: 0.3rem 1rem;
	border-radius: 20px;
	font-weight: 700;
	color: #ff4757;
	font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	body {
		font-size: 16px;
	}

	.floating-nav {
		position: relative;
		top: 0;
		margin: 20px auto;
		flex-direction: column;
		gap: 1rem;
		padding: 1rem 1.5rem;
	}

	main {
		padding: 40px 0 60px;
	}

	h2 {
		padding-left: 15px;
	}

	h2::before {
		width: 3px;
	}

	blockquote {
		padding: 1.25rem 1.5rem;
	}

	table {
		font-size: 0.875rem;
		overflow-x: auto;
		display: block;
	}

	th, td {
		padding: 0.75rem 1rem;
		white-space: nowrap;
	}

	details {
		padding: 0.75rem 1rem;
	}

	.floating-footer {
		flex-direction: column;
		gap: 1rem;
		padding: 1.5rem;
		text-align: center;
	}

	.footer-section {
		flex-direction: column;
		gap: 0.8rem;
	}

	.footer-divider {
		display: none;
	}
}

@media (max-width: 480px) {
	.nav-items {
		gap: 1rem;
	}

	.nav-items a {
		font-size: 0.85rem;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	h3 {
		font-size: 1.25rem;
	}
	
	ol li {
		padding-left: 2rem;
	}
}
