/* 1. RESET & VARIABLES */
:root {
  --bg-color: #121212;        /* Very dark grey (almost black) */
  --card-bg: #1e1e1e;         /* Slightly lighter grey for contrast */
  --text-main: #e0e0e0;       /* Off-white for readability */
  --text-muted: #a0a0a0;      /* Grey for secondary text */
  --accent-blue: #3b82f6;     /* Modern bright blue */
  --accent-hover: #60a5fa;    /* Lighter blue for hover states */
  --font-stack: 'Inter', system-ui, -apple-system, sans-serif;
}

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

/* 2. BODY & LAYOUT */
body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-stack);
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Container to center content nicely */
.container {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

/* 3. TYPOGRAPHY */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #ffffff;
}

p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* 4. LINKS & BUTTONS */
/* Styles for a list of links */
.link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-item {
  display: block;
  background-color: var(--card-bg);
  color: var(--text-main);
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border: 1px solid #333;
  transition: all 0.3s ease;
  font-weight: 500;
}

/* Hover Effects */
.link-item:hover {
  background-color: #252525;
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-2px); /* Subtle lift effect */
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2); /* Blue glow */
}

/* Active/Click State */
.link-item:active {
  transform: translateY(0);
}

/* Standard inline links */
a.inline-link {
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

a.inline-link:hover {
  border-bottom-color: var(--accent-blue);
}