body {
    background-color: #111;
    color: #eee;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    overflow-y: auto;
    margin: 0;
}

a {
    color: rgb(17, 101, 211);
}

main {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

#hero {
    margin: 24px auto 12px;
    width: 100%;
    text-align: center;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#hero h1 {
    font-size: 72px;
    font-weight: 700;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 20px;
}

#hero img {
    height: 120px;
    margin-top: auto;
    margin-bottom: auto;
}

.subtitle {
    text-align: center;
    color: #bbb;
    margin: 8px 0 0;
}

.contact {
    text-align: center;
    color: #bbb;
    margin: 8px 0 0;
}

.section {
    margin-top: 28px;
}

.section h2 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #aaa;
    margin: 0 0 12px 4px;
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #171717;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 14px 16px;
    color: #eee;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.05s ease;
}

.link-item i {
    font-size: 20px;
    width: 24px;
    text-align: center;
    color: rgb(17, 101, 211);
}

.link-item span {
    font-weight: 600;
}

.badge {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: #ddd;
    background: #222;
    border: 1px solid #2a2a2a;
    border-radius: 999px;
    padding: 6px 10px;
    white-space: nowrap;
}

.link-item:hover {
    background: #1f1f1f;
    border-color: purple;
}

.link-item:active {
    transform: translateY(1px);
}

.link-item.is-muted {
    opacity: 0.6;
}

.notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #151515;
    border: 1px solid #2a2a2a;
    border-left: 4px solid #f0c000;
    border-radius: 8px;
    padding: 12px 14px;
    color: #ddd;
    margin: 10px 2px 0;
}

.notice i {
    color: #f0c000;
    margin-top: 2px;
}

.notice.info {
    border-left-color: rgb(17, 101, 211);
}


@media only screen and (max-width: 600px) {
    #hero {
        width: 100%;
        margin-top: 16px;
    }

    #hero h1 {
        font-size: 40px;
    }

    #hero img {
        height: 80px;
    }
}