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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: #0a0a0a;
  min-height: 100vh;
}

.app-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
}

.header h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.header p {
  font-size: 1.1rem;
  color: #999;
}

.section {
  margin-bottom: 3rem;
}

.section h2 {
  font-size: 1.4rem;
  color: #ffcc00;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 204, 0, 0.2);
  padding-bottom: 0.5rem;
}

.section p {
  margin-bottom: 1rem;
  color: #ccc;
}

.section ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: #ccc;
}

.section li {
  margin-bottom: 0.4rem;
}

.svg-container {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.svg-container img {
  width: 100%;
  height: auto;
  display: block;
}

.results-table {
  overflow-x: auto;
  margin: 1rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

thead {
  background: rgba(255, 204, 0, 0.15);
}

th {
  text-align: left;
  padding: 0.6rem 1rem;
  color: #ffcc00;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 204, 0, 0.3);
}

td {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

tr.highlight {
  background: rgba(255, 204, 0, 0.08);
}

tr.highlight td {
  font-weight: 600;
  color: #fff;
}

.links-section a {
  color: #ffcc00;
  text-decoration: none;
}

.links-section a:hover {
  text-decoration: underline;
}
