/* Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0f0f0f;
  color: #e0e0e0;
  line-height: 1.6;
}

header {
  background: #1a1a1a;
  padding: 1rem 2rem;
  border-bottom: 1px solid #333;
}

nav a {
  color: #ffd700;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: white;
}

/* Gossip Container */
.gossip-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Gossip Cards */
.gossip-card {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border-left: 4px solid #ffd700;
  animation: fadeIn 0.5s ease-out;
}

.gossip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.gossip-header h3 {
  margin: 0;
  color: white;
}

.platform-badge {
  background: #ffd700;
  color: #1a1a1a;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.gossip-footer {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #888;
}

/* Animations & Extras */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.loading, .no-posts, .error {
  text-align: center;
  padding: 2rem;
  background: #1e1e1e;
  border-radius: 8px;
  margin: 2rem 0;
}

.error {
  color: #ff6b6b;
}