:root {
  --font-body: 'Inter', sans-serif;
  --font-special: 'Permanent Marker', cursive;
  --yellow-primary: #facc15;
  --yellow-secondary: #fde047;
  --text-neutral-200: #e5e7eb;
  --text-neutral-400: #9ca3af;
  --text-neutral-500: #6b7280;
  --text-neutral-700: #374151;
}

/* --- Header --- */
.app-header {
    display: flex;
    justify-content: center;
    background-color: #2a2b2e;
    border-bottom: 1px solid #353739;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.app-header .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Removed fixed font-size, weight, etc. Now handled by Tailwind classes */
.app-header h1 {
}

/* --- Footer --- */
.app-footer {
    background-color: #2a2b2e;
    color: var(--text-neutral-400);
    text-align: center;
    padding: 1rem;
    font-size: 0.875rem;
    border-top: 1px solid #353739;
    width: 100%;
}

.app-footer a {
    color: var(--text-neutral-200);
    text-decoration: none;
    transition: color 0.2s;
}
.app-footer a:hover {
    color: #60a5fa; /* A light blue for hover */
}
