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

body {
    min-height: 100vh;
    font-family: Georgia, "Times New Roman", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", serif;
    line-height: 1.6;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    color: #f7efe4;
    background:
        linear-gradient(135deg, rgba(7, 15, 27, .92), rgba(9, 26, 46, .82)),
        radial-gradient(circle at 78% 18%, rgba(139, 201, 195, .2), transparent 32%),
        #050a12;
}

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

.home-shell {
    min-height: calc(100vh - 4rem);
    display: grid;
    align-content: center;
    gap: 18px;
}

.eyebrow {
    color: #e8c889;
    font-family: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: .82rem;
    text-transform: uppercase;
}

h1 {
    font-size: 4.8rem;
    line-height: .95;
    letter-spacing: 0;
}

.home-shell > p:not(.eyebrow) {
    color: rgba(247, 239, 228, .72);
    font-family: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.site-card {
    display: grid;
    gap: 8px;
    width: min(520px, 100%);
    margin-top: 28px;
    padding: 24px;
    border: 1px solid rgba(248, 241, 230, .18);
    background: rgba(5, 10, 18, .56);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.site-card:hover {
    transform: translateY(-3px);
    border-color: rgba(232, 200, 137, .62);
    background: rgba(5, 10, 18, .72);
}

.site-card span {
    color: #8bc9c3;
    font-family: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: .86rem;
    text-transform: uppercase;
}

.site-card strong {
    font-size: 1.8rem;
    line-height: 1.12;
}

.site-card small {
    color: rgba(247, 239, 228, .66);
    font-family: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: .95rem;
}

@media (max-width: 640px) {
    body {
        padding: 1.25rem;
    }

    .home-shell {
        min-height: calc(100vh - 2.5rem);
    }

    h1 {
        font-size: 3.1rem;
    }
}
