@font-face {
	font-family: "Tiempos Text";
	src: url("/tiempos-font-family/TestTiemposText-Regular-BF66457a50cd521.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Tiempos Text";
	src: url("/tiempos-font-family/TestTiemposText-Semibold-BF66457a4fed201.otf") format("opentype");
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "Tiempos Headline";
	src: url("/tiempos-font-family/TestTiemposHeadline-Semibold-BF66457a509040b.otf") format("opentype");
	font-weight: 600;
	font-style: normal;
}

* {
	-webkit-tap-highlight-color: transparent;
}

:root {
	--bg-color: #0a0a0a;
	--card-bg: #141414;
	--text-primary: #ffffff;
	--text-secondary: #a0a0a0;
	--accent: #f97316;
	--accent-hover: #ea580c;
	--border: #262626;
	--border-hover: #404040;
	--accent-glow: rgba(249, 115, 22, 0.2);
}

h1 {
	border-bottom: 1px solid #333;
	padding-bottom: 10px;
	color: #fff;
}

h2 {
	margin-top: 40px;
	color: #bbb;
	font-size: 1.5rem;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.status {
	display: inline-block;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 0.8rem;
	text-transform: uppercase;
	font-weight: bold;
	margin-left: 10px;
}

.legacy {
	background: #333;
	color: #aaa;
}

.preferred {
	background: #2a4d69;
	color: #abdbe3;
}

.flagship {
	background: #4d2a69;
	color: #e3abd3;
}

.experimental {
	background: #694d2a;
	color: #e3d4ab;
}

.release-date {
	color: #666;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.9rem;
	display: block;
	margin-bottom: 15px;
}

ul {
	list-style-type: none;
	padding: 0;
}

li {
	padding: 8px 0;
	border-bottom: 1px solid #222;
	position: relative;
	padding-left: 20px;
}

li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #555;
}

li:last-child {
	border-bottom: none;
}

/* Background shapes */
.bg-shapes {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.4;
}

.shape-1 {
	width: 600px;
	height: 600px;
	background: var(--accent-glow);
	top: -200px;
	right: -200px;
}

.shape-2 {
	width: 400px;
	height: 400px;
	background: var(--accent-glow);
	bottom: -100px;
	left: -100px;
}

.shape-3 {
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.03);
	top: 40%;
	left: 30%;
}

@media (min-width: 900px) {
	body {
		font-family: "Tiempos Text", Georgia, serif;
		background-color: var(--bg-color);
		color: var(--text-primary);
		min-height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 20px;
		position: relative;
		overflow: hidden;
	}
}

@media (max-width: 900px) {
	body {
		background-color: #0a0a0a;
		color: #e0e0e0;
		font-family: "Tiempos Text", Georgia, serif;
		line-height: 1.6;
		padding: 40px 20px;
		max-width: 800px;
		margin: 0 auto;
	}
}