* {
    margin: 0;
    padding: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    overflow-x: clip;
}

/*i have written the css page wise so, follow the comments in accordance with the pages, but the css for index page needs to be looked with extra priority as it effects elements of other pages too like e.g. nav, footer and etc.*/
/*the following css is for the index page*/
a {
    color: white;
    text-decoration: none;
}

.main {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #000;
    color: white;
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
}

.logoTxt {
    font-size: 1em;
    color: #f2e983;
}

@media (min-width: 720px) {
    .logoHolder {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .logo {
        padding-bottom: 0;
        padding-right: 1em;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }
    .logoTxt {
        padding-left: 1em;
        padding-bottom: 0;
        padding-top: 1em;
    }
}

nav {
    padding: 0.8em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation-name: fade-in;
    animation-duration: 500ms;
    animation-timing-function: ease-in-out;
}

.lg {
    display: none;
    width: 8em;
}

.download {
    display: flex;
    flex-direction: column;
    font-size: small;
    justify-content: center;
    align-items: center;
}

button {
    width: fit-content;
    margin-top: 2px;
    display: flex;
    flex-direction: row;
    padding: 0.8em;
    background-color: white;
    border-radius: 0.6rem;
    border: 0;
    justify-content: center;
    align-items: center;
}

button:hover {
    transform: scale(0.9);
}

.AndroidBtn {
    background: linear-gradient(
            196deg,
            #d5af4a 0%,
            #f2e983 46.78%,
            #f2e983 74.17%,
            #d5b14b 100%
    );
}

.AppleLogo {
    width: 2em;
    margin-right: 0.5em;
}

.DownloadLogo {
    width: 2em;
    margin-right: 0.5em;
}

footer {
    background: #101010;
}

.footContainer {
    padding: 1.5rem;
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
}

.footnav1 {
    display: flex;
    flex-direction: row;
    padding-bottom: 2em;
}

.footnav2 {
    display: flex;
    flex-direction: row;
    padding-bottom: 2em;
}

.rumFooter {
    padding-top: 0;
}

.helpNav {
    margin-top: 3em;
    margin-bottom: 3em;
}

.seqNav {
    margin-left: 2em;
}

@media (min-width: 720px) {
    .footnav1 {
        flex-direction: column;
    }

    .seqNav {
        margin-left: 0;
        padding-top: 1em;
    }

    .rumFooter {
        padding: 0;
        padding-left: 2em;
    }

    .helpFooter {
        padding-left: 2em;
        padding-top: 0;
    }
}

.helpNavList {
    display: flex;
    flex-direction: column;
    font-size: medium;
}

.seqNavList {
    display: flex;
    flex-direction: column;
    font-size: medium;
}

.gameNavList {
    display: flex;
    flex-direction: column;
    font-size: medium;
}

.certifications {
    width: 100%;
    margin-top: 1em;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1em;
}

.footerBottom {
    text-align: center;
    z-index: 0;
    border-style: solid;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.15);
    padding: 1.5em;
}

.p2 {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #4d2731;
    background: #1c0d11;
    backdrop-filter: blur(100px);
}

.pageBottom {
    width: 100%;
    background-color: #1c0d11;
    display: flex;
    flex-direction: column-reverse;
}

.pageBottomTxt {
    padding: 1.5rem;
    padding-top: 2.5rem;
    height: fit-content;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.bottomImg {
    height: 25em;
    width: auto;
}

@media (min-width: 720px) {
    .lg {
        display: block;
    }

    .mb {
        display: none;
    }

    nav {
        padding-right: 15%;
        padding-left: 15%;
    }

    .footContainer {
        flex-direction: row;
        padding-right: 15%;
        padding-left: 15%;
        justify-content: space-between;
    }

    .helpNav {
        margin: 0;
    }

    .seqNav {
        margin: 0;
    }

    .footerBottom {
        padding-right: 15%;
        padding-left: 15%;
    }

    .certifications {
        grid-template-columns: repeat(2, 1fr);
    }

    .pageBottom {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .pageBottomTxt {
        text-align: left;
        justify-content: start;
        align-items: start;
        width: 30em;
        padding-right: 15%;
    }

    .bottomImg {
        padding-left: 15%;
        height: auto;
        width: 20em;
    }
}

/*the below is the css for the help page*/
.content {
    padding: 0.8em;
}

.banner {
    width: 100%;
}

.bannerImg {
    width: 100%;
    height: auto;
    margin-bottom: 1em;
    animation-timing-function: ease-in-out;
    animation-duration: 700ms;
    animation-name: slide-in;
}

.bannerTxt {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation-duration: 700ms;
    animation-name: slide-in-right;
    animation-timing-function: ease-in-out;
}

.bannerTxt h1 {
    width: 100%;
}

.bannerTxt p {
    width: 100%;
}

p {
    word-break: break-word;
}

.dimH1 {
    margin-top: 0.6em;
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(177, 177, 177, 1);
    margin-bottom: 1em;
}

.oneLine {
    font-size: 2rem;
    display: inline;
}

.goldIt {
    background: -webkit-linear-gradient(
            196deg,
            #d5af4a 0%,
            #f2e983 46.78%,
            #f2e983 74.17%,
            #d5b14b 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    color: rgba(177, 177, 177, 1);
    margin-bottom: 0.6rem;
}

.sectionTitle {
    padding-top: 1.7em;
    padding-bottom: 0.5em;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 0;
    border-style: solid;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.15);
}

.sectionEnd {
    padding-bottom: 1.7em;
}

#features {
    padding: 1.7em;
    background: rgba(255, 255, 255, 0.06);
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
}

.feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: small;
    padding-bottom: 1em;
    margin-bottom: 1.7em;
    border-style: solid;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.15);
}

.featureBottom {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.bold {
    font-weight: bold;
    font-size: larger;
    background: -webkit-linear-gradient(
            196deg,
            #d5af4a 0%,
            #f2e983 46.78%,
            #f2e983 74.17%,
            #d5b14b 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.semiBold {
    font-weight: bold;
    font-size: larger;
    color: white;
}

.featureTxt {
    display: flex;
    flex-direction: column;
    margin-left: 1em;
}

.individual {
    margin-top: 1em;
    padding: 1.7em;
    background: rgba(255, 255, 255, 0.06);
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
}

.faq {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-style: solid;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.15);
}

footer p {
    margin: 0;
    color: white;
    padding: 0%;
}

button p {
    margin: 0;
    color: black;
    padding: 0%;
}

.certification {
    padding-top: 1.7em;
    padding-bottom: 0.5em;
    z-index: 0;
    border-style: solid;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.15);
}

.certificate {
    width: 103%;
    margin-bottom: 1.2em;
}

.certificationTxt {
    margin-top: 1.7em;
}


@media (min-width: 720px) {
    .content {
        padding-right: 15%;
        padding-left: 15%;
    }

    .banner {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 2rem;
    }

    .bannerImg {
        width: 100%;
        height: auto;
        margin-right: 2em;
    }

    .bannerTxt h1 {
        width: 60%;
    }

    .bannerTxt p {
        width: 70%;
    }

    .oneLine {
        font-size: 2.5rem;
    }

    .dimH1 {
        font-size: 1.5rem;
    }

    .individualFeature {
        display: flex;
        flex-direction: row;
    }

    .individual {
        margin-left: 1em;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navDivider div:first-child {
        margin-left: 0;
    }

    .featureImg {
        margin-bottom: 1em;
        width: 6em;
    }

    .certification {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .certificate {
        width: 50%;
        margin-bottom: 0;
    }

    .certificateTxt {
        margin-top: 0;
        margin-left: 1em;
        width: 50%;
    }
}

/*the below is for the mobile version*/
.forPc {
    display: none;
}

.navDivider {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hamBurger {
    display: block;
}

.nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2em;
    padding-right: 0;
    border-radius: 1em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 2em;
    height: fit-content;
    animation-name: slide-in;
    animation-duration: 700ms;
    animation-timing-function: ease-in-out;
}

.navM {
    display: flex;
    flex-direction: row;
    align-items: center;
}

div.navM svg {
    width: 2em;
    height: auto;
    margin-right: 0.5em;
    margin-left: 1em;
    margin-top: 1em;
}

.hidden {
    display: none;
}

.body {
    width: 100%;
}

.nav a {
    margin-bottom: 1em;
    font-weight: bold;
}

.nav a:hover {
    background: -webkit-linear-gradient(
            196deg,
            #d5af4a 0%,
            #f2e983 46.78%,
            #f2e983 74.17%,
            #d5b14b 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subnav {
    display: flex;
    flex-direction: column;
}

div.subnav a {
    margin-bottom: 1em;
    font-weight: normal;
    font-size: small;
    margin-left: 1em;
}

.parentCat {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    padding-top: 1em;
    margin-bottom: 2em;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.currentPath {
    background: -webkit-linear-gradient(
            196deg,
            #d5af4a 0%,
            #f2e983 46.78%,
            #f2e983 74.17%,
            #d5b14b 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li {
    margin-bottom: 1em;
    color: rgba(177, 177, 177, 1);
}

@media (min-width: 720px) {
    .hamBurger {
        display: none;
    }

    .forPc {
        display: block;
    }

    .navDivider {
        width: 100%;
        display: flex;
        flex-direction: row;
        margin-bottom: 1em;
    }

    .nav {
        width: 30%;
        display: flex;
        flex-direction: column;
        padding: 2em;
        margin-right: 2em;
        border-radius: 1em;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.06);
        margin-bottom: 2em;
        height: fit-content;
    }

    .body {
        width: 100%;
    }

    .nav a {
        margin-bottom: 1em;
        font-weight: bold;
    }

    .nav a:hover {
        background: -webkit-linear-gradient(
                196deg,
                #d5af4a 0%,
                #f2e983 46.78%,
                #f2e983 74.17%,
                #d5b14b 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .subnav {
        display: flex;
        flex-direction: column;
    }

    div.subnav a {
        margin-bottom: 1em;
        font-weight: normal;
        font-size: small;
        margin-left: 1em;
    }

    .parentCat {
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
        padding-top: 1em;
        margin-bottom: 2em;
    }

    .currentPath {
        background: -webkit-linear-gradient(
                196deg,
                #d5af4a 0%,
                #f2e983 46.78%,
                #f2e983 74.17%,
                #d5b14b 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    ul {
        display: flex;
        flex-direction: column;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    ul li {
        margin-bottom: 1em;
    }

    li::before {
        content: "•"; /* Insert content that looks like bullets */
        padding-right: 8px;
        color: white; /* Or a color you prefer */
    }
}

.screenshot {
    width: 99%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 2em;
    border-radius: 1em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 1em;
    height: fit-content;
}

.football {
    margin-bottom: 1em;
    padding: 1em;
}

.scTxt {
    padding: 1em;
}

@media (min-width: 720px) {
    .screenshot {
        flex-direction: row;
    }

    .football {
        margin-bottom: 0;
    }
}

.guideTitle {
    margin-bottom: 1.5em;
    margin-top: 1.5em;
    display: flex;
    flex-direction: row;
    font-size: 1.2em;
}

.guide {
    width: 99%;
    display: flex;
    flex-direction: column;
    border-radius: 1em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 1em;
    text-align: left;
    justify-content: center;
    align-items: center;
}

.boldIt {
    font-size: 1.2em;
    color: white;
    font-weight: bold;
}

.guideNo {
    background: -webkit-linear-gradient(
            196deg,
            #d5af4a 0%,
            #f2e983 46.78%,
            #f2e983 74.17%,
            #d5b14b 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 1em;
    font-weight: bold;
    font-size: 1.5rem;
}

div.guide p {
    padding: 1em;
    padding-bottom: 0;
}

.guideImg {
    width: 70%;
    margin-top: 1em;
}

.blankGuide {
    display: flex;
    flex-direction: column;
    border-radius: 1em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 2em;
    height: fit-content;
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
}

.guideOption1 {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: start;
}

@media (min-width: 720px) {
    div.pcSpace > div {
        margin-right: 1em;
    }
}

.calc {
    display: flex;
    flex-direction: column;
    border-radius: 1em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 1em;
    height: fit-content;
    padding: 1.3em;
}

.calcItem {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-weight: bolder;
    margin-bottom: 0.5em;
}

div.calcItem p {
    color: white;
}

.calcSubItem {
    display: flex;
    flex-direction: column;
    font-size: small;
    font-weight: lighter;
}

.bottomCalc {
    margin-bottom: 0;
}

div.bottomCalc p {
    margin-bottom: 0;
}

.numList {
    list-style-type: georgian;
}

.card {
    display: flex;
    flex-direction: column;
    border-radius: 1em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    padding: 1em;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
}

table,
td,
th {
    border: 1px solid;
    width: 50%;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    padding: 1em;
}

.bgb {
    background: #402b12;
}

.tableOf4 td,
.tableOf4 th {
    width: 12.5%;
}

.tableOf4 th,
.tableOf4 td {
    padding: 0.8em;
}

.rummyVariant {
    background: rgba(255, 255, 255, 0.06);
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
}

.rummyVariant div {
    padding: 1.5em;
    border: 0;
    border-bottom: 1px;
    border-bottom: white;
    border-style: solid;
}

.smaller {
    font-size: 0.2em;
}

@media (min-width: 720px) {
    .rummyVariant div {
        width: 50%;
        padding: 1.5em;
        border: 0;
        border-right: 1px;
        border-right: white;
        border-style: solid;
    }
}

.rummyVariant div:last-child {
    border: 0;
}

/*animations*/
@keyframes slide-in {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
        transform: translateX(+100%);
    }
    100% {
        transform: translateX(0);
    }
}

.btnP {
    margin-right: 0;
    margin-bottom: 0.5em;
}

@media (min-width: 720px) {
    .download {
        flex-direction: row;
    }

    .btnP {
        margin-right: 1em;
        margin-bottom: 0;
    }
}

.bannerContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0% 0% 1.3em 1.3em;
    margin-bottom: 1em;
}

.bannerImg {
    display: none;
}

.bannerPhone {
    width: 100%;
    height: auto;
}

@media (min-width: 720px) {
    .bannerContainer {
        display: none;
    }

    .bannerImg {
        display: block;
    }
}

.insertButton {
    margin-top: 0;
!important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
}

.plainFeature {
    display: flex;
    flex-direction: row;
    margin-bottom: 1em;
    justify-content: start;
    align-items: center;
}

.featureCards {

}

.featureCard {
    display: flex;
    flex-direction: row;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(100px);
    border-radius: 1em;
    padding: 0.8em;
    margin-bottom: 1em;
}

.featureCardDesc {
    padding-left: 1em;
}

.gamesWeHave {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
    margin-top: 3em;
}

.tripsyOffering {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(100px);
    border-radius: 1em;
    padding: 1em;
    padding-bottom: 2em;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
    height: 100%;
}

.rummyVary {
    display: flex;
    flex-direction: column;
    margin-top: 1em;
    margin-bottom: 1em;
}

.seqVaryDesc {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0.6em 0 0.6em 0;
}

.live {
    padding: 0.4em;
    background: #18441E;
    border-radius: 0.6rem;
    color: greenyellow;
    margin-left: 0.5em;
}

.coming {
    padding: 0.4em;
    background: #523D1F;
    border-radius: 0.6rem;
    color: orange;
    margin-left: 0.5em;
}

.rummyBanner {
    width: 100%;
    height: auto;
    margin-bottom: 1em;
}

.rummyBannerImg {
    width: 100%;
    height: auto;
    margin-bottom: 1em;
}

.featureCard img {
    width: 6em;
    height: 6em;
}

@media (min-width: 720px) {
    .featureCards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1em;
    }

    .featureCard {
        margin-bottom: 0;
    }

    .featureCard img {
        width: auto;
        height: auto;
    }


    .gamesWeHave {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1em;
    }

    .rummyVary {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1em;
    }

    .card {
        margin-bottom: 0;
    }

    .seqVary {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 1em;
    }

    .rummyBanner {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .rummyBannerImg {
        width: 45%;
    }

    .rummyBannerTxt {
        width: 55%;
        padding: 3em;
    }
}

/* Styles for the modal and backdrop */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.downloadModal {
    width: 80%;
    height: fit-content;
    border-radius: 2rem;
    border: 1.5px solid #818181;
    background: linear-gradient(129deg, #1F1F1D 10.89%, #2B2A23 46.73%, #000 85.2%);
    box-shadow: 0px -2px 4px 0px rgba(129, 118, 20, 0.50) inset, 0px -6px 12px 0px rgba(255, 182, 41, 0.25) inset, 0px 4px 12px 0px #000;
    padding: 2em;
    display: flex;
    flex-direction: column;
}

.registerModal {
    width: 80%;
    height: fit-content;
    border-radius: 2rem;
    border: 1.5px solid #818181;
    background: linear-gradient(129deg, #1F1F1D 10.89%, #2B2A23 46.73%, #000 85.2%);
    box-shadow: 0px -2px 4px 0px rgba(129, 118, 20, 0.50) inset, 0px -6px 12px 0px rgba(255, 182, 41, 0.25) inset, 0px 4px 12px 0px #000;
    padding: 2em;
    display: flex;
    flex-direction: column;
}

.registerModal2 {
    width: 80%;
    height: fit-content;
    border-radius: 2rem;
    border: 1.5px solid #818181;
    background: linear-gradient(129deg, #1F1F1D 10.89%, #2B2A23 46.73%, #000 85.2%);
    box-shadow: 0px -2px 4px 0px rgba(129, 118, 20, 0.50) inset, 0px -6px 12px 0px rgba(255, 182, 41, 0.25) inset, 0px 4px 12px 0px #000;
    padding: 2em;
    display: flex;
    flex-direction: column;
}


.modalHeader {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5em;
    /*gold border in bottom*/
    border-bottom: 1px solid #D5AF4A;
}

div.modalHeader p {
    margin-bottom: 0;
    font-size: 1.3em;
}

.modalOptions {
    display: flex;
    flex-direction: column;
    padding-top: 1.3em;
    gap: 1em;
}

.modalOption {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

div.modalOption button {
    border-radius: 1rem;
    border: 1px solid #EFFFCC;
    background: linear-gradient(180deg, #49C24F 0%, #217425 55%, #176E1C 100%);
    box-shadow: 0px 2px 4px 0px #ECFF7B inset, 0px 2px 12px 0px #000;
    color: white;
}

div.modalOption button:hover {
    scale: 90%;
}


.modalOption p {
    margin-bottom: 0;
}

div.modalOption img {
    width: 6em;
    height: auto;
}

div.modalOption div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.betaOptions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 1.3em;
    gap: 0.2em;
    text-align: center;
}

.betaOptions img {
    width: 200px;
}

.checkOption {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    margin-left: 6px;
    margin-bottom: 0.5em;
}

div.checkOption p {
    margin: 0;
    margin-left: 0.4em;
}

.betaForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.numInput {
    border-radius: 0.5rem;
    border: 1.5px solid #636160;
    background: rgba(6, 5, 5, 0.80);
    padding: 1em;
    width: 90%;
    color: white;
    margin-bottom: 1em;
}

.registerBtn {
    width: 100%;
    padding-top: 1em;
    padding-bottom: 1em;
    border-radius: 1rem;
    border: 1px solid #EFFFCC;
    background: linear-gradient(180deg, #49C24F 0%, #217425 55%, #176E1C 100%);
    box-shadow: 0px 2px 4px 0px #ECFF7B inset, 0px 2px 12px 0px #000;
    color: white;
    margin-bottom: 2em;
    margin-top: 1em;
    font-weight: bold;
    font-size: 1em;
}

.registerBtn2 {
    width: 100%;
    padding-top: 1em;
    padding-bottom: 1em;
    border-radius: 1rem;
    border: 1px solid #EFFFCC;
    background: linear-gradient(180deg, #49C24F 0%, #217425 55%, #176E1C 100%);
    box-shadow: 0px 2px 4px 0px #ECFF7B inset, 0px 2px 12px 0px #000;
    color: white;
    margin-bottom: 2em;
    margin-top: 1em;
    font-weight: bold;
    font-size: 1em;
}


@media (min-width: 720px) {
    .downloadModal {
        width: 400px;
    }

    .registerModal {
        width: 400px;
    }

    .registerModal2 {
        width: 400px;
    }
}

.borderBottom {
    padding-bottom: 1em;
    border-bottom: 1px solid #D5AF4A;
    margin-bottom: 1em;
}

.tcUl li {
    font-size: 1em;
    color: #FFF7DC;
}

.mTCtable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
    margin-bottom: 1em;
}

.pcTCtable {
    display: none;
    border: #D5AF4A 1px solid;
    border-radius: 0.5em;
    background: #636160;
}

@media (min-width: 720px) {
    .tcUl li {
        font-size: 1.1em;
    }

    .mTCtable {
        display: none;
    }

    .pcTCtable {
        display: block;
        width: 100%;
        margin-top: 1em;
        margin-bottom: 1em;
    }
}

.pokerOnlineF {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
    background: rgba(255, 255, 255, 0.06);
    padding: 1em;
    border-radius: 1em;
}

.pokerOnlineF img {
    width: 60%;
    height: auto;
}

@media (min-width: 720px) {
    .pokerOnlineF {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .pokerOnlineF img {
        width: 30%;
        height: auto;
    }

    .pokerOnlineFtxt {
        width: 70%;
        padding-left: 1em;
    }
}