/* ===== 打工人夸夸机 ===== */
.cm-hero {
    background: linear-gradient(160deg, #faf5ff 0%, #fdf4ff 100%);
    border: 1px solid #f0abfc;
    border-radius: 22px;
    padding: 30px;
    margin-bottom: 26px;
    box-shadow: 0 12px 36px rgba(192, 38, 211, .1);
    text-align: center;
}

.cm-head {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.cm-logo {
    font-size: 28px;
    background: #f0abfc;
    border-radius: 14px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cm-title {
    font-size: 20px;
    font-weight: 800;
    color: #701a75;
    text-align: left;
}

.cm-sub {
    font-size: 13px;
    color: #e879f9;
    text-align: left;
}

.cm-card {
    max-width: 640px;
    margin: 0 auto 20px;
    background: #fff;
    border: 2px solid #f0abfc;
    border-radius: 20px;
    padding: 34px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(217, 70, 239, .12);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cm-quote {
    position: absolute;
    top: -6px;
    left: 18px;
    font-size: 64px;
    font-weight: 900;
    color: #f0abfc;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.cm-text {
    font-size: 19px;
    font-weight: 600;
    color: #581c87;
    line-height: 1.8;
    transition: opacity .15s;
    padding: 0 10px;
}

.cm-tag {
    margin-top: 14px;
    font-size: 13px;
    color: #d946ef;
    background: #fdf4ff;
    border-radius: 999px;
    padding: 5px 14px;
}

.cm-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.cm-btn {
    border: 1px solid #f0abfc;
    background: #fff;
    color: #a21caf;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}

.cm-btn:hover {
    background: #fdf4ff;
}

.cm-btn.primary {
    background: #d946ef;
    color: #fff;
    border-color: #d946ef;
}

.cm-btn.primary:hover {
    background: #c026d3;
}

.cm-tip {
    margin-top: 14px;
    font-size: 12px;
    color: #e879f9;
}

@media (max-width: 640px) {
    .cm-hero { padding: 20px 12px; }
    .cm-text { font-size: 16px; }
}

/* ===== 深色模式 ===== */
[data-theme="dark"] .cm-hero {
    background: linear-gradient(160deg, #3b0764 0%, #4a044e 100%);
    border-color: rgba(240, 171, 252, 0.16);
}
[data-theme="dark"] .cm-title { color: #fdf4ff; }
[data-theme="dark"] .cm-sub,
[data-theme="dark"] .cm-tip { color: #e879f9; }
[data-theme="dark"] .cm-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(240, 171, 252, 0.20);
}
[data-theme="dark"] .cm-text { color: #f3e8ff; }
[data-theme="dark"] .cm-tag { background: rgba(217, 70, 239, 0.14); }
[data-theme="dark"] .cm-btn {
    background: rgba(255, 255, 255, 0.06);
    color: #f0abfc;
    border-color: rgba(240, 171, 252, 0.22);
}
[data-theme="dark"] .cm-btn:hover { background: rgba(217, 70, 239, 0.18); color: #f0abfc; }
[data-theme="dark"] .cm-btn.primary { background: #d946ef; color: #fff; border-color: #d946ef; }
[data-theme="dark"] .cm-logo { background: rgba(217, 70, 239, 0.20); }
