html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #0b1220;
    color: #f3f6fb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -ms-touch-action: none;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#newsStage {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #0b1220;
    background-image:
        radial-gradient(circle at 18% 12%, rgba(60, 110, 200, 0.16) 0%, rgba(11, 18, 32, 0) 55%),
        radial-gradient(circle at 80% 88%, rgba(220, 60, 90, 0.10) 0%, rgba(11, 18, 32, 0) 55%);
    z-index: 1;
    overflow: hidden;
}

.newsScreen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 11vh 7vh 10vh 7vh;
    box-sizing: border-box;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: opacity 1100ms ease-in-out, transform 1500ms ease-out;
    transition: opacity 1100ms ease-in-out, transform 1500ms ease-out;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    min-height: 0;
}

.newsScreen.newsScreenVisible {
    opacity: 1;
}

.newsScreen.newsAnimateIn {
    opacity: 1;
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
}

.newsScreen.newsAnimateOut {
    opacity: 0;
    -webkit-transform: scale(0.985);
    transform: scale(0.985);
}

.newsHeader {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 4.4vh;
    flex: 0 0 4.4vh;
    margin-bottom: 2.2vh;
    min-height: 0;
}

.newsCategory {
    display: inline-block;
    font-size: 2.55vh;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #ff5d6c;
    font-weight: 700;
    border-left: 0.55vh solid #ff5d6c;
    padding-left: 1.6vh;
    line-height: 1;
}

.newsLayout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    align-items: stretch;
    min-height: 0;
}

.newsHeroCol {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48.5%;
    flex: 0 0 48.5%;
    width: 48.5%;
    margin-right: 3vh;
    min-width: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 0;
}

.newsListCol {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 48.5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
}

.newsArticle {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1vh;
    overflow: hidden;
    box-shadow: 0 2.5vh 6vh rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.newsArticle.newsHero {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}

.newsHero .newsArticleImg {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    min-height: 12vh;
}

.newsHero .newsArticleBody {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    min-height: 31vh;
    overflow: hidden;
    padding: 2.3vh 3vh 2vh 3vh;
    box-sizing: border-box;
}

.newsHero .newsArticleTitle {
    font-size: 5.1vh;
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: 1.6vh;
    color: #ffffff;
    display: -webkit-box;
    max-height: 16.6vh;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsHero .newsArticleSnippet {
    font-size: 2.35vh;
    line-height: 1.28;
    font-weight: 300;
    color: #c9d2e2;
    margin-bottom: 1.5vh;
    display: -webkit-box;
    max-height: 9.1vh;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsListCol .newsArticle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-bottom: 2.4vh;
    min-height: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 29vh;
    flex: 0 0 29vh;
}

.newsListCol .newsArticle:last-child {
    margin-bottom: 0;
}

.newsListCol .newsArticleImg {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 28%;
    flex: 0 1 28%;
    width: 28%;
    min-width: 14vh;
    min-height: 0;
}

.newsListCol .newsArticleBody {
    padding: 1.8vh 2vh;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.newsListCol .newsArticleTitle {
    font-size: 2.65vh;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 0.9vh;
    color: #ffffff;
    display: -webkit-box;
    max-height: 9.2vh;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsListCol .newsArticleSnippet {
    font-size: 1.85vh;
    line-height: 1.25;
    font-weight: 300;
    color: #aab4c5;
    margin-bottom: 0.9vh;
    display: -webkit-box;
    max-height: 4.7vh;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsArticleImg {
    background-color: #131c30;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 0;
}

.newsArticleImg.newsNoImg {
    background-image:
        linear-gradient(135deg, #1a263e 0%, #0e1525 100%);
    background-size: auto;
}

.newsArticleMeta {
    font-size: 1.35vh;
    letter-spacing: 0;
    color: #94a0b6;
    text-transform: uppercase;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.newsHero .newsArticleMeta {
    font-size: 1.55vh;
}

.newsMetaSep {
    color: #5a6478;
}

#newsTopBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 2vh 4vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    background-image: linear-gradient(to bottom, rgba(11, 18, 32, 0.85) 0%, rgba(11, 18, 32, 0) 100%);
    pointer-events: none;
}

#newsBrand {
    color: #ffffff;
    font-size: 2.2vh;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.newsBrandDot {
    display: inline-block;
    width: 1.35vh;
    height: 1.35vh;
    border-radius: 50%;
    background-color: #ff5d6c;
    box-shadow: 0 0 12px #ff5d6c;
    margin-right: 1.4vh;
    vertical-align: middle;
    -webkit-animation: newsLivePulse 2s ease-in-out infinite;
    animation: newsLivePulse 2s ease-in-out infinite;
}

.newsBrandLabel {
    vertical-align: middle;
}

.newsCategoryTag {
    margin-left: 2vh;
    padding: 0.45vh 1.4vh;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #c9d2e2;
    font-size: 1.45vh;
    letter-spacing: 0;
    vertical-align: middle;
}

@-webkit-keyframes newsLivePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes newsLivePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

#newsClock {
    text-align: right;
    color: #c9d2e2;
    font-weight: 300;
    line-height: 1.1;
}

#newsClockTime {
    font-size: 2.9vh;
    font-weight: 600;
    letter-spacing: 0;
    color: #ffffff;
    display: block;
}

#newsClockDate {
    font-size: 1.45vh;
    color: #94a0b6;
    letter-spacing: 0;
    text-transform: uppercase;
}

#newsCounter {
    position: fixed;
    top: 2.4vh;
    right: 23vh;
    z-index: 7;
    color: #94a0b6;
    font-size: 1.45vh;
    font-weight: 300;
    letter-spacing: 0;
    background-color: rgba(0, 0, 0, 0.45);
    padding: 0.7vh 1.3vh;
    border-radius: 0.45vh;
    pointer-events: none;
}

#newsQrCode {
    display: block;
    position: fixed;
    bottom: 1.8vh;
    right: 1.8vh;
    z-index: 8;
    opacity: 0.92;
}

.rcRoomQrCodeLink {
    display: block;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 150px;
    border: solid 8px #fff;
    border-radius: 8px;
    color: #fff;
    background-color: #fff;
    box-shadow: 0 0 0 1px #fff;
    text-align: center;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
    text-decoration: none;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    line-height: normal;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
}

.rcTechLabel {
    background-color: #000;
    color: #fff;
    font-family: monospace;
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 8px 0;
    padding: 4px;
    letter-spacing: 0.2em;
    line-height: 1.2;
}

.rcRoomQrCode {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 150px;
    height: 150px;
    overflow: hidden;
}

.rcRoomQrCode img,
.rcRoomQrCode canvas {
    display: block;
    width: 150px;
    height: 150px;
}

.rcRoomId {
    background-color: #000;
    color: #fff;
    font-family: monospace;
    font-size: 16px;
    padding: 4px;
    margin: 8px 0 0 0;
    letter-spacing: 0.25em;
    line-height: 1.2;
}

#newsStatus {
    position: fixed;
    bottom: 1.1vh;
    left: 1.3vh;
    z-index: 9;
    color: #6e7993;
    font-size: 1.25vh;
    pointer-events: none;
}

@media (orientation: portrait) {
    .newsScreen {
        padding: 8vh 2.8vh 3vh 2.8vh;
    }

    .newsHeader {
        -ms-flex: 0 0 3.5vh;
        flex: 0 0 3.5vh;
        margin-bottom: 1.5vh;
    }

    .newsCategory {
        font-size: 2vh;
    }

    .newsLayout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .newsHeroCol {
        margin-right: 0;
        margin-bottom: 1.6vh;
        -ms-flex: 0 0 51%;
        flex: 0 0 51%;
        width: 100%;
    }

    .newsHero .newsArticleBody {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        min-height: 21vh;
    }

    .newsHero .newsArticleTitle {
        font-size: 3.25vh;
    }

    .newsHero .newsArticleSnippet {
        font-size: 1.8vh;
        -webkit-line-clamp: 2;
    }

    .newsListCol .newsArticle {
        -ms-flex: 0 0 14vh;
        flex: 0 0 14vh;
        margin-bottom: 1.2vh;
    }

    .newsListCol {
        width: 100%;
    }

    .newsListCol .newsArticleImg {
        -ms-flex: 0 1 26%;
        flex: 0 1 26%;
        width: 26%;
        min-width: 8vh;
    }

    .newsListCol .newsArticleBody {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .newsListCol .newsArticleTitle {
        font-size: 1.9vh;
        -webkit-line-clamp: 3;
    }

    .newsListCol .newsArticleSnippet {
        display: none;
    }

    .newsArticleMeta {
        font-size: 1.15vh;
    }

    #newsBrand {
        font-size: 1.7vh;
        letter-spacing: 0;
    }

    .newsCategoryTag {
        display: none;
    }

    #newsClockTime {
        font-size: 2vh;
    }

    #newsClockDate {
        font-size: 1.2vh;
    }

    #newsCounter {
        right: 1.8vh;
        top: 5.6vh;
        font-size: 1.2vh;
    }

    #newsQrCode {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
        -webkit-transform-origin: bottom right;
        transform-origin: bottom right;
    }
}

.lean-paint #newsStage {
    background-image: none;
}

.lean-paint .newsArticle,
.lean-paint #newsQrCode,
.lean-paint .rcRoomQrCodeLink,
.lean-paint .newsBrandDot {
    box-shadow: none;
    filter: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.lean-paint #newsTopBar,
.lean-paint .newsArticle,
.lean-paint #newsCounter {
    background-image: none;
}

.lean-paint .newsArticleImg.newsNoImg {
    background-image: none;
    background-color: #1a263e;
}