.tl-wrapper-6f3eae2f {
    position: relative;
    width: 100%;
    margin: 40px auto;
    font-family: sans-serif;
    color: #fff;
}

/* Center vertical line */
.tl-center-line-6f3eae2f {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #a3e635;
    box-shadow: 0 0 10px rgba(163, 230, 53, 0.4);
    transform: translateX(-50%);
    z-index: 1;
}

/* Glowing Mascot/Robot head in center */
.tl-mascot-6f3eae2f {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    padding: 6px;
    border-radius: 50%;
    border: 2px solid #a3e635;
    color: #a3e635;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    width: 48px;
    height: 48px;
    font-size: 24px;
    box-shadow: 0 0 15px rgba(163, 230, 53, 0.8);
    transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1), top 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

/* When tracking is off, keep it vertically centered */
.tl-wrapper-6f3eae2f:not(.tl-scroll-active-6f3eae2f) .tl-mascot-6f3eae2f {
    top: 50%;
}

.tl-mascot-img-6f3eae2f {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.tl-mascot-6f3eae2f svg {
    width: 24px;
    height: 24px;
    fill: #a3e635;
}

/* Outer layout */
.tl-items-container-6f3eae2f {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.tl-item-outer-6f3eae2f {
    display: flex;
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    transition: all 0.3s ease;
}

.tl-item-outer-6f3eae2f.tl-align-left {
    align-self: flex-start;
    padding-right: 40px;
    justify-content: flex-end;
}

.tl-item-outer-6f3eae2f.tl-align-right {
    align-self: flex-end;
    padding-left: 40px;
    justify-content: flex-start;
}

/* Small alignment dot on vertical line */
.tl-line-node-6f3eae2f {
    position: absolute;
    top: 30px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 3;
}
.tl-align-left .tl-line-node-6f3eae2f {
    right: -5px;
}
.tl-align-right .tl-line-node-6f3eae2f {
    left: -5px;
}

/* Beautiful customizable box styling */
.tl-box-6f3eae2f {
    position: relative;
    width: 100%;
    max-width: 460px;
    padding: 30px;
    border: 1px solid #222521;
    background: #111310;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-sizing: border-box;
}

.tl-box-6f3eae2f:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: #a3e635;
}

/* Header inside the box */
.tl-box-header-6f3eae2f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tl-number-6f3eae2f {
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    color: #a3e635;
}

/* Top Right Icon Box */
.tl-icon-box-6f3eae2f {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #222521;
    border-radius: 8px;
    color: #a3e635;
    font-size: 16px;
    transition: all 0.3s ease;
}
.tl-icon-box-6f3eae2f svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Text styles */
.tl-title-6f3eae2f {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    color: #fff;
}

.tl-desc-6f3eae2f {
    font-size: 14px;
    line-height: 1.6;
    color: #888888;
    margin: 0;
}

/* Responsive adjustment for Mobile screens */
@media (max-width: 768px) {
    .tl-center-line-6f3eae2f {
        left: 20px;
    }
    .tl-mascot-6f3eae2f {
        display: none; /* Hide center mascot on narrow mobile layouts */
    }
    .tl-item-outer-6f3eae2f {
        width: 100%;
        margin-bottom: 30px;
    }
    .tl-item-outer-6f3eae2f.tl-align-left {
        align-self: flex-start;
        padding-left: 50px;
        padding-right: 0;
        justify-content: flex-start;
    }
    .tl-item-outer-6f3eae2f.tl-align-right {
        align-self: flex-start;
        padding-left: 50px;
        justify-content: flex-start;
    }
    .tl-align-left .tl-line-node-6f3eae2f {
        left: 15px;
        right: auto;
    }
    .tl-align-right .tl-line-node-6f3eae2f {
        left: 15px;
    }
}
