:root {
    --create-account-button-color: linear-gradient(rgba(253, 5, 158, 1), rgba(250, 5, 5, 1));
}

body {
    background-image: url("../img/background-mobile.gif");
    background-size: cover;
    color: white;
}

nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

#nav-login-button {
    display: none;
    margin-left: auto;
    margin-right: var(--nav-x-padding);
    width: fit-content;
    color: black;
    padding: 12px 32px;
    background-color: white;
    font-weight: 700;
    border-radius: 9999px;
    cursor: pointer;
}

main {
    text-align: center;
    width: 80%;
    height: calc(100% - var(--nav-height) - 2 * var(--nav-y-padding));
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

#main-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#click-to-call-now {
    width: 100%;
}

#fuck-right-title {
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

#live-girls-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 500;
}

#main-create-account-button {
    display: none;
}

#mobile-auth-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 24px;
    font-weight: 600;
}

#mobile-create-account-button {
    padding: 16px;
    background: var(--create-account-button-color);
    border-radius: 9999px;
    cursor: pointer;
}

#mobile-login-button {
    padding: 16px;
    border: solid 4px white;
    border-radius: 9999px;
    cursor: pointer;
}

#auth-modal {
    text-align: center;
}

#auth-modal #modal-content {
    background-color: white;
    color: black;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(95% - 2rem);
    max-width: 24rem;
    border-radius: 0.5rem;
    padding: 1rem;
}

#auth-modal #modal-content #inner-content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

#auth-modal #modal-content #inner-content #flame-logo {
    width: 48px;
    height: 48px;
    align-self: center;
}

#auth-modal #modal-content #inner-content #legal-text a {
    color: blue;
    text-decoration: underline;
}

#error-modal {
    text-align: center;
}

#error-modal #modal-content {
    background-color: white;
    color: black;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(95% - 2rem);
    max-width: 24rem;
    border-radius: 0.5rem;
    padding: 1rem;
}

#error-modal #modal-content #inner-content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    body {
        background-image: url("../img/background-desktop.jpg");
    }

    #nav-login-button {
        display: block;
    }

    main {
        width: 100%;
    }

    #main-content {
        gap: 16px;
    }

    #click-to-call-now {
        display: none;
    }

    #fuck-right-title {
        font-size: 8rem;
        line-height: 1;
    }

    #live-girls-title {
        font-size: 4.5rem;
        line-height: 1;
    }

    #main-create-account-button {
        display: block;
        margin: 0 auto;
        width: fit-content;
        padding: 12px 32px;
        background: var(--create-account-button-color);
        font-weight: 600;
        border-radius: 9999px;
        cursor: pointer;
    }

    #mobile-auth-buttons {
        display: none;
    }
}