/* Global Styles for yow.com */

:root {
	--bg-primary: #0a0a0f;
	--bg-secondary: #12121a;
	--text-primary: #e0e0e0;
	--text-secondary: #a0a0a0;
	--accent: #00d4ff;
	--accent-glow: rgba(0, 212, 255, 0.3);
	--border: #2a2a3a;
	--success: #00ff88;
	--font-mono: 'Courier New', Courier, monospace;
	--font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
	font-family: var(--font-sans);
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Header */
.site-header {
	background: var(--bg-secondary);
	border-bottom: 1px solid var(--border);
	padding: 1rem 2rem;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--text-primary);
	text-decoration: none;
	font-family: var(--font-mono);
}

.logo .tiger {
	filter: drop-shadow(0 0 8px var(--accent-glow));
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: var(--accent);
}

/* Main Content */
.content {
	flex: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 2rem;
	width: 100%;
}

/* Hero Section */
.hero {
	text-align: center;
	padding: 4rem 0;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--accent), #ff00ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero .subtitle {
	font-size: 1.5rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

.hero .tagline {
	font-family: var(--font-mono);
	color: var(--accent);
	background: var(--bg-secondary);
	padding: 0.5rem 1rem;
	border-radius: 4px;
	display: inline-block;
	margin-bottom: 2rem;
}

/* Timeline */
.timeline-container {
	position: relative;
	padding: 2rem 0;
}

.timeline-line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--border);
	transform: translateX(-50%);
}

.timeline-item {
	display: flex;
	justify-content: flex-end;
	padding: 2rem 0;
	position: relative;
	width: 50%;
}

.timeline-item:nth-child(even) {
	align-self: flex-end;
	justify-content: flex-start;
	margin-left: 50%;
}

.timeline-item::before {
	content: '';
	position: absolute;
	right: -8px;
	top: 50%;
	width: 16px;
	height: 16px;
	background: var(--accent);
	border-radius: 50%;
	transform: translateY(-50%);
	box-shadow: 0 0 20px var(--accent-glow);
}

.timeline-item:nth-child(even)::before {
	left: -8px;
	right: auto;
}

.timeline-content {
	background: var(--bg-secondary);
	padding: 1.5rem;
	border-radius: 8px;
	border: 1px solid var(--border);
	max-width: 450px;
	width: 90%;
}

.timeline-year {
	font-family: var(--font-mono);
	color: var(--accent);
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

/* Cards */
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.card {
	background: var(--bg-secondary);
	padding: 2rem;
	border-radius: 8px;
	border: 1px solid var(--border);
	transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
	transform: translateY(-4px);
	border-color: var(--accent);
}

.card h3 {
	color: var(--accent);
	margin-bottom: 1rem;
	font-family: var(--font-mono);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 2rem;
	background: var(--accent);
	color: var(--bg-primary);
	text-decoration: none;
	border-radius: 4px;
	font-weight: bold;
	transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px var(--accent-glow);
}

/* Footer */
.site-footer {
	background: var(--bg-secondary);
	border-top: 1px solid var(--border);
	padding: 2rem;
	text-align: center;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-content p {
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
}

.footer-note {
	font-size: 0.875rem;
	font-style: italic;
}

.footer-links {
	margin-top: 1rem;
}

.footer-links a {
	color: var(--accent);
	text-decoration: none;
}

.footer-links a:hover {
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.nav-links {
		gap: 1rem;
		font-size: 0.9rem;
	}

	.timeline-line {
		left: 20px;
	}

	.timeline-item,
	.timeline-item:nth-child(even) {
		width: 100%;
		margin-left: 0;
		padding-left: 50px;
		justify-content: flex-start;
	}

	.timeline-item::before,
	.timeline-item:nth-child(even)::before {
		left: 12px;
		right: auto;
	}
}

/* Animations */
@keyframes glow {
	from {
		box-shadow: 0 0 20px var(--accent-glow);
	}
	to {
		box-shadow: 0 0 40px var(--accent-glow), 0 0 10px var(--accent);
	}
}

.hero h1 {
	animation: glow 3s ease-in-out infinite alternate;
}
