body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #4b0082, #1e90ff);
  color: white;
  text-align: center;
  margin: 0;
  padding: 0;
}

h1 {
  margin: 20px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Make cards normal dark blocks again */
.card {
  display: block;
  background: rgba(20, 20, 40, 0.95); /* dark neutral */
  border-radius: 12px;
  padding: 20px;
  margin: 10px;
  text-align: center;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.6);
}

/* Status tags (small badges only) */
.status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.85em;
  margin: 5px 3px 0;
  font-weight: bold;
}

/* Colors */
.status.updated {
  background: #28a745; /* green */
  color: white;
}

.status.outdated {
  background: #8b0000; /* dark red */
  color: white;
}

.status.recommended {
  background: gold;
  color: black;
}

.status.scam {
  background: red;
  color: white;
}

.status.web {
  background: #007bff; /* blue */
  color: white;
}


/* Status-based backgrounds */
.card.updated {
  background: #28a745; /* Green */
  color: white;
}

.card.recommended {
  background: #f1c40f; /* Yellow */
  color: black;
}

.card.outdated {
  background: #8b0000; /* Dark red */
  color: white;
}

.card.scam {
  background: #ff0000; /* Evil red */
  color: white;
}




.info-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.edits-card {
  background: linear-gradient(to bottom, rgba(70, 100, 200, 0.9), rgba(50, 80, 180, 0.9));
}

.disclaimer-card {
  background: linear-gradient(to bottom, rgba(70, 100, 200, 0.9), rgba(50, 80, 180, 0.9));
}
/* Status label badges */
.status {
    display: inline-block;   /* inline, not full width */
    margin: 5px 3px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: bold;
}

/* Specific badge colors */
.status.updated { background: #2ecc71; color: white; }
.status.outdated { background: #e74c3c; color: white; }
.status.recommended { background: #f1c40f; color: black; }
.status.web { background: #3498db; color: white; }
.status.scam { background: #c0392b; color: white; }
.status {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  margin: 3px 5px;
}

/* Badge colors */
.status.updated { background: #28a745; color: white; }
.status.recommended { background: #f1c40f; color: black; }
.status.outdated { background: #8b0000; color: white; }
.status.scam { background: #ff0000; color: white; }
/* Container for all cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Cards stay medium sized instead of stretching */
.card {
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}


