body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: white;
}

/* CENTER WRAPPER */
.container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* MAIN BOX */
.box {
  background: #141414;
  border: 1px solid #ff6a00;
  border-radius: 14px;
  padding: 40px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 25px rgba(255, 106, 0, 0.15);
}

/* TAG */
.tag {
  color: #ff6a00;
  font-weight: bold;
  margin-bottom: 10px;
}

/* TITLE */
h1 {
  color: #ff6a00;
  font-size: 26px;
  margin-bottom: 20px;
}

/* TEXT */
p {
  opacity: 0.85;
  line-height: 1.6;
  margin: 12px 0;
}

/* HIGHLIGHT LINE */
.highlight {
  margin-top: 20px;
  font-weight: bold;
  color: white;
  border-top: 1px solid #ff6a00;
  border-bottom: 1px solid #ff6a00;
  padding: 10px 0;
}

/* FOOTER TEXT */
.footer-text {
  margin-top: 20px;
  opacity: 0.6;
  font-size: 14px;
}
