/* Medeama SC – Purple & Gold */
:root {
  --purple:#5A2D91;
  --gold:#FFD700;
}
#cd .fw-bold {
  background: #5A2D91;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
}

.text-purple { color: #5A2D91; }
.card:hover { transform: scale(1.03); transition: .3s; }

.navbar { background: var(--purple) !important; }
.navbar .navbar-brand{ color:var(--gold) !important; }
.btn-warning{ background: var(--gold) !important; border: none; }
.text-purple{ color: var(--purple); }
.matchday-banner{ animation: pulse 1.5s infinite; }
@keyframes pulse { 0%{opacity:1} 50%{opacity:.6} 100%{opacity:1} }

.nav-link.active {
  color: #FFD700 !important;
  font-weight: 600;
}
#liveMinute {
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}
#liveMinute { animation:pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
#liveBanner { transition:background .6s,color .6s; }

.btn-outline-secondary {
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}
.btn-outline-secondary:hover {
  background-color: #5A2D91;
  border-color: #5A2D91;
  color: #fff;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(90,45,145,0.05);
}
.card-body table td {
  vertical-align: middle;
}
.text-purple { color: #5A2D91; }
.card:hover {
  transform: translateY(-3px);
  transition: all 0.2s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.footer {
  background-color: #5A2D91; /* Medeama Purple */
  color: #fff;
  text-align: center;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #FFD700; /* Gold hover accent */
}

.social-icons i {
  font-size: 1.3rem;
}


