/* Stravestiq Style Guide - v1.0 */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #000;
  color: #fff;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

/* Footer */
footer {
  border-top: 1px solid #222;
}

/* Cards */
.card {
  background-color: #111;
  border: 1px solid #222;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #16a34a; /* Tailwind green-600 */
}
