* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background: #1a1a1a;
    color: #d4d4d4;
    font-family: "MS PGothic", "\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF", sans-serif;
    font-size: 13px;
    line-height: 1.6;
}
#topbar {
    background: #202020;
    border-bottom: 1px solid #3a3a3a;
    padding: 5px 12px;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
    position: sticky;
    top: 0;
    z-index: 10;
}
#topbar a {
    color: #b388ff;
    text-decoration: none;
}
#topbar a:hover { text-decoration: underline; }
#topbar .sep { color: #444; }
#topbar .current { color: #aaa; }
a.site-title {
    display: block;
    text-decoration: none;
    font-size: 18px;
    color: #b388ff;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: -8px;
    margin-bottom: 18px;
    padding: 8px 0 6px;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 28px;
    z-index: 9;
    background: #1a1a1a;
}
a.site-title:hover { text-decoration: none; }
.site-title .seg { display: inline-block; position: relative; transform-origin: center bottom; }
.card {
    background: #222;
    border: 1px solid #383838;
    padding: 16px 18px;
    margin-bottom: 12px;
}
.card p { margin-bottom: 8px; color: #bbb; }
.tag {
    display: inline-block;
    background: #2c2040;
    color: #b388ff;
    border: 1px solid #4a2e7a;
    font-size: 11px;
    padding: 1px 6px;
    margin-bottom: 10px;
}
footer {
    text-align: center;
    color: #444;
    font-size: 11px;
    margin-top: 32px;
    padding-bottom: 24px;
}
#main {
    max-width: 520px;
    margin: 28px auto;
    padding: 0 14px;
}
#mc-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #444;
    margin-right: 5px;
    vertical-align: middle;
    position: relative; top: -1px;
}
#mc-dot.online  { background: #66bb6a; box-shadow: 0 0 4px #66bb6a88; }
#mc-dot.offline { background: #ef5350; }
#mc-playerlist.open { display: block !important; }
#mc-playerlist-toggle:hover { color: #b388ff; }
#mc-feed {
    font-size: 11px;
    color: #8c8c8c;
    line-height: 1.5;
    max-height: 146px;
    overflow-y: scroll;
    border: 1px solid #2a2a2a;
    background: #1a1a1a;
    padding: 6px 7px;
    scrollbar-width: thin;
    scrollbar-color: #3a2a55 #1a1a1a;
}
#mc-feed::-webkit-scrollbar { width: 4px; }
#mc-feed::-webkit-scrollbar-track { background: #1a1a1a; }
#mc-feed::-webkit-scrollbar-thumb { background: #3a2a55; border-radius: 2px; }
@media (max-width: 540px) {
    #main { margin: 14px auto; }
    .card { padding: 12px 14px; }
    .site-title { font-size: 15px; margin-bottom: 14px; }
    #mc-feed { max-height: 120px; }
}
