@font-face {
  font-family: 'jbmono';
  src: url('../assets/jbmono.ttf') format('truetype-variations'),
       url('../assets/jbmono.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  background-color: #000000;
  font-family: 'jbmono', monospace;
  color: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  background: linear-gradient(rgba(39, 14, 18, 0.78), rgba(31, 10, 14, 0.88)),
              url('../assets/uconf-uibg.png') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
}

.container {
  width: 100%;
  max-width: 1200px;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.back-link {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.75rem, 1.4vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.85;
  display: inline-block;
  width: fit-content;
}

.back-link:hover {
  opacity: 1;
  text-decoration: none;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  width: clamp(3.5rem, 7vw, 5rem);
  height: auto;
  flex-shrink: 0;
}

.title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #ffffff;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.item {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0; /* Sharp corners */
  padding: 1.5rem;
}

.question {
  margin: 0 0 2rem 0;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.75rem;
}

.answer {
  font-size: clamp(0.75rem, 1.35vw, 0.85rem);
  color: #d1d5db;
  line-height: 1.6;
}

.answer p {
  margin: 0 0 0.85rem 0;
}

.answer p:last-child {
  margin-bottom: 0;
}

.codeblock {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  padding: 0.75rem 1rem;
  margin: 0.75rem 0;
  color: #ff97e1;
  font-family: 'jbmono', monospace;
  font-size: 0.75rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-all;
}

.inline {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 0.1rem 0.35rem;
  color: #ffb6c1;
  font-family: 'jbmono', monospace;
  font-size: 0.8em;
}

.impbox {
  margin-top: 1rem;
  border-left: 3px solid #f87171;
  background: rgba(248, 113, 113, 0.06);
  padding: 0.75rem 1rem;
}

.imptitle {
  display: block;
  font-weight: 800;
  color: #f87171;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.impbox p {
  margin: 0;
}

.nodrag {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
}