/* =======================
  Base Header/Footer
======================= */
header {
    position: fixed;
    top: 0dvh;
    left: 0;
    width: 100dvw;
    height: fit-content;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0);
    transform: translate(0, 0);
    font-family: body;
    transition: all 0.3s ease;
}

header *,
footer *{
    user-select: none;
}


header .news-header {
    position: relative;
    width: 100vw;
    height: fit-content;
    pointer-events: all;
    overflow: hidden;
    display: flex;
    z-index: 4;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgb(1, 6, 10) 0%, 32.7255%, rgb(38, 39, 43) 65.4511%, 82.7255%, rgb(1, 6, 10) 100%);

}

header .news-header * {
    color: #dbcaae;
    border-color: #dbcaae;
}

header .news-header button {
    display: flex;
    z-index: 6;
    width: 100%;
    height: 100%;
    padding: 1rem 0rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
}

header .news-header button span {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.2em;
    padding: 0rem 0.5rem;
    text-transform: uppercase;
    text-align: center;
    line-break: auto;
    transition: opacity 0.3s ease;
}

header .news-header-data {
    width: 100dvw;
    height: 0vh;
    position: fixed;
    z-index: 5;
    top: 0;
    pointer-events: all;
    overflow: hidden;
    background: linear-gradient(90deg, rgb(1, 6, 10) 0%, 32.7255%, rgb(38, 39, 43) 65.4511%, 82.7255%, rgb(1, 6, 10) 100%);
    transition: height 0.5s ease;
    will-change: height;
}

header .news-header-data * {
    visibility: hidden;
    transition: visibility 0.3s ease;
}

header .news-header-data .default-close {
    position: absolute;
    width: 2rem;
    aspect-ratio: 1/1;
    right: 2%;
    font-size: 1.5rem;
    top: 2%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 50%;
    border: 0.2rem solid;
    background: transparent;
    transition: background 0.3s ease, border-color 0.3s ease;
}

header .news-header-data .default-close i {
    transition: color 0.3s ease;
}

header .news-header-data .default-close:hover {
    background: #dbcaae;
    border-color: #dbcaae00;
}

header .news-header-data .default-close:hover i {
    color: #000 !important;
}

header .news-header-data .bg-blur-color {
    height: 100vh;
    aspect-ratio: 16/9;
    position: absolute;
    top: 0;
    left: 50%;
    opacity: 0;
    object-fit: cover;
    transform: translateX(-50%);
    filter: blur(25px) saturate(1.5) brightness(1.5);
    transition: opacity 0.5s ease;
}

header .news-header-data .news-thumbnail {
    width: 100%;
    opacity: 0;
    z-index: 8;
    aspect-ratio: 16/9;
    position: absolute;
    object-fit: cover;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.3);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

header .news-header-data .news-thumbnail img {
    width: 100%;
}

header .news-header-data .news-thumbnail .play-default {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    cursor: pointer;
    filter: drop-shadow(0 0 0.3rem #fff);
    transition: font-size 0.2s linear;
}

header .news-header-data .news-thumbnail .play-default:hover {
    font-size: 7rem;
}

header .news-header-data .video_player {
    display: flex;
    height: 80vh;
    width: 100vw;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    z-index: 7;
    transform: translateY(-50%);
    transition: opacity 0.2s ease;
}







header .news-header-active .news-header-btn {
    pointer-events: none;
}

header .news-header-active .news-header-btn span {
    opacity: 0;
}

header .news-header-active .news-header-btn span {
    opacity: 0;
}

header .news-header-active .news-header-data * {
    visibility: visible;
}

header .news-header-active .news-header-data .bg-blur-color {
    opacity: 1;
}

header .news-header-active .news-header-data .news-thumbnail {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.5s 1s ease, transform 0.5s 1s ease;
}

header .news-header-active .news-header-data {
    height: 100dvh;
}

header .news-header-loading .news-header-data,
header .news-header-loaded .news-header-data {
    background: #000;
}

header .news-header-data::after {
    opacity: 1;
    transition: all 0.3s ease;
}

header .news-header-loading .news-header-data::after {
    background: #fff;
    content: '';
    position: absolute;
    width: 5vw;
    height: 100vh;
    opacity: 1;
    inset: 0;
    z-index: 5;
    filter: blur(15px) drop-shadow(0 0 1.5rem #fff) drop-shadow(0 0 .5rem #fff);
    transform: translateX(-100vw);
    animation-name: loading-news-animation;
    animation-duration: 2.15s;
    animation-timing-function: ease;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

@keyframes loading-news-animation {
    0% {
        transform: translateX(-100vw);
    }

    92% {
        transform: translateX(110vw);
    }

    100% {
        transform: translateX(110vw);
    }

}

header .news-header-loading .news-header-data .bg-blur-color,
header .news-header-loaded .news-header-data .bg-blur-color {
    opacity: 0;
}

header .news-header-loading .news-header-data .news-thumbnail,
header .news-header-loaded .news-header-data .news-thumbnail {
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s 1s ease;
}

header .news-header-loading .video_player {
    opacity: 0;
    pointer-events: none;
}






























header .navbar {
    display: grid;
    width: 90dvw;
    grid-template-areas: "home menu actions";
    grid-template-columns: 1fr auto 1fr;
    padding: 1vh 0vw;
    margin: 0 auto;
}

header .home_logo {
    align-items: center;
    grid-area: home;
    height: 6dvh;
    transition: all 0.3s ease;
}

header .home_logo .logo {
    cursor: pointer;
}

header .home_logo .logo img {
    height: 100%;
}

header:is(.header--active) {
    backdrop-filter: blur(15px);
    background-color: rgba(20, 20, 20, 0.7);
    filter: drop-shadow(0 0 0.2rem rgba(0, 0, 0, 0.2));
}

header:is(.header--active) .home_logo {
    height: 5dvh;
    filter: drop-shadow(0 0 1rem #ffffff00);
}

header .navbar nav {
    width: 38vw;
    grid-area: menu;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .navbar nav .nav__links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 0rem 0.5rem;
    list-style: none;
}

header .nav__links li {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .nav__links li a {
    text-transform: capitalize;
    text-align: center;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    width: fit-content;
    padding: 0.8rem 0;
    margin: 0 1rem;
    font-size: 1.0rem;
    transition: color 0.3s, background-color 0.3s, padding 0.3s ease-in;
    color: #ffffff;
    text-decoration: none;
}

header .nav__links a i {
    margin-inline-start: 0.5rem;
    scale: 1.2;
}


header .nav__links a::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0.2rem;
    left: 0;
    height: 0.2rem;
    width: 100%;
    border-radius: 10%;
    background-color: #ff00ef;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: color 0.3s, transform 0.3s ease-out;
}

header .nav__links a:hover::before,
header .nav__links a:focus::before {
    transform-origin: center top;
    transform: scale(1.5, 1.2);
}

header .nav__links .UserIsInPage{
    cursor: default;
}

header .nav__links .UserIsInPage::before {
    transform-origin: center top !important;
    transform: scale(1.5, 1.2) !important;
}



header .nav__links a,
header .cta,
header .mobile-nav_content a:not(.login_reg_text) {
    font-weight: 900;
    letter-spacing: 0.2rem;
    color: #ffffff;
    text-decoration: none;
}
header .mobile-nav_content .UserIsInPage:not(.login_reg_text) {
    color: #ff00ef !important;
}

header .nav__links li a {
    transition: color 0.3s ease 0s;
}

header .cta_sec {
    grid-area: actions;
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
}

header .cta {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: color 0.3s ease 0s;
}

header .login_reg_text {
    text-overflow: ellipsis;
    text-align: start;
    margin-top: 2rem;
    font-weight: 900;
    letter-spacing: 0.1rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease 0s;
}

header .login_sec[data-logined="true"] {
    color: var(--text-color-secondary);
}

header i {
    width: 0.8rem;
}

header .login_reg_text:hover {
    color: #fd63f3;
}

header .cta:hover {
    color: #fd63f3;
}


















header .cta .account-details {
    display: flex;
}

header .cta .account-details img {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
}

header .cta .account-details .account-username {
    margin: auto 0.8rem;
}

header .user-datas {
    display: none;
    position: relative;
}

header .account-options {
    cursor: default;
    pointer-events: none;
    display: block;
    opacity: 0;
    justify-content: center;
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0%;
    transition: opacity 0.3s ease;
}

header .account-options-connect {
    padding: 0.8vh 0.7vw;
    border-radius: 0.9vh;
    background-color: var(--color-neutral-300);
    box-shadow: 0rem 0.7rem 1rem 0ewm rgba(0, 0, 0, 0.2);
}

header .account-options-lang {
    box-shadow: 0rem 0.7rem 1rem 0ewm rgba(0, 0, 0, 0.2);
}

header .account-options-details {
    color: #fff;
    display: flex;
    margin-inline-start: 0.8rem;
    margin-top: 0.7rem;
}

.account-options-details img {
    width: 2.5rem;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

header .account-options-details .account-options-usernames {
    margin: auto 0.8rem;
}

header .account-options a {
    display: flex;
    color: #fff;
    padding: 0.4rem 0.5rem;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 1rem;
    text-transform: capitalize;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

header .account-options i {
    margin-inline-end: 0.8rem;
}

header .account-options a:hover {
    background-color: rgb(80, 80, 80);
}

header .user-datas:hover .account-options {
    opacity: 1;
    pointer-events: all;
}

header .login_reg_text_mobile {
    display: block;
    max-width: 100%;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

header .login_reg_text_mobile[data-logined="true"] {
    color: var(--text-color-secondary);
    font-size: 1.7rem;
}

header .navbar_cta_spliter {
    background-color: #858585;
    width: 95%;
    height: 1.3px;
    border-radius: 10%;
    justify-content: center;
    margin: 5% auto;
}

header .account-options .lang_sec {
    margin-top: 0.3rem;
    width: 100%;
    pointer-events: all;
}

header .account-options .lang_sec button {
    font-size: 1rem;
    font-weight: 700;
    text-transform: capitalize;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0.8rem 0rem;
    border-radius: 0.9vh;
    background-color: #000;
    border: 0.05rem #85858585 solid;
    outline: none;
}

header .account-options .lang_sec button span {
    text-overflow: ellipsis;
    max-width: 100%;
    overflow: hidden;
}

header .account-options .lang_sec button i {
    margin-inline-end: 0 !important;
    transition: transform 0.3s ease;
}

header .account-options .lang_sec button:is(.active_btn) .fa-angle-down {
    transform: rotate(180deg);
}

header .account-options .lang_sec #lang_selector {
    background-color: #242424;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    max-height: 0vh;
    overflow-x: hidden;
    transition: max-height 0.3s ease;
}

header .account-options .lang_sec #lang_selector span {
    border: 0.05rem hsl(0, 0%, 22%) solid;
    padding: 0.5rem 1rem;
    text-overflow: ellipsis;
    max-width: 100%;
    overflow: hidden;
    color: #fff;
    text-transform: capitalize;
    text-align: start;
    cursor: pointer;
    transition: background 0.3s ease;
}

header .account-options .lang_sec #lang_selector span:not(:is(.active_lang)):hover {
    background: #484848;
}

header .account-options .lang_sec #lang_selector span:is(.active_lang) {
    background: hsl(304, 100%, 30%);
}

header .account-options .lang_sec #lang_selector span:first-child {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

header .account-options .lang_sec #lang_selector span:last-child {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

/* Mobile Nav */

header .menu {
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    aspect-ratio: 1 / 1;
    height: 5dvh;
    top: 50%;
    left: 5%;
}

header .menu i {
    font-size: 1.2rem;
}

header .mobile-nav-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .close-btn i {
    margin-inline-end: 2vw;
    cursor: pointer;
    width: 2.7rem;
    height: 2.7rem;
}

header .logo i {
    cursor: pointer;
    width: 2.7rem;
    height: 2.7rem;
}

header .mobile-nav::before {
    width: 100dvw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.7);
}

header .mobile-nav {
    display: none;
    height: 100%;
    min-height: 100vh;
    width: 60dvw;
    box-shadow: 0 0 1rem #000;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #1f1f1f;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translate(110dvw, 0%);
    opacity: 1;
    list-style: none;
    z-index: 4;
}

header .mobile-nav--active {
    transform: translate(0%, 0%) !important;
}

header .mobile-nav_content {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
}


header .mobile-nav li {
    text-transform: capitalize;
    padding: 0.8rem 2rem 0.8rem 1rem;
    font-size: 1.3rem;
    display: block;
    transition: color 0.3s ease 0s;
}

header .mobile-nav li:first-child {
    padding: 2.2rem 2rem 0.8rem 1rem;
}

header .mobile-nav li a i {
    margin-inline-start: 0.5rem;
    scale: 1.2;
}

header .mobile-nav a:hover,
header .mobile-nav a:focus {
    color: #ff00ec;
    cursor: pointer;
}

header .mobile-nav .close {
    position: absolute;
    top: 0;
    left: 85%;
    align-items: start;
    font-size: 3.75rem;
    color: #edf0f1;
}

header .mobile-body-overly {
    display: flex;
    height: 100%;
    width: 100%;
    background-color: #24252a;
    flex-direction: column;
}

footer {
    box-shadow: 0 -0.2rem 1.2rem rgba(0, 0, 0, 0.7);
    color: #ffffff;
    background: #000000;
    position: relative;
    width: 100%;
    min-height: 6rem;
    padding-bottom: 1rem;
}

footer .footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 1rem 0 1rem;
}

footer .help-links {
    display: flex;
    flex-direction: column;
    align-items: start;
}

footer .help-links a {
    font-size: 0.9rem;
    color: #858585;
    text-decoration: none;
    text-transform: capitalize;
    margin: 0.6rem;
    transition: color 0.3s ease;
}

footer .help-links a:hover {
    color: #ff00ef;
}

footer .social_icon {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    margin: 0.6rem 0;
    width: fit-content;
}

footer .social_icon li {
    list-style: none;
    align-items: center;
}

footer .social_icon li a {
    margin: 0 0.6rem;
    display: inline-block;
    background-clip: content-box;
    font-size: 2.7rem;
    color: #858585;
    transition: color 0.3s ease;
}

footer .social_icon li a:hover {
    color: #ff00ee;
}

footer .copyright {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-around;
    margin-top: 1.8rem;
}

footer .copyright p,
footer .copyright .footer_logo {
    width: 80%;
}

footer .copyright .footer_logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .copyright .footer_logo a {
    color: #ffffff;
    position: relative;
}

footer .copyright svg {
    width: 3.3rem;
    fill: #858585;
    transition: fill 0.3s ease;
}

footer .copyright svg:hover {
    fill: #ff00ef;
}

footer .copyright p {
    color: #ffffff;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0.6rem 0;
}

footer .copyright p:nth-child(3) {
    color: #ffffff;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0.6rem 0;
}

/* =======================
  Responsive
======================= */
/* tablet */
@media screen and (max-width: 767px) and (min-width: 576px) {
    footer .help-links {
        flex-wrap: wrap;
        width: 50%;
        flex-direction: row;
    }

    footer .social_icon li a {
        font-size: 2.0rem;
    }

    footer .copyright {
        justify-content: space-around;
        flex-direction: row;
    }

    footer .copyright p,
    footer .copyright .footer_logo {
        width: 25%;
    }

    footer .copyright .footer_logo {
        justify-content: start;
    }

    footer .copyright i {
        width: 2.8rem;
    }

    footer .copyright p {
        font-size: 0.8rem;
    }

    footer .copyright p:nth-child(3) {
        text-align: end;
    }
}

/* laptop */
@media screen and (max-width: 991px) and (min-width: 768px) {
    footer .help-links {
        flex-direction: row;
    }

    footer .copyright p,
    footer .copyright .footer_logo {
        width: 30%;
    }

    footer .social_icon li a {
        align-items: center;
        justify-content: center;
        font-size: 2.4rem;
    }

    footer .copyright {
        justify-content: space-around;
        flex-direction: row;
    }

    footer .copyright .footer_logo {
        align-items: start;
        justify-content: start;
    }

    footer .copyright p {
        font-size: 0.9rem;
    }

    footer .copyright i {
        width: 3.0rem;
        fill: #858585;
        transition: fill 0.3s ease;
    }

    footer .copyright p:nth-child(3) {
        text-align: end;
    }
}

/* desktop */
@media screen and (max-width: 1199px) and (min-width: 992px) {
    header .cta {
        letter-spacing: 0rem;
        font-size: 0.7rem;
    }

    header .login_sec #account_profile_pic {
        width: 1.5rem;
        height: 1.5rem;
    }









    footer .help-links {
        flex-direction: row;
    }

    footer .copyright p,
    footer .copyright .footer_logo {
        width: 30%;
    }

    footer .social_icon li a {
        align-items: center;
        justify-content: center;
        font-size: 2.4rem;
    }

    footer .copyright {
        justify-content: space-around;
        flex-direction: row;
    }

    footer .copyright .footer_logo {
        align-items: start;
        justify-content: start;
    }

    footer .copyright p {
        font-size: 1.1rem;
    }

    footer .copyright svg {
        width: 3.0rem;
        fill: #858585;
        transition: fill 0.3s ease;
    }

    footer .copyright p:nth-child(3) {
        text-align: end;
    }
}

/* larg desktop */
@media screen and (max-width: 1399px) and (min-width: 1200px) {
    header .login_sec {
        letter-spacing: 0rem;
        font-size: 0.9rem;
    }

    header .login_sec #account_profile_pic {
        width: 1.8rem;
        height: 1.8rem;
    }

    header .cta {
        scale: 1.5;
    }

















    footer .help-links {
        flex-direction: row;
    }

    footer .copyright p,
    footer .copyright .footer_logo {
        width: 30%;
    }

    footer .social_icon li a {
        align-items: center;
        justify-content: center;
        font-size: 2.6rem;
    }


    footer .copyright {
        justify-content: space-around;
        flex-direction: row;
    }

    footer .copyright .footer_logo {
        align-items: start;
        justify-content: start;
    }

    footer .copyright p {
        font-size: 1.2rem;
    }

    footer .copyright i {
        width: 3.2rem;
        fill: #858585;
        transition: fill 0.3s ease;
    }

    footer .copyright p:nth-child(3) {
        text-align: end;
    }
}

/* tv */
@media screen and (min-width: 1400px) {
    header .login_sec #account_profile_pic {
        width: 1.8rem;
        height: 1.8rem;
    }














    footer .help-links {
        flex-direction: row;
    }

    footer .copyright p,
    footer .copyright .footer_logo {
        width: 30%;
    }

    footer .social_icon li a {
        align-items: center;
        justify-content: center;
        font-size: 2.6rem;
    }

    footer .copyright {
        justify-content: space-around;
        flex-direction: row;
    }

    footer .copyright .footer_logo {
        align-items: start;
        justify-content: start;
    }

    footer .copyright p {
        font-size: 1.2rem;
    }

    footer .copyright i {
        width: 3.2rem;
        fill: #858585;
        transition: fill 0.3s ease;
    }

    footer .copyright p:nth-child(3) {
        text-align: end;
    }
}

/* =======================
  Optional Responsive
======================= */
@media (max-width: 992px) {
    header .mobile-nav {
        display: block;
    }

    header .navbar nav,
    header .cta {
        visibility: hidden;
        display: none;
    }

    header .menu {
        visibility: visible;
        display: flex;
    }

    header .navbar {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "home menu actions";
    }

    footer .social_icon {
        width: 50%;
    }
}