* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #08111f;
    color: #e8f2fb;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "Yu Gothic",
        sans-serif;
    line-height: 1.8;
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(8, 17, 31, 0.9);
    border-bottom: 1px solid rgba(120, 200, 255, 0.2);
}

.inner,
.container {
    width: min(1000px, calc(100% - 32px));
    margin: 0 auto;
}

.inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo,
.back,
.footer a,
.toplink {
    color: #9edcff;
    text-decoration: none;
}

.hero,
.current,
.card {
    margin: 28px 0;
    padding: 32px;
    background: #0d1b2d;
    border: 1px solid rgba(120, 200, 255, 0.15);
    border-radius: 16px;
}

.label {
    margin: 0;
    color: #67cfff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

h1 {
    margin: 0.2em 0;
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.version {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
}

.date {
    display: inline-block;
    padding: 6px 12px;
    background: #1a3555;
    color: #67cfff;
    font-weight: 700;
    border-radius: 999px;
}

h3 {
    margin-top: 28px;
}

.new {
    color: #64d97a;
}

.balance {
    color: #ffbe55;
}

.ui {
    color: #67cfff;
}

.fix {
    color: #ff7b7b;
}

.page-top-link{
    display:block;
    width:max-content;
    margin:28px 0 0 auto;
    color:#8fd8ff;
    font-size:.9rem;
    text-decoration:none;
}

.footer{
    border-top:1px solid rgba(140,220,255,.12);
    padding:30px 16px 36px;
    background:#060d17;
    text-align:center;
}

.footer__links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px 22px;
}

.footer__links a{
    color:#9eb4c4;
    font-size:16px;
    text-decoration:none;
}

.footer__links a:hover{
    color:#fff;
}

.footer__copyright{
    margin:18px 0 0;
    color:#627483;
    font-size:.8rem;
}

@media (max-width: 700px) {

    .inner,
    .container {
        width: calc(100% - 24px);
    }

    .hero,
    .current,
    .card {
        padding: 22px;
    }
}