/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;

    background:
        linear-gradient(
            180deg,
            #03172c 0%,
            #021326 55%,
            #04192e 100%
        );

    color: #ffffff;

    min-height: 100vh;
}

.hide {
    display: none;
}

button,
a {
    font-family: inherit;
}


button {
    cursor: pointer;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}



/* =========================================================
   HEADER
   ========================================================= */

.siteHeader {
    width: 100%;

    background: #03172c;

    border-bottom: 1px solid rgba(255,255,255,.05);

    position: relative;

    z-index: 100;
}


.headerInner {
    width: min(95%, 1500px);

    margin: 0 auto;

    min-height: 105px;

    display: flex;

    align-items: center;

    gap: 35px;
}


.logoHolder {
    width: 225px;

    flex-shrink: 0;
}


.logoHolder img {
    width: 100%;
}


.mainNav {
    flex: 1;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 34px;
}


.mainNav a {
    position: relative;

    padding: 38px 0 23px;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    transition: color .2s ease;
}


.mainNav a:hover,
.mainNav a.active {
    color: #f2b319;
}


.mainNav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 12px;

    height: 3px;

    background: #f2b319;
}


.searchButton {
    border: 0;

    background: transparent;

    color: #ffffff;

    font-size: 22px;

    width: 42px;

    height: 42px;
}


.menuButton {
    display: none;

    width: 45px;

    height: 45px;

    background: transparent;

    border: 0;
}


.menuButton span {
    display: block;

    height: 3px;

    width: 28px;

    background: #ffffff;

    margin: 5px auto;
}



/* =========================================================
   HERO
   ========================================================= */
.heroActionImage {
    position: absolute;
    width: 280px;
    height: auto;

    left: 50%;
    bottom: 55px;

    transform: translateX(-50%);

    cursor: pointer;
    z-index: 10;
}
.heroBackground {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero {
    width: 100%;

    position: relative;

    overflow: hidden;

    background: #020f1f;
}


.heroSlider {
    width: 100%;

    position: relative;

    aspect-ratio: 16 / 8.35;

    max-height: 760px;
}


.heroSlide {
    position: absolute;

    inset: 0;

    opacity: 0;

    transition: opacity .8s ease;

    pointer-events: none;
}


.heroSlide.active {
    opacity: 1;

    pointer-events: auto;
}


.heroSlide .heroBackground {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.heroEmpty {
    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: #061d38;
}


.heroArrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;

    height: 65px;

    border: 0;

    border-radius: 5px;

    background: rgba(0,0,0,.35);

    color: #ffffff;

    font-size: 30px;

    z-index: 5;

    opacity: .65;

    transition:
        opacity .2s ease,
        background .2s ease;
}


.heroArrow:hover {
    opacity: 1;

    background: rgba(0,0,0,.65);
}


.heroPrev {
    left: 20px;
}


.heroNext {
    right: 20px;
}


.heroDots {
    position: absolute;

    left: 50%;

    bottom: 20px;

    transform: translateX(-50%);

    display: flex;

    gap: 10px;

    z-index: 5;
}


.heroDot {
    width: 11px;

    height: 11px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.8);

    background: rgba(255,255,255,.25);
}


.heroDot.active {
    background: #f2b319;

    border-color: #f2b319;
}



/* =========================================================
   GENERAL SECTION
   ========================================================= */

.section {
    width: min(95%, 1500px);

    margin: 35px auto;
}


.sectionHeader {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 30px;

    margin-bottom: 28px;
}


.sectionHeader span {
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #b97d18
    );
}


.sectionHeader span:last-child {
    background: linear-gradient(
        90deg,
        #b97d18,
        transparent
    );
}


.sectionHeader h2 {
    font-size: 26px;

    font-weight: 800;

    letter-spacing: .5px;
}



/* =========================================================
   WHAT'S ON NOW
   ========================================================= */

.onNowBox {
    border: 1px solid #255080;
    border-radius: 15px;

    padding: 35px 25px 28px;

    background:
        linear-gradient(
            135deg,
            rgba(3,29,57,.9),
            rgba(2,18,36,.95)
        );
}


.programGrid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


.programCard {
    min-width: 0;

    display: grid;

    grid-template-columns: 190px 1fr;

    gap: 22px;

    padding-right: 25px;

    border-right: 1px solid rgba(218,151,27,.55);
}


.programCard:last-child {
    border-right: 0;

    padding-right: 0;
}


.programImage {
    width: 100%;

    aspect-ratio: 4 / 5;

    border-radius: 10px;

    overflow: hidden;

    border: 1px solid #405b79;

    background: #0b2036;
}


.programImage img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}


.programInfo {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding-top: 5px;
}


.programStatus {
    display: inline-block;

    border-radius: 5px;

    padding: 8px 13px;

    margin-bottom: 24px;

    font-size: 14px;

    font-weight: 800;
}


.nowStatus {
    border: none;
    font: inherit;
    cursor: pointer;
    background: #df2423;
    color: white;
}

.nextStatus {
    background: #0751a8;
}


.comingStatus {
    background: #e4a81d;

    color: #07152a;
}


.programTime {
    color: #ffbc19;

    font-size: 18px;

    font-weight: 800;

    margin-bottom: 20px;
}


.programInfo h3 {
    font-size: 19px;

    line-height: 1.4;

    margin-bottom: 15px;
}


.programInfo p {
    color: #c1cad5;

    line-height: 1.7;

    font-size: 15px;
}


.textButton {
    margin-top: auto;

    background: transparent;

    border: 0;

    color: #f5bd21;

    font-weight: 700;

    font-size: 14px;

    padding-top: 25px;
}


.scheduleButtonHolder,
.featuredButtonHolder {
    text-align: center;

    margin-top: 28px;
}


.outlineButton {
    min-width: 300px;

    min-height: 55px;

    padding: 12px 25px;

    border: 1px solid #d99318;

    border-radius: 5px;

    background: rgba(0,0,0,.15);

    color: #ffffff;

    font-size: 15px;

    font-weight: 800;
}


.outlineButton:hover {
    background: #d99318;

    color: #06152a;
}



/* =========================================================
   QUICK LINKS
   ========================================================= */

.quickLinks {
    background: #f3f3f3;

    color: #0c1424;

    border-radius: 14px;

    padding: 35px 25px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);
}


.quickLinkItem {
    text-align: center;

    min-height: 310px;

    padding: 10px 35px;

    display: flex;

    flex-direction: column;

    align-items: center;

    border-right: 1px solid #c7c7c7;
}


.quickLinkItem:last-child {
    border-right: 0;
}


.quickIcon {
    width: 72px;

    height: 72px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    margin-bottom: 20px;

    font-size: 24px;

    font-weight: 800;
}


.redIcon {
    background: #be1719;
}


.blueIcon {
    background: #0d4087;
}


.goldIcon {
    background: #dfa51d;
}


.quickLinkItem h3 {
    font-size: 20px;

    margin-bottom: 18px;
}


.quickLinkItem p {
    font-size: 16px;

    line-height: 1.7;

    max-width: 250px;
}


.quickButton {
    margin-top: auto;

    background: transparent;

    border: 0;

    font-size: 15px;

    font-weight: 800;
}


.redText {
    color: #bd1e20;
}


.blueText {
    color: #174c96;
}


.goldText {
    color: #ba7b00;
}



/* =========================================================
   FEATURED SHOWS
   ========================================================= */

.featuredGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

    width: calc(100% - 80px);
    max-width: 950px;

    margin: 0 auto;
}


.featuredCard {
    text-align: center;
}


.featuredImage {
    width: 100%;

    aspect-ratio: 3.5 / 5;

    overflow: hidden;

    border-radius: 9px;

    border: 1px solid #48617d;

    background: #0b2036;
}


.featuredImage img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .3s ease;
}


.featuredCard:hover img {
    transform: scale(1.035);
}


.featuredCard h3 {
    font-size: 17px;

    margin: 16px 0 5px;
}


.featuredCard p {
    color: #c4ccd7;

    font-size: 15px;
}



/* =========================================================
   FOOTER
   ========================================================= */

.siteFooter {
    margin-top: 35px;
}


.footerMain {
    width: min(95%, 1500px);

    margin: 0 auto 25px;

    border: 1px solid #255080;

    border-radius: 11px;

    min-height: 165px;

    padding: 28px 40px;

    display: grid;

    grid-template-columns: 1fr 1.4fr 1fr;

    align-items: center;

    gap: 40px;

    background: rgba(3,25,49,.7);
}


.footerBrand img {
    width: 210px;
}


.footerMessage {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;
}


.globeIcon {
    width: 80px;

    height: 80px;

    border-radius: 50%;

    border: 3px solid #d99817;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #d99817;

    font-size: 35px;
}


.footerMessage strong {
    color: #f5ad18;

    font-size: 22px;

    line-height: 1.4;
}


.footerMessage p {
    margin-top: 5px;
}


.footerSocial {
    text-align: center;
}


.footerSocial > span {
    display: block;

    margin-bottom: 18px;

    font-size: 14px;
}


.socialButtons {
    display: flex;

    justify-content: center;

    gap: 17px;
}


.socialButtons a {
    width: 48px;

    height: 48px;

    border: 1px solid #d3d8e0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;
}


.footerBottom {
    background: #020d1b;

    border-top: 1px solid rgba(255,255,255,.04);

    padding: 25px 20px 20px;

    text-align: center;
}


.footerNav {
    display: flex;

    justify-content: center;

    gap: 100px;

    flex-wrap: wrap;

    margin-bottom: 25px;
}


.footerNav a {
    font-size: 15px;
}


.footerNav a:hover {
    color: #e5a219;
}


.copyright {
    font-size: 13px;

    color: #b2bac4;
}



/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {

    .mainNav {
        gap: 18px;
    }


    .mainNav a {
        font-size: 11px;
    }


    .programCard {
        grid-template-columns: 145px 1fr;
    }


    .quickLinkItem {
        padding: 10px 20px;
    }

}



@media (max-width: 900px) {

    .headerInner {
        min-height: 80px;
    }


    .logoHolder {
        width: 170px;
    }


    .mainNav {
        display: none;

        position: absolute;

        top: 80px;

        left: 0;

        width: 100%;

        background: #03172c;

        padding: 20px;

        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }


    .mainNav.open {
        display: flex;
    }


    .mainNav a {
        padding: 15px;

        border-bottom: 1px solid rgba(255,255,255,.07);
    }


    .mainNav a.active::after {
        display: none;
    }


    .menuButton {
        display: block;
    }


    .searchButton {
        margin-left: auto;
    }


    .heroSlider {
        aspect-ratio: 16 / 9;
    }


    .programGrid {
        grid-template-columns: 1fr;
    }


    .programCard {
        border-right: 0;

        border-bottom: 1px solid rgba(218,151,27,.4);

        padding: 0 0 25px;

        grid-template-columns: 180px 1fr;
    }


    .programCard:last-child {
        border-bottom: 0;
    }


    .quickLinks {
        grid-template-columns: repeat(2, 1fr);
    }


    .quickLinkItem {
        border-right: 0;

        border-bottom: 1px solid #c7c7c7;
    }


    .featuredGrid {
        grid-template-columns: repeat(2, 1fr);
    }


    .footerMain {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .footerBrand img {
        margin: auto;
    }

}



@media (max-width: 600px) {

    .section {
        width: 94%;
    }


    .sectionHeader {
        gap: 15px;
    }


    .sectionHeader h2 {
        font-size: 20px;

        white-space: nowrap;
    }


    .heroArrow {
        width: 38px;

        height: 52px;

        font-size: 23px;
    }


    .programCard {
        grid-template-columns: 115px 1fr;

        gap: 15px;
    }


    .programStatus {
        margin-bottom: 12px;
    }


    .programTime {
        margin-bottom: 10px;
    }


    .quickLinks {
        grid-template-columns: 1fr;
    }


    .quickLinkItem {
        min-height: 260px;

        padding: 25px;
    }


    .featuredGrid {
        grid-template-columns: repeat(2, 1fr);

        gap: 15px;
    }


    .outlineButton {
        min-width: 0;

        width: 100%;
    }


    .footerMessage {
        flex-direction: column;
    }


    .footerNav {
        gap: 25px;
    }

}
.heroActionButton {
    position: absolute;

    left: 50%;
    bottom: 55px;

    transform: translateX(-50%);

    min-width: 180px;

    padding: 14px 28px;

    border: 0;

    border-radius: 5px;

    background: #c62020;

    color: #ffffff;

    font-size: 15px;

    font-weight: 800;

    z-index: 6;
}

/*player*/
#theater {
    display: none;

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: #000;

    z-index: 99999;

    overflow: hidden;
}
#video,
#advideo {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    background: #000;
}
#closebtn {
    position: absolute;

    top: 20px;
    right: 20px;

    z-index: 100;
}
#playerInfoOverlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 90;
}


#playerInfoOverlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 30px 40px;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.85)
    );

    color: white;

    z-index: 20;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease;
}

#playerInfoOverlay.show {
    opacity: 1;
    visibility: visible;
}

#playerNowLabel {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

#playerShowTitle {
    margin-top: 4px;

    font-size: 28px;
    font-weight: 700;
}

/*schedule*/
.schedOverlay {
    position:fixed;
    inset:0;
    background:#001684;
    z-index:999;
    display:none;
    justify-content:center;
    align-items:center;
}

.schedBox {
    width:90%;
    max-width:1100px;
    max-height:90vh;
    overflow:auto;
    background:#111;
    border:2px solid #d4af37;
    border-radius:12px;
    padding:25px;
    color:white;
}

.schedTop {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.schedTop h2 {
    color:#d4af37;
}

.schedDays {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
    margin:20px 0;
}

.schedDays button,
.schedTop button {
    background:#d4af37;
    color:#111;
    border:none;
    border-radius:8px;
    padding:10px 16px;
    font-weight:bold;
    cursor:pointer;
}

.schedList {
    display:grid;
    grid-template-columns:repeat(auto-fill, 224px);
    gap:18px;
    justify-content:center;
}

.schedCard {
    border:2px solid #d4af37;
    border-radius:10px;
    overflow:hidden;
    background:#111;
    text-align:center;
}

.schedTime {
    padding:8px;
    color:black;
    font-size:18px;
    font-weight:bold;
    background:rgb(32, 111, 148);
}

.schedCard img {
    width:100%;
    aspect-ratio:3.5 / 5;
    object-fit:cover;
    display:block;
}
.schedDays button.active {
    background:#3e5eff;
    color:#fdf9f9;
    border:2px solid #d4af37;
}
/* end schedule */
/*pop up windows */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.popup-box {
    background: #071d3d;
    color: white;
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 25px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    display: hidden;
}

.popup-box button {
    margin-top: 15px;
    padding: 10px 25px;
    background: #d4af37;
    border: none;
    border-radius: 6px;
    font-weight: bold;
}
.adBox {
    position: relative;
}

/* main popup image */
#imgholder {
    display: block;
    width: 100%;
    height: auto;
}

/* button holder sits ON TOP of the image */
.adDownloadButtons {
    position: absolute;

    left: 50%;
    bottom: 2%;

    transform: translateX(-50%);

    width: 50%;

    display: none;

    justify-content: center;
    gap: 3%;

    z-index: 80;
}

/* each button scales relative to popup width */
.adDownloadButtons a {
    width: 45%;
}

.adbtn {
    display: block;

    width: 100%;
    height: auto;

    cursor: pointer;
}
/*end popup window

/*ad overlay */
.adOverlay {
    position: fixed;
    inset: 0;

    display: none;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.85);

    z-index: 100;
}

.adBox {
    position: relative;

    width: 75vw;
    max-width: 1200px;

    max-height: 85vh;

    border: 3px solid #d4af37;
    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

.adBox img {
    display: block;

    width: 100%;
    height: auto;
}
.adClose {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;

    font-size: 24px;
    cursor: pointer;

    z-index: 101;
}
/*end ad overlay */

/*golden voice */
#rulesBox {    
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0,0,0,.85);
    visibility: hidden;
}
#rulesContent
{
    width: 80%;
    max-width: 1000px;

    margin: 50px auto;

    background: #fff;
    color: #000;

    padding: 20px;
}


.gvGrid
{
    width:90%;
    max-width:1200px;

    margin:40px auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;
}

.gvBox
{
    background:#111;

    border:2px solid #d4af37;

    padding:25px;

    border-radius:10px;

    text-align:center;

    color:white;

    transition:.3s;
}

.gvBox:hover
{
    transform:translateY(-3px);

    box-shadow:0 0 15px rgba(212,175,55,.5);
}

.gvBox h3
{
    color:#d4af37;

    margin-bottom:10px;

    font-size:28px;
}

.gvBox p
{
    font-size:18px;

    line-height:1.5;
}
@media(max-width:768px)
{
    .gvGrid
    {
        grid-template-columns:1fr;
    }
}
.gvSubmitSection
{
    width:90%;
    max-width:1000px;
    margin:40px auto;
    padding:30px;
    background:#111;
    border:2px solid #d4af37;
    border-radius:12px;
    color:white;
}

.gvSubmitSection h2
{
    color:#d4af37;
    text-align:center;
    font-size:34px;
    margin-bottom:10px;
}

.gvSubmitSection p
{
    text-align:center;
    font-size:18px;
    margin-bottom:25px;
}

.gvFormGrid
{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.gvField
{
    margin-bottom:20px;
}

.gvField label
{
    display:block;
    margin-bottom:6px;
    color:#d4af37;
    font-weight:bold;
}

.gvField input,
.gvField textarea
{
    width:100%;
    padding:12px;
    border-radius:6px;
    border:1px solid #555;
    background:#222;
    color:white;
    font-size:16px;
    box-sizing:border-box;
}

.gvField small
{
    display:block;
    margin-top:6px;
    color:#ccc;
}

.gvCheck
{
    display:flex;
    gap:10px;
    align-items:flex-start;
    margin:20px 0;
    font-size:15px;
}

.gvSubmitBtn
{
    display:block;
    width:100%;
    padding:15px;
    background:#d4af37;
    color:#000;
    border:none;
    border-radius:8px;
    font-size:22px;
    font-weight:bold;
    cursor:pointer;
}

.gvSubmitBtn:hover
{
    background:#f1cc55;
}

@media(max-width:768px)
{
    .gvFormGrid
    {
        grid-template-columns:1fr;
    }
}
.gvMessage
{
    width:90%;
    max-width:1000px;
    margin:20px auto;
    padding:15px;
    border-radius:8px;
    font-weight:bold;
    text-align:center;
}

.gvMessage.success
{
    background:#d4af37;
    color:#000;
}

.gvMessage.error
{
    background:#7a0000;
    color:#fff;
}
#rulesContent {
    background-color: #1b1b1b;
    border:solid 2px #d4af37;
    border-radius: 15px;
    color:#ffffff;
}
#rulesBox
{
    text-align:left;
}

#rulesBox h2
{
    margin-top:0;
    text-align:center;
}

#rulesBox ol
{
    padding-left:20px;
    line-height:1.7;
}

#rulesBox li
{
    margin-bottom:8px;
    font-size:20px;
}

.closeBtn
{
    float:right;
    cursor:pointer;
    padding: 5px 8px 5px 8px;
}

/*contestants grid*/

.gvSearchBox {
    text-align:center;
    margin:20px 0;
}
.gvSearchBox input {
    width:300px;
    max-width:90%;
    padding:12px;
    border-radius:8px;
    border:2px solid #d4af37;
    background:#111;
    color:white;
}

.gvSearchBox button {
    padding:12px 18px;
    border-radius:8px;
    border:0;
    background:#d4af37;
    color:#111;
    font-weight:bold;
    cursor:pointer;
}

.gvContestantCount {
    color:#d4af37;
    text-align:center;
    margin-bottom:25px;
}
.gvContestantGrid
{
    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(280px,300px));

    gap:25px;

    justify-content:center;
}

.gvContestantCard
{
    background:#111;

    border:2px solid #d4af37;

    border-radius:10px;

    overflow:hidden;

    color:white;

    text-align:center;

    transition:.3s;

    max-width:300px;

    margin:auto;
}
.gvContestantCard:hover
{
    transform:translateY(-3px);

    box-shadow:0 0 15px rgba(212,175,55,.5);
}

.gvContestantCard img
{
    width:100%;

    height:320px;

    object-fit:cover;

    display:block;
}

.gvContestantCard h3
{
    color:#d4af37;

    margin:15px 10px 8px;

    font-size:24px;
}

.gvContestantCard p
{
    margin:0 10px 12px 10px;

    font-size:15px;

    line-height:1.4;
}

.gvContestantBtns
{
    display:flex;

    justify-content:center;

    gap:8px;

    padding-bottom:15px;
}

.gvContestantBtns a,
.gvContestantBtns button {
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .gvContestantGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .gvContestantGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 450px) {
    .gvContestantGrid {
        grid-template-columns: 1fr;
    }
}

/*singlecontestant page */
.gvContestantProfile
{
    max-width:1200px;

    margin:30px auto;

    background:#111;

    border:2px solid #d4af37;

    border-radius:10px;

    padding:25px;

    color:white;
}
.gvContestantContent
{
    display:flex;

    gap:30px;

    align-items:flex-start;
}

@media(max-width:900px)
{
    .gvContestantContent
    {
        flex-direction:column;
    }
}
.gvContestantContent
{
    display:flex;

    gap:30px;

    align-items:flex-start;
}

@media(max-width:900px)
{
    .gvContestantContent
    {
        flex-direction:column;
    }
}
.gvContestantPhoto
{
    flex:0 0 350px;
}

.gvContestantPhoto img
{
    width:100%;

    border-radius:10px;

    border:2px solid #d4af37;
}
.gvContestantInfo
{
    flex:1;
}

.gvContestantInfo h2
{
    color:#d4af37;

    margin-top:0;

    font-size:38px;
}

.gvContestantInfo h4
{
    color:#ccc;

    margin-top:5px;
}
.gvBio
{
    margin-top:20px;

    line-height:1.6;

    font-size:18px;
}
.gvVideo
{
    margin-top:25px;
}

.gvVideo video
{
    width:100%;

    max-width:700px;

    border-radius:10px;

    border:2px solid #d4af37;
}
.gvVoteBtn
{
    margin-top:25px;

    background:#d4af37;

    color:#111;

    border:none;

    border-radius:8px;

    padding:14px 30px;

    font-size:20px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;
}

.gvVoteBtn:hover
{
    transform:translateY(-2px);

    box-shadow:0 0 15px rgba(212,175,55,.5);
}

.tvp-header {
    width: 94%;
    margin: 0 auto;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tvp-logo img {
    width: 280px;
}

.tvp-topnav {
    display: flex;
    gap: 20px;
}

.tvp-topnav a,
.tvp-play-now a {
    color: #fff;
    text-decoration: none;
    border: 1px solid #1b68d8;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
}

.tvp-watch-live {
    background: linear-gradient(to bottom, #da0308, #610102);
    border: 2px solid #ffffff !important;

    padding: 12px 38px !important;

    border-radius: 10px;

    color: #ffffff !important;
    text-decoration: none;

    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.tvp-watch-live:hover {
    background: linear-gradient(to bottom, #f0040a, #7a0203);
}
