/* 梦境解析宣传页面特定样式 */

/* 梦境云朵背景 */
.dream-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    pointer-events: none;
    overflow: hidden;
}

.floating-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cloud {
    position: absolute;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.3);
    opacity: 0.4;
    animation: floatClouds 30s linear infinite;
    filter: blur(1px);
}

.cloud:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; animation-duration: 40s; }
.cloud:nth-child(2) { top: 20%; left: 80%; animation-delay: 5s; animation-duration: 35s; }
.cloud:nth-child(3) { top: 50%; left: 15%; animation-delay: 10s; animation-duration: 45s; }
.cloud:nth-child(4) { top: 70%; left: 70%; animation-delay: 15s; animation-duration: 30s; }
.cloud:nth-child(5) { top: 40%; left: 85%; animation-delay: 20s; animation-duration: 50s; }
.cloud:nth-child(6) { top: 85%; left: 25%; animation-delay: 25s; animation-duration: 38s; }

.dream-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 15%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 15%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.01) 0%, transparent 20%),
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 12%);
}

@keyframes floatClouds {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
    25% {
        transform: translateX(50px) translateY(-20px);
        opacity: 0.5;
    }
    50% {
        transform: translateX(100px) translateY(0);
        opacity: 0.3;
    }
    75% {
        transform: translateX(50px) translateY(20px);
        opacity: 0.5;
    }
    100% {
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
}

/* 梦境解析英雄区 */
.dream-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.dream-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dream-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;
}

.dream-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.dream-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;
}

.dream-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dream-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);
}

.dream-scene {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.dream-elements {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.dream-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(10, 14, 23, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    min-width: 80px;
}

.dream-element:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
}

.dream-element i {
    font-size: 1.8rem;
    color: #D4AF37;
}

.element-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 特殊梦境元素动画 */
.dream-element.flying {
    animation: floatElement 3s ease-in-out infinite;
}

.dream-element.water {
    animation: ripple 4s ease-in-out infinite;
}

.dream-interpretation {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    padding: 20px;
    border-left: 3px solid #D4AF37;
}

.dream-sample {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
}

.interpretation-result {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 10px;
    padding: 15px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.result-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #D4AF37;
}

.result-confidence {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(76, 175, 80, 0.2);
    padding: 3px 10px;
    border-radius: 15px;
}

.result-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.result-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    margin-top: 10px;
}

.summary-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.summary-value {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.95rem;
}

.dream-types {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    cursor: pointer;
}

.type-item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
}

.type-item.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.type-item i {
    font-size: 1.5rem;
    color: #D4AF37;
}

.type-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes ripple {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* 梦境解析类型 */
.dream-analysis-section {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.analysis-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-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.analysis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, transparent);
}

.analysis-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-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.analysis-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.analysis-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;
}

.analysis-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;
}

.analysis-action .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* 梦境解析原理 */
.dream-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-icon {
    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: 1.8rem;
    color: #D4AF37;
    border: 2px solid rgba(212, 175, 55, 0.5);
    flex-shrink: 0;
}

.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;
    line-height: 1.5;
}

/* 常见梦境象征 */
.dream-symbols-section {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.symbol-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;
}

.symbol-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.symbol-icon {
    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: 1.8rem;
    color: #D4AF37;
    border: 2px solid rgba(212, 175, 55, 0.5);
    flex-shrink: 0;
}

.symbol-content {
    flex: 1;
}

.symbol-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.symbol-meanings {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.meaning {
    display: flex;
    gap: 5px;
}

.meaning-type {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.meaning-text {
    color: #D4AF37;
    font-size: 0.85rem;
}

.symbol-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.symbol-variations {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border-left: 2px solid #D4AF37;
}

.variation {
    display: flex;
    gap: 8px;
}

.variation-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.variation-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.view-more-symbols {
    text-align: center;
    margin-top: 50px;
}

/* 梦境解析案例 */
.dream-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-theme {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    text-align: right;
    max-width: 200px;
}

.case-dream h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.case-dream p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.case-analysis h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
}

.analysis-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.5);
    flex-shrink: 0;
    font-weight: 700;
}

.step-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
}

.case-result {
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border-left: 3px solid #D4AF37;
}

.case-result h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.case-result p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.result-verification {
    display: flex;
    align-items: center;
    gap: 10px;
}

.verification-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.verification-value {
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.verification-value.accurate {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.verification-value.effective {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
}

/* 价格说明 */
.dream-pricing-section {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.pricing-explanation {
    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;
}

/* 常见问题 */
.dream-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: 1500px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA区域 */
.dream-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: 700px;
    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;
}

.dream-input-section {
    margin: 20px 0;
}

.dream-input-section label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-weight: 500;
}

#dream-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: 1rem;
    font-family: 'Noto Sans SC', sans-serif;
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

#dream-input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.dream-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-item select {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-item select:focus {
    outline: none;
    border-color: #D4AF37;
}

.detail-item select option {
    background: #2A0B43;
    color: #fff;
}

.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) {
    .dream-title {
        font-size: 3.5rem;
    }
    
    .dream-hero-content {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .dream-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .dream-tagline {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .symbols-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dream-title {
        font-size: 2.8rem;
    }
    
    .dream-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-features {
        grid-template-columns: 1fr;
    }
    
    .symbol-card {
        flex-direction: column;
        text-align: center;
    }
    
    .symbol-icon {
        margin: 0 auto;
    }
    
    .symbol-meanings {
        align-items: center;
    }
    
    .meaning {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .dream-details {
        grid-template-columns: 1fr;
    }
    
    .case-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .case-theme {
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .dream-title {
        font-size: 2.2rem;
    }
    
    .dream-subtitle {
        font-size: 1.1rem;
    }
    
    .dream-hero-visual {
        height: auto;
    }
    
    .dream-demo {
        padding: 20px;
    }
    
    .dream-elements {
        gap: 10px;
    }
    
    .dream-element {
        min-width: 70px;
        padding: 8px;
    }
    
    .dream-types {
        flex-wrap: wrap;
    }
    
    .type-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .symbols-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .value-items {
        flex-direction: column;
        align-items: center;
    }
}