body {
  margin: 0;
  padding: 0;
  background-color: #e5e5e5;
  font-family: 'Lucida Grande', monospace;
  font-size: 18px;
  overflow: hidden;
}

.container {
  width: 90vw;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.25); /* frosted glass effect */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: grab;
  box-shadow:
    inset 0 0 1px rgba(255, 255, 255, 0.5),
    0 4px 30px rgba(0, 0, 0, 0.1);
}

.container img {
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
  margin: 40px 0;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.container a {
  color: #000; /* darker text for clarity */
  text-decoration: none;
}

.container a:hover {
  text-decoration: underline;
}

p {
  margin: 2em 0;
  color: #111;
}

.link-list {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
}

.link-item {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}

.link-item i {
  width: 24px;
  text-align: center;
  margin-right: 10px;
  color: #555;
}
