    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f4f4f4;
      color: #222;
    }

    header {
      background-color: #111;
      color: #fff;
      padding: 1.5rem 2rem;
      text-align: center;
    }

    header h1 {
      margin: 0;
      font-size: 2rem;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      padding: 2rem;
    }

    .card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 2rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .card h2 {
      color: #e60023;
    }

    footer {
      background: #111;
      color: #aaa;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
    }
        #live-feed-container {
  background-color: #111;
  color: #0f0;
  padding: 20px;
  border: 2px solid #0f0;
  border-radius: 8px;
  max-width: 600px;
  margin: 20px auto;
  font-family: 'Courier New', monospace;
}

#live-feed-container h2 {
  text-align: center;
  margin-bottom: 10px;
}

#live-feed {
  list-style: none;
  padding-left: 0;
}

.feed-item {
  border-bottom: 1px solid #0f0;
  padding: 8px 0;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
    @media screen and (max-width: 600px) {
      header h1 {
        font-size: 1.5rem;
      }
      .card {
        padding: 1.2rem;
      }
          #live-feed-container {
  background-color: #111;
  color: #0f0;
  padding: 20px;
  border: 2px solid #0f0;
  border-radius: 8px;
  max-width: 600px;
  margin: 20px auto;
  font-family: 'Courier New', monospace;
}

#live-feed-container h2 {
  text-align: center;
  margin-bottom: 10px;
}

#live-feed {
  list-style: none;
  padding-left: 0;
}

.feed-item {
  border-bottom: 1px solid #0f0;
  padding: 8px 0;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
    }

