/* INSULT.EXE - Glitched by the Bard v2.0
Authors: Nik Zane, ChatGPT
File: style.css */

body {
  margin: 0;
  background: black;
  color: #00FF00;
  font-family: 'Courier New', Courier, monospace;
  height: 100vh;
  overflow: hidden;
}

#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

#content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

#terminalBox {
  width: 100%;
  max-width: 800px;
  height: 60vh;
  overflow-y: auto;
  border: 1px solid #00FF00;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  box-shadow: 0 0 20px #00FF00;
}

pre {
  white-space: pre-wrap;
  font-size: 1.2rem;
  margin: 0;
}

.insult-line {
  cursor: pointer;
}
.insult-line:hover {
  background-color: rgba(0, 255, 0, 0.1)!important;
}

button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  background-color: #00FF00;
  color: black;
  border: none;
  cursor: pointer;
}
button:hover {
  background-color: #0f0;
}

.timestamp {
  font-size: 0.8rem;
  color: rgba(0, 255, 0, 0.5);
  margin-right: 0.5rem;
}

.insult-line {
  padding: 0.25rem 0;
  border-top: 1px solid rgba(0, 255, 0, 0.1);
  cursor: pointer;
}
.insult-line:first-child {
  border-top: none;
}

#muteButton {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  background-color: #222;
  color: #00FF00;
  border: 1px solid #00FF00;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#muteButton:hover {
  background-color: #0f0;
  color: black;
}

.insult-part { cursor: pointer; font-weight: bold; }
.red { color: #ff5555!important; }
.blue { color: #55aaff!important; }
.purple { color: #aa55ff!important; }
.insult-part:hover { text-decoration: underline; }

.hotkey {
  background-color: rgba(0, 255, 0, 0.2);
  border: 1px solid rgba(0, 255, 0, 0.6);
  border-radius: 4px;
  padding: 0.1em 0.4em;
  margin-left: 0.4em;
  font-size: 0.8rem;
  font-weight: bold;
  color: #00FF00;
  font-family: monospace;
}

#footer {
  position: fixed;
  bottom: 5px;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(0, 255, 0, 0.5);
  font-family: monospace;
  pointer-events: none;
}

/* === MOBILE STYLING === */
@media (max-width: 600px) {
  #content {
    padding: 1rem;
  }

  #terminalBox {
    height: 50vh;
    padding: 0.75rem;
    font-size: 1rem;
  }

  pre {
    font-size: 1rem;
  }

  .insult-line {
    font-size: 1rem;
  }

  button,
  #muteButton,
  select {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    width: 100%;
    max-width: 300px;
  }

  .hotkey-label,
  .hotkey-select {
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  #footer {
    font-size: 0.65rem;
  }
}
