/* Home page (mobile.hbs) specific styles */

content {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 30pt;
    color: black;
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin: 20px;
}

#homeContent {
    display: none;
}

#signInView {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.sign-in-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 69vw;
    max-width: 360px;
    height: 108vw;
    max-height: 570px;
    background-color: var(--neutralColor);
    border-radius: 9999px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    margin: 20px auto 12px;
}

.tag-hole {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.22);
    border: 2px solid rgba(0, 0, 0, 0.38);
    box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.55);
    flex-shrink: 0;
}

.sign-in-tag-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    width: 100%;
}

.sign-in-prompt {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 2rem;
    color: var(--highlightColor);
    text-align: center;
}

#signInForm {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

#signInForm input {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 1.6rem;
    border: 2px solid var(--highlightColor);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    background: white;
    width: 100%;
    box-sizing: border-box;
}

#signInForm button[type="submit"] {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 1.4rem;
    background-color: var(--highlightColor);
    color: white;
    border-radius: 8px;
    padding: 12px;
    margin-top: 4px;
    width: 100%;
}

.sign-in-error {
    color: red;
    font-family: sans-serif;
    font-size: 0.85rem;
    text-align: center;
}

.sign-in-stats {
    font-family: sans-serif;
    font-size: 1rem;
    color: var(--highlightColor);
    text-align: center;
    margin-top: 16px;
    opacity: 0.8;
}

.how-to-play {
    padding: 16px 20px;
    margin: 0 16px 20px;
    border-radius: 10px;
    border: 2px solid var(--highlightColor);
    background-color: white;
    color: var(--highlightColor);
    font-family: 'Covered By Your Grace', cursive;
}

.how-to-play-nav {
    font-size: 0.75em;
    opacity: 0.7;
    margin: 4px 0 8px;
    font-family: sans-serif;
}

.how-to-play ol {
    margin: 8px 0 0;
    padding-left: 24px;
    line-height: 1.8;
}

.mobile-title {
    color: black;
    font-size: 36pt;
    padding-bottom: 0;
}

.mobile-content {
    margin-top: 0;
    padding-top: 0;
    line-height: 1.1;
}

.info-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.info-box {
    font-size: 42pt;
    font-weight: bold;
    line-height: 1.2;
    padding: 20px;
    border: 4px solid var(--highlightColor);
    border-radius: 10px;
    background-color: var(--headerColor);
    color: var(--footerColor);
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .5);
}

.players-container .player-circle {
    font-size: 2rem;
    padding: 3px;
    width: 44px;
    height: 44px;
    min-width: 40px;
    min-height: 40px;
    flex: 0 0 40px;
    overflow: hidden;
}

@media screen and (orientation: portrait) {
    .sign-in-tag {
        width: 80vw;
        max-width: 400px;
        height: 120vw;
        max-height: 600px;
    }
    .sign-in-prompt {
        font-size: 3rem;
    }
    #signInForm input {
        font-size: 2.2rem;
        padding: 12px 16px;
    }
    #signInForm button[type="submit"] {
        font-size: 2rem;
        padding: 16px;
    }
    .sign-in-stats {
        font-size: 1.4rem;
        margin-top: 20px;
    }
}
