body {
  margin: 0;
  background: #060c16;
  color: #0ff;
  overflow-x: hidden;
  font-family: 'Orbitron', 'Noto Sans', 'Segoe UI Symbol', 'Arial Unicode MS', 'GNU Unifont', sans-serif;
}

.brand-bg {
  position: fixed;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: url('assets/brand-bg.png') center center no-repeat;
  background-size: contain;
  opacity: 0.04;
  animation: bgFloat 8s infinite ease-in-out;
  pointer-events: none;
  z-index: 0;
}

@keyframes bgFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
  100% { transform: translateY(0); }
}

header .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  z-index: 2;
}

.top-bar .left,
.top-bar .right {
  display: flex;
  gap: 10px;
}

.top-bar .center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-btn {
  height: 40px;
  cursor: pointer;
}

.glow-text {
  text-align: center;
  font-size: 2rem;
  text-shadow: 0 0 8px #0ff;
  font-family: 'Orbitron', 'Noto Sans', 'Segoe UI Symbol', 'Arial Unicode MS', 'GNU Unifont', sans-serif;
}

.tagline {
  text-align: center;
  color: #7ff;
  font-size: 0.9rem;
}

.btn {
  border: 1px solid #0ff;
  color: #0ff;
  background: transparent;
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: 'Orbitron', 'Noto Sans', 'Segoe UI Symbol', 'Arial Unicode MS', 'GNU Unifont', sans-serif;
}

.btn.glow {
  box-shadow: 0 0 8px #0ff;
}

.btn:hover {
  background: rgba(0, 255, 255, 0.1);
}

.btn.small {
  margin: 8px 6px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.tab {
  padding: 6px 16px;
  background: transparent;
  border: 1px solid #0ff;
  color: #0ff;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Orbitron', 'Noto Sans', 'Segoe UI Symbol', 'Arial Unicode MS', 'GNU Unifont', sans-serif;
}

.tab.active,
.tab:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 6px #0ff;
}

.hidden {
  display: none;
}

.boxed {
  max-width: 600px;
  margin: 20px auto;
  border: 1px solid #0ff;
  border-radius: 10px;
  background: rgba(0, 255, 255, 0.05);
  padding: 10px;
}

textarea#inputText {
  width: 100%;
  background: transparent;
  border: none;
  color: #0ff;
  font-size: 1rem;
  resize: vertical;
  outline: none;
  min-height: 100px;
  border-radius: 8px;
  padding: 10px;
  font-family: 'Orbitron', 'Noto Sans', 'Segoe UI Symbol', 'Arial Unicode MS', 'GNU Unifont', sans-serif;
  line-height: 1.4;
}

.actions {
  text-align: center;
  margin-top: 10px;
}

.output {
  max-width: 700px;
  margin: 20px auto;
  font-family: 'Orbitron', 'Noto Sans', 'Segoe UI Symbol', 'Arial Unicode MS', 'GNU Unifont', sans-serif;
}

.styled,
.bio-box {
  background: rgba(0, 255, 255, 0.07);
  border: 1px solid #0ff;
  padding: 12px;
  margin: 12px auto;
  border-radius: 10px;
  font-size: 1.1rem;
  position: relative;
  word-break: break-word;
  animation: fadeIn 0.3s ease-in;
  font-family: 'Orbitron', 'Noto Sans', 'Segoe UI Symbol', 'Arial Unicode MS', 'GNU Unifont', sans-serif;
}

.tools {
  position: absolute;
  top: 8px;
  right: 12px;
}

.tools button {
  background: transparent;
  border: none;
  color: #0ff;
  font-size: 1.4rem;
  margin-left: 10px;
  cursor: pointer;
}

.tools button:hover {
  color: #fff;
  background: #0ff2;
}

footer {
  text-align: center;
  padding: 16px;
  background: #040810;
  color: #0ff;
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
