body {
    min-height: 100vh;
    margin: 0;
    box-sizing: border-box;
    /* Added for pull-to-refresh animation */
    transition: transform 0.2s ease-out;
    letter-spacing: 0.01px;
}

/*
 * Disable transitions while the user is actively pulling down
 * to provide instant visual feedback.
 */
body.is-pulling {
    transition: none;
}

#trick-output span {
    display: block;
    text-align: left;
}

h1 a {
    text-decoration: none;
}

#splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.8s ease-out;
}

#splash-overlay.fade-out {
    opacity: 0;
}

.ptr--ptr {
    background-color: #000;
}

.ptr--text {
    color: #fff !important;
}

.glow {
    margin-top: 24px;
    /* Set a dark background that the glow will stand out against */
    background-color: #2c2c36;
    border-radius: 12px;

    /* Create the glow using multiple box shadows */
    box-shadow:
        /* The main glow: a soft, subtle blur */
        0 0 10px 5px rgba(118, 59, 255, 0.15),

        /* A second, more vibrant layer for the core glow */
        0 0 20px 10px rgba(118, 59, 255, 0.1),

        /* A final, faint spread for a broader halo effect */
        0 0 30px 15px rgba(118, 59, 255, 0.05);
}

#generate-btn {
    top:1rem;
    right: 1rem;
}