body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background: transparent;
    /* overall page background */
}

.header {
    position: absolute;
    /* float on top */
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    /* give it a height */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    z-index: 1000;
    /* make sure it’s above the canvas */
}

/* Logo */
.logo img {
    height: 50px;
    /* adjust as needed */
    display: block;
}

/* Navigation buttons */
.nav-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.nav-buttons button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-buttons img {
    height: 60px;
    /* match your PNG size */
    display: block;
}

/* Icon buttons (right side) */
.icon-buttons {
    display: flex;
    gap: 12px;
}

.icon-buttons button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.icon-buttons img {
    height: 42px;
    /* match your PNG size */
    width: 42px;
    border-radius: 50%;
    display: block;
}

#game-title {
    background: rgba(255, 255, 255, 0.9);
    /* white with slight transparency */
    padding: 0.5rem 1rem;
    /* space around text */
    border-radius: 8px;
    /* rounded corners */
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    /* text color */
    display: inline-block;
    /* shrink box to fit text */
}