* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: monospace;
  min-height: 100vh;
  font-family: 'font';
}
.global-logo {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
}
.global-logo h1 {
  font-family: 'font2', sans-serif;
  font-size: 2.8rem;
  color: rgb(120, 120, 255);
  letter-spacing: 1px;
  text-align: center;
  image-rendering: pixelated;
  animation: softGlow 0.8s ease-in-out infinite alternate;
  user-select: none;
}
.archive-box {
  max-width: 900px;
  margin: 160px auto 0;
  border: 2px solid #fff;
  padding: 24px 32px;
}
.archive-title {
  margin: 0 0 16px;
  font-size: 1.1rem;
}
.archive-list {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}
.archive-list li {
  margin: 10px 0;
}
.archive-list a {
  color: #7b4dff;
  text-decoration: underline;
}
.archive-list a:hover {
  color: #bfa6ff;
}
.back-link {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;

  color: #7b4dff;
  text-decoration: underline;
  font-family: 'font';
}
.archive-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.folder-download {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: transform 0.2s;
}
.folder-download:hover {
  transform: scale(1.2); 
}
.download-btn {
  background-color: #ff5c00;
  color: white;
  border: none;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.download-btn:hover {
  background-color: #ff7b33;
}
@keyframes softGlow {
  from {
    text-shadow: 0 0 4px rgba(120,120,255,0.4);
  }
  to {
    text-shadow: 0 0 10px rgba(120,120,255,0.8);
  }
}
@media (max-width: 600px) {
  .global-logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 32px auto 24px;
  }
  .archive-box {
    margin: 0 16px 32px;
    padding: 16px 20px;
  }
}
@font-face {
  font-family: "font2";
  src: url("../fonts/m40.TTF");
}
@font-face {
  font-family: "font";
  src: url("../fonts/ChiKareGo2.ttf") format("truetype");
}