/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #f0f0f0;
  line-height: 1.6;
}

a {
  color: #66d9ef;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background-color: #1f1f1f;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.logo {
  font-size: 1.5rem;
  color: #f92672;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #a6e22e;
}

main {
  padding: 2rem;
}

section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

h2 {
  color: #fd971f;
  margin-bottom: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background-color: #1e1e1e;
  border-radius: 6px;
  overflow: hidden;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #333;
}

th {
  background-color: #272727;
  color: #66d9ef;
}

tr:hover {
  background-color: #2a2a2a;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #1f1f1f;
  color: #777;
  font-size: 0.9rem;
  margin-top: 2rem;
}
