/* =========================
   GLOBAL STYLES
========================= */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #000;
  font-family: Arial, sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* =========================
   CONTAINER
========================= */
.container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
  z-index: 1;
  position: relative;
}

/* =========================
   BOX STYLES
========================= */
.box {
  background: rgba(20, 0, 30, 0.85);
  border: 1px solid #b84dff;
  box-shadow: 0 0 10px #b84dff55;
  padding: 15px;
  width: 350px;
  height: 200px;
  cursor: pointer;
  border-radius: 8px;
  overflow: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.box:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 15px #b84dff99;
}

/* =========================
   TEXTAREA
========================= */
textarea {
  width: 100%;
  height: 100%;
  background: #000;
  color: #b84dff;
  border: 1px solid #b84dff55;
  padding: 10px;
  resize: none;
  font-family: monospace;
  font-size: 13px;
  outline: none;
  border-radius: 6px;
}

/* =========================
   MESSAGE
========================= */
#msg {
  margin-top: 20px;
  color: #b84dff;
}

/* =========================
   PURPLE BUTTON
========================= */
.purple-btn {
  display: inline-block;
  margin-top: 30px;
  background: #b84dff;
  border: 1px solid #d29bff;
  padding: 12px 25px;
  color: white;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 10px #b84dff55;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.purple-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 15px #b84dffaa;
}
