/* 星座运势宣传页面特定样式 */

/* 星座浮动背景 */
.zodiac-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    pointer-events: none;
    overflow: hidden;
}

.zodiac-icons {
    position: absolute;
    font-size: 10rem;
    color: #D4AF37;
    white-space: nowrap;
    animation: floatHorizontal 100s linear infinite;
    top: 20%;
    left: 0;
}

.constellation-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 49%, rgba(212, 175, 55, 0.1) 50%, transparent 51%),
        linear-gradient(135deg, transparent 49%, rgba(212, 175, 55, 0.1) 50%, transparent 51%);
    background-size: 100px 100px;
    animation: constellationMove 200s linear infinite;
}

@keyframes constellationMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 200px;
    }
}

/* 星座英雄区 */
.horoscope-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.horoscope-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.horoscope-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;
}

.horoscope-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.horoscope-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;
}

.horoscope-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zodiac-wheel {
    width: 400px;
    height: 400px;
    position: relative;
    animation: rotateSlow 60s linear infinite;
}

.wheel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
}

.zodiac-sign {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(42, 11, 67, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.zodiac-sign:hover {
    transform: scale(1.2);
    border-color: #D4AF37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    z-index: 10;
}

.zodiac-sign.active {
    transform: scale(1.3);
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.7);
    z-index: 20;
}

.sign-icon {
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 5px;
}

.sign-name {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* 星座位置计算 */
.zodiac-sign.aries { top: 10%; left: 50%; transform: translateX(-50%); }
.zodiac-sign.taurus { top: 20%; right: 20%; }
.zodiac-sign.gemini { top: 40%; right: 10%; }
.zodiac-sign.cancer { top: 60%; right: 10%; }
.zodiac-sign.leo { top: 75%; right: 20%; }
.zodiac-sign.virgo { bottom: 10%; left: 50%; transform: translateX(-50%); }
.zodiac-sign.libra { top: 75%; left: 20%; }
.zodiac-sign.scorpio { top: 60%; left: 10%; }
.zodiac-sign.sagittarius { top: 40%; left: 10%; }
.zodiac-sign.capricorn { top: 20%; left: 20%; }
.zodiac-sign.aquarius { top: 10%; left: 35%; }
.zodiac-sign.pisces { top: 10%; right: 35%; }

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2A0B43 0%, #4A1B6D 100%);
    border-radius: 50%;
    border: 3px solid #D4AF37;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.center-text {
    color: #D4AF37;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* 今日运势预览 */
.daily-preview {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.daily-horoscope {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.horoscope-card.featured {
    background: linear-gradient(135deg, rgba(42, 11, 67, 0.9) 0%, rgba(74, 27, 109, 0.9) 100%);
    border-radius: 25px;
    padding: 35px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.sign-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sign-icon-large {
    font-size: 3rem;
    color: #D4AF37;
    width: 80px;
    height: 80px;
    background: rgba(10, 14, 23, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.sign-details h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #fff;
}

.sign-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.daily-date {
    text-align: right;
}

.daily-date .date {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 10px;
}

.luck-rating {
    color: #D4AF37;
    font-size: 1.2rem;
}

.card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.luck-aspects {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aspect {
    display: flex;
    align-items: center;
    gap: 15px;
}

.aspect-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.aspect-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aspect-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.aspect-rating {
    font-weight: 700;
}

.aspect-rating.excellent { color: #4CAF50; }
.aspect-rating.good { color: #8BC34A; }
.aspect-rating.average { color: #FFC107; }
.aspect-rating.poor { color: #FF9800; }

.daily-tip {
    padding: 25px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border-left: 4px solid #D4AF37;
}

.daily-tip h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.daily-tip p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 快速预览 */
.horoscope-quickview {
    background: rgba(42, 11, 67, 0.8);
    border-radius: 25px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.quickview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.quickview-header h3 {
    font-size: 1.3rem;
    color: #fff;
}

.view-all {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.view-all:hover {
    color: #F4DF9A;
}

.quickview-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quickview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quickview-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.quickview-sign {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.quickview-rating {
    color: #FFC107;
    font-weight: 700;
}

/* 十二星座网格 */
.zodiac-grid-section {
    padding: 100px 0;
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.zodiac-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zodiac-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.zodiac-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, transparent);
}

.zodiac-icon {
    font-size: 3.5rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.zodiac-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.zodiac-dates {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.zodiac-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.zodiac-element {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.element-label {
    color: rgba(255, 255, 255, 0.6);
}

.element-value {
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.element-value.fire { background: #FF5722; color: #fff; }
.element-value.earth { background: #795548; color: #fff; }
.element-value.air { background: #2196F3; color: #fff; }
.element-value.water { background: #03A9F4; color: #fff; }

.zodiac-details {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.zodiac-card:hover .zodiac-details {
    gap: 12px;
}

/* 特色功能 */
.horoscope-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;
}

.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;
}

/* 占星师团队 */
.astrologer-team {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.team-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);
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.team-title {
    color: #D4AF37;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-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);
}

/* 用户见证 */
.horoscope-testimonials {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 0;
}

.testimonials-slider {
    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);
}

.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;
}

.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;
}

/* CTA区域 */
.horoscope-cta {
    padding: 100px 0;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text {
    text-align: center;
    margin-bottom: 60px;
}

.cta-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.cta-text 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-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D4AF37;
    font-weight: 500;
    justify-content: center;
}

.cta-feature i {
    font-size: 1.1rem;
}

.subscription-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: rgba(42, 11, 67, 0.7);
    border-radius: 25px;
    padding: 35px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.plan-card.premium {
    border-color: #D4AF37;
    background: rgba(42, 11, 67, 0.9);
}

.plan-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;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.plan-price {
    color: #D4AF37;
    font-weight: 700;
}

.currency {
    font-size: 1.3rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    line-height: 1;
}

.period {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 30px;
}

.plan-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.plan-features li i {
    position: absolute;
    left: 0;
    top: 2px;
}

.plan-features li i.fa-check {
    color: #4CAF50;
}

.plan-features li i.fa-times {
    color: #f44336;
}

.plan-card .btn {
    width: 100%;
    justify-content: center;
}

/* FAQ常见问题 */
.horoscope-faq {
    padding: 100px 0;
    background: rgba(42, 11, 67, 0.3);
    border-radius: 40px;
    margin: 40px 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: 500px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .horoscope-title {
        font-size: 3.5rem;
    }
    
    .zodiac-wheel {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .horoscope-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .horoscope-tagline {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .daily-horoscope {
        grid-template-columns: 1fr;
    }
    
    .card-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .subscription-plans {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .horoscope-title {
        font-size: 2.8rem;
    }
    
    .horoscope-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .zodiac-wheel {
        width: 300px;
        height: 300px;
    }
    
    .zodiac-sign {
        width: 60px;
        height: 60px;
    }
    
    .sign-icon {
        font-size: 1.5rem;
    }
    
    .sign-name {
        font-size: 0.7rem;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .cta-feature {
        justify-content: flex-start;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .horoscope-title {
        font-size: 2.2rem;
    }
    
    .horoscope-subtitle {
        font-size: 1.1rem;
    }
    
    .horoscope-hero-visual {
        height: 400px;
    }
    
    .zodiac-wheel {
        width: 280px;
        height: 280px;
    }
    
    .sign-icon {
        font-size: 1.3rem;
    }
    
    .sign-name {
        font-size: 0.6rem;
    }
    
    .card-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .sign-info {
        flex-direction: column;
        text-align: center;
    }
    
    .daily-date {
        text-align: center;
    }
    
    .zodiac-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}