/* 1. Reset & base */
body {
  margin: 0;

  background-color: #111;
  background-image:
    linear-gradient(0deg, transparent 50%, rgba(100,0,100,0.5) 75%),
    linear-gradient(90deg, transparent 50%, rgba(100,0,100,0.5) 75%);
  background-size: 10px 10px;

  font-family: 'Press Start 2P', monospace;
  font-size: 1em;
}



/* 2. Main panel */
.PANEL {
  position: fixed;
  inset: 0;
  width: 800px;
  margin: 0 auto;
  max-height: 1024px;
  height: 90vh;
  overflow-y: auto;

  box-shadow: 0 0 100px rgba(0, 0, 0, 0.9);

  background-color: #111;
  background-image:
    linear-gradient(0deg, transparent 50%, rgba(255,255,255,0.05) 75%),
    linear-gradient(90deg, transparent 50%, rgba(255,255,255,0.05) 75%);
  background-size: 10px 10px;

  color: #fff;
  border: 4px solid cyan;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}



/* 3. logo */
.panel-content img {
  display: block;
  margin: 2em auto 0;
  width: 100px;
  border-radius: 70px;
}



/* 4. Headings & lists */
.PANEL h1 {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 70px;
}

.PANEL ul {
  margin: 0;
  padding: 0;
  list-style: "-> ";
}

.PANEL li {
  padding: 7px 0;
}



/* 5. Footer */
.PANEL_FOOTER {
  color: #ccc;
  font-size: 0.6em;
  text-align: center;
  margin-bottom: 100px;
}



/* 6. Emoji tweak */
.emoji {
  font-size: 1.4em;
  position: relative;
  bottom: 2px;
}



/* 7. Links & hover state */
a {
  text-decoration: none;
  transition: color 0.5s ease;
}

a.googleplay-link { color: lightblue; }
a.doc-link        { color: orange;    }
a.coffee-link     { color: yellow;    }

a:hover {
  color: white;
}
