/* 塔罗占卜宣传页面特定样式 */

/* 塔罗符号浮动背景 */
.tarot-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    pointer-events: none;
    overflow: hidden;
}

.tarot-symbols {
    position: absolute;
    font-size: 8rem;
    color: #D4AF37;
    white-space: nowrap;
    animation: floatHorizontal 120s linear infinite;
    top: 15%;
    left: 0;
}

.tarot-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 20%);
    animation: patternsMove 100s linear infinite alternate;
}

@keyframes patternsMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 500px 300px;
    }
}

/* 塔罗英雄区 */
.tarot-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.tarot-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tarot-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;
}

.tarot-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.tarot-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
    color: rgba(212, 175, 55, 0.8);
    font-style: italic;
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.tarot-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tarot-spread {
    position: relative;
    width: 400px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tarot-card-placeholder {
    position: absolute;
    width: 140px;
    height: 200px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.tarot-card-placeholder:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card-front {
    background: linear-gradient(135deg, #D4AF37 0%, #F4DF9A 100%);
    color: #2A0B43;
    border: 3px solid rgba(42, 11, 67, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-back {
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    transform: rotateY(180deg);
    border: 3px solid #D4AF37;
}

.card-symbol {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card-name {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Ma Shan Zheng', cursive;
}

.tarot-pattern {
    width: 80%;
    height: 80%;
    background: repeating-linear-gradient(
        45deg,
        rgba(212, 175, 55, 0.2),
        rgba(212, 175, 55, 0.2) 10px,
        transparent 10px,
        transparent 20px
    );
    border-radius: 8px;
}

/* 卡片位置 */
.card-1 {
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
}

.card-2 {
    top: 10%;
    right: 15%;
    transform: rotate(10deg);
}

.card-3 {
    bottom: 20%;
    left: 15%;
    transform: rotate(5deg);
}

.card-4 {
    bottom: 10%;
    right: 10%;
    transform: rotate(-10deg);
}

/* 塔罗介绍 */
.tarot-intro {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.intro-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.intro-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.tarot-deck {
    position: relative;
    width: 200px;
    height: 280px;
}

.deck-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 10px;
    border: 2px solid #D4AF37;
}

.deck-card:nth-child(1) { transform: rotate(-5deg); }
.deck-card:nth-child(2) { transform: rotate(-2.5deg); top: -5px; }
.deck-card:nth-child(3) { transform: rotate(0deg); top: -10px; }
.deck-card:nth-child(4) { transform: rotate(2.5deg); top: -15px; }
.deck-card:nth-child(5) { transform: rotate(5deg); top: -20px; }

/* 塔罗牌阵 */
.tarot-spreads {
    padding: 100px 0;
}

.spreads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.spread-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 25px;
    padding: 30px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.spread-card.featured {
    border-color: #D4AF37;
    background: rgba(42, 11, 67, 0.9);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #D4AF37;
    color: #2A0B43;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1;
}

.spread-visual {
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    background: rgba(10, 14, 23, 0.5);
    border-radius: 15px;
    padding: 20px;
}

.spread-layout {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-spot {
    position: absolute;
    width: 50px;
    height: 70px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px dashed rgba(212, 175, 55, 0.5);
    border-radius: 8px;
}

/* 单张牌阵 */
.spread-layout.single .card-spot {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 三张牌阵 */
.spread-layout.three-card .card-spot:nth-child(1) {
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

.spread-layout.three-card .card-spot:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spread-layout.three-card .card-spot:nth-child(3) {
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
}

/* 凯尔特十字阵 */
.spread-layout.celtic .card-spot {
    width: 40px;
    height: 56px;
}

.spread-layout.celtic .card-spot:nth-child(1) { top: 30%; left: 40%; }
.spread-layout.celtic .card-spot:nth-child(2) { top: 30%; left: 50%; transform: translateX(-50%); }
.spread-layout.celtic .card-spot:nth-child(3) { top: 40%; left: 40%; }
.spread-layout.celtic .card-spot:nth-child(4) { top: 40%; left: 50%; transform: translateX(-50%); }
.spread-layout.celtic .card-spot:nth-child(5) { top: 50%; left: 40%; }
.spread-layout.celtic .card-spot:nth-child(6) { top: 50%; left: 50%; transform: translateX(-50%); }
.spread-layout.celtic .card-spot:nth-child(7) { top: 60%; left: 30%; }
.spread-layout.celtic .card-spot:nth-child(8) { top: 60%; left: 45%; }
.spread-layout.celtic .card-spot:nth-child(9) { top: 60%; left: 60%; }
.spread-layout.celtic .card-spot:nth-child(10) { top: 70%; left: 50%; transform: translateX(-50%); }

.spread-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.spread-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.spread-info {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    font-weight: 500;
}

.points-cost {
    color: #FFC107;
    font-weight: 700;
}

.spread-purpose {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.spread-select {
    width: 100%;
    justify-content: center;
}

/* 塔罗特色功能 */
.tarot-features {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    background: rgba(42, 11, 67, 0.9);
}

.feature-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;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.feature-list li {
    color: rgba(212, 175, 55, 0.9);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-size: 1.5rem;
}

.feature-points {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.points-label {
    color: rgba(255, 255, 255, 0.7);
}

.points-value {
    color: #FFC107;
    font-weight: 700;
    font-size: 1.1rem;
}

/* 点数购买系统 */
.points-system {
    padding: 100px 0;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.points-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 25px;
    padding: 30px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.points-card.featured {
    border-color: #D4AF37;
    background: rgba(42, 11, 67, 0.9);
    transform: scale(1.05);
}

.points-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.points-header h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.points-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.amount {
    font-size: 2.8rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
}

.unit {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.points-price {
    margin-bottom: 25px;
}

.currency {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    vertical-align: top;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.points-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.points-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
}

.points-features li i {
    position: absolute;
    left: 0;
    top: 2px;
}

.points-features li i.fa-check {
    color: #4CAF50;
}

.points-features li i.fa-times {
    color: #f44336;
}

.points-buy {
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
}

.points-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #8BC34A;
    font-weight: 500;
    font-size: 0.9rem;
}

.points-value i {
    color: #FFC107;
}

.points-note {
    display: flex;
    gap: 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.note-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;
    flex-shrink: 0;
}

.note-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.note-content ul {
    list-style: none;
    padding-left: 0;
}

.note-content li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.6;
}

.note-content li strong {
    color: #D4AF37;
}

/* 塔罗流程 */
.tarot-process {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.process-steps {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2A0B43, #D4AF37, #2A0B43);
    z-index: 1;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.step:nth-child(even) .step-content {
    padding-right: 40px;
    padding-left: 0;
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4DF9A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2A0B43;
    flex-shrink: 0;
    border: 5px solid rgba(42, 11, 67, 0.9);
}

.step-content {
    flex: 1;
    padding: 0 40px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(42, 11, 67, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #D4AF37;
    border: 3px solid rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.process-demo {
    max-width: 800px;
    margin: 80px auto 0;
}

.demo-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 25px;
    padding: 35px;
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.demo-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.demo-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.demo-tarot-card {
    width: 120px;
    height: 180px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4DF9A 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px solid rgba(42, 11, 67, 0.8);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.demo-card-name {
    font-size: 0.9rem;
    color: #2A0B43;
    margin-bottom: 10px;
    font-weight: 500;
}

.demo-card-symbol {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.demo-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2A0B43;
    font-family: 'Ma Shan Zheng', cursive;
}

.demo-interpretation h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.demo-interpretation p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.demo-interpretation strong {
    color: #D4AF37;
}

/* 塔罗师团队 */
.tarot-masters {
    padding: 100px 0;
}

.masters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.master-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.master-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.master-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.avatar-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 2.5rem;
    font-weight: 700;
    border: 3px solid rgba(212, 175, 55, 0.5);
}

.avatar-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    background: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2A0B43;
    font-size: 0.9rem;
    border: 3px solid rgba(42, 11, 67, 0.9);
}

.master-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.master-title {
    color: #D4AF37;
    font-weight: 500;
    margin-bottom: 15px;
}

.master-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.master-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.master-stats .stat {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.master-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.expertise-tag {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* 用户见证 */
.tarot-testimonials {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.testimonial-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    padding-left: 25px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.3);
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-weight: 600;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.author-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.author-rating {
    color: #D4AF37;
    font-size: 0.9rem;
}

.testimonial-points {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #FFC107;
    font-weight: 500;
}

/* FAQ常见问题 */
.tarot-faq {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.faq-item {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 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.1rem;
    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: 500px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA区域 */
.tarot-cta {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
    text-align: center;
}

.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-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-features .feature i {
    font-size: 2.5rem;
    color: #D4AF37;
}

.cta-features .feature span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .tarot-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .tarot-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .tarot-tagline {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step, .step:nth-child(even) {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .step-content {
        padding: 20px 0 !important;
    }
    
    .spreads-grid,
    .features-grid,
    .points-grid,
    .masters-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .points-card.featured {
        transform: scale(1);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .tarot-title {
        font-size: 2.8rem;
    }
    
    .tarot-subtitle {
        font-size: 1.3rem;
    }
    
    .tarot-hero-visual {
        height: 400px;
    }
    
    .tarot-spread {
        width: 300px;
        height: 250px;
    }
    
    .tarot-card-placeholder {
        width: 110px;
        height: 160px;
    }
    
    .card-symbol {
        font-size: 2.2rem;
    }
    
    .card-name {
        font-size: 1.1rem;
    }
    
    .points-note {
        flex-direction: column;
        text-align: center;
    }
    
    .note-icon {
        margin: 0 auto;
    }
    
    .demo-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tarot-title {
        font-size: 2.2rem;
    }
    
    .tarot-subtitle {
        font-size: 1.1rem;
    }
    
    .tarot-spread {
        width: 280px;
        height: 200px;
    }
    
    .tarot-card-placeholder {
        width: 90px;
        height: 130px;
    }
    
    .card-symbol {
        font-size: 1.8rem;
    }
    
    .card-name {
        font-size: 0.9rem;
    }
    
    .spread-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}