:root {
    --bg: #140c08;
    --panel: #21150f;
    --text: #f6eee6;
    --muted: #d1c2b7;
    --accent: #d8aa64;
    --border: #34221a;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 16px;
    background: linear-gradient(175deg, #140c08, #231710 60%, #140c08);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    width: min(640px, 100%);
    text-align: center;
    background: rgba(33, 21, 16, 0.9);
    border: 1px solid rgba(52, 34, 26, 0.9);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
}

h1 {
    margin: 0 0 8px;
    font-size: 28px;
    letter-spacing: 0.01em;
}

.lede {
    margin: 0 0 24px;
    color: var(--muted);
}

.center {
    text-align: center;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.link-tile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.link-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(214, 164, 90, 0.4);
    background: rgba(214, 164, 90, 0.06);
}

.link-tile strong {
    display: block;
    font-size: 16px;
}

.link-tile small {
    color: var(--muted);
}

.icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 0;
    background: transparent;
    overflow: hidden;
}

.icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.icon-yt,
.icon-ytm {
    transform: scale(1.8);
}

.icon-spotify,
.icon-apple {
    transform: none;
}

.page::before,
.page::after {
    content: "";
    position: absolute;
    pointer-events: none;
    filter: blur(70px);
}

.page::before {
    width: 280px;
    height: 280px;
    top: -80px;
    left: -100px;
    background: radial-gradient(circle, rgba(214, 164, 90, 0.26), transparent 62%);
}

.page::after {
    width: 220px;
    height: 220px;
    bottom: -50px;
    right: -70px;
    background: radial-gradient(circle, rgba(124, 88, 60, 0.22), transparent 68%);
}

@media (max-width: 480px) {
    .page {
        padding: 28px 20px;
    }
}