/* Base Styles – Mobile-first */

body {
  background-color: #000;
  color: #33ff33;
  font-family: 'Courier New', monospace;
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

#terminal {
  border: 2px dashed #33ff33;
  padding: 1rem;
  width: 100%;
  max-width: 600px;
  margin: auto;
  background: #111;
  box-shadow: 0 0 20px #33ff33;
}

input {
  width: 100%;
  background: black;
  color: lime;
  border: none;
  border-top: 1px solid #33ff33;
  font-family: monospace;
  font-size: 1rem;
  padding: 0.5rem;
}

.cringe-quote {
  margin-top: 1rem;
  font-style: italic;
  color: #ff66ff;
}

#matrix {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: black;
}

#cringe-meter {
  width: 100%;
  height: 10px;
  background: #111;
  margin-top: 1rem;
  border: 1px solid #33ff33;
}

#meter-fill {
  height: 100%;
  width: 0%;
  background: hotpink;
  transition: width 0.3s ease;
}

#anime-popup {
  text-align: center;
  padding: 1rem;
  border: 3px dashed hotpink;
  background: black;
  color: hotpink;
  margin-top: 2rem;
}

#anime-popup img {
  width: 100%;
  max-width: 150px;
}

#uwu-toggle {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: pink;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
}

.uwu-mode body {
  background: lavenderblush;
  color: hotpink;
}

#confession-section {
  margin-top: 3rem;
  padding: 1rem;
  border: 2px dashed #ff33aa;
  background-color: #1a1a1a;
  color: #eee;
}

#confession-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#confession-form textarea {
  padding: 1rem;
  background: #000;
  color: hotpink;
  border: 1px solid #ff33aa;
  resize: vertical;
  height: 120px;
  font-family: monospace;
  width: 100%;
  font-size: 1rem;
}

#confession-form button {
  padding: 0.7rem;
  background: hotpink;
  border: none;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

#confession-form button:hover {
  background: deeppink;
}

#confession-wall {
  margin-top: 2rem;
}

#confessions-list {
  list-style: none;
  padding-left: 0;
}

#confessions-list li {
  margin-bottom: 1rem;
  background: #222;
  padding: 1rem;
  border-left: 5px solid pink;
  font-style: italic;
}

/* -------------------------- */
/* 🖥 Responsive Breakpoints  */
/* -------------------------- */

@media (min-width: 600px) {
  body {
    padding: 2rem;
    font-size: 1.05rem;
  }

  #confession-form {
    flex-direction: column;
  }

  #uwu-toggle {
    width: auto;
  }

  #confession-form button {
    width: auto;
    align-self: flex-start;
  }
}

@media (min-width: 900px) {
  body {
    font-size: 1.1rem;
  }

  #terminal {
    padding: 2rem;
  }

  #anime-popup img {
    max-width: 180px;
  }

  #confession-form textarea {
    font-size: 1.05rem;
    height: 140px;
  }
}
body {
  background-color: #000;
  color: #33ff33;
  font-family: 'Courier New', monospace;
  padding: 2rem;
}

#terminal {
  border: 2px dashed #33ff33;
  padding: 1rem;
  max-width: 600px;
  margin: auto;
  background: #111;
  box-shadow: 0 0 20px #33ff33;
}

input {
  width: 100%;
  background: black;
  color: lime;
  border: none;
  border-top: 1px solid #33ff33;
  font-family: monospace;
  font-size: 1rem;
  padding: 0.5rem;
}

.cringe-quote {
  margin-top: 1rem;
  font-style: italic;
  color: #ff66ff;
}

#matrix {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: black;
}

#cringe-meter {
  width: 100%;
  height: 10px;
  background: #111;
  margin-top: 1rem;
  border: 1px solid #33ff33;
}

#meter-fill {
  height: 100%;
  width: 0%;
  background: hotpink;
  transition: width 0.3s ease;
}

#anime-popup {
  text-align: center;
  padding: 1rem;
  border: 3px dashed hotpink;
  background: black;
  color: hotpink;
  margin-top: 2rem;
}

#anime-popup img {
  width: 150px;
}

#uwu-toggle {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: pink;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.uwu-mode body {
  background: lavenderblush;
  color: hotpink;
}

#confession-section {
  margin-top: 3rem;
  padding: 1rem;
  border: 2px dashed #ff33aa;
  background-color: #1a1a1a;
  color: #eee;
}

#confession-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#confession-form textarea {
  padding: 1rem;
  background: #000;
  color: hotpink;
  border: 1px solid #ff33aa;
  resize: vertical;
  height: 120px;
  font-family: monospace;
}

#confession-form button {
  padding: 0.7rem;
  background: hotpink;
  border: none;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

#confession-form button:hover {
  background: deeppink;
}

#confession-wall {
  margin-top: 2rem;
}

#confessions-list {
  list-style: none;
  padding-left: 0;
}

#confessions-list li {
  margin-bottom: 1rem;
  background: #222;
  padding: 1rem;
  border-left: 5px solid pink;
  font-style: italic;
}
