
body {
  margin: 0;
  font-family: sans-serif;
  background-color: #121212;
  color: white;
}

header {
  background-color: #1f1f1f;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

nav {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.discord-icon {
  width: 24px;
  height: 24px;
}

input[type="text"] {
  width: 90%;
  padding: 8px;
  border-radius: 4px;
  border: none;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

.item {
  width: 100%;
  max-width: 400px;
  margin: 10px 0;
  text-align: center;
}

.item img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.popup button {
  margin: 10px;
  padding: 10px 20px;
  font-size: 16px;
}

.media-page {
  padding: 20px;
  text-align: center;
}

.media-page video,
.media-page img {
  max-width: 100%;
  border-radius: 8px;
}
