html, body {
  margin: 0;
  height: 100%;
  background-color: #121214;
  color: #dcdce0;
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  line-height: 1.5;
  overflow-x: hidden;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.container {
  position: relative;
  min-width: 600px;
  max-width: 900px;
  width: 100%;
  padding: 3.5rem 4rem;
  border-radius: 14px;
  background: #1e1e25;
  box-shadow:
    0 8px 16px rgba(0,0,0,0.5),
    inset 0 0 30px #292933;
  border: 1.5px solid rgba(140, 140, 255, 0.5);
  user-select: none;
  box-sizing: border-box;
}

h1 {
  font-size: 2.1rem;
  margin: 0 0 0.25rem 0;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: #e2e2e8;
  display: inline;
  white-space: nowrap;
  min-height: 2.8rem;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(130,130,255,0.8);
}

.typed-cursor {
  display: inline-block !important;
  vertical-align: bottom;
  font-weight: 700;
  color: #8c8cff;
  animation: blink 0.8s infinite;
  font-size: 2.1rem;
  line-height: 1;
  margin-left: 3px;
  text-shadow: 0 0 8px #8c8cff;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.pronouns {
  color: #9999a8;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.07em;
}

.role {
  font-style: italic;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 2rem;
  color: #b1b1c8;
}

.info {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  color: #c7c7d6;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
}

.info a {
  color: #8c8cff;
  text-decoration: none;
  border-bottom: 1px dotted #6e6ed9;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
  font-weight: 600;
}

.info a:hover, .info a:focus {
  color: #c5c5ff;
  border-bottom: 1px solid #b1b1ff;
  outline: none;
}

.section {
  margin-bottom: 2.4rem;
  color: #cfcfe1;
}

.section h2 {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 1rem 0;
  letter-spacing: 0.18em;
  color: #7a7acb;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
  text-shadow: 0 0 4px #6b6bb7;
}

ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

ul li {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  color: #d6d6e9;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: color 0.25s ease;
  cursor: default;
  user-select: text;
}

ul li a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted #8c8cff;
  flex-grow: 1;
  cursor: pointer;
}

ul li a:hover, ul li a:focus {
  color: #c5c5ff;
  border-bottom: 1px solid #b1b1ff;
  outline: none;
}

ul li:hover, ul li:focus-within {
  color: #c5c5ff;
}

i.fa-solid, i.fa-brands {
  color: #8c8cff;
  font-size: 1.3rem;
  min-width: 1.3rem;
  user-select: none;
  transition: color 0.3s ease;
}

ul li:hover i.fa-solid,
ul li:hover i.fa-brands {
  color: #b1b1ff;
}

.view-count {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #7a7acb;
  user-select: none;
  font-weight: 600;
  text-shadow: 0 0 4px #6b6bb7;
  cursor: default;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.view-count:hover {
  opacity: 1;
}
.view-count i.fa-eye {
  font-size: 1rem;
  color: #8c8cff;
  text-shadow: 0 0 8px #8c8cff;
}

@media (max-width: 900px) {
  .container {
    min-width: unset;
    max-width: 90vw;
    padding: 3rem 3rem;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 1.7rem;
    min-height: 2.2rem;
  }
  .role {
    font-size: 1.15rem;
  }
  ul li {
    font-size: 1rem;
  }
  .info {
    font-size: 1rem;
  }
  .container {
    max-width: 100%;
    padding: 2rem 2.2rem;
  }
  .view-count {
    bottom: 10px;
    left: 10px;
    font-size: 0.75rem;
  }
  .view-count i.fa-eye {
    font-size: 0.9rem;
  }
}
