body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

header {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid #1f3d2b;
}

.logo {
  font-family: 'Pacifico', cursive;
  color: #d4af37;
  font-size: 40px;
}

.feed {
  max-width: 600px;
  margin: 30px auto;
}

.post {
  background-color: #0f1f16;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #0f1f16;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.avatar-small {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.name {
  font-weight: bold;
  color: #d4af37;
}

.username {
  color: #888;
  margin-left: 5px;
}

.post-text {
  margin: 15px 0;
}

.post-actions {
  margin-bottom: 15px;
}

button {
  background-color: #1f3d2b;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
}

button:hover {
  background-color: #2e5c40;
}

.comments {
  border-top: 1px solid #1f3d2b;
  padding-top: 15px;
}

.comment {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
