@font-face {
  font-display: swap;
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  src: url('jetbrains-mono-v24-latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  src: url('jetbrains-mono-v24-latin-700.woff2') format('woff2');
}

/* merriweather-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: url('merriweather-v33-latin-regular.woff2') format('woff2');
}

/* merriweather-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  src: url('merriweather-v33-latin-700.woff2') format('woff2');
}


body, html {
	height: 100%;
	margin: 0;
	overflow-x: hidden;
}

/* --- TEENS (Dark / Hacker Theme) --- */
.section-teens {
	background-color: #0a0a0a;
	color: #00ff41; /* Matrix Green */
	font-family: 'JetBrains Mono', monospace;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 3rem;
	border-right: 2px solid #333;
}

.section-teens h1 {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -2px;
	margin-bottom: 1rem;
	color: #fff;
	text-shadow: 2px 2px 0px #00ff41;
}

.section-teens p {
	color: #ccc;
	font-size: 1.1rem;
}

.btn-glitch {
	background-color: transparent;
	border: 2px solid #00ff41;
	color: #00ff41;
	padding: 10px 20px;
	font-weight: bold;
	text-transform: uppercase;
	transition: all 0.3s;
	margin-bottom: 10px;
	width: 100%;
	text-align: left;
}

.btn-glitch:hover {
	background-color: #00ff41;
	color: #000;
	box-shadow: 0 0 15px #00ff41;
	transform: translateX(5px);
}

/* --- ACADEMIC (Light / Paper Theme) --- */
.section-academic {
	background-color: #f4f4f4;
	color: #333;
	font-family: 'Merriweather', serif; /* Font academic */
	min-height: 100vh;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.section-academic h2 {
	font-weight: 700;
	color: #000;
	border-bottom: 3px solid #000;
	padding-bottom: 10px;
	margin-bottom: 30px;
}

.paper-link {
	display: block;
	padding: 10px 0;
	color: #444;
	text-decoration: none;
	border-bottom: 1px solid #ddd;
	transition: all 0.2s;
}

.paper-link:hover {
	color: #000;
	background-color: #e9e9e9;
	padding-left: 10px;
}

.paper-date {
	font-size: 0.8rem;
	color: #666;
	font-family: sans-serif;
}

/* --- MOBILE TWEAKS --- */
@media (max-width: 991px) {
	.section-teens, .section-academic {
		min-height: auto;
		padding: 1rem 1.5rem;
	}
}
