@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
  background-color: #0a0a0a;
  color: #15ff00;
  font-family: 'Share Tech Mono', monospace;
  margin: 0;
  padding: 20px;
  min-height: 100vh;
}

/* CRT scanline overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.08) 0px,
    rgba(0, 0, 0, 0.08) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 1000;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  background-color: #0a0a0a;
  border: 1px solid #15ff00;
  box-shadow: 0 0 16px #15ff00, 0 0 40px rgba(21, 255, 0, 0.2);
}

th, td {
  padding: 14px 28px;
  text-align: left;
  font-family: 'Share Tech Mono', monospace;
}

th {
  background-color: #0d2200;
  color: #15ff00;
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #15ff00;
  text-shadow: 0 0 8px #15ff00;
  cursor: pointer;
}

td {
  background-color: transparent;
  color: #15ff00;
  font-size: 1em;
  border-bottom: 1px solid rgba(21, 255, 0, 0.2);
  transition: background 0.15s;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background-color: rgba(21, 255, 0, 0.12);
  text-shadow: 0 0 6px #15ff00;
}

.rating-h1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-h1 h1 {
  font-family: 'Share Tech Mono', monospace;
  font-size: 2.5em;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #15ff00;
  text-shadow: 0 0 10px #15ff00, 0 0 30px rgba(21, 255, 0, 0.4);
  border: 2px solid #15ff00;
  padding: 12px 32px;
  box-shadow: 0 0 16px #15ff00, inset 0 0 16px rgba(21, 255, 0, 0.05);
  margin: 20px 0;
}

.rating {
  font-size: x-large;
  display: flex;
  align-items: center;
  justify-content: center;
}
