/* Dark mode base */
body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  border-radius: 12px;
  background-color: #1e1e1e;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: -webkit-linear-gradient(bottom, #f8f6f1, #b7a997);
  background-image: linear-gradient(to bottom, #f8f6f1, #b7a997);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.link-list {
  list-style: none;
  padding: 0;
}

.link-list li {
  margin: 1.5rem 0;
}

.link-list a {
  text-decoration: none;
  /* color: #bb86fc; */
  color: #e0e0e0;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}

.link-list a::after {
  content: "➤";
  font-size: 1rem;
  margin-left: auto;
  color: #888;
  transition: transform 0.2s ease, color 0.2s ease;
}

.link-list a:hover::after {
  transform: translateX(4px);
  color: #fff;
}

.link-list a:hover {
  color: #ffffff;
}

.icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
  vertical-align: middle;
}