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

body {
  font-family: system-ui, sans-serif;
  background: #f0f4f8;
  color: #1a202c;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

main {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  padding: 2.5rem 3rem;
  max-width: 600px;
  width: 100%;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2b6cb0;
}

p { margin-bottom: 1rem; line-height: 1.6; }

ul { margin: 0 0 1.2rem 1.5rem; line-height: 2; }

code {
  background: #edf2f7;
  padding: .1em .4em;
  border-radius: 4px;
  font-size: .9em;
}

.logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.logo svg {
  width: 72px;
  height: 72px;
}

h2 {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: .75rem;
}

.status {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.2rem;
}

.status-grid {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.status-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.green { background: #48bb78; }

.hint {
  font-size: .9rem;
  color: #718096;
  border-left: 3px solid #2b6cb0;
  padding-left: .75rem;
}

.lara-section {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

#laraBtn {
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(229,62,62,.35);
  transition: transform .1s, box-shadow .1s;
}

#laraBtn:active {
  transform: scale(.94);
}

.lara-heart {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.lara-heart span {
  font-size: 8rem;
  color: #e53e3e;
  line-height: 1;
}

.lara-heart p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e53e3e;
  margin: 0;
  letter-spacing: .05em;
}

.hidden {
  display: none;
}
