/* 手机号码测算专用样式 */

/* 手机号输入框 */
.phone-input-row {
    display: flex;
    gap: 10px;
}
.phone-input-row input {
    flex: 1;
    height: 52px;
    padding: 0 16px;
    font-size: 18px;
    letter-spacing: 2px;
    text-align: center;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255,252,245,.9);
    font-family: "Courier New", monospace;
    font-weight: 600;
}
.phone-input-row input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(141,40,36,.1);
}

/* 综合评分卡片 */
.score-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255,252,245,.95), rgba(245,239,226,.95));
}
.score-circle {
    flex: 0 0 auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a227, #8b6914);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 24px rgba(139,105,20,.35);
    position: relative;
}
.score-circle::before {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 2px solid rgba(255,248,235,.35);
}
.score-number {
    font-size: 38px;
    font-weight: 800;
    color: #fff8eb;
    line-height: 1;
    font-family: Arial, sans-serif;
    margin: 0;
}
.score-label {
    font-size: 11px;
    color: rgba(255,248,235,.9);
    letter-spacing: .15em;
    margin-top: 4px;
}
.score-info {
    flex: 1;
}
.score-level {
    font-size: 22px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
    letter-spacing: .08em;
}
.score-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--ink);
}

/* 81数理 */
.numerology-result {
    text-align: center;
    padding: 10px 0;
}
.numerology-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    font-family: Arial, sans-serif;
}
.numerology-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.numerology-tag.ji { background: rgba(45,106,79,.12); color: var(--green); }
.numerology-tag.xiong { background: rgba(141,40,36,.1); color: var(--red); }
.numerology-tag.ban { background: rgba(184,134,11,.12); color: var(--gold); }
.numerology-text {
    margin-top: 14px;
    padding: 12px;
    background: rgba(141,40,36,.04);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
}

/* 数字能量 */
.energy-stars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}
.energy-star {
    padding: 10px 12px;
    border-radius: 8px;
    border-left: 3px solid;
}
.energy-star.good { background: rgba(45,106,79,.06); border-color: var(--green); }
.energy-star.bad { background: rgba(141,40,36,.04); border-color: var(--red); }
.energy-star-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}
.energy-star.good .energy-star-name { color: var(--green); }
.energy-star.bad .energy-star-name { color: var(--red); }
.energy-star-nums {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 4px;
}
.energy-star-desc {
    font-size: 12px;
    line-height: 1.6;
    color: var(--ink);
}
.energy-summary {
    padding: 12px;
    background: rgba(184,134,11,.06);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.8;
}

/* 五行分析 */
.wuxing-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}
.wuxing-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.wuxing-name {
    flex: 0 0 40px;
    font-size: 14px;
    font-weight: 700;
}
.wuxing-bar-wrap {
    flex: 1;
    height: 20px;
    background: rgba(0,0,0,.05);
    border-radius: 10px;
    overflow: hidden;
}
.wuxing-bar {
    height: 100%;
    border-radius: 10px;
    transition: width .5s ease;
}
.wuxing-count {
    flex: 0 0 30px;
    text-align: right;
    font-size: 13px;
    font-weight: 600;
}
.wuxing-summary {
    padding: 12px;
    background: rgba(141,40,36,.04);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.8;
}

/* 五行补运建议 */
.wuxing-supplement {
    margin-top: 12px;
    padding: 14px;
    background: rgba(184,134,11,.06);
    border: 1px solid rgba(184,134,11,.15);
    border-radius: 10px;
}
.supplement-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    gap: 8px;
}
.supplement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}
.supplement-item {
    padding: 8px 10px;
    background: rgba(255,255,255,.6);
    border-radius: 6px;
}
.supplement-label {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 4px;
    letter-spacing: .05em;
}
.supplement-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
}
.supplement-desc {
    font-size: 12px;
    line-height: 1.8;
    color: var(--ink);
    padding-top: 10px;
    border-top: 1px dashed rgba(0,0,0,.08);
}

/* 号码特征 */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.feature-tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(141,40,36,.08);
    color: var(--red);
    border: 1px solid rgba(141,40,36,.15);
}
.feature-tag.rare {
    background: linear-gradient(135deg, rgba(184,134,11,.15), rgba(184,134,11,.08));
    color: var(--gold);
    border-color: rgba(184,134,11,.3);
}
.feature-desc {
    padding: 12px;
    background: rgba(45,106,79,.04);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.8;
}

/* 数字展示 */
.digit-display {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 10px 0;
    flex-wrap: wrap;
}
.digit-box {
    width: 32px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}
