/* General */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: white;
  color: #222;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  background: #f0f0f0;
  padding: 8px 20px;
  font-size: 14px;
}
.top-bar span {
  margin: 0 8px;
  color: #222;
}

/* Header */
header {
  text-align: center;
  padding: 20px;
  border-bottom: 2px solid #dc3545;
  background: white;
}
header h1 {
  margin-top: 0;
  margin-bottom: 5px;
  color: #dc3545;
}
header p {
  margin: 0;
  color: #c0392b;
  font-style: italic;
}

/* Navigation Bar - Big Red Section Bar */
.section-bar {
  background-color: #dc3545;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  color: white;
  overflow-x: auto;
  white-space: nowrap;
}
.section-bar a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
}
.section-bar a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .section-bar a {
    padding: 5px 10px;
    font-size: 13px;
  }
}

/* Marquee Info */
.info-marquee {
  background-color: white;
  color: black;
  padding: 8px;
  font-weight: bold;
  font-size: 14px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  white-space: nowrap;
}

/* Main Content */
main {
  padding: 20px;
}
main h2 {
  color: #333;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

main ul {
  list-style-type: none;
  padding-left: 0;
}
main li {
  margin-bottom: 16px;
  font-size: 15px;
}

main a.source-link {
  color: red;
  text-decoration: none;
  font-weight: bold;
  margin-left: 6px;
}
main a.source-link:hover {
  text-decoration: underline;
}

/* Heart Counter */
.heart-counter {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #dc3545;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  font-weight: bold;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 40px;
}
