/* Necessary Fonts */
@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/Segoe\ UI.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Arial';
    src: url('../fonts/arial.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Styling of body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000;
    color: #FFF;
}

a {
    text-decoration-line: none;
    color: #FFF;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

#loader img {
    max-width: 100%;
    max-height: 100%;
}

body.loading {
    overflow: hidden;
}


/* Styling of navbar */
header {
    position: fixed;
    width: 100%;
    height: 78px;
    left: 0px;
    top: 0px;
    z-index: 9;
    display: flex;
    justify-content: space-between;
}

.nav-logo {
    position: absolute;
    width: 90px;
    height: auto;
    left: 24px;
    top: 28.27px;
}

.nav-tabs {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    left: 130px;
    top: 0;
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    color: #FFFFFF;
}

.nav-tab {
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-tab:hover:not(.active) {
    transform: scale(1.1);
}

.nav-tab.active {
    color: rgba(0, 0, 0, 1);
    padding: 8.5px 11.69px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 2px solid rgba(171, 232, 44, 1);
    transform: none;
}

.search-btn {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 145.5px;
    top: 27px;
}

.login-btn {
    position: relative;
    top: 15px;
    right: 18px;
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    color: #FFFFFF;
    background: rgba(171, 232, 44, 1);
    padding: 13.5px 40px;
    outline: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.profileicon {
	position: relative;
    top: 15px;
    right: 50px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: none;
}

.login-btn:hover {
    transform: scale(1.1);
    color: red;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    width: 7.69vw;
    height: 7.69vw;
    left: 6.79vw;
    top: 6.15vw;
}

.menu-btn img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 431px) {
    .nav-tabs {
        position: absolute;
        top: 20.26vw;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        padding: 2.56vw;
        gap: 3.85vw;
        text-align: left;
        z-index: 10;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
    }

    .nav-tabs.open {
        max-height: 128.21vw;
        opacity: 1;
    }

    .menu-btn {
        display: block;
    }

    header {
        height: 20.26vw;
        padding: 0 2.56vw;
        align-items: center;
    }

    .nav-logo {
        position: relative;
        margin-left: 16.28vw;
        width: 17.95vw;
        height: 5.24vw;
        left: 0vw;
        top: -1.28vw;
    }

    .search-btn {
        position: absolute;
        width: 5.13vw;
        height: 5.13vw;
        left: 57.95vw;
        top: 7.31vw;
        display: none;
    }

    .login-btn {
        position: absolute;
        width: max-content;
        height: 12.05vw;
        left: 69.10vw;
        top: 3.97vw;
        font-family: 'Segoe UI';
        font-style: normal;
        font-weight: 600;
        font-size: 3.59vw;
        line-height: 5.13vw;
        display: flex;
        align-items: center;
        letter-spacing: 0.25px;
        padding: 3.59vw 7.69vw;
    }
    
    .profileicon {
        top: 0;
        right: 7vw;
    }
}

/* Styling of hero-banners carousel */
.hero-banner {
    width: 100%;
    height: auto;
    display: block;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 57vw;
    overflow: hidden;
}

.hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero.active {
    opacity: 1;
    z-index: 1;
}

#hero-fg {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0px;
    top: 0px;
    z-index: 2;
}

.title-text {
    position: absolute;
    width: max-content;
    height: 37px;
    left: 35px;
    top: 37.85vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 700;
    font-size: 33px;
    line-height: 47px;
    display: flex;
    align-items: center;
    letter-spacing: 0.25px;
    color: #FFFFFF;
    text-shadow: 0.5px 0.5px 2px #000000;
    z-index: 3;
}

.genre-text {
    position: absolute;
    width: auto;
    height: 17px;
    left: 35px;
    top: 41.04vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    display: flex;
    align-items: center;
    letter-spacing: 0.25px;
    color: #A9AAAC;
    text-shadow: 0.5px 0.5px 2px #000000;
    z-index: 3;
}

.description-text {
    position: absolute;
    width: 626.81px;
    height: 40px;
    left: 35px;
    top: 43.25vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    display: flex;
    align-items: center;
    letter-spacing: 0.25px;
    color: #A9AAAC;
    z-index: 3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.watch-btn {
    position: absolute;
    width: 188.38px;
    height: 50px;
    left: 35px;
    top: 42.94vw;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    border: none;
    outline: none;
    z-index: 3;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    display: flex;
    align-items: center;
    letter-spacing: 0.25px;
    color: #FFFFFF;
}

.play-logo {
    width: 13.92px;
    height: 15px;
    margin-right: 15.5px;
    margin-left: 40.54px;
}

.add-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 244.3px;
    top: 42.94vw;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    z-index: 3;
    cursor: pointer;
    border: none;
    outline: none;
}

.add {
    width: 18px;
    height: 18px;
}

.language-text {
    display: none;
}

.points {
    display: none;
}

@media screen and (max-width: 431px) {
    .hero-banner {
        position: relative;
        width: 100%;
        height: 121.15vw;
    }

    .hero-carousel {
        height: 125vw;
    }

    #hero-fg {
        content: url("../images/hero-fg-mob.png");
        width: 100%;
        height: 125.53vw;
    }

    .title-text {
        height: 8.05vw;
        left: 50%;
        top: 97.77vw;
        font-weight: 700;
        font-size: 5.95vw;
        line-height: 8.54vw;
        letter-spacing: 0.07vw;
        text-shadow: 0.13vw 0.13vw 0.52vw #000000;
        transform: translateX(-50%);
    }

    .genre-text {
        width: max-content;
        height: 4.62vw;
        left: 50%;
        top: 100.91vw;
        font-weight: 700;
        font-size: 3.10vw;
        line-height: 4.39vw;
        letter-spacing: 0.07vw;
        text-shadow: 0.13vw 0.13vw 0.52vw #000000;
        color: #FFFFFF;
        transform: translateX(-50%);
    }

    .description-text {
        display: none;
    }

    .language-text {
        display: block;
        position: relative;
        width: max-content;
        height: 4.62vw;
        left: 50%;
        top: -26.05vw;
        font-family: 'Arial';
        font-style: normal;
        font-weight: 700;
        font-size: 3.10vw;
        line-height: 4.39vw;
        display: flex;
        align-items: center;
        letter-spacing: 0.07vw;
        color: #FFFFFF;
        text-shadow: 0.13vw 0.13vw 0.52vw #000000;
        transform: translateX(-50%);
        z-index: 3;
    }

    .watch-btn {
        position: absolute;
        width: 46.99vw;
        height: 11.50vw;
        left: 17.99vw;
        top: 106.97vw;
        background: #1F2229;
        border-radius: 2.61vw;
        font-weight: 400;
        font-size: 3.59vw;
        line-height: 5.13vw;
        letter-spacing: 0.07vw;
    }

    .play-logo {
        width: 3.56vw;
        height: 3.85vw;
        margin-right: 3.99vw;
        margin-left: 10.39vw;
    }

    .add-btn {
        width: 11.50vw;
        height: 11.50vw;
        left: 69.94vw;
        top: 106.97vw;
        background: #1F2229;
        border-radius: 2.61vw;
    }

    .add {
        width: 3.33vw;
        height: 3.33vw;
    }

    .points {
        display: block;
        position: absolute;
        width: auto;
        height: 1.87vw;
        left: 50%;
        top: 121.74vw;
        transform: translateX(-50%);
        z-index: 3;
    }
}

/* Styling of Top-10 in India carousel */
.topten {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0vw;
    gap: 1.406vw;
    margin-top: 15px;
    width: calc(100% - 0.573vw);
    height: 27.83vw;
}

.topten-title {
    position: relative;
    left: 2.552vw;
    width: auto;
    height: 3.02vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 700;
    font-size: 1.719vw;
    line-height: 2.448vw;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    letter-spacing: 0.013vw;
    color: #FFFFFF;
    text-shadow: 0.026vw 0.026vw 0.104vw #000000;
    gap: 0.26vw;
}

.second-text {
    width: max-content;
    height: 0.729vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 1.042vw;
    line-height: 2.448vw;
    leading-trim: both;
    text-edge: cap;
    display: flex;
    align-items: center;
    letter-spacing: 0.013vw;
    color: #878787;
    text-shadow: 0.026vw 0.026vw 0.104vw #000000;
}

.topten-carousel {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0vw;
    gap: 1.563vw;
    width: calc(100% - 0.573vw);
    height: 26.46vw;
    overflow: hidden;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.topcar-items {
    width: 17.55vw;
    height: 23.39vw;
    flex-shrink: 0;
}

.item-img {
    position: relative;
    width: 15vw;
    height: 23.39vw;
    left: 2.552vw;
    top: 0vw;
    cursor: pointer;
}

.numbering {
    position: relative;
    width: 6.146vw;
    height: 7.552vw;
    left: 0vw;
    top: -8.438vw;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 10.73vw;
    line-height: 1.094vw;
    leading-trim: both;
    text-edge: cap;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.013vw;
    color: #ABE82C;
    text-shadow: 9px 5px 0px #557E00;
}

.view-all {
    display: none;
}

.viewall-text {
    display: none;
}

.viewall-img {
    display: none;
}

@media screen and (max-width: 431px) {
    .topten {
        position: relative;
        gap: 2.23vw;
        width: calc(100% - 2.05vw);
        height: 44.19vw;
        left: 2.05vw;
        margin-top: 3.85vw;
    }

    .topten-title {
        width: calc(100% - 3.85vw);
        height: 4.79vw;
        font-weight: 700;
        font-size: 2.85vw;
        line-height: 3.90vw;
        letter-spacing: 0.02vw;
        text-shadow: 0.04vw 0.04vw 0.16vw #000000;
        gap: 0.77vw;
    }

    .second-text {
        font-weight: 400;
        font-size: 1.81vw;
        line-height: 3.90vw;
        letter-spacing: 0.02vw;
        text-shadow: 0.04vw 0.04vw 0.16vw #000000;
    }

    .topten-carousel {
        gap: 2.48vw;
        width: 100%;
        height: 37.10vw;
    }

    .topcar-items {
        width: 27.82vw;
        height: 37.10vw;
    }

    .item-img {
        width: 23.78vw;
        height: 37.13vw;
        left: 4.05vw;
    }

    .numbering {
        width: max-content;
        height: auto;
        top: -9.23vw;
        font-weight: 700;
        font-size: 16.99vw;
        line-height: 1.79vw;
        text-align: center;
        letter-spacing: 0.02vw;
        text-shadow: 0.74vw 0.41vw 0vw #557E00;
    }

    .view-all {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0vw;
        gap: 1.79vw;
        width: max-content;
        height: 3.08vw;
        position: absolute;
        right: 4.05vw;
    }

    .viewall-text {
        width: max-content;
        height: 2.05vw;
        font-family: 'Arial';
        font-style: normal;
        font-weight: 700;
        font-size: 2.85vw;
        line-height: 3.90vw;
        display: flex;
        align-items: center;
        letter-spacing: 0.02vw;
        color: #FFFFFF;
        text-shadow: 0.04vw 0.04vw 0.16vw #000000;
    }

    .viewall-img {
        display: block;
        width: 3.08vw;
        height: 3.08vw;
    }
}

/* Styling of footer */
footer {
    position: relative;
    height: 390px;
    width: 100%;
    padding: 90px 35px;
    display: flex;
    flex-direction: row;
    gap: 35px;
}

#bigdiv {
    width: 1000px;
    font-family: 'Arial';
    font-style: normal;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    letter-spacing: 0.013vw;
    color: #A9AAAC;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
    letter-spacing: 0.25px;
    color: #A9AAAC;
}

.foot-logo {
    width: 140px;
    height: 43px;
    margin-bottom: 10px;
}

.smalldiv {
    width: 430px;
}

footer li {
    width: 100%;
    height: 32px;
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 26px;
    display: flex;
    align-items: center;
    letter-spacing: 0.25px;
    color: #FFFFFF;
    cursor: pointer;
    transition: transform 0.2s ease;
}

footer li:hover {
    transform: scale(1.1);
    color: red;
}

#smalldiv li {
    margin-bottom: 5px;
}

#smalldiv li:hover {
    transform: none;
    color: #FFF;
}

.smalllogo {
    width: 30px;
    height: 30px;
    margin-right: 30px;
    opacity: 0.6;
}

@media screen and (max-width: 431px) {
    footer {
        position: relative;
        height: 145.31vw;
        width: 100%;
        padding: 30.77vw 6.15vw 30.77vw 6.15vw;
        display: flex;
        flex-direction: column;
        gap: 8.97vw;
    }

    #bigdiv {
        width: 100%;
        font-family: 'Arial';
        font-style: normal;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        letter-spacing: 0.013vw;
        color: #A9AAAC;
        font-size: 3.59vw;
        line-height: 5.38vw;
        font-weight: 600;
        letter-spacing: 0.25px;
        color: #A9AAAC;
    }

    #bigdiv span {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 5.38vw;
    }

    .foot-logo {
        width: 35.90vw;
        height: 11.03vw;
        margin-bottom: 2.56vw;
    }

    .smalldiv {
        width: 100%;
    }

    footer li {
        width: 100%;
        height: 8.21vw;
        font-family: 'Segoe UI';
        font-style: normal;
        font-weight: 600;
        font-size: 3.08vw;
        line-height: 6.67vw;
        display: flex;
        align-items: center;
        letter-spacing: 0.25px;
        color: #FFFFFF;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    footer li:hover {
        transform: scale(1.1);
        color: red;
    }

    #smalldiv li {
        margin-bottom: 1.28vw;
    }

    #smalldiv li:hover {
        transform: none;
        color: #FFF;
    }

    .smalllogo {
        width: 7.69vw;
        height: 7.69vw;
        margin-right: 7.69vw;
    }
}

/* Styling of login Modal */
.modal {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    transition: bottom 0.5s ease-in-out;
}

.modal2 {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    transition: bottom 0.5s ease-in-out;
}

.modal.show {
    bottom: 0;
}

.modal2.show {
    bottom: 0;
}

.modal-content {
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
    height: inherit;
    background-image: url(../images/login_bg_port\ 1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.modal-content2 {
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
    height: inherit;
    background: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.back-btn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.modal footer {
    position: absolute;
    top: 100vh;
    height: auto;
    padding: 90px 35px 40px 35px;
}

.loginbox {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    width: max-content;
    height: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(0.263vw);
    border: 0.052vw solid #B3B3B3;
    padding: 3.021vw 4.375vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2.083vw;
    border-radius: 2.24vw;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.loginbox2 {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    width: max-content;
    min-width: 50%;
    height: auto;
    left: 50%;
    transform: translate(-50%, -50%);
   	background-image: url(../images/login_bg_port\ 1.png);
    background-size: cover;
    backdrop-filter: blur(0.263vw);
    border: 0.052vw solid #B3B3B3;
    padding: 2.375vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2.083vw;
    border-radius: 2.24vw;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.loginbox2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
    border-radius: 2.24vw;
}

.loginbox2>* {
    position: relative;
    z-index: 1;
}

#otp-content {
    align-items: center;
}

.back {
    width: 2.604vw;
    height: 2.604vw;
}

#otp-content .back {
    position: absolute;
    left: 3.568vw;
    top: 3.021vw;
}

.loginlogo {
    width: 15.052vw;
    height: 4.395vw;
}

.login-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0vw;
    width: max-content;
    height: 3.438vw;
}

.login-text2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0vw;
    width: max-content;
    height: 3.438vw;
    gap: 1vw;
}

#otp-content .login-text {
    align-items: center;
}

.bold-text {
    width: max-content;
    height: 1.719vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 700;
    font-size: 1.198vw;
    line-height: 1.719vw;
    display: flex;
    align-items: center;
    letter-spacing: 0.013vw;
    color: #FFFFFF;
    text-shadow: 0.026vw 0.026vw 0.104vw #000000;
}

.bold-text2 {
    width: max-content;
    height: 1.719vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 700;
    font-size: 1.56vw;
    line-height: 1.719vw;
    display: flex;
    align-items: center;
    letter-spacing: 0.013vw;
    color: #FFFFFF;
    text-shadow: 0.026vw 0.026vw 0.104vw #000000;
}

.small-text {
    width: max-content;
    height: 1.719vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 1.198vw;
    line-height: 1.719vw;
    display: flex;
    align-items: center;
    letter-spacing: 0.013vw;
    color: #DADADA;
    text-shadow: 0.026vw 0.026vw 0.104vw #000000;
}

.small-text2 {
    width: max-content;
    height: 1.719vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 1.198vw;
    line-height: 1.719vw;
    display: flex;
    align-items: center;
    letter-spacing: 0.013vw;
    color: #DADADA;
    text-shadow: 0.026vw 0.026vw 0.104vw #000000;
}

.mobile-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0vw;
    gap: 1.25vw;
    width: 25.052vw;
    height: auto;
}

#mobilewrap1 {
	height: 8.06vw;
}

.input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}

.prefix {
    position: absolute;
    left: 0.521vw;
    top: 50%;
    transform: translateY(-50%);
    width: 2.083vw;
    height: 1.719vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 1.198vw;
    line-height: 1.719vw;
    display: flex;
    align-items: center;
    letter-spacing: 0.013vw;
    color: #DADADA;
    margin-left: 1.35vw;
}

.mobinput {
    font-family: 'Arial';
    width: 100%;
    outline: none;
    font-size: 0.833vw;
    font-weight: 700;
    padding: 0 1.208vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 3.385vw;
    background: #434343;
    border: 0.052vw solid #BAFA34;
    border-radius: 0.365vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 1.198vw;
    line-height: 1.719vw;
    color: #FFF;
}

.mobinput::placeholder {
    width: max-content;
    height: 1.719vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 1.198vw;
    line-height: 1.719vw;
    display: flex;
    align-items: center;
    letter-spacing: 0.013vw;
    color: rgba(255, 255, 255, 0.13);
}

#regmobile {
	padding-left: 5vw;
}

.submitbtn {
    width: 100%;
    cursor: pointer;
    border: none;
    outline: none;
    box-sizing: border-box;
    height: 3.385vw;
    background: #91D603;
    border: 0.052vw solid #BAFA34;
    border-radius: 0.365vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 700;
    font-size: 1.198vw;
    line-height: 1.719vw;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.013vw;
    color: #FFFFFF;
}

.googlebtn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.833vw 5.729vw;
    gap: 1.667vw;
    width: 100%;
    height: 3.75vw;
    background: #FFFFFF;
    border: 0.052vw solid #BAFA34;
    border-radius: 0.365vw;
    outline: none;
    cursor: pointer;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 1.198vw;
    line-height: 1.719vw;
    display: flex;
    align-items: center;
    letter-spacing: 0.013vw;
    color: #160000;
}

.googleimg {
    width: 2.083vw;
    height: 2.083vw;
}

.ortext {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0vw;
    gap: 0.938vw;
    width: 25.052vw;
    height: 1.719vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 700;
    font-size: 1.198vw;
    line-height: 1.719vw;
    display: flex;
    align-items: center;
    letter-spacing: 0.013vw;
    color: #484848;
}

.redline {
    width: 10.365vw;
    height: 0vw;
    border: 0.052vw solid #FF0000;
}

@media screen and (max-width: 431px) {
    .modal-content {
        background-image: url(../images/login_bg_port_mob.png);
    }

    .modal footer {
        padding: 23.08vw 8.97vw 10.26vw 8.97vw;
    }

    .loginbox {
        padding: 13.33vw 7.69vw;
        gap: 6vw;
        border: 0.15vw solid #B3B3B3;
        backdrop-filter: blur(0.76vw);
        border-radius: 6.45vw;
    }
    
    .loginbox2 {
        padding: 5.375vw;
        gap: 2.79vw;
        border: 0.35vw solid #B3B3B3;
        backdrop-filter: blur(0.76vw);
        border-radius: 6.45vw;
        max-width: 83.72vw;
    }
    
    .loginbox2::before {
        border-radius: 6.45vw;
    }

    .back {
        width: 7.49vw;
        height: 7.49vw;
    }

    #otp-content .back {
        width: 6.47vw;
        height: 6.47vw;
        left: 8.87vw;
        top: 7.51vw;
    }

    .loginlogo {
        width: 43.34vw;
        height: 12.65vw;
    }

    .login-text {
        height: 10.26vw;
    }
    
    .login-text2 {
        height: auto;
        width: 69.77vw;
    }

    .bold-text {
        height: 5.13vw;
        font-weight: 700;
        font-size: 3.45vw;
        line-height: 4.87vw;
        letter-spacing: 0.04vw;
        text-shadow: 0.07vw 0.07vw 0.30vw #000000;
    }
    
    .bold-text2 {
    	height: 5.13vw;
        font-weight: 700;
        line-height: 4.87vw;
        letter-spacing: 0.04vw;
        text-shadow: 0.07vw 0.07vw 0.30vw #000000;
        font-size: 3.49vw;
    }

    .small-text {
        height: 5.13vw;
        font-weight: 400;
        font-size: 3.45vw;
        line-height: 4.87vw;
        letter-spacing: 0.04vw;
        text-shadow: 0.07vw 0.07vw 0.30vw #000000;
    }
    
    .small-text2 {
    	width: 69.77vw;
        height: auto;
        font-weight: 400;
        font-size: 3.45vw;
        line-height: 4.87vw;
        letter-spacing: 0.04vw;
        text-shadow: 0.07vw 0.07vw 0.30vw #000000;
    }

    .mobile-wrapper {
        gap: 3.60vw;
        width: 72.25vw;
        height: auto;
    }
    
    #mobilewrap1 {
		height: 23.5vw;
	}

    .prefix {
        width: 6.15vw;
        height: 5.13vw;
        font-size: 3.45vw;
        line-height: 4.87vw;
        letter-spacing: 0.04vw;
        margin-left: 3.90vw;
    }

    .mobinput {
        padding: 0 2.208vw;
        gap: 4.80vw;
        width: 72.25vw;
        height: 9.93vw;
        background: #434343;
        border: 0.15vw solid #BAFA34;
        border-radius: 1.05vw;
        font-family: 'Arial';
        font-style: normal;
        font-weight: 400;
        font-size: 3.45vw;
        line-height: 4.87vw;
    }

    .mobinput::placeholder {
        width: max-content;
        height: 5.13vw;
        font-weight: 400;
        font-size: 3.45vw;
        line-height: 4.87vw;
        letter-spacing: 0.04vw;
    }
    
    #regmobile {
		padding-left: 17vw;
	}

    .submitbtn {
        width: 72.25vw;
        height: 9.93vw;
        border: 0.15vw solid #BAFA34;
        border-radius: 1.05vw;
        font-weight: 700;
        font-size: 3.45vw;
        line-height: 4.87vw;
        letter-spacing: 0.04vw;
    }

    .googlebtn {
        width: 72.25vw;
        height: 10.80vw;
        border: 0.15vw solid #BAFA34;
        border-radius: 1.05vw;
        font-weight: 400;
        font-size: 3.45vw;
        line-height: 4.87vw;
        letter-spacing: 0.04vw;
    }

    .googleimg {
        width: 6vw;
        height: 6vw;
    }

    .ortext {
        gap: 2.70vw;
        width: 72.25vw;
        height: 5.13vw;
        font-weight: 700;
        font-size: 3.45vw;
        line-height: 4.87vw;
        letter-spacing: 0.04vw;
    }

    .redline {
        width: 29.84vw;
        height: 0vw;
        border: 0.15vw solid #FF0000;
    }
}

.otp-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0vw;
    gap: 1.094vw;
    width: 32.083vw;
    height: 12.5vw;
}

.otp-wrapper2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0vw;
    gap: 1.094vw;
    width: 32.083vw;
    height: auto;
}

.otpdiv {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0vw;
    gap: 1.25vw;
    width: 26.563vw;
    height: 3.385vw;
    justify-content: center;
}

.otpdiv2 {
    display: flex;
    flex-direction: row;
    padding: 0vw;
    gap: 1.25vw;
    border: 0.052vw solid rgba(171, 232, 44, 1);
    height: 5.385vw;
    border-radius: 0.665vw;
    align-items: center;
    width: 100%;
}

.otpinput {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 3.385vw;
    height: 3.385vw;
    background: #434343;
    border: 0.052vw solid #BAFA34;
    border-radius: 0.365vw;
    outline: none;
    text-align: center;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 1.198vw;
    line-height: 1.719vw;
    color: #FFF;
}

#confirmbtn {
    box-sizing: border-box;
    width: 32.083vw;
    height: 3.385vw;
    background: #91D603;
    border: 0.052vw solid #BAFA34;
    border-radius: 0.365vw;
    cursor: pointer;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 700;
    font-size: 1.198vw;
    line-height: 1.719vw;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.013vw;
    color: #FFFFFF;
}

#confirmbtn2 {
    box-sizing: border-box;
    width: 32.083vw;
    height: 4.385vw;
    background: #91D603;
    border: 0.052vw solid #BAFA34;
    border-radius: 0.365vw;
    cursor: pointer;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 700;
    font-size: 1.465vw;
    line-height: 1.719vw;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.013vw;
    color: #FFFFFF;
}

.rdbtn {
    position: relative;
    left: 1.465vw;
    width: 1.465vw;
    height: 1.465vw;
}

.otp-text {
    position: relative;
    left: 1.953vw;
    font-family: 'Arial';
    font-size: 1.953vw;
    font-weight: bold;
}

.rate {
    position: absolute;
    left: 15.297vw;
    font-family: 'Segoe UI';

    span {
        font-size: 2.93vw;
        font-weight: bold;
    }
}

.savemore {
    position: relative;
    left: 15.137vw;
    font-family: 'Segoe UI';
    border: 1px solid rgba(0, 0, 0, 0);
    font-size: 1.172vw;
    background: linear-gradient(#130726, #130726) padding-box, linear-gradient(90deg, rgb(41, 248, 126) 0%, rgb(49, 186, 237) 33%, rgb(233, 247, 66) 66%, rgb(237, 68, 205) 100%) border-box;
    padding: 0.391vw 0.977vw;
    border-radius: 0px 0.65vw 0 1.367vw;
    top: -1.465vw;
}

#resendbtn {
    width: 32.083vw;
    height: 3.385vw;
    background: #343434;
    border-radius: 0.365vw;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 1.198vw;
    line-height: 1.719vw;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.013vw;
    color: #FFFFFF;
    outline: none;
    cursor: pointer;
    border: none;
}

.otplogo {
    width: 15.052vw;
    height: 4.395vw;
}

@media screen and (max-width: 431px) {
    .otplogo {
        width: 37.43vw;
        height: 10.92vw;
    }

    .otp-wrapper {
        padding: 0vw;
        gap: 2.72vw;
        width: 80vw;
        height: 31.25vw;
    }
    
    .otp-wrapper2 {
        padding: 0vw;
        gap: 2.79vw;
       	width: 69.77vw;
        height: auto;
    }

    .otpdiv {
        padding: 0vw;
        gap: 3.11vw;
        width: 66.05vw;
        height: 8.42vw;
    }
    
    .otpdiv2 {
    	padding: 0vw;
        gap: 3.11vw;
        width: 66.05vw;
        border: 0.23vw solid rgba(171, 232, 44, 1);
        height: 11.63vw;
        border-radius: 0.91vw;
    }
    
    .rdbtn {
        left: 3.49vw;
        width: 3.49vw;
        height: 3.49vw;
    }
    
    .otp-text {
        left: 3.49vw;
        font-size: 3.49vw;
    }
    
    .rate {
        left: 32.297vw;
    }
    
    .rate span {
        font-size: 6.51vw;
    }

    .otpinput {
        width: 8.42vw;
        height: 8.42vw;
        border: 0.13vw solid #BAFA34;
        border-radius: 0.91vw;
        font-family: 'Arial';
        font-style: normal;
        font-weight: 400;
        font-size: 3.45vw;
        line-height: 4.87vw;
    }

    #confirmbtn {
        width: 80vw;
        height: 8.50vw;
        border: 0.13vw solid #BAFA34;
        border-radius: 0.91vw;
        font-weight: 700;
        font-size: 2.98vw;
        line-height: 4.36vw;
        letter-spacing: 0.03vw;
    }
    
    #confirmbtn2 {
        width: 69.77vw;
        height: 11.16vw;
        border: 0.13vw solid #BAFA34;
        border-radius: 0.91vw;
        font-weight: 700;
        font-size: 3.49vw;
        line-height: 4.36vw;
        letter-spacing: 0.03vw;
        margin-bottom: 2.33vw;
    }
    
    .savemore {
        font-size: 2.33vw;
        padding: 0.93vw 1.63vw;
        border-radius: 0 0.91vw 0 2.79vw;
        left: 32.137vw;
        top: -3.26vw;
    }

    #resendbtn {
        width: 80vw;
        height: 8.50vw;
        border-radius: 0.91vw;
        font-weight: 400;
        font-size: 2.98vw;
        line-height: 4.36vw;
        letter-spacing: 0.03vw;
    }

    #otp-content .bold-text {
        font-weight: 700;
        font-size: 2.98vw;
        line-height: 4.36vw;
        letter-spacing: 0.03vw;
        text-shadow: 0.06vw 0.06vw 0.26vw #000000;
    }

    #otp-content .small-text {
        font-weight: 400;
        font-size: 2.98vw;
        line-height: 4.36vw;
        letter-spacing: 0.03vw;
        text-shadow: 0.06vw 0.06vw 0.26vw #000000;
    }
}

/* Styling for video player */
.video-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 0 10px;
}

.video-container {
    position: relative;
    width: 80%;
    max-width: 800px;
}

.video-container video {
    width: 100%;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: -30px;
    right: -30px;
    color: white;
    font-size: 36px;
    cursor: pointer;
    font-weight: bold;
}

.back-nav {
    position: absolute;
    width: 29px;
    height: 29px;
    left: 44px;
    top: 24px;
    cursor: pointer;
}

#content-title {
    font-family: 'Segoe UI';
    text-align: center;
    margin: 15px;
    margin-top: 78px;
    font-size: 36px;
    color: #99e34f;
    border-bottom: 2px solid #99e34f;
}

#content {
    margin: 25px;
    font-family: 'Segoe UI';
    font-size: 16px;

    ol,
    ul {
        padding-left: 15px;
    }

    ul {
        list-style-type: disc;
    }

    li {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 431px) {
    .back-nav {
        position: relative;
        margin-left: 21.58vw;
        width: 7.44vw;
        height: 7.44vw;
        left: 0vw;
        top: -1.28vw;
    }

    #content-title {
        font-size: 22px;
        margin: 10px;
        margin-top: 60px;
        border-bottom-width: 1px;
    }

    #content {
        margin: 15px;
        font-size: 14px;
        line-height: 1.5;

        ol,
        ul {
            padding-left: 18px;
        }

        li {
            margin-bottom: 15px;
        }
    }
}

/* Animation for login and register */
.fade-out {
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.95);
	pointer-events: none;
}

.fade-in {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.custom-alert {
	position: fixed;
	top: 15vh;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	color: #000;
	border: 1px solid #000;
	padding: 1rem 2rem;
	border-radius: 0.6rem;
	font-size: clamp(0.9rem, 1.5vw, 1.3rem);
	font-family: 'Segoe UI', sans-serif;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease, transform 0.4s ease;
	z-index: 10000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	max-width: 90%;
	text-align: center;
}

.custom-alert.show {
	opacity: 1;
	transform: translateX(-50%) translateY(5px);
}

.loader {
	display: none;
	position: absolute;
    left: calc(50% - 3.33vw / 2);
    box-sizing: border-box;
    width: 3.333vw;
    height: 3.333vw;
    border-radius: 50%;
    border: 0.278vw solid rgba(0,0,0,0.08);
    border-top-color: #BAFA34;
    animation: spin 0.9s linear infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (max-width: 431px) {
	.loader {
		top: 37vw;
		width: 10.31vw;
    	height: 10.31vw;
    	left: calc(50% - 10.31vw / 2);
    	border: 1.03vw solid rgba(0,0,0,0.08);
    	border-top-color: #BAFA34;
	}
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.spinner { animation: none; }
}

#loader1 {
	top: 24.8vw;
}

#loader2 {
	top: 24.5vw;
}

@media screen and (max-width: 431px) {
	#loader1 {
		top: 76vw;
	}
	
	#loader2 {
		top: 72vw;
	}
}