/* GLOBALS */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f7f9fb;
  color: #333;
}

/* NAVIGATION */
nav {
  background-color: #2b3137;
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-title {
  font-size: 1.4rem;
  font-weight: 600;
}

.nav-title img.logo {
  height: 40px;
  vertical-align: middle;
  margin-right: 10px;
}

.nav-links a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

/* MAIN */
.main-content {
  max-width: 600px;
  margin: 60px auto;
  text-align: center;
  padding: 0 1rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.button {
  background-color: #5865F2;
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease-in-out;
}

.button:hover {
  background-color: #4752c4;
}

/* STOCK LIST */
.stock-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
  max-width: 400px;
  margin: 0 auto 1rem;
}

.stock-list li {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.timestamp {
  font-size: 0.9rem;
  color: #777;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.features-list li {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: #5865F2;
}