.file-list-ul {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0 0;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.file-link {
  background: linear-gradient(120deg, #23272a 60%, #181a1b 100%);
  border-radius: 0.8rem;
  box-shadow: 0 2px 8px #0a1a0a55;
  padding: 1.1rem 1.2rem;
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
  border: 1.5px solid #3a4a2a;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.file-link:hover {
  box-shadow: 0 6px 18px #7a5c2a44, 0 2px 8px #0a1a0a99;
  transform: translateY(-2px) scale(1.01);
  border: 1.5px solid #7a5c2a;
}
.file-link a {
  color: #b8e994;
  text-decoration: none;
  font-weight: 600;
  word-break: break-all;
  font-size: 1.13rem;
  transition: color 0.2s;
  text-shadow: 0 1px 2px #000a;
  font-family: inherit;
}
.file-link a:hover {
  color: #fffbe6;
  text-shadow: 0 0 6px #7a5c2a99;
}

body {
  margin: 0;
  font-family: 'Share Tech Mono', 'Fira Mono', 'Consolas', monospace;
  background: linear-gradient(135deg, #181a1b 0%, #23272a 100%), url('https://www.transparenttextures.com/patterns/asfalt-light.png');
  color: #d0e7c2;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100vw;
}

.container {
  background: rgba(30, 34, 28, 0.97);
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px 0 #0a1a0a99, 0 1.5px 4px 0 #2a1a0a88;
  padding: 2.5rem 2rem 2rem 2rem;
  margin: 3rem 0;
  width: 100%;
  max-width: 700px;
  backdrop-filter: blur(2px);
  border: 2px solid #3a4a2a;
  transition: box-shadow 0.2s, border 0.2s;
  position: relative;
  overflow: hidden;
}
.container:before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, #2a2e2a22 0 2px, transparent 2px 12px);
  pointer-events: none;
  z-index: 0;
}
.container:hover {
  box-shadow: 0 12px 40px 0 #1a2a1aee, 0 2px 8px 0 #2a1a0a99;
  border: 2px solid #7a5c2a;
}

.file-list {
  margin-top: 2.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

input, button, select {
  border-radius: 0.7rem;
  border: none;
  padding: 0.9rem 1.2rem;
  margin: 0.5rem 0;
  font-size: 1.1rem;
  background: #23272a;
  color: #d0e7c2;
  outline: none;
  box-shadow: 0 2px 8px #0002;
  transition: box-shadow 0.2s, background 0.2s;
  font-family: inherit;
}
input:focus, select:focus {
  box-shadow: 0 0 0 2px #7a5c2a99;
}
button {
  background: linear-gradient(90deg, #3a4a2a 0%, #7a5c2a 100%);
  color: #fffbe6;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px #3a4a2a55;
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
  text-shadow: 0 1px 2px #000a;
}
button:hover {
  background: linear-gradient(90deg, #7a5c2a 0%, #3a4a2a 100%);
  box-shadow: 0 4px 16px #7a5c2a55;
}

.file-item {
  background: linear-gradient(120deg, #23272a 60%, #181a1b 100%);
  border-radius: 1.2rem;
  padding: 1.2rem 1rem 1rem 1rem;
  box-shadow: 0 2px 12px #0a1a0a99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
  border: 1.5px solid #3a4a2a;
  position: relative;
  overflow: hidden;
}
.file-item:before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, #7a5c2a22 0 2px, transparent 2px 12px);
  pointer-events: none;
  z-index: 0;
}
.file-item:hover {
  box-shadow: 0 6px 24px #7a5c2a44, 0 2px 8px #0a1a0a99;
  transform: translateY(-4px) scale(1.03);
  border: 1.5px solid #7a5c2a;
}
.file-item a {
  color: #b8e994;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.7rem;
  word-break: break-all;
  transition: color 0.2s;
  text-shadow: 0 1px 2px #000a;
  font-family: inherit;
}
.file-item a:hover {
  color: #fffbe6;
  text-shadow: 0 0 6px #7a5c2a99;
}
.file-item img, .file-item video, .file-item embed {
  border-radius: 0.7rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 1px 6px #0a1a0a99;
  background: #181a1b;
  max-width: 100%;
  max-height: 140px;
  object-fit: cover;
  border: 1.5px solid #3a4a2a;
}
.file-item audio {
  width: 100%;
  margin-bottom: 0.5rem;
  filter: sepia(0.3) hue-rotate(60deg) contrast(1.1);
}

@media (max-width: 600px) {
  .container {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    margin: 1rem 0;
    max-width: 99vw;
  }
  .file-list {
    gap: 0.7rem;
  }
  .file-item {
    padding: 0.7rem 0.3rem 0.7rem 0.3rem;
  }
}
  .container {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    margin: 1rem 0;
    max-width: 99vw;
  }
  .file-list {
    gap: 0.7rem;
  }
  .file-item {
    padding: 0.7rem 0.3rem 0.7rem 0.3rem;
  }
}
