/* Flappy Styles */
.flappy-container {
    position: relative;
    padding: 1rem;
    max-width: 420px;
    margin: 0 auto;
}

#flappyCanvas {
    display: block;
    width: 100%;
    height: auto;
    border: 2px solid #27ae60;
    border-radius: 8px;
    background: #87ceeb;
    touch-action: none;
}

.flappy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-over-content {
    background: #2c3e50;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.play-again-btn {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.play-again-btn:hover {
    background: #2ecc71;
}


