:root{
  --ky-blue:#0033A0;
  --deep-blue:#061a3a;
  --navy:#031023;
  --white:#fff;
  --silver:#d9e2ef;
  --gold:#f6c344;
  --card:#0b2148;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:#f4f7fb;
  color:#13213a;
}

a{color:inherit}

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(3,16,35,.96);
  color:white;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.nav{
  max-width:1180px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.05em;
  text-decoration:none;
}

.brand img{
  height:48px;
  width:auto;
}

.navlinks{
  display:flex;
  gap:18px;
  align-items:center;
  font-weight:700;
}

.navlinks a{text-decoration:none}

.navlinks a:hover{color:var(--gold)}

.btn{
  display:inline-block;
  border:none;
  border-radius:999px;
  background:var(--gold);
  color:#061a3a;
  padding:13px 22px;
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.22);
}

.btn.blue{
  background:var(--ky-blue);
  color:white;
}

.btn.white{
  background:white;
  color:var(--ky-blue);
}

.hero{
  min-height:70vh;
  background:
    radial-gradient(circle at 30% 20%,rgba(255,255,255,.20),transparent 30%),
    linear-gradient(135deg,rgba(0,51,160,.88),rgba(3,16,35,.9));
  color:white;
  display:flex;
  align-items:center;
  padding:72px 18px;
}

.hero-inner{
  max-width:1180px;
  margin:0 auto;
  width:100%;
}

.logo-row{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.logo-card{
  background:rgba(255,255,255,.94);
  border-radius:18px;
  padding:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:86px;
  min-width:150px;
}

.logo-card img{
  max-height:74px;
  max-width:190px;
  object-fit:contain;
}

.eyebrow{
  color:var(--gold);
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:900;
}

h1{
  font-size:clamp(42px,8vw,96px);
  line-height:.95;
  margin:12px 0 18px;
  letter-spacing:-.05em;
}

h2{
  font-size:clamp(30px,4vw,54px);
  line-height:1;
  margin:0 0 18px;
}

h3{
  font-size:26px;
  margin:0 0 12px;
}

.lead{
  font-size:clamp(18px,2.2vw,27px);
  max-width:900px;
  line-height:1.35;
  margin:0 0 24px;
}

.section{
  padding:64px 18px;
}

.container{
  max-width:1180px;
  margin:0 auto;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.card{
  background:white;
  border-radius:24px;
  padding:26px;
  box-shadow:0 14px 34px rgba(7,26,56,.12);
  border:1px solid rgba(0,51,160,.1);
}

.dark-card{
  background:linear-gradient(145deg,var(--deep-blue),var(--card));
  color:white;
}

.notice{
  background:#ffffff;
  border:4px solid var(--gold);
  color:#002d72;
  border-radius:22px;
  padding:22px;
  font-weight:700;
  line-height:1.6;
  box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.product-img{
  width:100%;
  border-radius:22px;
  display:block;
  background:#202020;
}

.form-shell{
  background:white;
  border-radius:28px;
  padding:26px;
  box-shadow:0 16px 42px rgba(0,0,0,.16);
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.full{grid-column:1/-1}

label{
  font-weight:900;
  color:#13213a;
}

input,select,textarea{
  width:100%;
  border:1px solid #c9d5e7;
  border-radius:14px;
  padding:13px 14px;
  font-size:16px;
  background:white;
}

textarea{min-height:110px}

.choice{
  display:flex;
  gap:8px;
  align-items:center;
  border:1px solid #c9d5e7;
  border-radius:18px;
  padding:10px 14px;
  background:#f8fbff;
  font-weight:800;
}

.choice input{width:auto}

.required{color:#b91c1c}

.num-grid{
  display:grid;
  grid-template-columns:repeat(10,1fr);
  gap:8px;
  margin-top:8px;
  max-height:240px;
  overflow:auto;
  padding:8px;
  border:1px solid #d7e1ef;
  border-radius:16px;
  background:#f8fbff;
}

.num-btn{
  border:1px solid #b9c9df;
  background:white;
  border-radius:12px;
  padding:10px 0;
  font-weight:900;
  cursor:pointer;
}

.num-btn.selected{
  background:var(--ky-blue);
  color:white;
  border-color:var(--ky-blue);
}

.num-btn.reserved{
  opacity:.35;
  cursor:not-allowed;
  text-decoration:line-through;
}

.total-box{
  background:#061a3a;
  color:white;
  border-radius:22px;
  padding:22px;
  margin:18px 0;
}

.total{
  font-size:42px;
  font-weight:900;
  color:var(--gold);
}

.status{
  padding:16px;
  border-radius:16px;
  display:none;
  margin-top:16px;
  font-weight:800;
}

.status.ok{
  display:block;
  background:#dcfce7;
  color:#14532d;
}

.status.err{
  display:block;
  background:#fee2e2;
  color:#7f1d1d;
}

/* ROSTER PAGE */
.roster-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}

.player-card{
  background:white;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(7,26,56,.13);
  border:1px solid rgba(0,51,160,.1);
  text-align:center;
  padding-top:18px;
}

.player-photo{
  width:100%;
  max-width:250px;
  aspect-ratio:2 / 3;
  height:auto;
  object-fit:contain;
  object-position:center center;
  display:block;
  margin:0 auto;
  background:#dbe6f5;
  border-radius:16px;
}

.player-body{
  padding:22px;
}

.player-body h3{
  color:var(--ky-blue);
}

.quote{
  border-left:5px solid var(--gold);
  padding-left:14px;
  font-style:italic;
  color:#36445c;
  text-align:left;
}

.footer{
  background:#031023;
  color:white;
  padding:36px 18px;
  text-align:center;
}

.small{
  font-size:14px;
  opacity:.82;
}

@media(max-width:780px){
  .nav{
    align-items:flex-start;
    flex-direction:column;
  }

  .navlinks{
    flex-wrap:wrap;
  }

  .grid,
  .two,
  .form-grid{
    grid-template-columns:1fr;
  }

  .num-grid{
    grid-template-columns:repeat(5,1fr);
  }

  .logo-card{
    min-width:120px;
  }
}