.logoNav {
    width: 2rem;
}

.logoHero {
    width: 2.4rem
}
.google-icon {
  width: 32px;      /* scale */
  height: 32px;      /* color */
    flex-shrink: 0;  /* prevent stretching */
}
.hero-section {
  height: 100vh; /* full screen height */
  width: 100%;
  background: 
    linear-gradient(to bottom, 
      rgba(33,37,41,1) 0%,        /* top fade color (#212529) */
      rgba(0,0,0,0) 20%,          /* fade to transparent */
      rgba(0,0,0,0) 80%,          /* keep center transparent */
      rgba(33,37,41,1) 100%       /* bottom fade color */
    ),
    url("images/heroImage.png") no-repeat center;
  background-size: cover;
  position: relative;
}

.dash-section {
  height: 100vh; /* full screen height */
  width: 100%;
  background: 
    linear-gradient(to bottom, 
      rgba(33,37,41,1) 0%,        /* top fade color (#212529) */
      rgba(0,0,0,0) 20%,          /* fade to transparent */
      rgba(0,0,0,0) 80%,          /* keep center transparent */
      rgba(33,37,41,1) 100%       /* bottom fade color */
    ),
    url("images/dash1.webp") no-repeat center;
  background-size: cover;
  position: relative;
}
.blank-section {
  height: 100vh; /* full screen height */
  width: 100%;
  background: 
    linear-gradient(to bottom, 
      rgba(33,37,41,1) 0%,        /* top fade color (#212529) */
      rgba(0,0,0,0) 20%,          /* fade to transparent */
      rgba(112, 28, 28, 0) 80%,          /* keep center transparent */
      rgba(33,37,41,1) 100%       /* bottom fade color */
    );
  background-size: cover;
  position: relative;
}
.login-section {
  height: 100vh; /* full screen height */
  width: 100%;
  background: 
    linear-gradient(to bottom, 
      rgba(33,37,41,1) 0%,        /* top fade color (#212529) */
      rgba(0,0,0,0) 20%,          /* fade to transparent */
      rgba(112, 28, 28, 0) 80%,          /* keep center transparent */
      rgba(33,37,41,1) 100%       /* bottom fade color */
    ),
    url("images/bgLogin.jpg") no-repeat center;
  background-size: cover;
  position: relative;
}

    .login-card {
      max-width: 400px;
      margin: auto;
      margin-top: 10vh;
      padding: 2rem;
      background: rgba(0, 0, 0, 0.75);
      border-radius: 10px;
      color: #fff;
    }
    .form-control {
      background-color: #222;
      border: none;
      color: #fff;
    }
    .form-control:focus {
      background-color: #333;
      color: #fff;
      box-shadow: none;
    }
    .btn-primary {
      width: 100%;
    }

.button {
  background-color: #212529;   /* dark gray (Bootstrap’s dark) */
  color: #f8f9fa;              /* light text */
  border: 1px solid #343a40;   /* slightly lighter border */
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #343a40;   /* lighten on hover */
  border-color: #495057;
  color: #ffffff;
  transform: translateY(-2px); /* subtle lift */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.button:active {
  background-color: #1c1f23;   /* deeper dark */
  border-color: #212529;
  transform: translateY(0);    /* press down effect */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.buttonLogin {
  background-color: #212529;   /* dark gray (Bootstrap’s dark) */
  color: #f8f9fa;              /* light text */
  border: 1px solid #343a40;   /* slightly lighter border */
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.buttonLogin:hover {
  background-color: #343a40;   /* lighten on hover */
  border-color: #495057;
  color: #ffffff;
  transform: translateY(-2px); /* subtle lift */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.buttonLogin:active {
  background-color: #1c1f23;   /* deeper dark */
  border-color: #212529;
  transform: translateY(0);    /* press down effect */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.leaderList li {
  background-color: rgb(105, 105, 105);
  color: #ffffff;
}

/*div in dashboard*/
 .bet-card {
      background-color: #1e1e1e;
      color: #fff;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    .team {
      cursor: pointer;
      transition: transform 0.15s ease, background-color 0.15s ease;
    }
    .team:hover {
      transform: scale(1.03);
      background-color: rgba(255,255,255,0.05);
    }
    .team img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 50%;
    }
    .vs {
      font-weight: bold;
      font-size: 1.2rem;
      color: #ffc107;
    }
    .odds {
      font-size: 1rem;
      color: #adb5bd;
    }
    .bet-btn {
      background-color: #28a745;
      border: none;
      color: white;
      border-radius: 0.5rem;
    }
    .bet-btn:hover {
      background-color: #218838;
    }

    /* ccs for home logon */
    .matches-container {
    background-color: #1f1f23;
    border-radius: 10px;
    padding: 20px;
    width: 600px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  }

  .match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #2c2c2f;
  }

  .match:last-child {
    border-bottom: none;
  }

  .match-team {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .match-team img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
  }

  .vs {
    font-weight: bold;
    color: #aaa;
  }

  .tournament {
    font-size: 0.9rem;
    color: #888;
  }