* { box-sizing: border-box; }
body {
    margin: 0;
    min-height: 100vh;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    background: #000;
    color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.page {
    width: min(580px, 100%);
    max-width: 580px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 580px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 10px 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.search-box input[type="text"] {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    color: #ffffff;
    padding: 16px 18px;
    font-size: 1.05rem;
}

.search-box button {
    border: none;
    border-radius: 999px;
    padding: 13px 24px;
    margin-left: 10px;
    background: #1a73ff;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.search-box button:hover {
    transform: translateY(-1px);
    background: #3b82ff;
}

.result {
    display: none;
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    color: #ffcccb;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.result.visible {
    display: flex;
}

.result.success {
    color: #b5ffb0;
    background: rgba(110, 232, 133, 0.14);
}

.result a {
    color: #90c8ff;
    text-decoration: none;
    word-break: break-all;
}

.result a:hover {
    text-decoration: underline;
}
