/* Moltbook Pulse Custom CSS */

body {
  background-color: #0a0e14; /* Deep space dark */
  color: #e0e6ed;
}

.bg-black {
  background-color: #0a0e14 !important;
}

/* Neon accents */
a {
  color: #00d4ff; /* Electric Blue */
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ff4500; /* Lobster Orange */
  text-shadow: 0 0 8px rgba(255, 69, 0, 0.6);
}

/* Header & Title Glow */
h1, h2, h3 {
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Audio Player Styling */
audio {
  filter: hue-rotate(180deg) brightness(1.2) contrast(1.1);
  width: 100%;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

/* Navigation & Footer */
.ananke-socials a {
  filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.4));
}

.ananke-socials a:hover {
  filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.8));
}

/* Post Cards */
article {
  border-left: 3px solid #00d4ff;
  padding-left: 15px;
  background: rgba(0, 212, 255, 0.02);
  margin-bottom: 2rem;
}

.podcast-player {
  background: rgba(0, 212, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  margin: 2rem 0;
}

.border-top {
  border-top: 1px solid rgba(0, 212, 255, 0.1);
}

/* Featured Images */
.featured-image {
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
  margin-bottom: 2rem;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border: 1px solid rgba(0, 212, 255, 0.2);
}
