@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');

* {
    box-sizing: border-box;
}

body {
    font-family: "Titillium Web", Arial, sans-serif;
    background: #020001 url("images/bg_st.jpg") 0 -400px no-repeat fixed;
    background-image: url("images/bg_st.jpg"), url("/index/images/bg_st.jpg");
    color: #e6e6e6;
    margin: 0;
}

.wrap {
    max-width: 1200px;
    margin: auto;
    padding: 10px;
}

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

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

#logo {
    display: inline-flex;
    align-items: center;
}

#logo img {
    display: block;
    height: auto;
    max-width: 200px;
}

nav {
    margin: 0;
    padding: 0;
}

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

.menu.active {
    font-weight: 700;
    background: #ff7802;
    border-radius: 5px;
}

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;
}

h1,
p {
    color: #fff;
    margin-top: 0;
}

h1 {
    font-size: 24px;
    margin: 0 0 8px;
}

.top-ads {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
}

.ad-slot {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: transparent;
    flex: 0 0 auto;
}

.ad-slot iframe {
    max-width: 100%;
}

.ad-wide {
    min-height: 90px;
    min-width: min(728px, 100%);
    width: 728px;
}

.ad-mobile {
    min-height: 50px;
    min-width: min(320px, 100%);
    width: 320px;
}

.ad-box {
    min-height: 250px;
    min-width: min(300px, 100%);
}

.ad-skyscraper {
    min-height: 600px;
    min-width: 160px;
}

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

article {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 12px;
}

aside {
    width: 320px;
    flex: 0 0 320px;
    position: sticky;
    top: 94px;
    text-align: center;
    align-self: flex-start;
    max-height: calc(100vh - 110px);
    overflow: hidden auto;
}

.side-ads {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
    width: 100%;
}

.side-ads > .ad-slot {
    display: flex !important;
    flex-direction: column !important;
}

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

.tbl > tbody > tr,
#tb-cats tr {
    box-shadow: 0 0 0 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, #000);
}

#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: 700;
}

a {
    color: #ff7802;
}

a.title {
    color: #ff7802;
    font-weight: 700;
}

.tbl td[align="right"] {
    display: none;
}

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

.live::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;
}

.live::after {
    content: "";
    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;
}

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

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

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

.state {
    border: 1px solid #242424;
    background: linear-gradient(to bottom, #121212, #050505);
    border-radius: 6px;
    padding: 18px;
}

.state p {
    margin-bottom: 0;
}

.state a {
    font-weight: 700;
}

@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);
    }
}

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

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

    .ad-skyscraper {
        display: none;
    }
}

@media only screen and (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        padding: 10px 0;
    }

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

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

    .menu {
        padding: 2px 6px;
    }

    main.wrap {
        margin-top: 122px;
    }
}

@media only screen and (max-width: 760px) {
    .top-ads {
        flex-direction: column;
        align-items: stretch;
    }

    .ad-wide {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    table table td:has(img) {
        display: none;
    }

    td {
        width: auto;
    }

    .live {
        right: 0;
    }
}
