@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Poppins', sans-serif !important;
    max-width: 1920px;
    margin: auto;
    /* background: #f0f9ff; */
    background: linear-gradient(180deg, #0f172a, #020617);
}
.info {
    padding: 70px 0;
}
.bg-brand {
    background: #fff !important;
}
.bg-brand-green{
    background: #fff;
}
.bg-brand-dark{
    background: #fff;
}
.text-brand{
    color: #000 !important;
}
.text-brand-dark{
    color: #000 !important;
}
.text-brand-light{
    color: #000 !important;
}
.navbar{
    background: #0f172a;
}
.info-team-card .card{
    min-height: 300px;
    height: 100%;
    align-items: center;
    justify-content: end;
}






/* Card base */
.premium-card {
    position: relative;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Depth effect */
.team-card {
  transition: transform 0.6s ease;
}

/* Winner emphasis */
.premium-card.winner {
  transform: scale(1.10);
  /* background: linear-gradient(135deg, #22c55e, #4ade80); */
  background: #005996 !important;
  /* color: #022c22; */
  color: #ffffff;
}

/* Side cards smaller */
.order-md-1 .premium-card,
.order-md-3 .premium-card {
  transform: scale(0.9);
  opacity: 0.8;
  border: 2px solid #ffffff29;
}

/* Rank circle */
.rank {
  position: absolute;
  top: -12px;
  left: -12px;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-weight: bold;

  /* background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px); */
}

/* Avatar */
.avatar img {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
}

/* Typography */
.team-name {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
}

.score {
  font-size: 32px;
  font-weight: 700;
  margin-top: 8px;
}

.label {
  font-size: 12px;
  opacity: 0.6;
}

/* Trend arrow */
.trend {
  margin-top: 8px;
  font-size: 14px;
}

/* Hover feel */
.premium-card:hover {
  transform: translateY(-6px);
}

/* Smooth entry */
.premium-card {
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.rank {
  position: absolute;
  top: -14px;
  left: -14px;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  /* background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px); */
}

.rank img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.list-group li{
    border-radius: 10px !important;
}
.list-group li:not(:last-child){
    margin-bottom: 10px;
}

.list-group-item{
  background: #ffffff0d !important;
  backdrop-filter: blur(10px);
  color: #fff !important;
  border: 1px solid #ffffff4a !important;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.list-group-item:hover{
  transform: scale(1.03);
}





.list-group  .list-group-item:first-child{
  background: #fff !important;
  color: #000 !important;
}
.list-group  .list-group-item:first-child:hover{
  background: #fff !important;
  transform: scale(1);
}

.list-group .list-group-item{
  background: #952523 !important;
  /* background: #de5454 !important; */
}
.list-group .list-group-item:hover{
  background: #de5454 !important;
  /* background: #952523 !important; */
}














@media (max-width: 1399px) {

}
@media (max-width: 1199px) {

}
@media (max-width: 991px) {

}
@media (max-width: 767px) {
    .info {
      padding: 30px 15px;
    }
    .navbar-brand {
      width: 110px;
    }
    .premium-card.winner {
      transform: scale(1);
    }
    .rank img {
      width: 60px;
      height: 60px;
      object-fit: contain;
    }
}
@media (max-width: 576px) {
    .info-small{
      font-size: 0.8rem;
    }
}

/* SLICK CSS */
.slick-dots {
    display: block;
    left: 0;
    right: 0;
    margin: auto;
    padding-top: 20px;
    list-style: none;
    text-align: center !important;
}
.slick-dots li {
    display: inline-block;
    margin-right: 10px;
}
.slick-dots li button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50rem;
    background-color: #c9c9c9;
    text-indent: -999999px;
}
.slick-dots li.slick-active button {
    background-color: #66bc46;
}