/* ── Font ── */
@font-face {
	font-family: 'Hong Kong Hustle';
	src: url('../fonts/hongkonghustle.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* ── Reset ── */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ── Tokens ── */
:root {
	--color-bg: #0d0d0d;
	--color-surface: #1a1a1a;
	--color-primary: #6b48b4;
	--color-primary-light: #8b6bd4;
	--color-text: #e0e0e0;
	--color-text-muted: #888;
	--color-white: #fff;
	--font-display: 'Hong Kong Hustle', sans-serif;
	--font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Base ── */
html {
	font-size: clamp(16px, 0.5rem + 1vw, 20px);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-body);
	background: var(--color-bg);
	color: var(--color-text);
	line-height: 1.6;
	min-height: 100vh;
	position: relative;
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	background: url('../img/hero-bg.jpg') center center / cover no-repeat;
	opacity: 0.15;
	z-index: -1;
}

/* ── Page ── */
.page {
	max-width: 640px;
	margin: 0 auto;
	padding: 60px 24px 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
}

/* ── Hero ── */
.hero {
	text-align: center;
	padding: 40px 0 0;
}

.hero__name {
	font-family: var(--font-display);
	font-size: clamp(3rem, 10vw, 5rem);
	color: var(--color-primary);
	letter-spacing: 0.04em;
	line-height: 1.1;
	text-transform: uppercase;
}

.hero__tagline {
	font-size: 1.125rem;
	color: #aaa;
	margin-top: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-weight: 400;
}

/* ── Bio ── */
.bio {
	text-align: center;
	max-width: 500px;
}

.bio p {
	font-size: 1rem;
	color: var(--color-text);
	line-height: 1.7;
}

.bio p + p {
	margin-top: 12px;
}

.bio strong {
	color: var(--color-white);
}

/* ── Player ── */
.player {
	width: 100%;
}

.player iframe {
	border-radius: 8px;
}

/* ── Socials ── */
.socials {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.socials__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--color-surface);
	color: var(--color-primary);
	transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.socials__link:hover {
	color: var(--color-primary-light);
	background: #222;
	transform: translateY(-2px);
}

.socials__link svg {
	width: 33px;
	height: 33px;
}

/* ── Contact ── */
.contact {
	text-align: center;
}

.contact__link {
	color: var(--color-primary);
	text-decoration: none;
	font-size: 1rem;
	letter-spacing: 0.02em;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.contact__link:hover {
	border-bottom-color: var(--color-primary-light);
}

/* ── Responsive ── */
@media (max-width: 480px) {
	.page {
		padding: 40px 16px 60px;
		gap: 36px;
	}

	.hero {
		padding-top: 20px;
	}
}