:root {
  --bg: #111;
  --text: #eee;
  --highlight: #a855f7;
  --box: #1a1a1a;
  --input-bg: #222;
  --input-border: #444;
  --input-focus: #a855f7;
  --link: #bbb;
  --link-hover: #fff;
  --shadow: rgba(168, 85, 247, 0.3);
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  padding: 100px 20px 60px;
  max-width: 420px;
  margin: 0 auto;
}

h1 {
  font-size: 2.5em;
  font-weight: 700;
  user-select: none;
}

.highlight {
  color: var(--highlight);
  font-weight: 700;
}

form {
  margin-top: 40px;
}

input[type="text"] {
  padding: 14px 20px;
  width: 100%;
  max-width: 350px;
  border: 2px solid var(--input-border);
  border-radius: 16px;
  background: var(--input-bg);
  color: var(--text);
  font-size: 1.1em;
  box-shadow: 0 8px 20px var(--shadow);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
  user-select: text;
}

input[type="text"]::placeholder {
  color: #999;
  font-style: italic;
}

input[type="text"]:focus {
  outline: none;
  border-color: var(--input-focus);
  box-shadow: 0 0 18px var(--highlight);
}

/* Click/Tap animation */
input[type="text"]:active {
  transform: scale(0.97);
  box-shadow: 0 0 22px var(--highlight);
}


.updates {
  margin-top: 50px;
  background: linear-gradient(135deg, #2a004f, #7b33f8);
  padding: 24px 28px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(123, 51, 248, 0.48);
  color: #eee;
  font-weight: 600;
  font-size: 1.05em;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  cursor: default;
  user-select: none;
}

.updates p {
  margin: 14px 0;
  line-height: 1.4;
}

footer {
  background: var(--box);
  padding: 18px 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.85);
  user-select: none;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  display: inline-block;
  margin: 0 18px;
  font-weight: 600;
  font-size: 0.95em;
}

footer a {
  color: var(--link);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 12px;
  transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

footer a:hover {
  color: var(--link-hover);
  background-color: var(--highlight);
  box-shadow: 0 6px 20px var(--shadow);
}
