* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: #0a0a0a;
  font-family: 'Segoe UI', sans-serif;
  color: #e0e0e0;
}

.eol-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.eol-modal {
  position: relative;
  width: min(420px, 90vw);
  padding: 28px 24px;
  border-radius: 12px;
  background: #141414;
  border: 1px solid #222;
  color: #e0e0e0;
  text-align: center;
}

.eol-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  color: #888;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
}

.eol-close:hover {
  color: #fff;
}

.eol-modal h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.eol-modal p {
  font-size: 0.95rem;
  color: #777;
}