:root {
	--bg: #08090c;
	--bg-soft: #0d0f14;
	--panel: #11141b;
	--panel-2: #171b24;
	--border: rgba(255, 255, 255, 0.10);
	--border-strong: rgba(255, 255, 255, 0.18);
	--text: #f4f7fb;
	--muted: #9ba6b5;
	--muted-2: #6f7a89;
	--red: #ff1e1e;
	--red-dark: #b90f19;
	--white: #ffffff;
	--green: #32d583;
	--yellow: #fdb022;
	--shadow: 0 24px 80px rgba(0,0,0,.45);
	--radius: 18px;
	--radius-sm: 12px;
	--max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
margin: 0;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background:
	radial-gradient(circle at 20% -10%, rgba(255, 30, 30, .18), transparent 34%),
	radial-gradient(circle at 80% 0%, rgba(255, 255, 255, .08), transparent 26%),
	linear-gradient(180deg, #0b0d12 0%, var(--bg) 46%, #050608 100%);
color: var(--text);
min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

.site-shell {
width: min(var(--max), calc(100% - 32px));
margin: 0 auto;
}

.topbar {
position: sticky;
top: 0;
z-index: 20;
backdrop-filter: blur(18px);
background: rgba(8, 9, 12, .78);
border-bottom: 1px solid var(--border);
}

.topbar-inner {
height: 72px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;
}

.bottombar {
	position: sticky;
	bottom: 0;
	z-index: 20;
	backdrop-filter: blur(18px);
	background: rgba(8, 9, 12, .78);
	border-bottom: 1px solid var(--border);
}

.brand {
display: flex;
align-items: center;
gap: 12px;
min-width: 0;
}

.brand-mark {
width: 42px;
height: 42px;
border-radius: 50%;
background: #050608;
border: 2px solid var(--red);
display: grid;
place-items: center;
box-shadow: 0 0 0 5px rgba(255, 30, 30, .08);
flex: 0 0 auto;
}

.brand-mark svg { width: 27px; height: 27px; }

.brand-title {
display: flex;
flex-direction: column;
line-height: 1.05;
min-width: 0;
}

.brand-title strong {
font-size: 1.06rem;
letter-spacing: .035em;
text-transform: uppercase;
white-space: nowrap;
}

.brand-title span {
color: var(--muted);
font-size: .78rem;
margin-top: 5px;
white-space: nowrap;
}

.socials {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--muted);
}


.socials img:hover {
	opacity: 0.8;
	transition: all .18s ease;
	transform: translateY(-1px);
}

.socials img {
	height: 30px;
	width: 30px;
	opacity: 0.4;
	border-radius: 50%;
	background: #050608;
	border: 2px solid var(--white);
	display: grid;
	place-items: center;
	box-shadow: 0 0 0 5px rgba(255, 30, 30, .08);
	flex: 0 0 auto;
}

.hero {
padding: 34px 0 34px;
}

.hero-grid {
display: grid;
grid-template-columns: 1.1fr .9fr;
gap: 36px;
align-items: top;
}

.eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
border: 1px solid rgba(255, 30, 30, .35);
border-radius: 999px;
background: rgba(255, 30, 30, .08);
color: #ffd6d6;
font-size: .82rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
}

.eyebrow-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--red);
box-shadow: 0 0 18px rgba(255,30,30,.8);
}

h1 {
margin: 0px 0 16px;
font-size: clamp(2.25rem, 6vw, 4.6rem);
line-height: .94;
letter-spacing: -.06em;
max-width: 820px;
}

.gradient-text {
background: linear-gradient(
  90deg,
  var(--white) 0%,
  #ffb4b4 0%,
  var(--red) 25%,
  #ffb4b4 50%,
  var(--white) 100%
);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}

.hero-copy {
color: var(--muted);
font-size: clamp(1.02rem, 2vw, 1.14rem);
line-height: 1.65;
max-width: 720px;
margin: 0 0 40px;
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
}

.button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
height: 46px;
padding: 0 18px;
border-radius: 999px;
font-weight: 800;
font-size: .94rem;
border: 1px solid transparent;
cursor: pointer;
transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
background: linear-gradient(135deg, var(--red), var(--red-dark));
color: var(--white);
box-shadow: 0 12px 34px rgba(255, 30, 30, .28);
}

.button-secondary {
background: rgba(255,255,255,.06);
border-color: var(--border-strong);
color: var(--white);
}

.hero-card {
background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
border: 1px solid var(--border-strong);
border-radius: 28px;
padding: 22px;
box-shadow: var(--shadow);
position: relative;
overflow: hidden;
}

.hero-card:before {
content: "";
position: absolute;
inset: -1px;
background: radial-gradient(circle at 50% 0%, rgba(255,30,30,.28), transparent 48%);
pointer-events: none;
}

.logo-stage {
min-height: 360px;
display: grid;
place-items: center;
position: relative;
border-radius: 24px;
background:
	radial-gradient(circle at center, rgba(255,30,30,.22), transparent 45%),
	linear-gradient(145deg, #07080b, #131722);
border: 1px solid var(--border);
}

.bigboard-logo {
width: min(300px, 78%);
filter: drop-shadow(0 30px 50px rgba(0,0,0,.65));
}

.quick-stats {
margin-top: 16px;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
position: relative;
}

.stat {
background: rgba(0,0,0,.22);
border: 1px solid var(--border);
border-radius: 16px;
padding: 14px;
}

.stat strong {
display: block;
font-size: 1.3rem;
letter-spacing: -.04em;
}

.stat span {
display: block;
color: var(--muted);
font-size: .76rem;
margin-top: 4px;
text-transform: uppercase;
letter-spacing: .07em;
}

.section {
padding: 15px 0;
}

.section-head {
display: flex;
justify-content: space-between;
align-items: end;
gap: 20px;
margin-bottom: 18px;
}

.section-head h2 {
margin: 0;
font-size: clamp(1.55rem, 3vw, 2.25rem);
letter-spacing: -.04em;
}

.section-head p {
margin: 8px 0 0;
color: var(--muted);
line-height: 1.5;
max-width: 680px;
}

.updated-pill {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 9px 12px;
border-radius: 999px;
color: var(--muted);
background: rgba(255,255,255,.05);
border: 1px solid var(--border);
font-size: .84rem;
white-space: nowrap;
}

.board-panel {
border: 1px solid var(--border-strong);
border-radius: 26px;
background: rgba(13, 15, 20, .78);
box-shadow: var(--shadow);
overflow: hidden;
}

.controls {
display: grid;
grid-template-columns: 1.4fr repeat(3, minmax(140px, .45fr));
gap: 12px;
padding: 16px;
border-bottom: 1px solid var(--border);
background: rgba(255,255,255,.035);
}

.field {
position: relative;
}

.field input,
.field select {
width: 100%;
height: 46px;
border: 1px solid var(--border);
border-radius: 14px;
background: rgba(0,0,0,.26);
color: var(--text);
padding: 0 14px;
font: inherit;
outline: none;
}

.field input:focus,
.field select:focus {
border-color: rgba(255,30,30,.7);
box-shadow: 0 0 0 4px rgba(255,30,30,.12);
}

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

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

th, td {
	padding: 15px 16px;
	text-align: left;
	border-bottom: 1px solid rgba(255,255,255,.07);
}

th {
	color: var(--muted);
	font-size: .74rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	background: rgba(0,0,0,.24);
	user-select: none;
	cursor: pointer;
	white-space: nowrap;
}

tbody tr {
	transition: background .15s ease;
  cursor: pointer;
}

tbody tr:hover {
	background: rgba(255,255,255,.045);
}

.rank {
	font-weight: 900;
	font-size: 1.05rem;
	color: var(--white);
}

.player {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.player strong { font-size: .98rem; }
.player span { color: var(--muted-2); font-size: .82rem; }

.tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 28px;
	padding: 0 9px;
	border-radius: 999px;
	font-weight: 800;
	font-size: .78rem;
}

/* QB — Red */
.pos-qb{
	background: rgba(255, 59, 48, 0.12);
	color: #ff8f87;
	border: 1px solid rgba(255, 59, 48, 0.28);
}

/* WR — Blue */
.pos-wr{
	background: rgba(0, 122, 255, 0.12);
	color: #7fc3ff;
	border: 1px solid rgba(0, 122, 255, 0.28);
}

/* RB — Green */
.pos-rb{
	background: rgba(52, 199, 89, 0.12);
	color: #8ff0a8;
	border: 1px solid rgba(52, 199, 89, 0.28);
}

/* TE — Purple */
.pos-te{
	background: rgba(175, 82, 222, 0.12);
	color: #d7a7ff;
	border: 1px solid rgba(175, 82, 222, 0.28);
}

/* FB — Brown */
.pos-fb{
	background: rgba(161, 106, 64, 0.12);
	color: #ddb08a;
	border: 1px solid rgba(161, 106, 64, 0.28);
}

/* OT — Orange */
.pos-ot{
	background: rgba(255, 149, 0, 0.12);
	color: #ffc46b;
	border: 1px solid rgba(255, 149, 0, 0.28);
}

/* OG — Gold */
.pos-iol{
	background: rgba(255, 204, 0, 0.12);
	color: #ffe37a;
	border: 1px solid rgba(255, 204, 0, 0.28);
}

/* C — Yellow */
.pos-c{
	background: rgba(255, 214, 10, 0.12);
	color: #fff199;
	border: 1px solid rgba(255, 214, 10, 0.28);
}

/* EDGE — Crimson */
.pos-ed{
	background: rgba(220, 20, 60, 0.12);
	color: #ff8ca8;
	border: 1px solid rgba(220, 20, 60, 0.28);
}

/* DT — Gray */
.pos-dt{
	background: rgba(142, 142, 147, 0.12);
	color: #d1d1d6;
	border: 1px solid rgba(142, 142, 147, 0.28);
}

/* LB — Lime */
.pos-lb{
	background: rgba(50, 215, 75, 0.12);
	color: #9cffab;
	border: 1px solid rgba(50, 215, 75, 0.28);
}

/* CB — Cyan */
.pos-cb{
	background: rgba(90, 200, 250, 0.12);
	color: #a9e8ff;
	border: 1px solid rgba(90, 200, 250, 0.28);
}

/* S — Indigo */
.pos-s{
	background: rgba(88, 86, 214, 0.12);
	color: #b5b3ff;
	border: 1px solid rgba(88, 86, 214, 0.28);
}

/* K — Pink */
.pos-k{
	background: rgba(255, 45, 85, 0.12);
	color: #ff9cb5;
	border: 1px solid rgba(255, 45, 85, 0.28);
}

/* P — Teal */
.pos-p{
	background: rgba(48, 176, 199, 0.12);
	color: #8be7f5;
	border: 1px solid rgba(48, 176, 199, 0.28);
}

.trend-up { color: var(--green); font-weight: 800; }
.trend-down { color: var(--yellow); font-weight: 800; }
.trend-flat { color: var(--muted); font-weight: 800; }
.mobile-list {
  display: none;
  padding: 8px;
  gap: 7px;
}

.mobile-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.045),
    rgba(255,255,255,.025)
  );
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.mobile-card-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
}

.mobile-card h3 {
  margin: 0;
  font-size: .98rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
}

.mobile-card .school {
  color: var(--muted);
  margin-top: 2px;
  font-size: .8rem;
  line-height: 1.15;
}

.mobile-card .pos,
.mobile-card .position {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 4px 7px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  white-space: nowrap;
}

/* compact single-line metadata */
.mobile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  color: var(--muted-2);
  font-size: .72rem;
  line-height: 1;
}

.mobile-meta div {
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
}

.mobile-meta strong {
  display: inline;
  font-size: .72rem;
  color: var(--text);
  font-weight: 800;
}

.mobile-meta span {
  display: inline;
  color: var(--muted-2);
  font-size: .72rem;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 0 2px;
}

/* adds separators between stat pills */
.mobile-meta div:not(:last-child)::after {
  content: "•";
  margin-left: 6px;
  color: var(--muted-2);
  opacity: .6;
}

.panel-footer {
display: flex;
justify-content: space-between;
gap: 12px;
padding: 14px 16px;
color: var(--muted);
font-size: .86rem;
border-top: 1px solid var(--border);
background: rgba(0,0,0,.18);
}

.method-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
}

.method-card {
border: 1px solid var(--border);
background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
border-radius: 22px;
padding: 20px;
}

.method-icon {
width: 42px;
height: 42px;
border-radius: 14px;
display: grid;
place-items: center;
background: rgba(255,30,30,.10);
border: 1px solid rgba(255,30,30,.24);
color: var(--red);
margin-bottom: 14px;
}

.method-card h3 {
margin: 0 0 8px;
font-size: 1.05rem;
}

.method-card p {
margin: 0;
color: var(--muted);
line-height: 1.6;
font-size: .94rem;
}

.footer {
padding: 40px 0 56px;
color: var(--muted);
}

.footer-inner {
display: flex;
justify-content: space-between;
gap: 20px;
border-top: 1px solid var(--border);
padding-top: 22px;
font-size: .9rem;
}

.no-results {
padding: 34px 20px;
text-align: center;
color: var(--muted);
}

@media (max-width: 880px) {
.hero { padding-top: 46px; }
.hero-grid { grid-template-columns: 1fr; }
.hero-card { order: -1; }
.logo-stage { min-height: 280px; }
.controls { grid-template-columns: 1fr 1fr; }
.method-grid { grid-template-columns: 1fr; }
.section-head { flex-direction: row; align-items: start; }

}

@media (max-width: 620px) {
	.site-shell { width: min(100% - 22px, var(--max)); }
	.topbar-inner { height: 66px; }
	.brand-title span { display: none; }
	.hero { padding: 34px 0 14px; }
	.hero-actions .button { width: 100%; }
	.quick-stats { grid-template-columns: 1fr; }
	.controls { grid-template-columns: 1fr; }
	.table-wrap { display: none; }
	.mobile-list { display: grid; }
	.panel-footer { flex-direction: column; }
	.footer-inner { flex-direction: column; }
	.mobile-meta { grid-template-columns: 1fr 1fr; }
	h1 { letter-spacing: -.045em; }
}
.brand-mark img {
width: 20px;   /* adjust as needed */
height: auto;
display: block;
}

.support-line-desktop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.support-line-desktop a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.support-line-desktop a:hover {
  color: #0d72b6;
  text-decoration: none;
}

.support-line-mobile {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 5px 5px 0px 5px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.08);
	background: rgba(255,255,255,.02);
}

.support-line-mobile img {
	height: 25px;
	width: 25px;
}

@media (max-width: 550px){
	.support-line-mobile {
		display: inline-flex;
	}
	.support-line-desktop {
		display: none;
	}
}.player-sheet {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.player-sheet.open {
  display: flex;
  align-items: start;
  justify-content: center;
}

.player-sheet-panel {
  position: relative;
  width: 100%;
  max-height: 82vh;
  overflow: auto;
  padding: 22px;
  border-radius: 0 0 26px 26px;

  background:
    radial-gradient(circle at top left, rgba(185, 28, 28, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(18, 20, 24, 0.98), rgba(8, 9, 12, 0.98));

  color: var(--text, #e8edf2);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.55);
}

.player-sheet-panel main {
  display: grid;
  gap: 14px;
}

.player-sheet-panel h1,
.player-sheet-panel h2 {
  margin: 0;
  padding-right: 44px;
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #f4f7fb;
}

.player-sheet-panel p {
  margin: 0;
  color: rgba(232, 237, 242, 0.68);
  font-size: 0.95rem;
}

.player-sheet-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 0;
}

.player-sheet-panel dt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(232, 237, 242, 0.48);
}

.player-sheet-panel dd {
  margin: 4px 0 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #f4f7fb;
}

.player-sheet-panel dl > div,
.player-sheet-panel dt + dd {
  min-width: 0;
}

.player-sheet-close {
  position: absolute;
  top: 14px;
  right: 14px;

  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f7fb;

  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.player-sheet-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 760px) {
  .player-sheet.open {
    align-items: center;
  }

  .player-sheet-panel {
    max-width: 440px;
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
  }
}