body {
  font-family: sans-serif;
  background: #181c20;
  color: #f2f2f2;
  text-align: center;
  padding: 50px;
  min-height: 100vh;
}
h1 {
  color: #e0e0e0;
}
.link-list {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
}
.link-box {
  display: flex;
  align-items: center;
  background: #23272e;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  margin: 24px 0;
  padding: 0;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  min-height: 90px;
  padding: 10px;
}
.link-box:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transform: translateY(-2px) scale(1.02);
  background: #2d323a;
}
.link-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  margin-right: 32px;
  flex-shrink: 0;
  background: #111;
  display: block;
  padding: 10px;
  box-sizing: border-box;
}
.link-text {
  font-size: 1.4em;
  color: #7ecfff;
  text-align: left;
  flex: 1;
}
.logo-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  position: absolute;
  top: 18px;
  left: 24px;
  z-index: 20;
}
.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  background: #23272e;
  object-fit: contain;
}
.last-edited {
  position: static;
  display: inline-block;
  font-size: 1em;
  color: #b0b0b0;
  background: rgba(30,30,30,0.85);
  padding: 4px 12px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  margin-left: 0;
}
@media (max-width: 600px) {
  body { padding: 10px; }
  .link-list { max-width: 100%; }
  .link-box {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }
  .link-img {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 12px 12px 0 0;
    display: block;
    padding: 10px;
  }
  .link-text { text-align: center; padding: 12px 0; }
  .last-edited { position: static; display: block; margin-bottom: 10px; }
  .logo-bar {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
  }
  .logo-img {
    width: 40px;
    height: 40px;
  }
}
