:root {
  --pgp-primary: #0b2a5b;
  --pgp-accent: #f2c200;
  --pgp-bg: #f6f8fb;
}
body {
  background: var(--pgp-bg);
}
.navbar-brand span {
  color: var(--pgp-accent);
}
.hero {
  background:
    radial-gradient(
      1000px 400px at 10% 10%,
      rgba(242, 194, 0, 0.18),
      transparent 55%
    ),
    radial-gradient(
      900px 380px at 90% 0%,
      rgba(13, 110, 253, 0.15),
      transparent 55%
    ),
    linear-gradient(135deg, #0b2a5b 0%, #071b3a 55%, #071b3a 100%);
  color: #fff;
}
.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}
.badge-soft {
  background: rgba(242, 194, 0, 0.16);
  color: #ffe28a;
  border: 1px solid rgba(242, 194, 0, 0.24);
}
.section-title {
  color: var(--pgp-primary);
  letter-spacing: 0.2px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(11, 42, 91, 0.08);
  box-shadow: 0 10px 22px rgba(11, 42, 91, 0.08);
  color: var(--pgp-primary);
}
.card {
  border: 1px solid rgba(11, 42, 91, 0.08);
  box-shadow: 0 12px 28px rgba(11, 42, 91, 0.06);
  border-radius: 18px;
}
.muted {
  color: rgba(255, 255, 255, 0.75);
}
.btn-accent {
  background: var(--pgp-accent);
  border-color: var(--pgp-accent);
  color: #1b1b1b;
  font-weight: 600;
}
.btn-accent:hover {
  filter: brightness(0.96);
}
.pill {
  border: 1px solid rgba(11, 42, 91, 0.12);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
}
.footer {
  background: #061633;
  color: rgba(255, 255, 255, 0.82);
}
.footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  z-index: 999;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.05);
  color: #fff;
}
/* Navbar Background */
.pgp-navbar {
  background: var(--pgp-primary);
  padding: 12px 0;
  transition: all 0.25s ease;
}

/* Nav links */
.pgp-navbar .nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

/* Hover effect */
.pgp-navbar .nav-link:hover,
.pgp-navbar .nav-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
}

/* Dropdown styling */
.pgp-dropdown {
  border-radius: 12px;
  padding: 8px;
  min-width: 240px;
}

.pgp-dropdown .dropdown-item {
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 500;
}

.pgp-dropdown .dropdown-item:hover {
  background: #f5f7fb;
}


.player-card{
  transition: transform .15s ease, box-shadow .15s ease;
}
.player-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1.25rem rgba(0,0,0,.08);
}
.player-img-wrap{
  background:#f3f6fb;
  height: 150px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.player-img-wrap img{
  height: 150px;
  object-fit: contain;
}
.player-name{
  letter-spacing:.6px;
}


.pgp-player-card {
    position: relative;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
  }

  .pgp-player-img {
    height: 190px; /* ✅ fixed height for ALL players */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-bottom: 1px solid #bdbdbd;
  }

  .pgp-player-img img {
    height: 190px; /* ✅ keep same height */
    width: 100%;
    object-fit: contain; /* ✅ no crop */
  }

  .pgp-player-info {
    padding: 10px 8px 12px;
    text-align: center;
  }

  .pgp-player-name {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    font-size: 14px;
    margin-bottom: 2px;
  }

  .pgp-player-role {
    color: #666;
    font-size: 12px;
    margin-bottom: 4px;
  }

  .pgp-player-points {
    font-weight: 700;
    font-size: 12px;
    color: #111;
  }

  /* Retain badge top-left */
  .pgp-badge-retain {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #e9ecef;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    z-index: 2;
  }
