    
    .tile-slider{
        position: relative;
        max-width: 90%;
        margin: 40px auto;
        overflow: hidden;
        border-radius: 18px;
    }

    .ts-wrapper{
        display: flex;
        transition: transform 0.5s ease;
    }

    .ts-slide{
        min-width: 100%;
        user-select: none;
    }

    .ts-slide img{
        width: 100%;
        display: block;
        object-fit: cover;
        height: 450px;
    }

    .ts-btn{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.5);
        border: none;
        color: white;
        font-size: 28px;
        padding: 10px 14px;
        cursor: pointer;
        border-radius: 10px;
    }

    .ts-btn.prev{ 
        left: 15px; 
    }

    .ts-btn.next{ 
        right: 15px; 
    }

    .ts-btn:hover{
        background: rgba(0,0,0,0.8);
    }

    .ts-dots{
        position: absolute;
        bottom: 15px;
        width: 100%;
        text-align: center;
    }

    .ts-dots span{
        display: inline-block;
        height: 10px;
        width: 10px;
        margin: 0 5px;
        background: white;
        opacity: 0.5;
        border-radius: 50%;
        cursor: pointer;
    }

    .ts-dots span.active{
        opacity: 1;
    }