:root {
    --main-accent: #6c5ce7;
    --sub-accent: #ff7675;
    --bg-glass: rgba(15, 15, 25, 0.7);
    --border-glass: rgba(255, 255, 255, 0.1);
    --clr-online: #00b894;
    --clr-offline: #d63031;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Noto Sans JP', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('https://p.qpic.cn/ecc_merchant/0/wecooper_8c6642f0-5d0e-4762-8f02-ab227b165e70_1766606508188/0') no-repeat center center/cover fixed;
    overflow-x: hidden;
    overflow-y: auto;
    color: white;
    padding: 40px 0;
}

body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    position: fixed;
}

.main-wrapper {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.time-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sub-accent);
    margin-bottom: 10px;
}

.title-large {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #fff, #bdc3c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-text {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.8;
}

.version-tag {
    margin-top: 30px;
    font-family: monospace;
    font-size: 10px;
    opacity: 0.3;
}

.nav-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.link-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 15px;
    padding: 18px 25px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
}

.link-card:last-child { margin-bottom: 0; }

.link-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-box {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--main-accent), var(--sub-accent));
    border-radius: 14px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    color: white;
}

.link-content { flex: 1; }
.link-name { display: block; font-size: 17px; font-weight: 500; color: #fff; }
.link-addr { display: block; font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 3px; }

.status-dot {
    font-size: 10px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.status-online {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    box-shadow: 0 0 15px rgba(0, 184, 148, 0.5);
}

.status-offline {
    background: linear-gradient(135deg, #d63031, #e17055);
    color: white;
    box-shadow: 0 0 15px rgba(214, 48, 49, 0.3);
}

.status-skip {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-loading {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    body { align-items: flex-start; }
    .main-wrapper { grid-template-columns: 1fr; gap: 20px; }
    .info-panel { text-align: center; margin-bottom: 10px; }
    .title-large { font-size: 38px; }
}