* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tahoma', 'Arial', sans-serif;
    background: #000000;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    direction: rtl;
}

.wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.live {
    background: #ff3366;
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 1.5rem !important;
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.6);
    animation: pulse 2s infinite;
}

.channel {
    position: absolute;
    z-index: 1000;
    top: 0;
    right: -45rem;
    width: 42rem;
    height: 10rem;
    background: #000000;
    transform: skewX(35deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease-in-out;
}

.channel span {
    transform: skewX(-35deg);
    font-size: 3rem;
    font-weight: bolder;
}

.runner {
    right: -5rem !important;
}