    :root {
      --bg: #1e1e2f;
      --surface: #2e2e3e;
      --primary: #4a90e2;
      --text: #f0f0f0;
      --text-muted: #aaa;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      margin: 0;
      padding: 0;
      color: var(--text);
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background: var(--surface);
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

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

    header a {
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
      transition: opacity 0.2s ease-in-out;
    }

    header a:hover {
      opacity: 0.8;
    }

    h1.page-title {
      text-align: center;
      font-size: 2rem;
      margin: 2rem 0 1rem;
    }

    .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      padding: 0 2rem 3rem;
      max-width: 960px;
      margin: 0 auto;
    }

    .card {
      background: var(--surface);
      border-radius: 1.5rem;
      padding: 1.5rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    }

    .card h2 {
      margin: 0;
      font-size: 1.25rem;
      color: var(--text);
    }

    .card p {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .card-icon {
      width: 32px;
      height: 32px;
      color: var(--primary);
    }
	
	html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1;
}

footer {
  background-color: var(--surface);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

footer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

footer a:hover {
  opacity: 0.8;
}