
    :root {
        --primary-color: #c0392b;
        --secondary-color: #FF8C00;
        --text-color: #333333;
        --light-bg: #ffffff;
        --card-bg: #ffffff;
        --hover-bg: #ffe0b2;
        --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
    }

    .witch-header-section {
        max-width: 1400px;
        margin: 0 auto !important;
        padding: 0px 20px 10px;
        position: relative;
        background-color: var(--light-bg);
        text-align: left !important;
    }

    .witch-header-description {
        font-size: 1.1rem;
        color: #333333 !important;
        line-height: 1.8;
        max-width: 1200px;
        margin: 0 auto 0px !important;
        text-align: left !important;
        display: block !important;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s ease-out forwards 0.5s;
    }

    .witch-header-description:nth-child(2) {
        animation-delay: 1s;
    }

    .witch-header-highlight {
        color: #c0392b !important;
        font-weight: 600 !important;
        position: relative;
        padding: 0 3px;
        transition: all 0.3s ease;
    }

    .witch-header-highlight:hover {
        background-color: rgba(192, 57, 43, 0.1);
        border-radius: 3px;
        padding: 0 5px;
    }

    /* 淡入动画 */
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 响应式设计调整 */
    @media (max-width: 768px) {
        .witch-header-description {
            font-size: 1rem;
            max-width: 100%;
        }
    }

    @media (max-width: 480px) {
        .witch-header-description {
            font-size: 0.95rem;
            padding: 0 10px;
            max-width: 100%;
        }
    }
