@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');
body{
    font-family: "Titillium Web", sans-serif;
    background: #020001 url(../images/bg_st.jpg) 0 -400px no-repeat fixed;
    margin: 0;
}
.wrap {
    padding: 10px;
    max-width: 1200px;
    margin: auto;
}

header {
    background: linear-gradient(to bottom, #121212, #000000);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}

header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

menu {
    padding: 0;
    margin: 0;
}

.menu {
    padding: 15px 10px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
}

main.wrap {
    background: #000;
    box-shadow: inset 1px -10px 100px rgba(59, 59, 59, 0.66);
    margin: 100px auto 30px;
    border-radius: 6px;
    padding: 20px;
    box-sizing: border-box;
}

h1, p {
    color: #fff;
    margin-top: 0;
}
h1 {
    font-size: x-large;
    margin: 0;
}
aside {
    width: 300px;
    display: inline-block;
    position: sticky;
    top: 94px;
    text-align: center;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

article {
    flex-grow: 1;
    padding-right: 20px;
    font-size: 12px;
}

table {
    width: 100%;
    background: none;
    color: #E6E6E6;
    border-collapse: collapse;
}

.tbl > tbody > tr, #tb-cats tr {
    box-shadow: 0 0px 0px 0 rgba(0,0,0,0.14);
    border-bottom: 1px solid #242424;!;
    padding: 0;
    display: table;
    width: 100%;
    background-image: linear-gradient(to bottom, #121212, #000000);
}
#tb-cats tr {
    display: table-row;
}
table table td,#tb-cats td {
    padding: 5px 10px;
}
table table td:has(a),#tb-cats td:has(a){
    position: relative;
}
span.spr {
    color: #2a9fd6;
    font-weight: bold;
}

a.title {
    color: #ff7802;
    font-weight: bold;
}
.tbl td[align="right"]{
    display: none;
}
footer {
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 12px;
}
a.menu.active {
    font-weight: bold;
    background: #ff7802;
    border-radius: 5px;
}

.live {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 10px;
  height: 10px;

  &:before {
    content: "";
    position: relative;
    display: block;
    width: 250%;
    height: 250%;
    box-sizing: border-box;
    margin-left: -75%;
    margin-top: -75%;
    border-radius: 45px;
    background-color: #dc0200;
    animation: pulse 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

&:after {
    content: "live";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #dc0200;
    border-radius: 50px;
    animation: circle 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}
}

@keyframes pulse {
  0% {
    transform: scale(0.33);
}
80%,
100% {
    opacity: 0;
}
}

@keyframes circle {
  0% {
    transform: scale(0.8);
}
50% {
    transform: scale(1);
}
100% {
    transform: scale(0.8);
}
}

.list-link {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.list-link a {min-width: 130px;background: #ff0000;text-align: center;text-decoration: none;color: #fff;font-weight: bold;border-radius: 3px;margin-bottom: 10px;font-size: large;line-height: initial;padding: 5px 0;}

.list-link h2,.list-link h1 {
    color: #fff;
    text-align: center;
}

@media only screen and (max-width: 1000px) {
    aside {
        position: initial;
        margin-bottom: 15px;
        width: 100%;
        height: auto;
    }

    .container {
        display: flex;
        flex-direction: column-reverse;
    }

    aside iframe:last-of-type {
        display: none;
    }
}

@media only screen and (max-width: 900px) {

    header .wrap {
        flex-direction: column;
    }

    a#logo {
        padding-top: 15px;
        margin-bottom: 7px;
    }

    menu {
        overflow-x: scroll;
        white-space: nowrap;
        display: block;
        overflow-y: hidden;
        scrollbar-width: none;
        width: 100%;
        text-align: center;
    }

    a.menu {
        padding: 2px 6px;
    }

    header .wrap {
        padding: 10px 0;
    }

}

@media only screen and (max-width: 600px) {

    table table td:has(img) {display: none;}

    td {
        width: auto;
    }

    .live {
        right: 0;
    }

    table table td {
        padding: 5px;
    }
}