/* 数字能量宣传页面特定样式 */

/* 数字浮动背景 */
.numbers-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    pointer-events: none;
    overflow: hidden;
}

.floating-numbers {
    position: absolute;
    font-size: 8rem;
    color: #D4AF37;
    white-space: nowrap;
    animation: floatHorizontal 100s linear infinite;
    top: 20%;
    left: 0;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    opacity: 0.4;
}

.floating-numbers .energy-digit {
    display: inline-block;
    margin: 0 30px;
    animation: digitPulse 5s ease-in-out infinite;
    animation-delay: calc(var(--digit-index) * 0.3s);
}

.floating-numbers .energy-digit:nth-child(1) { --digit-index: 1; }
.floating-numbers .energy-digit:nth-child(2) { --digit-index: 2; }
.floating-numbers .energy-digit:nth-child(3) { --digit-index: 3; }
.floating-numbers .energy-digit:nth-child(4) { --digit-index: 4; }
.floating-numbers .energy-digit:nth-child(5) { --digit-index: 5; }
.floating-numbers .energy-digit:nth-child(6) { --digit-index: 6; }
.floating-numbers .energy-digit:nth-child(7) { --digit-index: 7; }
.floating-numbers .energy-digit:nth-child(8) { --digit-index: 8; }
.floating-numbers .energy-digit:nth-child(9) { --digit-index: 9; }
.floating-numbers .energy-digit:nth-child(10) { --digit-index: 10; }

.energy-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 200s linear infinite;
}

@keyframes floatHorizontal {
    0% {
        transform: translateX(-20%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes digitPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

/* 数字能量英雄区 */
.number-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.number-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.number-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.number-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.number-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    color: rgba(212, 175, 55, 0.8);
    font-style: italic;
    font-size: 1.2rem;
}

.points-display {
    background: rgba(42, 11, 67, 0.5);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.points-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.points-badge i {
    font-size: 2rem;
    color: #D4AF37;
}

.points-info {
    display: flex;
    flex-direction: column;
}

.points-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.points-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
}

.points-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.number-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.number-energy-demo {
    background: rgba(42, 11, 67, 0.8);
    border-radius: 25px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.phone-number-display {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.phone-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 500;
}

.phone-digits {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.digit {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    border: 2px solid transparent;
    position: relative;
    transition: all 0.3s ease;
}

.digit:hover {
    transform: translateY(-5px);
}

.digit[data-energy="very-strong"] {
    border-color: #4CAF50;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
    background: linear-gradient(135deg, #2A0B43 0%, #4CAF50 100%);
}

.digit[data-energy="strong"] {
    border-color: #8BC34A;
    box-shadow: 0 0 10px rgba(139, 195, 74, 0.4);
    background: linear-gradient(135deg, #2A0B43 0%, #8BC34A 100%);
}

.digit[data-energy="medium"] {
    border-color: #FFC107;
    background: linear-gradient(135deg, #2A0B43 0%, #FFC107 100%);
}

.digit[data-energy="weak"] {
    border-color: #FF9800;
    background: linear-gradient(135deg, #2A0B43 0%, #FF9800 100%);
}

.phone-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.energy-score {
    display: flex;
    align-items: center;
    gap: 5px;
}

.score-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.score-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
}

.score-max {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.energy-level {
    display: flex;
    align-items: center;
    gap: 5px;
}

.level-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.level-value {
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.level-value.excellent {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.energy-visualization {
    margin-top: 20px;
}

.energy-wave {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 100px;
    margin-bottom: 20px;
    position: relative;
}

.energy-wave::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(212, 175, 55, 0.3);
}

.wave-bar {
    width: 20px;
    background: linear-gradient(to top, #D4AF37, #FFC107);
    border-radius: 5px 5px 0 0;
    transition: all 0.5s ease;
}

.wave-bar[data-frequency="very-high"] {
    height: 90px;
    animation: wavePulse 2s ease-in-out infinite;
}

.wave-bar[data-frequency="high"] {
    height: 70px;
    animation: wavePulse 2.2s ease-in-out infinite;
    animation-delay: 0.2s;
}

.wave-bar[data-frequency="medium"] {
    height: 50px;
    animation: wavePulse 2.4s ease-in-out infinite;
    animation-delay: 0.4s;
}

.wave-bar[data-frequency="low"] {
    height: 30px;
    animation: wavePulse 2.6s ease-in-out infinite;
    animation-delay: 0.6s;
}

.energy-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 3px;
}

.legend-color.very-high {
    background: #4CAF50;
}

.legend-color.high {
    background: #8BC34A;
}

.legend-color.medium {
    background: #FFC107;
}

.legend-color.low {
    background: #FF9800;
}

.legend-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@keyframes wavePulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* 数字能量分析类型 */
.number-analysis-section {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.analysis-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.analysis-type-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.analysis-type-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.analysis-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, transparent);
}

.type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #D4AF37;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.analysis-type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.type-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.type-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.feature i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.type-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.points-cost {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.2rem;
}

.points-cost i {
    font-size: 1.5rem;
}

.type-action .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* 数字能量原理 */
.number-principle-section {
    padding: 100px 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.principle-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.principle-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    background: rgba(42, 11, 67, 0.9);
}

.principle-number {
    font-size: 3rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
    flex-shrink: 0;
    font-family: 'Courier New', monospace;
}

.principle-content {
    flex: 1;
}

.principle-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.principle-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.principle-example {
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border-left: 3px solid #D4AF37;
}

.principle-example h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #fff;
}

.principle-example p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* 数字能量含义 */
.number-meanings-section {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.meanings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.meaning-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.meaning-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.meaning-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    border: 2px solid rgba(212, 175, 55, 0.5);
    flex-shrink: 0;
    font-family: 'Courier New', monospace;
}

.meaning-content {
    flex: 1;
}

.meaning-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.meaning-attributes {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.attribute {
    padding: 3px 10px;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.meaning-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.meaning-aspects {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aspect {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aspect-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.aspect-value {
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.85rem;
}

.aspect-value.excellent {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.aspect-value.good {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.aspect-value.average {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
}

.view-all-numbers {
    text-align: center;
    margin-top: 50px;
}

/* 数字组合案例分析 */
.number-cases-section {
    padding: 100px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.case-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.case-type {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D4AF37;
    font-weight: 500;
}

.case-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Courier New', monospace;
}

.case-number-change {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Courier New', monospace;
}

.old-number {
    color: #FF5722;
    font-weight: 500;
}

.new-number {
    color: #4CAF50;
    font-weight: 500;
}

.case-analysis h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.case-analysis p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-aspects {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.case-aspect {
    display: flex;
    align-items: center;
    gap: 15px;
}

.aspect-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    width: 100px;
    flex-shrink: 0;
}

.aspect-bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.aspect-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #FFC107);
    border-radius: 5px;
}

.aspect-value {
    color: #D4AF37;
    font-weight: 700;
    font-size: 0.9rem;
    width: 40px;
    text-align: right;
}

.improvement-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.metric {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.metric-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
}

.case-result {
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border-left: 3px solid #D4AF37;
}

.case-result h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #fff;
}

.case-result p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* 价格说明 */
.number-pricing-section {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.pricing-comparison {
    max-width: 800px;
    margin: 50px auto 0;
}

.pricing-card {
    background: rgba(42, 11, 67, 0.8);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.pricing-header {
    margin-bottom: 40px;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: #D4AF37;
    border: 3px solid rgba(212, 175, 55, 0.5);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.pricing-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pricing-feature i {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.pricing-feature p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 0.95rem;
}

.points-value {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
}

.points-value h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.value-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    min-width: 120px;
}

.value-item i {
    font-size: 2rem;
    color: #D4AF37;
}

.pricing-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.pricing-highlight {
    font-size: 1.3rem;
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 20px;
}

/* 常见问题 */
.number-faq-section {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.faq-question i {
    color: #D4AF37;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 1000px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA区域 */
.number-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(42, 11, 67, 0.9) 0%, rgba(74, 27, 109, 0.9) 100%);
    border-radius: 40px;
    margin: 40px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D4AF37;
    font-weight: 500;
    font-size: 1.1rem;
}

.highlight-item i {
    font-size: 1.3rem;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* 模态框 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(42, 11, 67, 0.95);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    border: 2px solid #D4AF37;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

#selected-analysis {
    color: #D4AF37;
    font-weight: 700;
}

.number-input-section {
    margin: 20px 0;
}

.number-input-section label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-weight: 500;
}

#number-input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

#number-input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.input-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 8px;
}

.points-highlight {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.3rem;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.modal-actions .btn {
    flex: 1;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .number-title {
        font-size: 3.5rem;
    }
    
    .number-hero-content {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .number-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .number-tagline {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .analysis-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .meanings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .number-title {
        font-size: 2.8rem;
    }
    
    .number-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .analysis-types-grid {
        grid-template-columns: 1fr;
    }
    
    .type-features {
        grid-template-columns: 1fr;
    }
    
    .meaning-card {
        flex-direction: column;
        text-align: center;
    }
    
    .meaning-number {
        margin: 0 auto;
    }
    
    .meaning-attributes {
        justify-content: center;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .number-title {
        font-size: 2.2rem;
    }
    
    .number-subtitle {
        font-size: 1.1rem;
    }
    
    .number-hero-visual {
        height: auto;
    }
    
    .number-energy-demo {
        padding: 20px;
    }
    
    .digit {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    
    .phone-summary {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .meanings-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .value-items {
        flex-direction: column;
        align-items: center;
    }
    
    .case-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}