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

.site-name {
  text-align: center;
  font-size: 2.5em;
  margin-top: 40px;
  color: #fff;
}

.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.login-box {
  border: 2px solid #8B0000;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  margin-top: 20px;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.login-box input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  background-color: #111;
  color: #fff;
}

.login-box button {
  background-color: #8B0000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.motto, .mission {
  font-size: 0.9em;
  margin-bottom: 15px;
  color: #eee;
}

.alt-action {
  margin-top: 15px;
  color: #ccc;
}

.alt-action a {
  color: #FF6347;
  text-decoration: none;
}

/* CSS Additions in /assets/css/style.css (append to existing) */
.feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 700px;
  margin: 30px auto;
}

.post-card {
  border: 2px solid #8B0000;
  background-color: #111;
  padding: 15px;
  color: #fff;
}

.feed-media {
  width: 100%;
  margin-top: 10px;
  border-radius: 6px;
  border: 1px solid #333;
}

.exploding {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px #8B0000; }
  50% { box-shadow: 0 0 20px #FF0000; }
  100% { box-shadow: 0 0 10px #8B0000; }
}

.media-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.media-button {
  background: #900;
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
}
