:root {
    --hpint-clr-1: #000;
    --hpint-clr-2: #dadada;
    --hpint-clr-3: #555;
    --hpint-clr-4: #fff;
    --hpint-clr-5: #f9f9f9;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    min-height: 100%;
    background-color: var(--hpint-clr-4);
    width: 100%;
    height: 100dvh;
}

a{
    text-decoration: none;
    color: inherit;
}

.main_cont {
    width: 100%;
    margin: 0px auto;
    height: 100dvh;
}

.main_cont * {
    box-sizing: border-box;
}

.header_cont {
    padding: 10px;
    margin: 0px auto;
    max-width: 1260px;
    width: 100%;
    border-bottom: 1px solid var(--hpint-clr-2);
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.ndtv_logo {
    float: left;
    width: 129px;
    height: 35px;
}

.ndtv_logo img {
    width: auto;
    height: 100%;
}

.tpnav_lnks {
    float: right;
    display: flex;
    margin-left: auto;
    font-size: 12px;
    color: var(--hpint-clr-1);
    margin: 0;
    align-items: center;
    margin-left: auto;
}

.tpnav_lnks a {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 50%;
    border: solid 1px var(--hpint-clr-3);
    margin-left: 10px;
    transition: all 0.3s ease;
}

.ad_close {
    fill: var(--hpint-clr-1);
}

.tpnav_lnks a:hover .ad_close {
    fill: var(--hpint-clr-4);
}

.tpnav_lnks a:hover {
    background-color: #000;
    color: #fff;
}

.tpnav_lnks a:hover {
    text-decoration: underline;
}

.timer-num {
    font-weight: bold;
    display: inline-block;
    margin: 0 0 0 5px;
}

.ad_interstitial {
    width: 100%;
    height: 470px;
    margin: 0px auto;
    z-index: 9999;
}

.footer_cont {
    padding: 0;
    margin: 0px auto;
    width: 100%;
    border-top: 1px solid var(--hpint-clr-2);
    overflow: hidden;
    margin-top: 20px;
    position: absolute;
    bottom: 0;
}

.footer_cont .ft_nav {
    background-color: var(--hpint-clr-5);
    border-bottom: 1px solid var(--hpint-clr-2);
    text-align: center;
    padding: 10px 0 10px 0;
}

.footer_cont .ft_nav a {
    text-decoration: none;
    font-size: 12px;
    color: var(--hpint-clr-1);
    display: inline-block;
    padding: 0 5px 0 5px;
}

.footer_cont .ft_nav a:hover {
    text-decoration: underline;
}

.footer_cont .copyright {
    font-size: 12px;
    color: var(--hpint-clr-1);
    text-align: center;
    padding: 10px 0 10px 0;
}


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

    .header_cont {
        max-width: none;
    }

    .footer_cont .ft_nav a {
        line-height: 1.9;
    }

    .ndtv_logo {
        height: 30px;
    }

}


@media (prefers-color-scheme: dark) {
    :root {
        --hpint-clr-1: #fff;
        --hpint-clr-2: #404040;
        --hpint-clr-3: #555;
        --hpint-clr-4: #212121;
        --hpint-clr-5: #505050;
    }

    .tpnav_lnks a:hover .ad_close {
        fill: #fff;
    }

}