body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f5f7fb;
}

/* NAVBAR */
.navbar {
  background: linear-gradient(135deg,#0f172a,#1e3a8a);
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 48px;        /* Perfect SaaS / sports site size */
  width: auto;
  object-fit: contain;
  transition: transform .25s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width:768px){
  .logo img{
    height: 40px;
  }
}



nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: #cbd5e1;
  font-weight: 700;
  transition: .3s;
}

nav a:hover {
  color: #38bdf8;
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px 140px;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: -1px;
}

/* BUTTONS */
.btn {
  background: #2563eb;
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}

.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}

/* GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: .3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #38bdf8;
}

/* MOBILE */
@media(max-width:768px){

.hero h1 {
  font-size: 2rem;
}

.navbar{
  min-height: 70px;
}



}
/* PLAYER PAGE STATS */

.stat-box{
  background:#f8fafc;
  border-radius:14px;
  padding:22px;
  text-align:center;
  border:1px solid #e2e8f0;
  transition:.25s;
}

.stat-box:hover{
  transform:translateY(-4px);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.stat-value{
  font-size:24px;
  font-weight:900;
}

.stat-label{
  font-size:11px;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.12em;
}
/* Live filters + badges */
.filterbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}

.filter-pill {
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: #0f172a;
  text-decoration: none;
  transition: .2s;
}

.filter-pill:hover { transform: translateY(-1px); }
.filter-pill.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.badge-live { background: #fee2e2; color: #991b1b; }
.badge-upcoming { background: #e0f2fe; color: #075985; }
.badge-ended { background: #dcfce7; color: #065f46; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

