
/* GLOBAL */

/* CSS VARIABLES */
:root {
  --font-main: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
               "Helvetica Neue", sans-serif;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  background: #fafafa; /* Lighter gray */
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

.wrapper {
  max-width: 1100px;
  margin: 50px auto;
  padding: 10px;
}

/* LINKS */
a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* FOOTER - Ultra Minimal */
.footer {
  padding: 2rem;
  background: #fafafa;
  border-top: 1px solid #e1e1e1;
  text-align: center;
}

.footer .content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer a {
  color: #666;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #0891b2;
  text-decoration: none;
}

.footer p {
  color: #999;
  font-size: 0.85rem;
  margin: 0;
}
