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

:root {
	--bg: rgb(239, 239, 239);
	--text: #1a1a1a;
	--secondary-text: #666666;
	--border: #e5e5e5;
	--hover: #f5f5f5;
}

body.dark-mode {
	--bg: #1d1d1d;
	--text: #ffffff;
	--secondary-text: #d7d3d3;
	--border: #2a2a2a;
	--hover: #1a1a1a;
}

body.pink-mode {
	--bg: hsl(0, 47%, 91%);
	--text: #5a0a1a;
	--secondary-text: #a07080;
	--border: #e8c5d8;
	--hover: #f0d4dd;
}

body {
	font-family:
		'Poppins',
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		Roboto,
		'Helvetica Neue',
		Arial,
		sans-serif;
	background-color: var(--bg);
	color: var(--text);
	transition:
		background-color 0.3s ease,
		color 0.3s ease;
	line-height: 1.7;
	letter-spacing: 0.2px;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 80px;
	border-bottom: 1px solid var(--border);
	padding-bottom: 20px;
}

.logo {
	font-size: 24px;
	font-weight: 600;
}

.theme-buttons {
	display: flex;
	gap: 8px;
}

.theme-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.3s ease;
}

.theme-btn:hover {
	transform: scale(1.1);
}

.theme-btn.active {
	border-color: var(--text);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.light-btn {
	background-color: #ffffff;
}

.dark-btn {
	background-color: #2a2a2a;
}

.pink-btn {
	background-color: #f3c4ca;
}

.intro {
	margin-bottom: 60px;
}

.intro h1 {
	font-size: 28px;
	margin-bottom: 20px;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.intro p {
	font-size: 18px;
	color: var(--secondary-text);
	max-width: 600px;
	margin-bottom: 10px;
}

.section {
	margin-bottom: 70px;
}

.section h2 {
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: 600;
}

.section p {
	color: var(--secondary-text);
	margin-bottom: 15px;
	max-width: 700px;
	line-height: 1.8;
}

.experience-list {
	list-style: none;
	margin-bottom: 20px;
}

.experience-list li {
	color: var(--secondary-text);
	margin-bottom: 12px;
	padding-left: 20px;
	position: relative;
}

.experience-list li:before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--text);
}

.links {
	display: flex;
	gap: 20px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.links a {
	color: var(--text);
	text-decoration: none;
	border-bottom: 1px solid var(--text);
	transition: opacity 0.3s ease;
}

.links a:hover {
	opacity: 0.6;
}

.footer {
	color: var(--secondary-text);
	font-size: 14px;
	margin-top: 80px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
}

.divider {
	display: none;
}

strong {
	color: var(--text);
	font-weight: 500;
}

@media (max-width: 600px) {
	.container {
		padding: 30px 24px;
	}

	header {
		margin-bottom: 40px;
	}

	.intro h1 {
		font-size: 32px;
	}

	.intro p {
		font-size: 16px;
	}

	.section h2 {
		font-size: 20px;
	}

	.links {
		gap: 15px;
	}
}
