/* ========================================
   PEYTON FLAPPY — Game Styles
   ======================================== */

.flappy-layout {
    justify-content: center;
}

.flappy-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.flappy-hint {
    text-align: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 0 0 0.6rem;
    opacity: 0.9;
}

/* Canvas size is driven by JS (resizeFlappyCanvas) so the aspect ratio
   stays correct regardless of viewport. CSS only does cosmetics. */
.flappy-canvas {
    display: block;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    background: #120608;
    cursor: pointer;
    touch-action: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
    max-width: 100%;
}

@media (max-width: 480px) {
    .flappy-hint {
        font-size: 0.78rem;
    }
}
