/* ==================== 有趣的魂特定样式 ==================== */

/* 灵魂卡片样式 */
.soul-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow:
        8px 8px 16px rgba(209, 217, 230, 0.5),
        -8px -8px 16px rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.soul-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFB6C1, #87CEEB, #FFB6C1);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.soul-card:hover {
    transform: translateY(-5px);
    box-shadow:
        12px 12px 24px rgba(209, 217, 230, 0.6),
        -12px -12px 24px rgba(255, 255, 255, 0.95);
}

/* 灵魂图标 */
.soul-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(145deg, #f0f4f8, #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        6px 6px 12px rgba(209, 217, 230, 0.4),
        -6px -6px 12px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.soul-icon svg {
    width: 40px;
    height: 40px;
    color: #87CEEB;
}

.soul-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        8px 8px 16px rgba(209, 217, 230, 0.5),
        -8px -8px 16px rgba(255, 255, 255, 0.9);
}

/* 灵魂标题 */
.soul-title {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #667EEA, #FF6B9D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 15px 0;
    text-align: center;
}

/* 灵魂描述 */
.soul-description {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.8;
    margin: 0 0 20px 0;
    text-align: center;
}

/* 灵魂引言 */
.soul-quote {
    font-style: italic;
    font-size: 15px;
    color: #64748b;
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(145deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    border-left: 4px solid #FF6B9D;
}

/* 灵魂特性列表 */
.soul-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.soul-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    box-shadow:
        inset 3px 3px 6px rgba(209, 217, 230, 0.5),
        inset -3px -3px 6px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.soul-features li:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateX(5px);
}

.soul-features li .feature-icon {
    width: 24px;
    height: 24px;
    color: #FF6B9D;
    flex-shrink: 0;
}

.soul-features li .feature-text {
    font-size: 14px;
    color: #4A5568;
}

/* 灵魂统计数据 */
.soul-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.soul-stat-item {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow:
        6px 6px 12px rgba(209, 217, 230, 0.5),
        -6px -6px 12px rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.soul-stat-item:hover {
    transform: translateY(-5px);
    box-shadow:
        8px 8px 16px rgba(209, 217, 230, 0.6),
        -8px -8px 16px rgba(255, 255, 255, 0.95);
}

.soul-stat-value {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(90deg, #667EEA, #FF6B9D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.soul-stat-label {
    font-size: 14px;
    color: #64748b;
}

/* 灵魂时间线 */
.soul-timeline {
    position: relative;
    padding: 20px 0;
}

.soul-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #FFB6C1, #87CEEB, #FFB6C1);
}

.soul-timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.soul-timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #FFE5EC, #E8F4FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        4px 4px 8px rgba(255, 182, 193, 0.3),
        -4px -4px 8px rgba(135, 206, 235, 0.3);
    z-index: 2;
}

.soul-timeline-icon svg {
    width: 20px;
    height: 20px;
    color: #FF6B9D;
}

.soul-timeline-content {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 20px;
    box-shadow:
        4px 4px 8px rgba(255, 182, 193, 0.3),
        -4px -4px 8px rgba(135, 206, 235, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.soul-timeline-date {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

.soul-timeline-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 10px;
}

.soul-timeline-text {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.6;
}

/* 灵魂探索按钮 */
.soul-explore-btn {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FFE5EC, #E8F4FF);
    border: none;
    border-radius: 25px;
    color: #4A5568;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        6px 6px 12px rgba(255, 182, 193, 0.3),
        -6px -6px 12px rgba(135, 206, 235, 0.3);
    margin-top: 20px;
}

.soul-explore-btn:hover {
    background: linear-gradient(135deg, #FFD6E0, #D6E8FF);
    transform: translateY(-2px);
    box-shadow:
        8px 8px 16px rgba(255, 182, 193, 0.4),
        -8px -8px 16px rgba(135, 206, 235, 0.4);
}

.soul-explore-btn:active {
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 767px) {
    .soul-card {
        padding: 20px;
    }

    .soul-icon {
        width: 70px;
        height: 70px;
    }

    .soul-icon svg {
        width: 35px;
        height: 35px;
    }

    .soul-title {
        font-size: 20px;
    }

    .soul-description {
        font-size: 15px;
    }

    .soul-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .soul-stat-value {
        font-size: 24px;
    }

    .soul-timeline-item {
        padding-left: 50px;
    }

    .soul-timeline-icon {
        width: 38px;
        height: 38px;
    }

    .soul-timeline-icon svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .soul-card {
        padding: 15px;
    }

    .soul-icon {
        width: 60px;
        height: 60px;
    }

    .soul-icon svg {
        width: 30px;
        height: 30px;
    }

    .soul-title {
        font-size: 18px;
    }

    .soul-description {
        font-size: 14px;
    }

    .soul-stat-value {
        font-size: 20px;
    }

    .soul-explore-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
