<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8" />
<title>Before I wake - YIHEN</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
* { box-sizing: border-box; }
body {
margin: 0;
min-height: 100vh;
font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
background: radial-gradient(circle at top left, #7b61ff, #100022 45%, #000000 85%);
display: flex;
align-items: center;
justify-content: center;
padding: 32px 16px;
color: #ffffff;
}
.card {
width: 100%;
max-width: 430px;
background: linear-gradient(160deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.65));
border-radius: 28px;
padding: 24px 20px 28px;
box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}
.cover { width: 100%; border-radius: 20px; overflow: hidden; margin-bottom: 20px; }
.cover img { width: 100%; display: block; }
.title { font-size: 22px; font-weight: 600; margin: 4px 0 2px; }
.artist { font-size: 14px; opacity: 0.8; margin-bottom: 12px; }
.subtitle { font-size: 13px; opacity: 0.7; margin-bottom: 22px; }
.btn {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 16px;
margin-bottom: 10px;
border-radius: 999px;
text-decoration: none;
background: #ffffff;
color: #111111;
font-size: 14px;
font-weight: 500;
}
.btn-spotify { background: #1db954; color: #ffffff; }
.btn-apple { background: #ffffff; color: #111111; }
.btn-ytm { background: #ff0000; color: #ffffff; }
.btn-yt { background: #ffffff; color: #111111; }
.btn-ig { background: linear-gradient(135deg,#f9ce34,#ee2a7b,#6228d7); color: #ffffff; }
.btn-tt { background: #000000; color: #ffffff; }
footer { margin-top: 20px; font-size: 11px; text-align: center; opacity: 0.55; }
</style>
</head>
<body>
<main class="card">
<div class="cover">
<img src="cover.JPG" alt="Before I wake 封面">
</div>
<div class="title">Before I wake</div>
<div class="artist">YIHEN</div>
<div class="subtitle">Choose your preferred service</div>
<a class="btn btn-spotify" href="https://open.spotify.com/album/3MmY8rAujc0AaptrvuBHOk?si=RFEPqFLsTSS6y4gtFT3ggQ" target="_blank">Spotify</a>
<a class="btn btn-apple" href="https://music.apple.com/tw/album/before-i-wake-single/1807295369" target="_blank">Apple Music</a>
<a class="btn btn-ytm" href="https://youtube.com/playlist?list=OLAK5uy_mUapbgzmMKtwbGyg6HmehoQslB11Dn3kU" target="_blank">YouTube Music</a>
<a class="btn btn-yt" href="https://youtube.com/playlist?list=OLAK5uy_mUapbgzmMKtwbGyg6HmehoQslB11Dn3kU" target="_blank">YouTube Video</a>
<a class="btn btn-ig" href="https://www.instagram.com/yihen1999/" target="_blank">Instagram</a>
<a class="btn btn-tt" href="https://www.tiktok.com/@yihen88" target="_blank">TikTok</a>
<footer>© 2025 YIHEN</footer>
</main>
</body>
</html>