/* #screen-home has no extra background - inherits the global background from body */

.home-logo {
    width: 75%;
    height: auto;
    display: block;
    margin: 0 auto -12%;
    position: relative;
    z-index: 0;
    /* Subtle drop shadow to help the logo sit on varied backgrounds */
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7));
}

.home-wrap {
    min-height: 100vh;
    padding: 2rem 1rem;
}

.home-button-col {
    width: min(340px, 90vw);
    position: relative;
    z-index: 1;
}

/* Primary buttons on the home screen: larger and more prominent */
.home-wrap .btn-primary-game {
    font-size: 1.05rem;
    padding: 0.85rem 2rem;
    width: 100%;
}

/* Ghost buttons on the home screen: solid dark backing so they read over the background image */
.home-wrap .btn-ghost-game {
    background-color: rgba(9, 7, 5, 0.72);
    border-color: var(--color-border);
    color: var(--color-text);
    font-size: 1rem;
    padding: 0.75rem 2rem;
    width: 100%;
}

.home-wrap .btn-ghost-game:hover,
.home-wrap .btn-ghost-game:focus {
    background-color: rgba(30, 20, 8, 0.85);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
}


.home-credit-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.home-credit-link:hover {
    color: var(--color-text-dim);
    opacity: 1;
}

.home-credit {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    margin-top: 2.5rem;
    margin-bottom: 0;
    text-align: center;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 1), 0 0 12px rgba(0, 0, 0, 0.9);
}

.home-version {
    font-family: var(--font-title);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: var(--color-text);
    opacity: 0.85;
    margin-top: 0.4rem;
    display: inline-block;
}
