:root { --bg: #121212; --card: #1e1e1e; --text: #fff; --sub: #b3b3b3; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: radial-gradient(circle at top, #282828 0%, var(--bg) 100%); color: var(--text); display: flex; justify-content: center; padding: 40px 20px; min-height: 100vh; }
.container { width: 100%; max-width: 480px; text-align: center; }
.cover-wrapper { width: 100%; aspect-ratio: 1; margin-bottom: 20px; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.cover-img { width: 100%; height: 100%; object-fit: cover; }
.meta h1 { font-size: 24px; margin-bottom: 8px; }
.meta h2 { font-size: 18px; color: var(--sub); font-weight: 400; }
.links { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.link-card { background: var(--card); padding: 16px 20px; border-radius: 8px; text-decoration: none; color: white; display: flex; align-items: center; justify-content: space-between; transition: 0.2s; border: 1px solid rgba(255,255,255,0.05); }
.link-card:hover { transform: translateY(-2px); background: #2a2a2a; }
.platform-info { display: flex; align-items: center; gap: 15px; }
.platform-icon svg { width: 28px; height: 28px; display: block; }
.platform-name { font-weight: 600; }
.action-btn { font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.2); transition: 0.2s; }
.link-card:hover .action-btn { background: white; color: black; }
footer { margin-top: 50px; color: var(--sub); font-size: 11px; opacity: 0.5; }