/*
 * 云上云诺 — 全局样式
 *
 * 目标：接近萌备的朴素粉色风格。
 * 不做大圆角、不做 AI 花哨装饰、不做重毛玻璃。
 */

:root {
    --yunnuo-primary: #ff3399;
    --yunnuo-primary-dark: #e62b8a;
    --yunnuo-purple: #9c51ff;
    --yunnuo-purple-end: #816bff;
    --yunnuo-text: #ffffff;
    --yunnuo-text-muted: rgba(255,255,255,0.72);
    --yunnuo-panel: rgba(120, 129, 147, 0.3);
    --yunnuo-panel-border: rgba(255,255,255,0.18);
    --yunnuo-shadow: 0 0 10px 0 #333;
    --yunnuo-radius: 10px;
    --yunnuo-radius-pill: 50px;
    --yunnuo-font: 'ZCOOL KuaiLe', cursive, -apple-system, BlinkMacSystemFont, sans-serif;
    --yunnuo-container-max: 800px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input, textarea, button {
    outline: none;
    background-color: transparent;
    border: 0;
    font-family: inherit;
}

a {
    color: var(--yunnuo-text);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

body {
    font-family: var(--yunnuo-font);
    color: var(--yunnuo-text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    background: #f080b7;
}

.yunnuo-bg {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #ff9fcb 0%, #f080b7 45%, #c16ccf 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
}

.yunnuo-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yunnuo-nav {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.yunnuo-nav-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.yunnuo-nav-logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.yunnuo-nav-logo img {
    height: 36px;
    width: auto;
}

.yunnuo-nav-logo-text {
    color: #fff;
}

.yunnuo-nav-links {
    display: flex;
    gap: 20px;
}

.yunnuo-nav-link {
    color: var(--yunnuo-text);
    font-size: 16px;
    opacity: 0.9;
    transition: opacity 0.2s;
    text-decoration: none;
}

.yunnuo-nav-link:hover {
    opacity: 1;
    color: #fff;
    text-decoration: underline;
}

.yunnuo-main {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
}

.yunnuo-container {
    max-width: var(--yunnuo-container-max);
    width: 95%;
    padding: 35px 50px;
    margin-top: 20px;
    border-radius: var(--yunnuo-radius);
    background: var(--yunnuo-panel);
    border: 1px solid var(--yunnuo-panel-border);
    box-shadow: var(--yunnuo-shadow);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--yunnuo-text);
}

.yunnuo-footer {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: var(--yunnuo-text-muted);
    background: rgba(0, 0, 0, 0.14);
}

.yunnuo-page-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.yunnuo-section {
    margin-bottom: 10px;
}

.yunnuo-section-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.yunnuo-info {
    border: rgba(255,255,255,0.2) solid 1px;
    border-radius: var(--yunnuo-radius);
    overflow: hidden;
}

.yunnuo-info-item {
    display: flex;
    border-bottom: rgba(255,255,255,0.1) solid 1px;
}

.yunnuo-info-item:last-child {
    border-bottom: none;
}

.yunnuo-info-label {
    width: 140px;
    min-width: 140px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.05);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.yunnuo-info-value {
    flex: 1;
    padding: 10px 15px;
    word-break: break-all;
    line-height: 1.5;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.yunnuo-empty {
    text-align: center;
    padding: 30px;
    opacity: 0.6;
}

@media (max-width: 820px) {
    .yunnuo-container {
        padding: 20px;
    }

    .yunnuo-nav-links {
        gap: 12px;
        font-size: 14px;
    }

    .yunnuo-info-item {
        flex-direction: column;
    }

    .yunnuo-info-label {
        width: 100%;
        min-width: auto;
        padding: 8px 15px;
        font-size: 13px;
    }

    .yunnuo-info-value {
        padding: 6px 15px 10px;
    }
}

@media (max-width: 480px) {
    .yunnuo-nav-inner {
        flex-direction: column;
        gap: 8px;
    }

    .yunnuo-nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }
}
