/* Space Invaders Game Section */
.space-invaders-game {
    margin-top: 20px;
    background-color: #ffe4e1; /* Light pink background */
    padding: 15px;
    border-radius: 20px;
    color: #5a0033;
    text-align: center;
    box-shadow: 0 4px 6px rgba(255, 105, 180, 0.3);
}

.space-invaders-game h3 {
    color: #ff69b4;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.space-invaders-game .section-icon {
    width: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

.space-invaders-game canvas {
    display: block;
    margin: 0 auto 10px auto;
    border: 2px solid #ff69b4;
    border-radius: 10px;
    background-color: #fff; /* White background initially */
    cursor: pointer; /* Indicates clickable area */
    width: 100%;
    height: auto;
    max-width: 200px;
}

.space-invaders-game .game-button {
    padding: 8px 16px;
    margin: 5px;
    background-color: #ff69b4;
    border: none;
    border-radius: 15px;
    color: #fff;
    cursor: pointer;
    font-family: 'Patrick Hand', cursive;
    font-size: 0.9em;
    transition: background-color 0.3s, transform 0.2s;
}

.space-invaders-game .game-button:hover {
    background-color: #ff1493;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(255, 105, 180, 0.4);
}

.space-invaders-game .game-button:active {
    transform: translateY(0);
    box-shadow: none;
}
