:root {
  --bg: #06101c;
  --bg-2: #0a1a2b;
  --panel: rgba(10, 25, 42, 0.9);
  --panel-2: rgba(13, 35, 56, 0.92);
  --line: rgba(137, 223, 255, 0.18);
  --line-strong: rgba(137, 223, 255, 0.34);
  --text: #f6fbff;
  --muted: #9fb8c8;
  --blue: #43d7ff;
  --blue-2: #149fd1;
  --green: #60f3b4;
  --gold: #ffc857;
  --red: #ff7b72;
  --focus: rgba(67, 215, 255, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 30% -10%, rgba(67, 215, 255, 0.14), transparent 34rem),
    linear-gradient(180deg, #06101c 0%, #071827 48%, #030910 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(34px, 9vw, 60px);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.78), 0 0 34px rgba(88, 220, 255, 0.42);
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 6vw, 34px);
  line-height: 1.06;
}

h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

p {
  color: #d9edf7;
  line-height: 1.48;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.app-shell {
  width: min(100%, 1260px);
  margin: 0 auto;
  padding: 14px 12px 42px;
}

.hero {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 13, 23, 0.84);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
}

.banner {
  min-height: 156px;
  background:
    linear-gradient(90deg, rgba(2, 8, 15, 0.03), rgba(2, 8, 15, 0.25) 48%, rgba(2, 8, 15, 0.86)),
    linear-gradient(180deg, rgba(2, 8, 15, 0.02), rgba(2, 8, 15, 0.42)),
    url("../images/state-1474.jpg");
  background-position: center, center, left center;
  background-size: cover;
}

.hero-copy {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(67, 215, 255, 0.18), transparent 56%),
    linear-gradient(180deg, rgba(10, 28, 45, 0.96), rgba(6, 16, 28, 0.94));
  padding: 22px 18px 20px;
  text-align: center;
}

.event-pill,
.eyebrow-text {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(137, 223, 255, 0.3);
  border-radius: 999px;
  background: rgba(5, 14, 25, 0.38);
  color: #bff4ff;
  font-weight: 900;
}

.event-pill {
  margin-top: 14px;
  padding: 7px 11px;
  font-size: 12px;
  box-shadow: 0 0 24px rgba(67, 215, 255, 0.16);
}

.eyebrow-text {
  margin-bottom: 8px;
  padding: 5px 8px;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panel {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 160px),
    var(--panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.panel-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.panel-heading h2 {
  margin-bottom: 0;
}

.table-panel {
  padding: 0;
  overflow: hidden;
}

.table-panel .panel-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  padding: 14px 16px;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
  font-size: 12px;
  line-height: 1.35;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(9, 22, 36, 0.98);
  color: #dff8ff;
  font-size: 11px;
  text-transform: uppercase;
  white-space: nowrap;
}

tbody tr {
  background: rgba(10, 25, 42, 0.42);
}

tbody tr:nth-child(even) {
  background: rgba(15, 35, 54, 0.42);
}

.strong-text {
  color: #ffffff;
  font-weight: 900;
}

.footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

@media (min-width: 760px) {
  .app-shell {
    padding: 28px 20px 52px;
  }

  .banner {
    min-height: 180px;
  }
}
