/* syne-mono-regular - latin */
@font-face {
	font-display: swap;
	font-family: 'Syne Mono';
	font-style: normal;
	font-weight: 400;
	src: url('/syne-mono-v15-latin-regular.woff2') format('woff2');
}

:root {
	--text: #fffef3;
	--background: #1d1d1d;
	--text-light: #b7b7b7;
	--accent: #aa82a4;
	--accent-light: #bd92b7;
	--accent-soft: #2d2d2d;
	--border: #503f28;
	--card-bg: #2d2d2d;
	--method-bg: #595959;
	--card-shadow: rgba(0, 0, 0, 0.08);
	--hover-shadow: rgba(0, 0, 0, 0.12);
	--font-main: 'Syne Mono';
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background-color: var(--background);
	font-family: var(--font-main), monospace;
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	color: white;
	text-decoration: none;
	transition: color 0.3s;
}

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

/* Header */
#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: var(--background);
	border-bottom: 1px solid var(--border);
	z-index: 1000;
}

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

.logo {
	font-weight: 600;
	font-size: 20px;
	cursor: pointer;
	color: var(--accent-light);
	transition: all 0.3s;
}

.logo:hover {
	color: var(--accent);
}

#menu {
	display: flex;
	gap: 8px;
}

.tab {
	padding: 10px 20px;
	border-radius: 20px;
	background: transparent;
	color: var(--text-light);
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid transparent;
}

.tab:hover {
	color: var(--accent);
	border-color: var(--accent-light);
	transform: translateY(-2px);
}

/* Main Content */
main {
	padding-top: 70px;
	min-height: 90vh;
}

.content-section {
	padding: 20px 24px;
	max-width: 800px;
	/* Reduced width for better list readability */
	margin: 0 auto;
}

.section-content {
	margin-top: 40px;
}

/* PDF List Styles */
.year-group {
	margin-bottom: 40px;
}

.year-header {
	font-size: 28px;
	font-weight: 600;
	color: var(--accent-light);
	margin-bottom: 20px;
	border-bottom: 1px solid var(--border);
	padding-bottom: 10px;
}

.module-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.module-item {
	margin-bottom: 15px;
	padding-left: 20px;
	position: relative;
}

.module-item::before {
	content: '>';
	position: absolute;
	left: 0;
	color: var(--accent);
}

.module-link {
	font-size: 18px;
	display: inline-block;
}