#displayArea {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.spinner {
    width: min(550px, 90vw);
    height: min(550px, 90vw);
    aspect-ratio: 1 / 1;
    border: 8px dotted var(--spinner-border-color);
    background-image: url('../img/jesusprayer.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    box-shadow: 0 0 20px var(--glow-color), 
                0 0 50px var(--glow-color), 
                0 0 80px var(--glow-color);
    cursor: pointer;
    transition: filter 0.3s ease;
    margin-top: 25px;
}

.spinner.paused {
    animation: none;
    transform: rotate(0deg) !important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.help-msg {
    display: block;
    margin-top: 30px;
    opacity: 0.6;
    color: var(--footer-text);
    font-size: smaller;
    text-align: center;
}

.quote {
    margin-top: 20px;
    font-family: serif;
    color: var(--footer-text);
    text-align: center;
    padding: 0 10px;
}

.gear-icon {
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: transform 0.2s;
}

.gear-icon:hover {
    transform: scale(1.15);
}

.btn-container {
    margin: 50px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 90vw;
}

.btn-container button {
    padding: 12px 24px;
    font-size: 1.05rem;
}

.btn-container button:hover {
    transform: translateY(-2px);
}

.static-image img {
    display: block;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    margin: 0 auto;
}

.footer-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 150px;
    margin-bottom: 50px;
    color: var(--footer-text);
    font-size: 1em;
    min-width: 350px;
}

.footer-link {
    color: var(--footer-text);
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-link:hover {
    text-decoration: underline;
}

.vert-line {
    display: none;
}

.install-section {
    margin: 40px auto;
    max-width: 420px;
}

.install-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 10px;
    background: #8b0000;
    color: white;
    width: 100%;
    padding: .75rem;
    font-size: 1.05rem;
    border-radius: 8px;
    max-width: 300px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid var(--spinner-border-color);
}

.install-button:disabled {
    opacity: 0.6;
    cursor: default;
}

.install-description {
    margin-top: .25rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: var(--footer-text);
    text-align: center;
}

#pwa-installed {
    margin-top: .75rem;
    font-weight: bold;
}

.version-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: x-small;
    margin: 20px 0;
    color: var(--footer-text);
    padding: 2px 5px;
    opacity: 0.5;
}

.ver-sep-empty {
    width: 100%;
    height: 10px;
}

.ver-sep-dash {
    display: none;
}

@media (min-width: 768px) {
    .footer-text {
        flex-direction: row;
        align-items: center;
    }

    .footer-link {
        margin-top: 0;
        margin-bottom: 0;
        line-height: 1;
    }

    .vert-line {
        display: block;
        margin: 0 10px;
        line-height: 1;
        align-self: center;
    }

    .version-text {
        flex-direction: row;
    }

    .ver-sep-empty {
        display: none;
    }

    .ver-sep-dash {
        display: block;
        margin: 0 10px;
    }

    .btn-container {
        margin: 80px 0;
    }
}