body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
}


.feed-card {
  width: 100%;
  height: 120px;
  box-sizing: border-box;
  background: linear-gradient(145deg, rgba(25, 25, 40, 0.85), rgba(40, 40, 70, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 15px 15px;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.feed-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
}

.feed-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #00ffaa;
}

.feed-card p {
  margin: 5px 0;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

#feedTime {
  color: #00ffaa;
  font-weight: bold;
}

#feedVersion {
  color: #aaa;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .feed-card {
    padding: 10px;
  }

  .feed-card h3 {
    font-size: 1rem;
  }

  .feed-card p {
    font-size: 0.8rem;
  }
}

#feedtitle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #00ffaa;
}

/* Hide the original text visually but keep it for accessibility */
#feedtitle {
  position: relative;
  color: transparent;
}

#feedtitle::after {
  content: "DiccChops.com";
  color: #00ffaa;
  position: absolute;
  left: 0;
  right: 0;
}

/* On mobile, show only "Dicc" */
@media (max-width: 768px) {
  #feedtitle::after {
    content: "Dicc";
  }
}