/* === Base Reset === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #0e0e0e, #1a1a1a);
  color: #ffffff;
  line-height: 1.6;
  padding: 2rem;
  min-height: 100vh;
}

/* === Headings & Layout === */
h1, h2 {
  color: #5ce1e6;
  margin-bottom: 1rem;
  text-shadow: 0 0 4px #5ce1e688;
}

pre, code {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

/* === Inputs & Buttons === */
select, input, button {
  font-size: 1rem;
  padding: 0.6em 1em;
  margin: 0.5em 0.5em 0.5em 0;
  border-radius: 5px;
  border: none;
  outline: none;
  transition: 0.3s ease all;
}

input[type="text"], input[type="password"], select {
  background-color: #222;
  color: #fff;
  border: 1px solid #444;
}

button {
  background: #5ce1e6;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 5px #5ce1e655;
}

button:hover {
  background: #40c9cf;
  box-shadow: 0 0 10px #5ce1e6aa;
  transform: scale(1.02);
}

/* === Log & Data Boxes === */
.log {
  background: rgba(30, 30, 30, 0.95);
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 8px;
  border-left: 4px solid #5ce1e6;
  box-shadow: 0 0 10px #5ce1e61a;
  overflow-x: auto;
}

.highlight {
  display: inline-block;
  background-color: #5ce1e6;
  color: #000;
  padding: 0.3em 0.7em;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 0 5px #5ce1e6;
  margin-bottom: 0.5em;
}

.success {
  color: #00ff88;
}

.fail {
  color: #ff5566;
}

/* === Links === */
a {
  color: #5ce1e6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* === Scrollbar Styling === */
.log::-webkit-scrollbar {
  width: 8px;
}
.log::-webkit-scrollbar-track {
  background: #1a1a1a;
}
.log::-webkit-scrollbar-thumb {
  background-color: #5ce1e6;
  border-radius: 10px;
}

/* === Fancy Title Stroke === */
h1 {
  font-size: 2.2rem;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #5ce1e6, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse-glow 2s ease-in-out infinite;
}

/* === Subtle Glow Animation === */
@keyframes pulse-glow {
  0%, 100% {
    text-shadow: 0 0 6px #5ce1e6aa;
  }
  50% {
    text-shadow: 0 0 12px #5ce1e6;
  }
}
