/* Global Styles */
body {
  background: #0a0a0a;
  color: #f2f2f2; /* readable main text */
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
}

/* Header Styles */
.header {
  background: #111;
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid #ff2f7d;
}

.header h1 {
  color: #ff3355;
  text-shadow: 0 0 6px rgba(255, 51, 85, 0.6);
  margin: 0;
}

.header a {
  margin: 0 12px;
  color: #ff6fae;
  text-decoration: none;
  font-weight: bold;
}

.header a:hover {
  color: #ffffff;
}

/* Post Section */
.posts {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.post {
  background: #121212;
  padding: 20px;
  margin-bottom: 30px;
  border-left: 4px solid #ff3355;
  box-shadow: 0 0 10px rgba(255, 51, 85, 0.35);
}

.post h2 {
  margin-top: 0;
  color: #ff4d6d;
}

.post .date {
  font-size: 0.85rem;
  color: #b8b8b8;
  margin-bottom: 10px;
}

/* Image Styling */
.post img {
  max-width: 100%;
  border: 2px solid #ff4d8d;
  border-radius: 4px;
  margin-top: 12px;
  box-shadow: 0 0 8px rgba(255, 77, 141, 0.35);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 1rem;
  color: #ff6fae;
  border-top: 1px solid #ff3355;
  background: #111;
}

/* Admin styles */
.admin-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.admin-section h2 {
  color: #ff4d6d;
  margin-top: 40px;
}

input, textarea, button {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  font-size: 1rem;
  background: #161616;
  color: #ffffff;
  border: 1px solid #ff6fae;
  border-radius: 6px;
}

input::placeholder,
textarea::placeholder {
  color: #999;
}

button {
  background: #ff4d8d;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: none;
}

button:hover {
  background: #ff3355;
  color: #fff;
}

.post-list {
  list-style: none;
  padding: 0;
}

.post-list li {
  background: #121212;
  border-left: 3px solid #ff3355;
  padding: 12px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-buttons button {
  margin-left: 8px;
  background: #1a1a1a;
  color: #ff6fae;
  border: 1px solid #ff6fae;
}
