/* GLOBAL */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: #0a0f1c;
  color: #00ffe7;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  min-height: 100vh;
}

/* LOGO */
img {
  max-width: 150px;
  margin-bottom: 1em;
}

/* TYTUŁ */
h1 {
  font-size: 2rem;
  margin: 0.5em 0;
  text-shadow: 0 0 10px #00ffe7;
}

/* CYTAT */
.quote {
  font-size: 1.2em;
  color: #aaa;
  margin-bottom: 1.5em;
  text-align: center;
}

/* MENU */
.menu, .subpanel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

/* PRZYCISKI */
button {
  width: 100%;
  max-width: 320px;
  background: #003e3e;
  color: #00ffe7;
  border: 2px solid #00ffe7;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* HOVER */
button:hover {
  background: #00ffe7;
  color: black;
  box-shadow: 0 0 15px #00ffe7;
}

/* MIC */
#mic-toggle {
  margin-bottom: 15px;
}

/* FEEDBACK */
#feedback {
  font-size: 1.2em;
  color: #0f0;
  height: 1.5em;
  margin-bottom: 1em;
}

/* PANEL */
.panel {
  background: #101622;
  padding: 15px;
  border-radius: 8px;
  display: none;
  width: 90%;
  max-width: 600px;
  margin-bottom: 15px;
}

/* INPUT */
input {
  padding: 5px;
  margin: 5px;
}

/* LISTA */
ul {
  margin-top: 10px;
}

/* CANVAS */
canvas {
  max-width: 100%;
  background: #161b22;
  border-radius: 10px;
  padding: 10px;
}

/* TRYB PRZYJACIEL */
#friend img {
  max-width: 80%;
  border-radius: 12px;
  margin-top: 1em;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }

  button {
    max-width: 100%;
  }
}