@layer utilities {
    .text-shadow {
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .gradient-bg {
        background: linear-gradient(135deg, #7E22CE 0%, #EC4899 100%);
    }
    .card-shadow {
        box-shadow: 0 10px 25px -5px rgba(126, 34, 206, 0.1), 0 8px 10px -6px rgba(126, 34, 206, 0.1);
    }
    .download-button-shadow {
        box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3), 0 4px 6px -4px rgba(236, 72, 153, 0.3);
    }
    .image-scroll-container {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        gap: 24px;
        padding: 12px 0;
    }
    .image-scroll-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    .image-slide {
        flex: 0 0 auto;
        width: 300px;
        transition: transform 0.3s ease;
    }
    .image-slide:hover {
        transform: translateY(-5px);
    }
    .custom-scrollbar {
        position: relative;
        height: 4px;
        background: #e5e7eb;
        border-radius: 2px;
        margin-top: 12px;
    }
    .custom-scrollbar-thumb {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background: linear-gradient(90deg, #7E22CE 0%, #EC4899 100%);
        border-radius: 2px;
        cursor: pointer;
        transition: width 0.1s ease;
    }
    .custom-scrollbar-thumb::after {
        content: '';
        position: absolute;
        right: -4px;
        top: -4px;
        width: 12px;
        height: 12px;
        background: white;
        border: 2px solid #7E22CE;
        border-radius: 50%;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
}
.des {
    width: 100%;
    padding-bottom: 30px;
    overflow: hidden;
    margin: 0 auto;
    vertical-align: middle;
    box-sizing: border-box;
    color: #666;
    font: 14.6px/1.8 arial,sans-serif;
    letter-spacing: 0.8px;
    margin-top: 16px;
}

.des p {
    line-height: 26px;
    vertical-align: middle;
    margin-bottom: 10px;
}

.des h3 {
    height: 28px;
    text-indent: 0px;
    margin: 12px 0;
    border-bottom: 1px solid #ededed;
    color: #333;
    font: bold 16px/26px arial,sans-serif;
}

.title-x{
    width: 30%;
}
@media (max-width: 992px) {
    .title-x {
        width: 100%;
    }
}

