* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000000;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    touch-action: none;
}

#game-canvas {
    display: block;
    margin: 0 auto;
}

.pill-container {
    position: absolute;
    color: #68e990;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 4px;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
    touch-action: auto;
}

.credit-link-container {
    bottom: 15px;
    left: 15px;
    flex-direction: row;
    gap: 6px;
}

.credit-link-container a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.credit-link-container a:hover {
    color: #ffffff;
}

.credit-link-container .separator {
    opacity: 0.5;
}

.mute-toggle {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.2s ease;
    color: inherit;
}

.mute-toggle:hover {
    opacity: 0.7;
}

.mute-toggle.muted {
    text-decoration: line-through;
    opacity: 0.6;
}