/* Pokémon-style button */
.pokemon-button {
    display: inline-block;
    padding: 24px 24px;
    font-size: 16px;
    font-family: "Tiny5", sans-serif;
    color: #000;
    background-color: #fff; /* Pokémon Red background color */
    border: 4px solid #ffd60a; /* Yellow border color typical of Pokémon games */
    border-radius: 0;
    outline: none;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    /* text-shadow: 1px 1px 0 #000; Pixelated text shadow */
    box-shadow: 4px 4px 0 #3a1f0b;
    transition: transform 0.1s ease, background-color 0.2s ease;
    width: 100%;
}

/* Hover and Active effects */
.pokemon-button:hover {
    background-color: #b11f24; /* Darker red on hover */
    color: #fff;
}

.pokemon-button:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 #3a1f0b;
}